diff --git a/.gitignore b/.gitignore index 93a2df3..7647d63 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ static/bundle.js static/react-widgets node_modules +cusip_list.csv +security_templates.go diff --git a/accounts.go b/accounts.go index edea7e7..5045d6f 100644 --- a/accounts.go +++ b/accounts.go @@ -143,7 +143,11 @@ func GetTradingAccount(transaction *gorp.Transaction, userid int64, securityid i return nil, err } - security := GetSecurity(securityid) + security, err := GetSecurity(securityid, userid) + if err != nil { + return nil, err + } + account.UserId = userid account.Name = security.Name account.ParentAccountId = ta.AccountId @@ -176,7 +180,11 @@ func GetImbalanceAccount(transaction *gorp.Transaction, userid int64, securityid return nil, err } - security := GetSecurity(securityid) + security, err := GetSecurity(securityid, userid) + if err != nil { + return nil, err + } + account.UserId = userid account.Name = security.Name account.ParentAccountId = ia.AccountId @@ -346,7 +354,13 @@ func AccountHandler(w http.ResponseWriter, r *http.Request) { account.UserId = user.UserId account.AccountVersion = 0 - if GetSecurity(account.SecurityId) == nil { + security, err := GetSecurity(account.SecurityId, user.UserId) + if err != nil { + WriteError(w, 999 /*Internal Error*/) + log.Print(err) + return + } + if security == nil { WriteError(w, 3 /*Invalid Request*/) return } @@ -432,7 +446,13 @@ func AccountHandler(w http.ResponseWriter, r *http.Request) { } account.UserId = user.UserId - if GetSecurity(account.SecurityId) == nil { + security, err := GetSecurity(account.SecurityId, user.UserId) + if err != nil { + WriteError(w, 999 /*Internal Error*/) + log.Print(err) + return + } + if security == nil { WriteError(w, 3 /*Invalid Request*/) return } @@ -451,12 +471,6 @@ func AccountHandler(w http.ResponseWriter, r *http.Request) { return } } else if r.Method == "DELETE" { - accountid, err := GetURLID(r.URL.Path) - if err != nil { - WriteError(w, 3 /*Invalid Request*/) - return - } - account, err := GetAccount(accountid, user.UserId) if err != nil { WriteError(w, 3 /*Invalid Request*/) diff --git a/db.go b/db.go index 877583f..416d326 100644 --- a/db.go +++ b/db.go @@ -19,6 +19,7 @@ func initDB() *gorp.DbMap { dbmap.AddTableWithName(User{}, "users").SetKeys(true, "UserId") dbmap.AddTableWithName(Session{}, "sessions").SetKeys(true, "SessionId") dbmap.AddTableWithName(Account{}, "accounts").SetKeys(true, "AccountId") + dbmap.AddTableWithName(Security{}, "securities").SetKeys(true, "SecurityId") dbmap.AddTableWithName(Transaction{}, "transactions").SetKeys(true, "TransactionId") dbmap.AddTableWithName(Split{}, "splits").SetKeys(true, "SplitId") diff --git a/imports.go b/imports.go index 02aa22c..0d01709 100644 --- a/imports.go +++ b/imports.go @@ -121,7 +121,13 @@ func AccountImportHandler(w http.ResponseWriter, r *http.Request, user *User, ac split := new(Split) r := new(big.Rat) r.Neg(&imbalance) - security := GetSecurity(imbalanced_security) + security, err := GetSecurity(imbalanced_security, user.UserId) + if err != nil { + sqltransaction.Rollback() + WriteError(w, 999 /*Internal Error*/) + log.Print(err) + return + } split.Amount = r.FloatString(security.Precision) split.SecurityId = -1 split.AccountId = imbalanced_account.AccountId diff --git a/libofx.go b/libofx.go index a45404a..30e9ef4 100644 --- a/libofx.go +++ b/libofx.go @@ -132,7 +132,13 @@ func OFXTransactionCallback(transaction_data C.struct_OfxTransactionData, data u split := new(Split) r := new(big.Rat) r.SetFloat64(float64(transaction_data.amount)) - security := GetSecurity(itl.Account.SecurityId) + security, err := GetSecurity(itl.Account.SecurityId, itl.Account.UserId) + if err != nil { + if iobj.Error == nil { + iobj.Error = err + } + return 1 + } split.Amount = r.FloatString(security.Precision) if transaction_data.memo_valid != 0 { split.Memo = C.GoString(&transaction_data.memo[0]) @@ -151,6 +157,7 @@ func OFXTransactionCallback(transaction_data C.struct_OfxTransactionData, data u } var security *Security + var err error split := new(Split) units := new(big.Rat) @@ -183,7 +190,13 @@ func OFXTransactionCallback(transaction_data C.struct_OfxTransactionData, data u } } } else { - security = GetSecurity(itl.Account.SecurityId) + security, err = GetSecurity(itl.Account.SecurityId, itl.Account.UserId) + if err != nil { + if iobj.Error == nil { + iobj.Error = err + } + return 1 + } } } else { // Calculate units from other available fields if its not present @@ -207,7 +220,13 @@ func OFXTransactionCallback(transaction_data C.struct_OfxTransactionData, data u } // If 'units' wasn't present, assume we're using the account's security - security = GetSecurity(itl.Account.SecurityId) + security, err = GetSecurity(itl.Account.SecurityId, itl.Account.UserId) + if err != nil { + if iobj.Error == nil { + iobj.Error = err + } + return 1 + } } split.Amount = units.FloatString(security.Precision) @@ -219,7 +238,13 @@ func OFXTransactionCallback(transaction_data C.struct_OfxTransactionData, data u split := new(Split) r := new(big.Rat) r.SetFloat64(float64(-transaction_data.fees)) - security := GetSecurity(itl.Account.SecurityId) + security, err := GetSecurity(itl.Account.SecurityId, itl.Account.UserId) + if err != nil { + if iobj.Error == nil { + iobj.Error = err + } + return 1 + } split.Amount = r.FloatString(security.Precision) split.Memo = "fees" split.SecurityId = itl.Account.SecurityId @@ -231,7 +256,13 @@ func OFXTransactionCallback(transaction_data C.struct_OfxTransactionData, data u split := new(Split) r := new(big.Rat) r.SetFloat64(float64(-transaction_data.commission)) - security := GetSecurity(itl.Account.SecurityId) + security, err := GetSecurity(itl.Account.SecurityId, itl.Account.UserId) + if err != nil { + if iobj.Error == nil { + iobj.Error = err + } + return 1 + } split.Amount = r.FloatString(security.Precision) split.Memo = "commission" split.SecurityId = itl.Account.SecurityId diff --git a/main.go b/main.go index 45b06cc..0422fb3 100644 --- a/main.go +++ b/main.go @@ -70,6 +70,7 @@ func main() { servemux.HandleFunc("/session/", SessionHandler) servemux.HandleFunc("/user/", UserHandler) servemux.HandleFunc("/security/", SecurityHandler) + servemux.HandleFunc("/securitytemplate/", SecurityTemplateHandler) servemux.HandleFunc("/account/", AccountHandler) servemux.HandleFunc("/transaction/", TransactionHandler) servemux.HandleFunc("/import/gnucash", GnucashImportHandler) diff --git a/securities.go b/securities.go index 5da4236..03793f4 100644 --- a/securities.go +++ b/securities.go @@ -2,9 +2,12 @@ package main import ( "encoding/json" + "errors" "fmt" "log" "net/http" + "net/url" + "strings" ) const ( @@ -12,8 +15,19 @@ const ( Stock = 2 ) +func GetSecurityType(typestring string) int64 { + if strings.EqualFold(typestring, "currency") { + return Currency + } else if strings.EqualFold(typestring, "stock") { + return Stock + } else { + return 0 + } +} + type Security struct { SecurityId int64 + UserId int64 Name string Description string Symbol string @@ -29,55694 +43,9 @@ type SecurityList struct { Securities *[]*Security `json:"securities"` } -var security_map = map[int64]*Security{ - // ISO 4217, from http://www.currency-iso.org/en/home/tables/table-a1.html - /* - 8: &Security{ - SecurityId: 8, - Name: "ALL", - Description: "Lek", - Symbol: "ALL", - Precision: 2, - Type: Currency}, - 12: &Security{ - SecurityId: 12, - Name: "DZD", - Description: "Algerian Dinar", - Symbol: "DZD", - Precision: 2, - Type: Currency}, - 32: &Security{ - SecurityId: 32, - Name: "ARS", - Description: "Argentine Peso", - Symbol: "ARS", - Precision: 2, - Type: Currency}, - 36: &Security{ - SecurityId: 36, - Name: "AUD", - Description: "Australian Dollar", - Symbol: "AUD", - Precision: 2, - Type: Currency}, - 44: &Security{ - SecurityId: 44, - Name: "BSD", - Description: "Bahamian Dollar", - Symbol: "BSD", - Precision: 2, - Type: Currency}, - 48: &Security{ - SecurityId: 48, - Name: "BHD", - Description: "Bahraini Dinar", - Symbol: "BHD", - Precision: 3, - Type: Currency}, - 50: &Security{ - SecurityId: 50, - Name: "BDT", - Description: "Taka", - Symbol: "BDT", - Precision: 2, - Type: Currency}, - 51: &Security{ - SecurityId: 51, - Name: "AMD", - Description: "Armenian Dram", - Symbol: "AMD", - Precision: 2, - Type: Currency}, - 52: &Security{ - SecurityId: 52, - Name: "BBD", - Description: "Barbados Dollar", - Symbol: "BBD", - Precision: 2, - Type: Currency}, - 60: &Security{ - SecurityId: 60, - Name: "BMD", - Description: "Bermudian Dollar", - Symbol: "BMD", - Precision: 2, - Type: Currency}, - 64: &Security{ - SecurityId: 64, - Name: "BTN", - Description: "Ngultrum", - Symbol: "BTN", - Precision: 2, - Type: Currency}, - 68: &Security{ - SecurityId: 68, - Name: "BOB", - Description: "Boliviano", - Symbol: "BOB", - Precision: 2, - Type: Currency}, - 72: &Security{ - SecurityId: 72, - Name: "BWP", - Description: "Pula", - Symbol: "BWP", - Precision: 2, - Type: Currency}, - 84: &Security{ - SecurityId: 84, - Name: "BZD", - Description: "Belize Dollar", - Symbol: "BZD", - Precision: 2, - Type: Currency}, - 90: &Security{ - SecurityId: 90, - Name: "SBD", - Description: "Solomon Islands Dollar", - Symbol: "SBD", - Precision: 2, - Type: Currency}, - 96: &Security{ - SecurityId: 96, - Name: "BND", - Description: "Brunei Dollar", - Symbol: "BND", - Precision: 2, - Type: Currency}, - 104: &Security{ - SecurityId: 104, - Name: "MMK", - Description: "Kyat", - Symbol: "MMK", - Precision: 2, - Type: Currency}, - 108: &Security{ - SecurityId: 108, - Name: "BIF", - Description: "Burundi Franc", - Symbol: "BIF", - Precision: 0, - Type: Currency}, - 116: &Security{ - SecurityId: 116, - Name: "KHR", - Description: "Riel", - Symbol: "KHR", - Precision: 2, - Type: Currency}, - 124: &Security{ - SecurityId: 124, - Name: "CAD", - Description: "Canadian Dollar", - Symbol: "CAD", - Precision: 2, - Type: Currency}, - 132: &Security{ - SecurityId: 132, - Name: "CVE", - Description: "Cabo Verde Escudo", - Symbol: "CVE", - Precision: 2, - Type: Currency}, - 136: &Security{ - SecurityId: 136, - Name: "KYD", - Description: "Cayman Islands Dollar", - Symbol: "KYD", - Precision: 2, - Type: Currency}, - 144: &Security{ - SecurityId: 144, - Name: "LKR", - Description: "Sri Lanka Rupee", - Symbol: "LKR", - Precision: 2, - Type: Currency}, - 152: &Security{ - SecurityId: 152, - Name: "CLP", - Description: "Chilean Peso", - Symbol: "CLP", - Precision: 0, - Type: Currency}, - 156: &Security{ - SecurityId: 156, - Name: "CNY", - Description: "Yuan Renminbi", - Symbol: "CNY", - Precision: 2, - Type: Currency}, - 170: &Security{ - SecurityId: 170, - Name: "COP", - Description: "Colombian Peso", - Symbol: "COP", - Precision: 2, - Type: Currency}, - 174: &Security{ - SecurityId: 174, - Name: "KMF", - Description: "Comoro Franc", - Symbol: "KMF", - Precision: 0, - Type: Currency}, - 188: &Security{ - SecurityId: 188, - Name: "CRC", - Description: "Costa Rican Colon", - Symbol: "CRC", - Precision: 2, - Type: Currency}, - 191: &Security{ - SecurityId: 191, - Name: "HRK", - Description: "Kuna", - Symbol: "HRK", - Precision: 2, - Type: Currency}, - 192: &Security{ - SecurityId: 192, - Name: "CUP", - Description: "Cuban Peso", - Symbol: "CUP", - Precision: 2, - Type: Currency}, - 203: &Security{ - SecurityId: 203, - Name: "CZK", - Description: "Czech Koruna", - Symbol: "CZK", - Precision: 2, - Type: Currency}, - 208: &Security{ - SecurityId: 208, - Name: "DKK", - Description: "Danish Krone", - Symbol: "DKK", - Precision: 2, - Type: Currency}, - 214: &Security{ - SecurityId: 214, - Name: "DOP", - Description: "Dominican Peso", - Symbol: "DOP", - Precision: 2, - Type: Currency}, - 222: &Security{ - SecurityId: 222, - Name: "SVC", - Description: "El Salvador Colon", - Symbol: "SVC", - Precision: 2, - Type: Currency}, - 230: &Security{ - SecurityId: 230, - Name: "ETB", - Description: "Ethiopian Birr", - Symbol: "ETB", - Precision: 2, - Type: Currency}, - 232: &Security{ - SecurityId: 232, - Name: "ERN", - Description: "Nakfa", - Symbol: "ERN", - Precision: 2, - Type: Currency}, - 238: &Security{ - SecurityId: 238, - Name: "FKP", - Description: "Falkland Islands Pound", - Symbol: "FKP", - Precision: 2, - Type: Currency}, - 242: &Security{ - SecurityId: 242, - Name: "FJD", - Description: "Fiji Dollar", - Symbol: "FJD", - Precision: 2, - Type: Currency}, - 262: &Security{ - SecurityId: 262, - Name: "DJF", - Description: "Djibouti Franc", - Symbol: "DJF", - Precision: 0, - Type: Currency}, - 270: &Security{ - SecurityId: 270, - Name: "GMD", - Description: "Dalasi", - Symbol: "GMD", - Precision: 2, - Type: Currency}, - 292: &Security{ - SecurityId: 292, - Name: "GIP", - Description: "Gibraltar Pound", - Symbol: "GIP", - Precision: 2, - Type: Currency}, - 320: &Security{ - SecurityId: 320, - Name: "GTQ", - Description: "Quetzal", - Symbol: "GTQ", - Precision: 2, - Type: Currency}, - 324: &Security{ - SecurityId: 324, - Name: "GNF", - Description: "Guinea Franc", - Symbol: "GNF", - Precision: 0, - Type: Currency}, - 328: &Security{ - SecurityId: 328, - Name: "GYD", - Description: "Guyana Dollar", - Symbol: "GYD", - Precision: 2, - Type: Currency}, - 332: &Security{ - SecurityId: 332, - Name: "HTG", - Description: "Gourde", - Symbol: "HTG", - Precision: 2, - Type: Currency}, - 340: &Security{ - SecurityId: 340, - Name: "HNL", - Description: "Lempira", - Symbol: "HNL", - Precision: 2, - Type: Currency}, - 344: &Security{ - SecurityId: 344, - Name: "HKD", - Description: "Hong Kong Dollar", - Symbol: "HKD", - Precision: 2, - Type: Currency}, - 348: &Security{ - SecurityId: 348, - Name: "HUF", - Description: "Forint", - Symbol: "HUF", - Precision: 2, - Type: Currency}, - 352: &Security{ - SecurityId: 352, - Name: "ISK", - Description: "Iceland Krona", - Symbol: "ISK", - Precision: 0, - Type: Currency}, - 356: &Security{ - SecurityId: 356, - Name: "INR", - Description: "Indian Rupee", - Symbol: "INR", - Precision: 2, - Type: Currency}, - 360: &Security{ - SecurityId: 360, - Name: "IDR", - Description: "Rupiah", - Symbol: "IDR", - Precision: 2, - Type: Currency}, - 364: &Security{ - SecurityId: 364, - Name: "IRR", - Description: "Iranian Rial", - Symbol: "IRR", - Precision: 2, - Type: Currency}, - 368: &Security{ - SecurityId: 368, - Name: "IQD", - Description: "Iraqi Dinar", - Symbol: "IQD", - Precision: 3, - Type: Currency}, - 376: &Security{ - SecurityId: 376, - Name: "ILS", - Description: "New Israeli Sheqel", - Symbol: "ILS", - Precision: 2, - Type: Currency}, - 388: &Security{ - SecurityId: 388, - Name: "JMD", - Description: "Jamaican Dollar", - Symbol: "JMD", - Precision: 2, - Type: Currency}, - 392: &Security{ - SecurityId: 392, - Name: "JPY", - Description: "Yen", - Symbol: "JPY", - Precision: 0, - Type: Currency}, - 398: &Security{ - SecurityId: 398, - Name: "KZT", - Description: "Tenge", - Symbol: "KZT", - Precision: 2, - Type: Currency}, - 400: &Security{ - SecurityId: 400, - Name: "JOD", - Description: "Jordanian Dinar", - Symbol: "JOD", - Precision: 3, - Type: Currency}, - 404: &Security{ - SecurityId: 404, - Name: "KES", - Description: "Kenyan Shilling", - Symbol: "KES", - Precision: 2, - Type: Currency}, - 408: &Security{ - SecurityId: 408, - Name: "KPW", - Description: "North Korean Won", - Symbol: "KPW", - Precision: 2, - Type: Currency}, - 410: &Security{ - SecurityId: 410, - Name: "KRW", - Description: "Won", - Symbol: "KRW", - Precision: 0, - Type: Currency}, - 414: &Security{ - SecurityId: 414, - Name: "KWD", - Description: "Kuwaiti Dinar", - Symbol: "KWD", - Precision: 3, - Type: Currency}, - 417: &Security{ - SecurityId: 417, - Name: "KGS", - Description: "Som", - Symbol: "KGS", - Precision: 2, - Type: Currency}, - 418: &Security{ - SecurityId: 418, - Name: "LAK", - Description: "Kip", - Symbol: "LAK", - Precision: 2, - Type: Currency}, - 422: &Security{ - SecurityId: 422, - Name: "LBP", - Description: "Lebanese Pound", - Symbol: "LBP", - Precision: 2, - Type: Currency}, - 426: &Security{ - SecurityId: 426, - Name: "LSL", - Description: "Loti", - Symbol: "LSL", - Precision: 2, - Type: Currency}, - 430: &Security{ - SecurityId: 430, - Name: "LRD", - Description: "Liberian Dollar", - Symbol: "LRD", - Precision: 2, - Type: Currency}, - 434: &Security{ - SecurityId: 434, - Name: "LYD", - Description: "Libyan Dinar", - Symbol: "LYD", - Precision: 3, - Type: Currency}, - 446: &Security{ - SecurityId: 446, - Name: "MOP", - Description: "Pataca", - Symbol: "MOP", - Precision: 2, - Type: Currency}, - 454: &Security{ - SecurityId: 454, - Name: "MWK", - Description: "Kwacha", - Symbol: "MWK", - Precision: 2, - Type: Currency}, - 458: &Security{ - SecurityId: 458, - Name: "MYR", - Description: "Malaysian Ringgit", - Symbol: "MYR", - Precision: 2, - Type: Currency}, - 462: &Security{ - SecurityId: 462, - Name: "MVR", - Description: "Rufiyaa", - Symbol: "MVR", - Precision: 2, - Type: Currency}, - 478: &Security{ - SecurityId: 478, - Name: "MRO", - Description: "Ouguiya", - Symbol: "MRO", - Precision: 2, - Type: Currency}, - 480: &Security{ - SecurityId: 480, - Name: "MUR", - Description: "Mauritius Rupee", - Symbol: "MUR", - Precision: 2, - Type: Currency}, - 484: &Security{ - SecurityId: 484, - Name: "MXN", - Description: "Mexican Peso", - Symbol: "MXN", - Precision: 2, - Type: Currency}, - 496: &Security{ - SecurityId: 496, - Name: "MNT", - Description: "Tugrik", - Symbol: "MNT", - Precision: 2, - Type: Currency}, - 498: &Security{ - SecurityId: 498, - Name: "MDL", - Description: "Moldovan Leu", - Symbol: "MDL", - Precision: 2, - Type: Currency}, - 504: &Security{ - SecurityId: 504, - Name: "MAD", - Description: "Moroccan Dirham", - Symbol: "MAD", - Precision: 2, - Type: Currency}, - 512: &Security{ - SecurityId: 512, - Name: "OMR", - Description: "Rial Omani", - Symbol: "OMR", - Precision: 3, - Type: Currency}, - 516: &Security{ - SecurityId: 516, - Name: "NAD", - Description: "Namibia Dollar", - Symbol: "NAD", - Precision: 2, - Type: Currency}, - 524: &Security{ - SecurityId: 524, - Name: "NPR", - Description: "Nepalese Rupee", - Symbol: "NPR", - Precision: 2, - Type: Currency}, - 532: &Security{ - SecurityId: 532, - Name: "ANG", - Description: "Netherlands Antillean Guilder", - Symbol: "ANG", - Precision: 2, - Type: Currency}, - 533: &Security{ - SecurityId: 533, - Name: "AWG", - Description: "Aruban Florin", - Symbol: "AWG", - Precision: 2, - Type: Currency}, - 548: &Security{ - SecurityId: 548, - Name: "VUV", - Description: "Vatu", - Symbol: "VUV", - Precision: 0, - Type: Currency}, - 554: &Security{ - SecurityId: 554, - Name: "NZD", - Description: "New Zealand Dollar", - Symbol: "NZD", - Precision: 2, - Type: Currency}, - 558: &Security{ - SecurityId: 558, - Name: "NIO", - Description: "Cordoba Oro", - Symbol: "NIO", - Precision: 2, - Type: Currency}, - 566: &Security{ - SecurityId: 566, - Name: "NGN", - Description: "Naira", - Symbol: "NGN", - Precision: 2, - Type: Currency}, - 578: &Security{ - SecurityId: 578, - Name: "NOK", - Description: "Norwegian Krone", - Symbol: "NOK", - Precision: 2, - Type: Currency}, - 586: &Security{ - SecurityId: 586, - Name: "PKR", - Description: "Pakistan Rupee", - Symbol: "PKR", - Precision: 2, - Type: Currency}, - 590: &Security{ - SecurityId: 590, - Name: "PAB", - Description: "Balboa", - Symbol: "PAB", - Precision: 2, - Type: Currency}, - 598: &Security{ - SecurityId: 598, - Name: "PGK", - Description: "Kina", - Symbol: "PGK", - Precision: 2, - Type: Currency}, - 600: &Security{ - SecurityId: 600, - Name: "PYG", - Description: "Guarani", - Symbol: "PYG", - Precision: 0, - Type: Currency}, - 604: &Security{ - SecurityId: 604, - Name: "PEN", - Description: "Nuevo Sol", - Symbol: "PEN", - Precision: 2, - Type: Currency}, - 608: &Security{ - SecurityId: 608, - Name: "PHP", - Description: "Philippine Peso", - Symbol: "PHP", - Precision: 2, - Type: Currency}, - 634: &Security{ - SecurityId: 634, - Name: "QAR", - Description: "Qatari Rial", - Symbol: "QAR", - Precision: 2, - Type: Currency}, - 643: &Security{ - SecurityId: 643, - Name: "RUB", - Description: "Russian Ruble", - Symbol: "RUB", - Precision: 2, - Type: Currency}, - 646: &Security{ - SecurityId: 646, - Name: "RWF", - Description: "Rwanda Franc", - Symbol: "RWF", - Precision: 0, - Type: Currency}, - 654: &Security{ - SecurityId: 654, - Name: "SHP", - Description: "Saint Helena Pound", - Symbol: "SHP", - Precision: 2, - Type: Currency}, - 678: &Security{ - SecurityId: 678, - Name: "STD", - Description: "Dobra", - Symbol: "STD", - Precision: 2, - Type: Currency}, - 682: &Security{ - SecurityId: 682, - Name: "SAR", - Description: "Saudi Riyal", - Symbol: "SAR", - Precision: 2, - Type: Currency}, - 690: &Security{ - SecurityId: 690, - Name: "SCR", - Description: "Seychelles Rupee", - Symbol: "SCR", - Precision: 2, - Type: Currency}, - 694: &Security{ - SecurityId: 694, - Name: "SLL", - Description: "Leone", - Symbol: "SLL", - Precision: 2, - Type: Currency}, - 702: &Security{ - SecurityId: 702, - Name: "SGD", - Description: "Singapore Dollar", - Symbol: "SGD", - Precision: 2, - Type: Currency}, - 704: &Security{ - SecurityId: 704, - Name: "VND", - Description: "Dong", - Symbol: "VND", - Precision: 0, - Type: Currency}, - 706: &Security{ - SecurityId: 706, - Name: "SOS", - Description: "Somali Shilling", - Symbol: "SOS", - Precision: 2, - Type: Currency}, - 710: &Security{ - SecurityId: 710, - Name: "ZAR", - Description: "Rand", - Symbol: "ZAR", - Precision: 2, - Type: Currency}, - 728: &Security{ - SecurityId: 728, - Name: "SSP", - Description: "South Sudanese Pound", - Symbol: "SSP", - Precision: 2, - Type: Currency}, - 748: &Security{ - SecurityId: 748, - Name: "SZL", - Description: "Lilangeni", - Symbol: "SZL", - Precision: 2, - Type: Currency}, - 752: &Security{ - SecurityId: 752, - Name: "SEK", - Description: "Swedish Krona", - Symbol: "SEK", - Precision: 2, - Type: Currency}, - 756: &Security{ - SecurityId: 756, - Name: "CHF", - Description: "Swiss Franc", - Symbol: "CHF", - Precision: 2, - Type: Currency}, - 760: &Security{ - SecurityId: 760, - Name: "SYP", - Description: "Syrian Pound", - Symbol: "SYP", - Precision: 2, - Type: Currency}, - 764: &Security{ - SecurityId: 764, - Name: "THB", - Description: "Baht", - Symbol: "THB", - Precision: 2, - Type: Currency}, - 776: &Security{ - SecurityId: 776, - Name: "TOP", - Description: "Pa’anga", - Symbol: "TOP", - Precision: 2, - Type: Currency}, - 780: &Security{ - SecurityId: 780, - Name: "TTD", - Description: "Trinidad and Tobago Dollar", - Symbol: "TTD", - Precision: 2, - Type: Currency}, - 784: &Security{ - SecurityId: 784, - Name: "AED", - Description: "UAE Dirham", - Symbol: "AED", - Precision: 2, - Type: Currency}, - 788: &Security{ - SecurityId: 788, - Name: "TND", - Description: "Tunisian Dinar", - Symbol: "TND", - Precision: 3, - Type: Currency}, - 800: &Security{ - SecurityId: 800, - Name: "UGX", - Description: "Uganda Shilling", - Symbol: "UGX", - Precision: 0, - Type: Currency}, - 807: &Security{ - SecurityId: 807, - Name: "MKD", - Description: "Denar", - Symbol: "MKD", - Precision: 2, - Type: Currency}, - 818: &Security{ - SecurityId: 818, - Name: "EGP", - Description: "Egyptian Pound", - Symbol: "EGP", - Precision: 2, - Type: Currency}, - 826: &Security{ - SecurityId: 826, - Name: "GBP", - Description: "Pound Sterling", - Symbol: "GBP", - Precision: 2, - Type: Currency}, - 834: &Security{ - SecurityId: 834, - Name: "TZS", - Description: "Tanzanian Shilling", - Symbol: "TZS", - Precision: 2, - Type: Currency}, - */ - 840: &Security{ - SecurityId: 840, - Name: "USD", - Description: "US Dollar", - Symbol: "USD", - Precision: 2, - Type: Currency}, - /* - 858: &Security{ - SecurityId: 858, - Name: "UYU", - Description: "Peso Uruguayo", - Symbol: "UYU", - Precision: 2, - Type: Currency}, - 860: &Security{ - SecurityId: 860, - Name: "UZS", - Description: "Uzbekistan Sum", - Symbol: "UZS", - Precision: 2, - Type: Currency}, - 882: &Security{ - SecurityId: 882, - Name: "WST", - Description: "Tala", - Symbol: "WST", - Precision: 2, - Type: Currency}, - 886: &Security{ - SecurityId: 886, - Name: "YER", - Description: "Yemeni Rial", - Symbol: "YER", - Precision: 2, - Type: Currency}, - 901: &Security{ - SecurityId: 901, - Name: "TWD", - Description: "New Taiwan Dollar", - Symbol: "TWD", - Precision: 2, - Type: Currency}, - 931: &Security{ - SecurityId: 931, - Name: "CUC", - Description: "Peso Convertible", - Symbol: "CUC", - Precision: 2, - Type: Currency}, - 932: &Security{ - SecurityId: 932, - Name: "ZWL", - Description: "Zimbabwe Dollar", - Symbol: "ZWL", - Precision: 2, - Type: Currency}, - 934: &Security{ - SecurityId: 934, - Name: "TMT", - Description: "Turkmenistan New Manat", - Symbol: "TMT", - Precision: 2, - Type: Currency}, - 936: &Security{ - SecurityId: 936, - Name: "GHS", - Description: "Ghana Cedi", - Symbol: "GHS", - Precision: 2, - Type: Currency}, - 937: &Security{ - SecurityId: 937, - Name: "VEF", - Description: "Bolivar", - Symbol: "VEF", - Precision: 2, - Type: Currency}, - 938: &Security{ - SecurityId: 938, - Name: "SDG", - Description: "Sudanese Pound", - Symbol: "SDG", - Precision: 2, - Type: Currency}, - 940: &Security{ - SecurityId: 940, - Name: "UYI", - Description: "Uruguay Peso en Unidades Indexadas (URUIURUI)", - Symbol: "UYI", - Precision: 0, - Type: Currency}, - 941: &Security{ - SecurityId: 941, - Name: "RSD", - Description: "Serbian Dinar", - Symbol: "RSD", - Precision: 2, - Type: Currency}, - 943: &Security{ - SecurityId: 943, - Name: "MZN", - Description: "Mozambique Metical", - Symbol: "MZN", - Precision: 2, - Type: Currency}, - 944: &Security{ - SecurityId: 944, - Name: "AZN", - Description: "Azerbaijanian Manat", - Symbol: "AZN", - Precision: 2, - Type: Currency}, - 946: &Security{ - SecurityId: 946, - Name: "RON", - Description: "Romanian Leu", - Symbol: "RON", - Precision: 2, - Type: Currency}, - 947: &Security{ - SecurityId: 947, - Name: "CHE", - Description: "WIR Euro", - Symbol: "CHE", - Precision: 2, - Type: Currency}, - 948: &Security{ - SecurityId: 948, - Name: "CHW", - Description: "WIR Franc", - Symbol: "CHW", - Precision: 2, - Type: Currency}, - 949: &Security{ - SecurityId: 949, - Name: "TRY", - Description: "Turkish Lira", - Symbol: "TRY", - Precision: 2, - Type: Currency}, - 950: &Security{ - SecurityId: 950, - Name: "XAF", - Description: "CFA Franc BEAC", - Symbol: "XAF", - Precision: 0, - Type: Currency}, - 951: &Security{ - SecurityId: 951, - Name: "XCD", - Description: "East Caribbean Dollar", - Symbol: "XCD", - Precision: 2, - Type: Currency}, - 952: &Security{ - SecurityId: 952, - Name: "XOF", - Description: "CFA Franc BCEAO", - Symbol: "XOF", - Precision: 0, - Type: Currency}, - 953: &Security{ - SecurityId: 953, - Name: "XPF", - Description: "CFP Franc", - Symbol: "XPF", - Precision: 0, - Type: Currency}, - 955: &Security{ - SecurityId: 955, - Name: "XBA", - Description: "Bond Markets Unit European Composite Unit (EURCO)", - Symbol: "XBA", - Precision: 0, - Type: Currency}, - 956: &Security{ - SecurityId: 956, - Name: "XBB", - Description: "Bond Markets Unit European Monetary Unit (E.M.U.-6)", - Symbol: "XBB", - Precision: 0, - Type: Currency}, - 957: &Security{ - SecurityId: 957, - Name: "XBC", - Description: "Bond Markets Unit European Unit of Account 9 (E.U.A.-9)", - Symbol: "XBC", - Precision: 0, - Type: Currency}, - 958: &Security{ - SecurityId: 958, - Name: "XBD", - Description: "Bond Markets Unit European Unit of Account 17 (E.U.A.-17)", - Symbol: "XBD", - Precision: 0, - Type: Currency}, - 959: &Security{ - SecurityId: 959, - Name: "XAU", - Description: "Gold", - Symbol: "XAU", - Precision: 0, - Type: Currency}, - 960: &Security{ - SecurityId: 960, - Name: "XDR", - Description: "SDR (Special Drawing Right)", - Symbol: "XDR", - Precision: 0, - Type: Currency}, - 961: &Security{ - SecurityId: 961, - Name: "XAG", - Description: "Silver", - Symbol: "XAG", - Precision: 0, - Type: Currency}, - 962: &Security{ - SecurityId: 962, - Name: "XPT", - Description: "Platinum", - Symbol: "XPT", - Precision: 0, - Type: Currency}, - 963: &Security{ - SecurityId: 963, - Name: "XTS", - Description: "Codes specifically reserved for testing purposes", - Symbol: "XTS", - Precision: 0, - Type: Currency}, - 964: &Security{ - SecurityId: 964, - Name: "XPD", - Description: "Palladium", - Symbol: "XPD", - Precision: 0, - Type: Currency}, - 965: &Security{ - SecurityId: 965, - Name: "XUA", - Description: "ADB Unit of Account", - Symbol: "XUA", - Precision: 0, - Type: Currency}, - 967: &Security{ - SecurityId: 967, - Name: "ZMW", - Description: "Zambian Kwacha", - Symbol: "ZMW", - Precision: 2, - Type: Currency}, - 968: &Security{ - SecurityId: 968, - Name: "SRD", - Description: "Surinam Dollar", - Symbol: "SRD", - Precision: 2, - Type: Currency}, - 969: &Security{ - SecurityId: 969, - Name: "MGA", - Description: "Malagasy Ariary", - Symbol: "MGA", - Precision: 2, - Type: Currency}, - 970: &Security{ - SecurityId: 970, - Name: "COU", - Description: "Unidad de Valor Real", - Symbol: "COU", - Precision: 2, - Type: Currency}, - 971: &Security{ - SecurityId: 971, - Name: "AFN", - Description: "Afghani", - Symbol: "AFN", - Precision: 2, - Type: Currency}, - 972: &Security{ - SecurityId: 972, - Name: "TJS", - Description: "Somoni", - Symbol: "TJS", - Precision: 2, - Type: Currency}, - 973: &Security{ - SecurityId: 973, - Name: "AOA", - Description: "Kwanza", - Symbol: "AOA", - Precision: 2, - Type: Currency}, - 974: &Security{ - SecurityId: 974, - Name: "BYR", - Description: "Belarussian Ruble", - Symbol: "BYR", - Precision: 0, - Type: Currency}, - 975: &Security{ - SecurityId: 975, - Name: "BGN", - Description: "Bulgarian Lev", - Symbol: "BGN", - Precision: 2, - Type: Currency}, - 976: &Security{ - SecurityId: 976, - Name: "CDF", - Description: "Congolese Franc", - Symbol: "CDF", - Precision: 2, - Type: Currency}, - 977: &Security{ - SecurityId: 977, - Name: "BAM", - Description: "Convertible Mark", - Symbol: "BAM", - Precision: 2, - Type: Currency}, - 978: &Security{ - SecurityId: 978, - Name: "EUR", - Description: "Euro", - Symbol: "EUR", - Precision: 2, - Type: Currency}, - 979: &Security{ - SecurityId: 979, - Name: "MXV", - Description: "Mexican Unidad de Inversion (UDI)", - Symbol: "MXV", - Precision: 2, - Type: Currency}, - 980: &Security{ - SecurityId: 980, - Name: "UAH", - Description: "Hryvnia", - Symbol: "UAH", - Precision: 2, - Type: Currency}, - 981: &Security{ - SecurityId: 981, - Name: "GEL", - Description: "Lari", - Symbol: "GEL", - Precision: 2, - Type: Currency}, - 984: &Security{ - SecurityId: 984, - Name: "BOV", - Description: "Mvdol", - Symbol: "BOV", - Precision: 2, - Type: Currency}, - 985: &Security{ - SecurityId: 985, - Name: "PLN", - Description: "Zloty", - Symbol: "PLN", - Precision: 2, - Type: Currency}, - 986: &Security{ - SecurityId: 986, - Name: "BRL", - Description: "Brazilian Real", - Symbol: "BRL", - Precision: 2, - Type: Currency}, - 990: &Security{ - SecurityId: 990, - Name: "CLF", - Description: "Unidad de Fomento", - Symbol: "CLF", - Precision: 4, - Type: Currency}, - 994: &Security{ - SecurityId: 994, - Name: "XSU", - Description: "Sucre", - Symbol: "XSU", - Precision: 0, - Type: Currency}, - 997: &Security{ - SecurityId: 997, - Name: "USN", - Description: "US Dollar (Next day)", - Symbol: "USN", - Precision: 2, - Type: Currency}, - 999: &Security{ - SecurityId: 999, - Name: "XXX", - Description: "The codes assigned for transactions where no currency is involved", - Symbol: "XXX", - Precision: 0, - Type: Currency}, - - // Securities - 1624966094069676: &Security{ - SecurityId: 1624966094069676, - Name: "ABY", - Description: "Abengoa Yield plc", - Symbol: "ABY", - Precision: 5, - Type: Stock, - AlternateId: "G00349103"}, - 1625042602258128: &Security{ - SecurityId: 1625042602258128, - Name: "AYR", - Description: "Aircastle Ltd", - Symbol: "AYR", - Precision: 5, - Type: Stock, - AlternateId: "G0129K104"}, - 1625053303091844: &Security{ - SecurityId: 1625053303091844, - Name: "ALLE", - Description: "Allegion Public Limited Company (PLC)", - Symbol: "ALLE", - Precision: 5, - Type: Stock, - AlternateId: "G0176J109"}, - 1625053282936308: &Security{ - SecurityId: 1625053282936308, - Name: "ALKS", - Description: "Alkermes, PLC", - Symbol: "ALKS", - Precision: 5, - Type: Stock, - AlternateId: "G01767105"}, - 1625053363557984: &Security{ - SecurityId: 1625053363557984, - Name: "AGN", - Description: "Allergan plc", - Symbol: "AGN", - Precision: 5, - Type: Stock, - AlternateId: "G0177J108"}, - 1625129099122860: &Security{ - SecurityId: 1625129099122860, - Name: "DOX", - Description: "Amdocs Ltd", - Symbol: "DOX", - Precision: 5, - Type: Stock, - AlternateId: "G02602103"}, - 1625201267183496: &Security{ - SecurityId: 1625201267183496, - Name: "ANFI", - Description: "Amira Nature Foods Ltd", - Symbol: "ANFI", - Precision: 5, - Type: Stock, - AlternateId: "G0335L102"}, - 1625210296799076: &Security{ - SecurityId: 1625210296799076, - Name: "AMBA", - Description: "Ambarella, Inc.", - Symbol: "AMBA", - Precision: 5, - Type: Stock, - AlternateId: "G037AX101"}, - 1625273299195272: &Security{ - SecurityId: 1625273299195272, - Name: "AON", - Description: "Aon plc (United Kingdom)", - Symbol: "AON", - Precision: 5, - Type: Stock, - AlternateId: "G0408V102"}, - 1625281572983760: &Security{ - SecurityId: 1625281572983760, - Name: "ANDA", - Description: "Andina Acquisition Corp. II", - Symbol: "ANDA", - Precision: 5, - Type: Stock, - AlternateId: "G0441P104"}, - 1625281572984984: &Security{ - SecurityId: 1625281572984984, - Name: "ANDAU", - Description: "Andina Acquisition Corp. II (Units)", - Symbol: "ANDAU", - Precision: 5, - Type: Stock, - AlternateId: "G0441P112"}, - 1625283664105716: &Security{ - SecurityId: 1625283664105716, - Name: "ACGL", - Description: "Arch Capital Group Ltd", - Symbol: "ACGL", - Precision: 5, - Type: Stock, - AlternateId: "G0450A105"}, - 1625286084432444: &Security{ - SecurityId: 1625286084432444, - Name: "AGII", - Description: "Argo Group International Holdings, Ltd.", - Symbol: "AGII", - Precision: 5, - Type: Stock, - AlternateId: "G0464B107"}, - 1625290733609532: &Security{ - SecurityId: 1625290733609532, - Name: "AAPC", - Description: "Atlantic Alliance Partnership Corp.", - Symbol: "AAPC", - Precision: 5, - Type: Stock, - AlternateId: "G04897107"}, - 1625351189707728: &Security{ - SecurityId: 1625351189707728, - Name: "ARWA", - Description: "Arowana, Inc.", - Symbol: "ARWA", - Precision: 5, - Type: Stock, - AlternateId: "G05011104"}, - 1625351189711760: &Security{ - SecurityId: 1625351189711760, - Name: "ARWAU", - Description: "Arowana, Inc. (Units)", - Symbol: "ARWAU", - Precision: 5, - Type: Stock, - AlternateId: "G05011138"}, - 1625357983754520: &Security{ - SecurityId: 1625357983754520, - Name: "APWC", - Description: "Asia Pacific Wire & Cable Corp. Ltd", - Symbol: "APWC", - Precision: 5, - Type: Stock, - AlternateId: "G0535E106"}, - 1625358148356852: &Security{ - SecurityId: 1625358148356852, - Name: "AHL", - Description: "Aspen Insurance Holdings Ltd", - Symbol: "AHL", - Precision: 5, - Type: Stock, - AlternateId: "G05384105"}, - 1625368889501208: &Security{ - SecurityId: 1625368889501208, - Name: "AGO", - Description: "Assured Guaranty Ltd", - Symbol: "AGO", - Precision: 5, - Type: Stock, - AlternateId: "G0585R106"}, - 1625433857049348: &Security{ - SecurityId: 1625433857049348, - Name: "AFH", - Description: "Atlas Financial Holdings Inc.", - Symbol: "AFH", - Precision: 5, - Type: Stock, - AlternateId: "G06207115"}, - 1625434090514640: &Security{ - SecurityId: 1625434090514640, - Name: "TEAM", - Description: "Atlassian Corp. Plc Cl A", - Symbol: "TEAM", - Precision: 5, - Type: Stock, - AlternateId: "G06242104"}, - 1625449254088068: &Security{ - SecurityId: 1625449254088068, - Name: "AXS", - Description: "AXIS Capital Holdings Ltd", - Symbol: "AXS", - Precision: 5, - Type: Stock, - AlternateId: "G0692U109"}, - 1625507978501988: &Security{ - SecurityId: 1625507978501988, - Name: "HELI", - Description: "CHC Group Ltd.", - Symbol: "HELI", - Precision: 5, - Type: Stock, - AlternateId: "G07021101"}, - 1625518759957344: &Security{ - SecurityId: 1625518759957344, - Name: "AXTA", - Description: "Axalta Coating Systems Ltd.", - Symbol: "AXTA", - Precision: 5, - Type: Stock, - AlternateId: "G0750C108"}, - 1625518793549520: &Security{ - SecurityId: 1625518793549520, - Name: "AXON", - Description: "Axovant Sciences Ltd.", - Symbol: "AXON", - Precision: 5, - Type: Stock, - AlternateId: "G0750W104"}, - 1627780903742592: &Security{ - SecurityId: 1627780903742592, - Name: "EXXI", - Description: "Energy XXI Ltd. (Bermuda)", - Symbol: "EXXI", - Precision: 5, - Type: Stock, - AlternateId: "G10082140"}, - 1627869745346148: &Security{ - SecurityId: 1627869745346148, - Name: "ACN", - Description: "Accenture plc", - Symbol: "ACN", - Precision: 5, - Type: Stock, - AlternateId: "G1151C101"}, - 1628111482399620: &Security{ - SecurityId: 1628111482399620, - Name: "MIME", - Description: "Mimecast Ltd.", - Symbol: "MIME", - Precision: 5, - Type: Stock, - AlternateId: "G14838109"}, - 1628255212179516: &Security{ - SecurityId: 1628255212179516, - Name: "BPY", - Description: "Brookfield Property Partners L.P.", - Symbol: "BPY", - Precision: 5, - Type: Stock, - AlternateId: "G16249107"}, - 1628255260888164: &Security{ - SecurityId: 1628255260888164, - Name: "BIP", - Description: "Brookfield Infrastructure Partners L.P.", - Symbol: "BIP", - Precision: 5, - Type: Stock, - AlternateId: "G16252101"}, - 1628255270966112: &Security{ - SecurityId: 1628255270966112, - Name: "BEP", - Description: "Brookfield Renewable Energy Partners L.P.", - Symbol: "BEP", - Precision: 5, - Type: Stock, - AlternateId: "G16258108"}, - 1628270558830836: &Security{ - SecurityId: 1628270558830836, - Name: "BG", - Description: "Bunge Ltd", - Symbol: "BG", - Precision: 5, - Type: Stock, - AlternateId: "G16962105"}, - 1630606466306880: &Security{ - SecurityId: 1630606466306880, - Name: "CNLMU", - Description: "CB Pharma Acquisition Corp. Units", - Symbol: "CNLMU", - Precision: 5, - Type: Stock, - AlternateId: "G2029P100"}, - 1630606466309688: &Security{ - SecurityId: 1630606466309688, - Name: "CNLM", - Description: "CB Pharma Acquisition Corp.", - Symbol: "CNLM", - Precision: 5, - Type: Stock, - AlternateId: "G2029P126"}, - 1630680377809140: &Security{ - SecurityId: 1630680377809140, - Name: "CYD", - Description: "China Yuchai Intl Ltd", - Symbol: "CYD", - Precision: 5, - Type: Stock, - AlternateId: "G21082105"}, - 1630682117891460: &Security{ - SecurityId: 1630682117891460, - Name: "CHNR", - Description: "China Natural Resources, Inc.", - Symbol: "CHNR", - Precision: 5, - Type: Stock, - AlternateId: "G2110U109"}, - 1630682069186412: &Security{ - SecurityId: 1630682069186412, - Name: "CHOPF", - Description: "China Gerui Advanced Materials Group Limited", - Symbol: "CHOPF", - Precision: 5, - Type: Stock, - AlternateId: "G21101137"}, - 1630682304328512: &Security{ - SecurityId: 1630682304328512, - Name: "CCCL", - Description: "China Ceramics Co., Ltd.", - Symbol: "CCCL", - Precision: 5, - Type: Stock, - AlternateId: "G2113X100"}, - 1630682593222536: &Security{ - SecurityId: 1630682593222536, - Name: "CCRC", - Description: "China Customer Relations Centers, Inc.", - Symbol: "CCRC", - Precision: 5, - Type: Stock, - AlternateId: "G2118P102"}, - 1630852284827196: &Security{ - SecurityId: 1630852284827196, - Name: "CWCO", - Description: "Consolidated Water Co. Ltd", - Symbol: "CWCO", - Precision: 5, - Type: Stock, - AlternateId: "G23773107"}, - 1630996125461856: &Security{ - SecurityId: 1630996125461856, - Name: "BAP", - Description: "Credicorp Ltd ADR", - Symbol: "BAP", - Precision: 5, - Type: Stock, - AlternateId: "G2519Y108"}, - 1631074222566864: &Security{ - SecurityId: 1631074222566864, - Name: "CADT", - Description: "DT Asia Investments Ltd", - Symbol: "CADT", - Precision: 5, - Type: Stock, - AlternateId: "G2615J104"}, - 1631074222569312: &Security{ - SecurityId: 1631074222569312, - Name: "CADTU", - Description: "DT Asia Investments Ltd (Units)", - Symbol: "CADTU", - Precision: 5, - Type: Stock, - AlternateId: "G2615J120"}, - 1631150136171072: &Security{ - SecurityId: 1631150136171072, - Name: "DHRM", - Description: "Dehaier Medical Systems Ltd", - Symbol: "DHRM", - Precision: 5, - Type: Stock, - AlternateId: "G27010100"}, - 1631167615935000: &Security{ - SecurityId: 1631167615935000, - Name: "DLPH", - Description: "Delphi Automotive plc", - Symbol: "DLPH", - Precision: 5, - Type: Stock, - AlternateId: "G27823106"}, - 1631231169245280: &Security{ - SecurityId: 1631231169245280, - Name: "EAGLU", - Description: "Double Eagle Acquisition Corp.", - Symbol: "EAGLU", - Precision: 5, - Type: Stock, - AlternateId: "G28195108"}, - 1631309469583788: &Security{ - SecurityId: 1631309469583788, - Name: "ETN", - Description: "Eaton Corp. plc (Ireland)", - Symbol: "ETN", - Precision: 5, - Type: Stock, - AlternateId: "G29183103"}, - 1631311214751360: &Security{ - SecurityId: 1631311214751360, - Name: "ECACU", - Description: "E-compass Acquisition Corp. (Units)", - Symbol: "ECACU", - Precision: 5, - Type: Stock, - AlternateId: "G2920Y200"}, - 1633429722763800: &Security{ - SecurityId: 1633429722763800, - Name: "ENH", - Description: "Endurance Specialty Holdings Ltd", - Symbol: "ENH", - Precision: 5, - Type: Stock, - AlternateId: "G30397106"}, - 1633501323116640: &Security{ - SecurityId: 1633501323116640, - Name: "ELECU", - Description: "Electrum Special Acquisition Corp.", - Symbol: "ELECU", - Precision: 5, - Type: Stock, - AlternateId: "G3105C120"}, - 1633512289327020: &Security{ - SecurityId: 1633512289327020, - Name: "ASA", - Description: "ASA Gold and Precious Metals Ltd", - Symbol: "ASA", - Precision: 5, - Type: Stock, - AlternateId: "G3156P103"}, - 1633512354832152: &Security{ - SecurityId: 1633512354832152, - Name: "ESV", - Description: "Ensco plc", - Symbol: "ESV", - Precision: 5, - Type: Stock, - AlternateId: "G3157S106"}, - 1633514269594320: &Security{ - SecurityId: 1633514269594320, - Name: "CNR", - Description: "China Metro-Rural Holdings Limited", - Symbol: "CNR", - Precision: 5, - Type: Stock, - AlternateId: "G3163G104"}, - 1633514346856548: &Security{ - SecurityId: 1633514346856548, - Name: "CJES", - Description: "C&J Energy Services, Ltd.", - Symbol: "CJES", - Precision: 5, - Type: Stock, - AlternateId: "G3164Q101"}, - 1633521125786760: &Security{ - SecurityId: 1633521125786760, - Name: "ESNT", - Description: "Essent Group Ltd.", - Symbol: "ESNT", - Precision: 5, - Type: Stock, - AlternateId: "G3198U102"}, - 1633583945104992: &Security{ - SecurityId: 1633583945104992, - Name: "RE", - Description: "Everest Re Group Ltd", - Symbol: "RE", - Precision: 5, - Type: Stock, - AlternateId: "G3223R108"}, - 1633662299191104: &Security{ - SecurityId: 1633662299191104, - Name: "FN", - Description: "Fabrinet", - Symbol: "FN", - Precision: 5, - Type: Stock, - AlternateId: "G3323L100"}, - 1633675455623520: &Security{ - SecurityId: 1633675455623520, - Name: "GSM", - Description: "Ferroglobe PLC", - Symbol: "GSM", - Precision: 5, - Type: Stock, - AlternateId: "G33856108"}, - 1633825719109620: &Security{ - SecurityId: 1633825719109620, - Name: "FLTX", - Description: "Fleetmatics Group plc", - Symbol: "FLTX", - Precision: 5, - Type: Stock, - AlternateId: "G35569105"}, - 1633908253760244: &Security{ - SecurityId: 1633908253760244, - Name: "FDP", - Description: "Fresh Del Monte Produce, Inc.", - Symbol: "FDP", - Precision: 5, - Type: Stock, - AlternateId: "G36738105"}, - 1633910380156764: &Security{ - SecurityId: 1633910380156764, - Name: "FRO", - Description: "Frontline Ltd", - Symbol: "FRO", - Precision: 5, - Type: Stock, - AlternateId: "G3682E127"}, - 1633976101848456: &Security{ - SecurityId: 1633976101848456, - Name: "FORK", - Description: "Fuling Global, Inc.", - Symbol: "FORK", - Precision: 5, - Type: Stock, - AlternateId: "G3729B102"}, - 1633982561651844: &Security{ - SecurityId: 1633982561651844, - Name: "GLOG", - Description: "GasLog Ltd", - Symbol: "GLOG", - Precision: 5, - Type: Stock, - AlternateId: "G37585109"}, - 1633989120553440: &Security{ - SecurityId: 1633989120553440, - Name: "EROS", - Description: "Eros International Plc", - Symbol: "EROS", - Precision: 5, - Type: Stock, - AlternateId: "G3788M114"}, - 1634056212813300: &Security{ - SecurityId: 1634056212813300, - Name: "GPRK", - Description: "GeoPark Limited", - Symbol: "GPRK", - Precision: 5, - Type: Stock, - AlternateId: "G38327105"}, - 1634132406913596: &Security{ - SecurityId: 1634132406913596, - Name: "G", - Description: "Genpact Ltd", - Symbol: "G", - Precision: 5, - Type: Stock, - AlternateId: "G3922B107"}, - 1634134444287588: &Security{ - SecurityId: 1634134444287588, - Name: "GSOL", - Description: "Global Sources LTD/ Bermuda", - Symbol: "GSOL", - Precision: 5, - Type: Stock, - AlternateId: "G39300101"}, - 1634134519870308: &Security{ - SecurityId: 1634134519870308, - Name: "GBLI", - Description: "Global Indemnity plc", - Symbol: "GBLI", - Precision: 5, - Type: Stock, - AlternateId: "G39319101"}, - 1634134565221452: &Security{ - SecurityId: 1634134565221452, - Name: "GAI", - Description: "Global-Tech Advanced Innovations, Inc.", - Symbol: "GAI", - Precision: 5, - Type: Stock, - AlternateId: "G39320117"}, - 1634141167790616: &Security{ - SecurityId: 1634141167790616, - Name: "GOGL", - Description: "Golden Ocean Group Ltd.", - Symbol: "GOGL", - Precision: 5, - Type: Stock, - AlternateId: "G39637106"}, - 1636250590809072: &Security{ - SecurityId: 1636250590809072, - Name: "GPIAU", - Description: "GP Investments Acquisition Corp. (Units)", - Symbol: "GPIAU", - Precision: 5, - Type: Stock, - AlternateId: "G40357124"}, - 1636263671656068: &Security{ - SecurityId: 1636263671656068, - Name: "GLRE", - Description: "Greenlight Capital Re Ltd", - Symbol: "GLRE", - Precision: 5, - Type: Stock, - AlternateId: "G4095J109"}, - 1636496775482904: &Security{ - SecurityId: 1636496775482904, - Name: "HELE", - Description: "Helen of Troy Ltd", - Symbol: "HELE", - Precision: 5, - Type: Stock, - AlternateId: "G4388N106"}, - 1636559527616100: &Security{ - SecurityId: 1636559527616100, - Name: "HLF", - Description: "Herbalife Ltd", - Symbol: "HLF", - Precision: 5, - Type: Stock, - AlternateId: "G4412G101"}, - 1636574728141080: &Security{ - SecurityId: 1636574728141080, - Name: "HIHO", - Description: "Highway Holdings Ltd", - Symbol: "HIHO", - Precision: 5, - Type: Stock, - AlternateId: "G4481U106"}, - 1636649002440180: &Security{ - SecurityId: 1636649002440180, - Name: "HOLI", - Description: "Hollysys Automation Technologies Ltd", - Symbol: "HOLI", - Precision: 5, - Type: Stock, - AlternateId: "G45667105"}, - 1636792614646848: &Security{ - SecurityId: 1636792614646848, - Name: "ICLR", - Description: "ICON plc ADR", - Symbol: "ICLR", - Precision: 5, - Type: Stock, - AlternateId: "G4705A100"}, - 1636808078871396: &Security{ - SecurityId: 1636808078871396, - Name: "IR", - Description: "Ingersoll-Rand Co.", - Symbol: "IR", - Precision: 5, - Type: Stock, - AlternateId: "G47791101"}, - 1639065203959356: &Security{ - SecurityId: 1639065203959356, - Name: "JRVR", - Description: "James River Group Holdings, Ltd.", - Symbol: "JRVR", - Precision: 5, - Type: Stock, - AlternateId: "G5005R107"}, - 1639082695480308: &Security{ - SecurityId: 1639082695480308, - Name: "JAZZ", - Description: "Jazz Pharmaceuticals plc", - Symbol: "JAZZ", - Precision: 5, - Type: Stock, - AlternateId: "G50871105"}, - 1639150269791040: &Security{ - SecurityId: 1639150269791040, - Name: "JST", - Description: "Jinpan Intl Ltd", - Symbol: "JST", - Precision: 5, - Type: Stock, - AlternateId: "G5138L100"}, - 1639232984160900: &Security{ - SecurityId: 1639232984160900, - Name: "KING", - Description: "King Digital Entertainment plc", - Symbol: "KING", - Precision: 5, - Type: Stock, - AlternateId: "G5258J109"}, - 1639302446360124: &Security{ - SecurityId: 1639302446360124, - Name: "KOS", - Description: "Kosmos Energy Ltd", - Symbol: "KOS", - Precision: 5, - Type: Stock, - AlternateId: "G5315B107"}, - 1639378615265928: &Security{ - SecurityId: 1639378615265928, - Name: "LAZ", - Description: "Lazard Ltd", - Symbol: "LAZ", - Precision: 5, - Type: Stock, - AlternateId: "G54050102"}, - 1639395777582288: &Security{ - SecurityId: 1639395777582288, - Name: "LBTYA", - Description: "Liberty Global plc (Class A)", - Symbol: "LBTYA", - Precision: 5, - Type: Stock, - AlternateId: "G5480U104"}, - 1639395777583512: &Security{ - SecurityId: 1639395777583512, - Name: "LBTYB", - Description: "Liberty Global plc (Class B)", - Symbol: "LBTYB", - Precision: 5, - Type: Stock, - AlternateId: "G5480U112"}, - 1639395777584736: &Security{ - SecurityId: 1639395777584736, - Name: "LBTYK", - Description: "Liberty Global plc (Class C)", - Symbol: "LBTYK", - Precision: 5, - Type: Stock, - AlternateId: "G5480U120"}, - 1639395777586320: &Security{ - SecurityId: 1639395777586320, - Name: "LILA", - Description: "Liberty Global plc LiLAC Class A", - Symbol: "LILA", - Precision: 5, - Type: Stock, - AlternateId: "G5480U138"}, - 1639395777588732: &Security{ - SecurityId: 1639395777588732, - Name: "LILAK", - Description: "Liberty Global plc LiLAC Class C", - Symbol: "LILAK", - Precision: 5, - Type: Stock, - AlternateId: "G5480U153"}, - 1639457256566628: &Security{ - SecurityId: 1639457256566628, - Name: "LIVN", - Description: "LivaNova PLC", - Symbol: "LIVN", - Precision: 5, - Type: Stock, - AlternateId: "G5509L101"}, - 1639468118643588: &Security{ - SecurityId: 1639468118643588, - Name: "EVAR", - Description: "Lombard Medical, Inc.", - Symbol: "EVAR", - Precision: 5, - Type: Stock, - AlternateId: "G55598109"}, - 1639618197371856: &Security{ - SecurityId: 1639618197371856, - Name: "LXFT", - Description: "Luxoft Holding, Inc.", - Symbol: "LXFT", - Precision: 5, - Type: Stock, - AlternateId: "G57279104"}, - 1639624521127320: &Security{ - SecurityId: 1639624521127320, - Name: "MHLD", - Description: "Maiden Holdings Ltd", - Symbol: "MHLD", - Precision: 5, - Type: Stock, - AlternateId: "G5753U112"}, - 1639631090104344: &Security{ - SecurityId: 1639631090104344, - Name: "MANU", - Description: "Manchester United plc", - Symbol: "MANU", - Precision: 5, - Type: Stock, - AlternateId: "G5784H106"}, - 1639631148890940: &Security{ - SecurityId: 1639631148890940, - Name: "MNK", - Description: "Mallinckrodt plc", - Symbol: "MNK", - Precision: 5, - Type: Stock, - AlternateId: "G5785G107"}, - 1639696380137496: &Security{ - SecurityId: 1639696380137496, - Name: "MRKT", - Description: "Markit Ltd.", - Symbol: "MRKT", - Precision: 5, - Type: Stock, - AlternateId: "G58249106"}, - 1639705228354656: &Security{ - SecurityId: 1639705228354656, - Name: "GGACU", - Description: "Garnero Group Acquisition Co.", - Symbol: "GGACU", - Precision: 5, - Type: Stock, - AlternateId: "G5866L108"}, - 1639705228357104: &Security{ - SecurityId: 1639705228357104, - Name: "GGAC", - Description: "Garnero Group Acquisition Co.", - Symbol: "GGAC", - Precision: 5, - Type: Stock, - AlternateId: "G5866L124"}, - 1639707398418420: &Security{ - SecurityId: 1639707398418420, - Name: "MRVL", - Description: "Marvell Technology Group Ltd", - Symbol: "MRVL", - Precision: 5, - Type: Stock, - AlternateId: "G5876H105"}, - 1639783229721516: &Security{ - SecurityId: 1639783229721516, - Name: "MDT", - Description: "Medtronic plc", - Symbol: "MDT", - Precision: 5, - Type: Stock, - AlternateId: "G5960L103"}, - 1644080276994912: &Security{ - SecurityId: 1644080276994912, - Name: "PGNPF", - Description: "Paragon Offshore plc", - Symbol: "PGNPF", - Precision: 5, - Type: Stock, - AlternateId: "G6S01W108"}, - 1641901512711780: &Security{ - SecurityId: 1641901512711780, - Name: "KORS", - Description: "Michael Kors Holdings Ltd", - Symbol: "KORS", - Precision: 5, - Type: Stock, - AlternateId: "G60754101"}, - 1642127691482064: &Security{ - SecurityId: 1642127691482064, - Name: "AOSL", - Description: "Alpha & Omega Semiconductor Limited", - Symbol: "AOSL", - Precision: 5, - Type: Stock, - AlternateId: "G6331P104"}, - 1642127703239556: &Security{ - SecurityId: 1642127703239556, - Name: "MPSX", - Description: "Multi Packaging Solutions International Ltd.", - Symbol: "MPSX", - Precision: 5, - Type: Stock, - AlternateId: "G6331W109"}, - 1642132511979948: &Security{ - SecurityId: 1642132511979948, - Name: "NBR", - Description: "Nabors Industries Ltd", - Symbol: "NBR", - Precision: 5, - Type: Stock, - AlternateId: "G6359F103"}, - 1642278023832708: &Security{ - SecurityId: 1642278023832708, - Name: "NVET", - Description: "Nexvet Biopharma plc", - Symbol: "NVET", - Precision: 5, - Type: Stock, - AlternateId: "G6503X109"}, - 1642293452785176: &Security{ - SecurityId: 1642293452785176, - Name: "NAT", - Description: "Nordic American Tanker Ltd", - Symbol: "NAT", - Precision: 5, - Type: Stock, - AlternateId: "G65773106"}, - 1642295399459976: &Security{ - SecurityId: 1642295399459976, - Name: "NORD", - Description: "Nord Anglia Education, Inc.", - Symbol: "NORD", - Precision: 5, - Type: Stock, - AlternateId: "G6583A102"}, - 1642358551344804: &Security{ - SecurityId: 1642358551344804, - Name: "NADL", - Description: "North Atlantic Drilling Ltd.", - Symbol: "NADL", - Precision: 5, - Type: Stock, - AlternateId: "G6613P129"}, - 1642371511259088: &Security{ - SecurityId: 1642371511259088, - Name: "NCLH", - Description: "Norwegian Cruise Line Holdings Ltd", - Symbol: "NCLH", - Precision: 5, - Type: Stock, - AlternateId: "G66721104"}, - 1642371680900448: &Security{ - SecurityId: 1642371680900448, - Name: "NVCR", - Description: "NovoCure Ltd.", - Symbol: "NVCR", - Precision: 5, - Type: Stock, - AlternateId: "G6674U108"}, - 1642445409324384: &Security{ - SecurityId: 1642445409324384, - Name: "OMAM", - Description: "OM Asset Management plc", - Symbol: "OMAM", - Precision: 5, - Type: Stock, - AlternateId: "G67506108"}, - 1642449998035332: &Security{ - SecurityId: 1642449998035332, - Name: "OB", - Description: "OneBeacon Insurance Group Ltd", - Symbol: "OB", - Precision: 5, - Type: Stock, - AlternateId: "G67742109"}, - 1642452063962904: &Security{ - SecurityId: 1642452063962904, - Name: "SEED", - Description: "Origin Agritech Ltd", - Symbol: "SEED", - Precision: 5, - Type: Stock, - AlternateId: "G67828106"}, - 1642523933051892: &Security{ - SecurityId: 1642523933051892, - Name: "PRE", - Description: "PartnerRe Ltd", - Symbol: "PRE", - Precision: 5, - Type: Stock, - AlternateId: "G6852T105"}, - 1642524260577012: &Security{ - SecurityId: 1642524260577012, - Name: "PAAC", - Description: "Pacific Special Acquisition Corp.", - Symbol: "PAAC", - Precision: 5, - Type: Stock, - AlternateId: "G68588105"}, - 1642524260581044: &Security{ - SecurityId: 1642524260581044, - Name: "PAACU", - Description: "Pacific Special Acquisition Corp.", - Symbol: "PAACU", - Precision: 5, - Type: Stock, - AlternateId: "G68588139"}, - 1642526281154988: &Security{ - SecurityId: 1642526281154988, - Name: "PACE", - Description: "Pace Holdings Corp.", - Symbol: "PACE", - Precision: 5, - Type: Stock, - AlternateId: "G6865N103"}, - 1642526281157796: &Security{ - SecurityId: 1642526281157796, - Name: "PACEU", - Description: "Pace Holdings Corp. (Units)", - Symbol: "PACEU", - Precision: 5, - Type: Stock, - AlternateId: "G6865N129"}, - 1642532566278132: &Security{ - SecurityId: 1642532566278132, - Name: "PANL", - Description: "Pangaea Logistics Solutions Ltd.", - Symbol: "PANL", - Precision: 5, - Type: Stock, - AlternateId: "G6891L105"}, - 1644787910972808: &Security{ - SecurityId: 1644787910972808, - Name: "PME", - Description: "Pingtan Marine Enterprise Ltd.", - Symbol: "PME", - Precision: 5, - Type: Stock, - AlternateId: "G7114V102"}, - 1644870618623808: &Security{ - SecurityId: 1644870618623808, - Name: "LENS", - Description: "Presbia PLC", - Symbol: "LENS", - Precision: 5, - Type: Stock, - AlternateId: "G7234P100"}, - 1644881218680672: &Security{ - SecurityId: 1644881218680672, - Name: "PRTA", - Description: "Prothena Corporation PLC", - Symbol: "PRTA", - Precision: 5, - Type: Stock, - AlternateId: "G72800108"}, - 1645023048814944: &Security{ - SecurityId: 1645023048814944, - Name: "RCON", - Description: "Recon Technology Ltd", - Symbol: "RCON", - Precision: 5, - Type: Stock, - AlternateId: "G7415M108"}, - 1645040513461932: &Security{ - SecurityId: 1645040513461932, - Name: "RNR", - Description: "RenaissanceRe Holdings Ltd", - Symbol: "RNR", - Precision: 5, - Type: Stock, - AlternateId: "G7496G103"}, - 1645190640899172: &Security{ - SecurityId: 1645190640899172, - Name: "RDC", - Description: "Rowan Companies plc", - Symbol: "RDC", - Precision: 5, - Type: Stock, - AlternateId: "G7665A101"}, - 1645421399982396: &Security{ - SecurityId: 1645421399982396, - Name: "STX", - Description: "Seagate Technology", - Symbol: "STX", - Precision: 5, - Type: Stock, - AlternateId: "G7945M107"}, - 1647606981826584: &Security{ - SecurityId: 1647606981826584, - Name: "SFL", - Description: "Ship Finance Intl Ltd", - Symbol: "SFL", - Precision: 5, - Type: Stock, - AlternateId: "G81075106"}, - 1647611337070656: &Security{ - SecurityId: 1647611337070656, - Name: "SIG", - Description: "Signet Jewelers Ltd", - Symbol: "SIG", - Precision: 5, - Type: Stock, - AlternateId: "G81276100"}, - 1647615692315088: &Security{ - SecurityId: 1647615692315088, - Name: "SINA", - Description: "SINA.com", - Symbol: "SINA", - Precision: 5, - Type: Stock, - AlternateId: "G81477104"}, - 1647857321872884: &Security{ - SecurityId: 1647857321872884, - Name: "DELT", - Description: "Delta Technology Holdings Ltd.", - Symbol: "DELT", - Precision: 5, - Type: Stock, - AlternateId: "G8477B105"}, - 1647926790790644: &Security{ - SecurityId: 1647926790790644, - Name: "SBBP", - Description: "Strongbridge Biopharma plc", - Symbol: "SBBP", - Precision: 5, - Type: Stock, - AlternateId: "G85347105"}, - 1648013966220348: &Security{ - SecurityId: 1648013966220348, - Name: "TANH", - Description: "Tantech Holdings Ltd.", - Symbol: "TANH", - Precision: 5, - Type: Stock, - AlternateId: "G8675X107"}, - 1648081149180588: &Security{ - SecurityId: 1648081149180588, - Name: "UTIW", - Description: "UTi Worldwide, Inc.", - Symbol: "UTIW", - Precision: 5, - Type: Stock, - AlternateId: "G87210103"}, - 1648081458229824: &Security{ - SecurityId: 1648081458229824, - Name: "TGLS", - Description: "Tecnoglass, Inc.", - Symbol: "TGLS", - Precision: 5, - Type: Stock, - AlternateId: "G87264100"}, - 1648090182155652: &Security{ - SecurityId: 1648090182155652, - Name: "TGH", - Description: "Textainer Group Holdings Ltd", - Symbol: "TGH", - Precision: 5, - Type: Stock, - AlternateId: "G8766E109"}, - 1648094727196512: &Security{ - SecurityId: 1648094727196512, - Name: "ABIL", - Description: "Ability, Inc.", - Symbol: "ABIL", - Precision: 5, - Type: Stock, - AlternateId: "G8789K108"}, - 1648155541052952: &Security{ - SecurityId: 1648155541052952, - Name: "TBPH", - Description: "Theravance Biopharma, Inc.", - Symbol: "TBPH", - Precision: 5, - Type: Stock, - AlternateId: "G8807B106"}, - 1648159926530112: &Security{ - SecurityId: 1648159926530112, - Name: "TPRE", - Description: "Third Point Reinsurance Ltd.", - Symbol: "TPRE", - Precision: 5, - Type: Stock, - AlternateId: "G8827U100"}, - 1648170662635836: &Security{ - SecurityId: 1648170662635836, - Name: "TIL", - Description: "Till Capital Ltd.", - Symbol: "TIL", - Precision: 5, - Type: Stock, - AlternateId: "G8875E107"}, - 1648253541608892: &Security{ - SecurityId: 1648253541608892, - Name: "TAT", - Description: "TransAtlantic Petroleum Ltd", - Symbol: "TAT", - Precision: 5, - Type: Stock, - AlternateId: "G89982113"}, - 1650352038721488: &Security{ - SecurityId: 1650352038721488, - Name: "TVPT", - Description: "Travelport Worldwide Ltd.", - Symbol: "TVPT", - Precision: 5, - Type: Stock, - AlternateId: "G9019D104"}, - 1650428179074144: &Security{ - SecurityId: 1650428179074144, - Name: "TNP", - Description: "Tsakos Energy Navigation Ltd", - Symbol: "TNP", - Precision: 5, - Type: Stock, - AlternateId: "G9108L108"}, - 1650587137932168: &Security{ - SecurityId: 1650587137932168, - Name: "VR", - Description: "Validus Holdings Ltd", - Symbol: "VR", - Precision: 5, - Type: Stock, - AlternateId: "G9319H102"}, - 1650674016069696: &Security{ - SecurityId: 1650674016069696, - Name: "GLNG", - Description: "Golar LNG Ltd", - Symbol: "GLNG", - Precision: 5, - Type: Stock, - AlternateId: "G9456A100"}, - 1650822164919612: &Security{ - SecurityId: 1650822164919612, - Name: "WTM", - Description: "White Mountains Insurance Group, Ltd.", - Symbol: "WTM", - Precision: 5, - Type: Stock, - AlternateId: "G9618E107"}, - 1650832914461940: &Security{ - SecurityId: 1650832914461940, - Name: "WLTW", - Description: "Willis Towers Watson PLC", - Symbol: "WLTW", - Precision: 5, - Type: Stock, - AlternateId: "G96666105"}, - 1650902324593104: &Security{ - SecurityId: 1650902324593104, - Name: "WINS", - Description: "Wins Financial Group Ltd.", - Symbol: "WINS", - Precision: 5, - Type: Stock, - AlternateId: "G97223104"}, - 1650981106981512: &Security{ - SecurityId: 1650981106981512, - Name: "XL", - Description: "XL Group plc", - Symbol: "XL", - Precision: 5, - Type: Stock, - AlternateId: "G98290102"}, - 1650993877103436: &Security{ - SecurityId: 1650993877103436, - Name: "YECO", - Description: "Yulong Eco-Materials Ltd.", - Symbol: "YECO", - Precision: 5, - Type: Stock, - AlternateId: "G98847117"}, - 1726608694563792: &Security{ - SecurityId: 1726608694563792, - Name: "AWH", - Description: "Allied World Assurance Company Holdings, Ltd", - Symbol: "AWH", - Precision: 5, - Type: Stock, - AlternateId: "H01531104"}, - 1726765678193508: &Security{ - SecurityId: 1726765678193508, - Name: "EARS", - Description: "Auris Medical Holding AG", - Symbol: "EARS", - Precision: 5, - Type: Stock, - AlternateId: "H03579101"}, - 1740633701525496: &Security{ - SecurityId: 1740633701525496, - Name: "LOGI", - Description: "Logitech International SA", - Symbol: "LOGI", - Precision: 5, - Type: Stock, - AlternateId: "H50430232"}, - 1749415158865728: &Security{ - SecurityId: 1749415158865728, - Name: "TCPI", - Description: "TCP International Holdings Ltd.", - Symbol: "TCPI", - Precision: 5, - Type: Stock, - AlternateId: "H84689100"}, - 1749717684581184: &Security{ - SecurityId: 1749717684581184, - Name: "RIG", - Description: "Transocean, Ltd", - Symbol: "RIG", - Precision: 5, - Type: Stock, - AlternateId: "H8817H100"}, - 2132776761323544: &Security{ - SecurityId: 2132776761323544, - Name: "AGRO", - Description: "Adecoagro S.A.", - Symbol: "AGRO", - Precision: 5, - Type: Stock, - AlternateId: "L00849106"}, - 2132853025967568: &Security{ - SecurityId: 2132853025967568, - Name: "ASPS", - Description: "Altisource Portfolio Solutions S.A.", - Symbol: "ASPS", - Precision: 5, - Type: Stock, - AlternateId: "L0175J104"}, - 2132994325352400: &Security{ - SecurityId: 2132994325352400, - Name: "MTCN", - Description: "ArcelorMittal, 6.00% Mandatorily Convertible Subordinated Notes due 1/15/2016", - Symbol: "MTCN", - Precision: 5, - Type: Stock, - AlternateId: "L0302D178"}, - 2133077358839796: &Security{ - SecurityId: 2133077358839796, - Name: "ATTO", - Description: "Atento S.A.", - Symbol: "ATTO", - Precision: 5, - Type: Stock, - AlternateId: "L0427L105"}, - 2144364008844420: &Security{ - SecurityId: 2144364008844420, - Name: "GLOB", - Description: "Globant S.A.", - Symbol: "GLOB", - Precision: 5, - Type: Stock, - AlternateId: "L44385109"}, - 2146951752904548: &Security{ - SecurityId: 2146951752904548, - Name: "I", - Description: "Intelsat S.A.", - Symbol: "I", - Precision: 5, - Type: Stock, - AlternateId: "L5140P101"}, - 2146951752906132: &Security{ - SecurityId: 2146951752906132, - Name: "I-A", - Description: "Intelsat S.A., 5.75% Series A Mandatory Convertible Junior Preferred Shares", - Symbol: "I-A", - Precision: 5, - Type: Stock, - AlternateId: "L5140P119"}, - 2152674936929304: &Security{ - SecurityId: 2152674936929304, - Name: "PACD", - Description: "Pacific Drilling S.A.", - Symbol: "PACD", - Precision: 5, - Type: Stock, - AlternateId: "L7257P106"}, - 2152683553359492: &Security{ - SecurityId: 2152683553359492, - Name: "OEC", - Description: "Orion Engineered Carbons S.A.", - Symbol: "OEC", - Precision: 5, - Type: Stock, - AlternateId: "L72967109"}, - 2158392920862564: &Security{ - SecurityId: 2158392920862564, - Name: "TSE", - Description: "Trinseo S.A.", - Symbol: "TSE", - Precision: 5, - Type: Stock, - AlternateId: "L9340P101"}, - 2237538753050832: &Security{ - SecurityId: 2237538753050832, - Name: "AUDC", - Description: "AudioCodes Ltd", - Symbol: "AUDC", - Precision: 5, - Type: Stock, - AlternateId: "M15342104"}, - 2237545174222800: &Security{ - SecurityId: 2237545174222800, - Name: "BCOM", - Description: "B Communications Ltd", - Symbol: "BCOM", - Precision: 5, - Type: Stock, - AlternateId: "M15629104"}, - 2239963755757668: &Security{ - SecurityId: 2239963755757668, - Name: "ORPN", - Description: "Bio Blast Pharma Ltd.", - Symbol: "ORPN", - Precision: 5, - Type: Stock, - AlternateId: "M20156101"}, - 2239977049918452: &Security{ - SecurityId: 2239977049918452, - Name: "CAMT", - Description: "Camtek Ltd", - Symbol: "CAMT", - Precision: 5, - Type: Stock, - AlternateId: "M20791105"}, - 2240059634957700: &Security{ - SecurityId: 2240059634957700, - Name: "CEL", - Description: "Cellcom Israel, Ltd.", - Symbol: "CEL", - Precision: 5, - Type: Stock, - AlternateId: "M2196U109"}, - 2240118060400008: &Security{ - SecurityId: 2240118060400008, - Name: "CRNT", - Description: "Ceragon Networks Ltd", - Symbol: "CRNT", - Precision: 5, - Type: Stock, - AlternateId: "M22013102"}, - 2240125111428228: &Security{ - SecurityId: 2240125111428228, - Name: "ADHD", - Description: "Alcobra Ltd.", - Symbol: "ADHD", - Precision: 5, - Type: Stock, - AlternateId: "M2239P109"}, - 2240127073219536: &Security{ - SecurityId: 2240127073219536, - Name: "CHKP", - Description: "Check Point Software Technologies Ltd", - Symbol: "CHKP", - Precision: 5, - Type: Stock, - AlternateId: "M22465104"}, - 2240209503735192: &Security{ - SecurityId: 2240209503735192, - Name: "CHEK", - Description: "Check-Cap Ltd.", - Symbol: "CHEK", - Precision: 5, - Type: Stock, - AlternateId: "M2361E112"}, - 2240368449155316: &Security{ - SecurityId: 2240368449155316, - Name: "CGEN", - Description: "Compugen Ltd", - Symbol: "CGEN", - Precision: 5, - Type: Stock, - AlternateId: "M25722105"}, - 2240449038810720: &Security{ - SecurityId: 2240449038810720, - Name: "CYBR", - Description: "CyberArk Software Ltd.", - Symbol: "CYBR", - Precision: 5, - Type: Stock, - AlternateId: "M2682V108"}, - 2243344008151908: &Security{ - SecurityId: 2243344008151908, - Name: "ESLT", - Description: "Elbit Systems Ltd", - Symbol: "ESLT", - Precision: 5, - Type: Stock, - AlternateId: "M3760D101"}, - 2245606153612164: &Security{ - SecurityId: 2245606153612164, - Name: "ELTK", - Description: "Eltek Ltd", - Symbol: "ELTK", - Precision: 5, - Type: Stock, - AlternateId: "M40184109"}, - 2245614949760868: &Security{ - SecurityId: 2245614949760868, - Name: "ENZY", - Description: "Enzymotec Ltd.", - Symbol: "ENZY", - Precision: 5, - Type: Stock, - AlternateId: "M4059L101"}, - 2245684618553040: &Security{ - SecurityId: 2245684618553040, - Name: "EVGN", - Description: "Evogene Ltd.", - Symbol: "EVGN", - Precision: 5, - Type: Stock, - AlternateId: "M4119S104"}, - 2245690977579360: &Security{ - SecurityId: 2245690977579360, - Name: "EZCH", - Description: "EZchip Semiconductor", - Symbol: "EZCH", - Precision: 5, - Type: Stock, - AlternateId: "M4146Y108"}, - 2246076037945332: &Security{ - SecurityId: 2246076037945332, - Name: "FOMX", - Description: "Foamix Pharmaceuticals Ltd.", - Symbol: "FOMX", - Precision: 5, - Type: Stock, - AlternateId: "M46135105"}, - 2246156583930648: &Security{ - SecurityId: 2246156583930648, - Name: "GLMD", - Description: "Galmed Pharmaceuticals Ltd.", - Symbol: "GLMD", - Precision: 5, - Type: Stock, - AlternateId: "M47238106"}, - 2246171828125320: &Security{ - SecurityId: 2246171828125320, - Name: "GZT", - Description: "Gazit-Globe Ltd", - Symbol: "GZT", - Precision: 5, - Type: Stock, - AlternateId: "M4793C102"}, - 2248512097565808: &Security{ - SecurityId: 2248512097565808, - Name: "GILT", - Description: "Gilat Satellite Networks Ltd", - Symbol: "GILT", - Precision: 5, - Type: Stock, - AlternateId: "M51474118"}, - 2248592334500268: &Security{ - SecurityId: 2248592334500268, - Name: "WILC", - Description: "G. Willi-Food Intl Ltd", - Symbol: "WILC", - Precision: 5, - Type: Stock, - AlternateId: "M52523103"}, - 2248906217779260: &Security{ - SecurityId: 2248906217779260, - Name: "IGLD", - Description: "Internet Gold Golden Lines Ltd", - Symbol: "IGLD", - Precision: 5, - Type: Stock, - AlternateId: "M56595107"}, - 2251335474953424: &Security{ - SecurityId: 2251335474953424, - Name: "ITRN", - Description: "Ituran Location and Control Ltd", - Symbol: "ITRN", - Precision: 5, - Type: Stock, - AlternateId: "M6158M104"}, - 2251411190363268: &Security{ - SecurityId: 2251411190363268, - Name: "KMDA", - Description: "Kamada Ltd.", - Symbol: "KMDA", - Precision: 5, - Type: Stock, - AlternateId: "M6240T109"}, - 2251496200768956: &Security{ - SecurityId: 2251496200768956, - Name: "KRNT", - Description: "Kornit Digital Ltd", - Symbol: "KRNT", - Precision: 5, - Type: Stock, - AlternateId: "M6372Q113"}, - 2251812054236112: &Security{ - SecurityId: 2251812054236112, - Name: "MAGS", - Description: "Magal Security Systems Ltd", - Symbol: "MAGS", - Precision: 5, - Type: Stock, - AlternateId: "M6786D104"}, - 2251812116381796: &Security{ - SecurityId: 2251812116381796, - Name: "CALL", - Description: "magicJack VocalTec Ltd", - Symbol: "CALL", - Precision: 5, - Type: Stock, - AlternateId: "M6787E101"}, - 2251812096226620: &Security{ - SecurityId: 2251812096226620, - Name: "MCUR", - Description: "MacroCure Ltd.", - Symbol: "MCUR", - Precision: 5, - Type: Stock, - AlternateId: "M67872107"}, - 2251890215166672: &Security{ - SecurityId: 2251890215166672, - Name: "MDWD", - Description: "MediWound Ltd.", - Symbol: "MDWD", - Precision: 5, - Type: Stock, - AlternateId: "M68830104"}, - 2251964477711160: &Security{ - SecurityId: 2251964477711160, - Name: "MTSL", - Description: "MER Telemanagement Solutions Ltd", - Symbol: "MTSL", - Precision: 5, - Type: Stock, - AlternateId: "M69676126"}, - 2254071411533448: &Security{ - SecurityId: 2254071411533448, - Name: "MNDO", - Description: "MIND C.T.I. Ltd", - Symbol: "MNDO", - Precision: 5, - Type: Stock, - AlternateId: "M70240102"}, - 2254384809403452: &Security{ - SecurityId: 2254384809403452, - Name: "NDRM", - Description: "NeuroDerm Ltd.", - Symbol: "NDRM", - Precision: 5, - Type: Stock, - AlternateId: "M74231107"}, - 2254461210096300: &Security{ - SecurityId: 2254461210096300, - Name: "NVMI", - Description: "Nova Measuring Instruments Ltd", - Symbol: "NVMI", - Precision: 5, - Type: Stock, - AlternateId: "M7516K103"}, - 2254463297858880: &Security{ - SecurityId: 2254463297858880, - Name: "ORBK", - Description: "Orbotech Ltd", - Symbol: "ORBK", - Precision: 5, - Type: Stock, - AlternateId: "M75253100"}, - 2254707218413080: &Security{ - SecurityId: 2254707218413080, - Name: "PERI", - Description: "Perion Network Ltd", - Symbol: "PERI", - Precision: 5, - Type: Stock, - AlternateId: "M78673106"}, - 2254781212216272: &Security{ - SecurityId: 2254781212216272, - Name: "PNTR", - Description: "Pointer Telocation Ltd.", - Symbol: "PNTR", - Precision: 5, - Type: Stock, - AlternateId: "M7946T104"}, - 2256983927823240: &Security{ - SecurityId: 2256983927823240, - Name: "RRM", - Description: "RR Media Ltd.", - Symbol: "RRM", - Precision: 5, - Type: Stock, - AlternateId: "M8183P102"}, - 2256984072271656: &Security{ - SecurityId: 2256984072271656, - Name: "RADA", - Description: "RADA Electronic Industries Ltd", - Symbol: "RADA", - Precision: 5, - Type: Stock, - AlternateId: "M81863116"}, - 2256984075630708: &Security{ - SecurityId: 2256984075630708, - Name: "RDCM", - Description: "RADCOM Ltd", - Symbol: "RDCM", - Precision: 5, - Type: Stock, - AlternateId: "M81865111"}, - 2256984132736572: &Security{ - SecurityId: 2256984132736572, - Name: "RDWR", - Description: "RADWARE Ltd", - Symbol: "RDWR", - Precision: 5, - Type: Stock, - AlternateId: "M81873107"}, - 2257047177124176: &Security{ - SecurityId: 2257047177124176, - Name: "RITT", - Description: "RIT Technologies Ltd", - Symbol: "RITT", - Precision: 5, - Type: Stock, - AlternateId: "M8215Q110"}, - 2257047237589092: &Security{ - SecurityId: 2257047237589092, - Name: "RWLK", - Description: "ReWalk Robotics Ltd.", - Symbol: "RWLK", - Precision: 5, - Type: Stock, - AlternateId: "M8216Q101"}, - 2257047319893048: &Security{ - SecurityId: 2257047319893048, - Name: "ROSG", - Description: "Rosetta Genomics Ltd", - Symbol: "ROSG", - Precision: 5, - Type: Stock, - AlternateId: "M82183126"}, - 2257203629994336: &Security{ - SecurityId: 2257203629994336, - Name: "SILC", - Description: "Silicom Ltd", - Symbol: "SILC", - Precision: 5, - Type: Stock, - AlternateId: "M84116108"}, - 2257221094641324: &Security{ - SecurityId: 2257221094641324, - Name: "STDY", - Description: "SteadyMed Ltd.", - Symbol: "STDY", - Precision: 5, - Type: Stock, - AlternateId: "M84920103"}, - 2257290886045284: &Security{ - SecurityId: 2257290886045284, - Name: "SSYS", - Description: "Stratasys Ltd.", - Symbol: "SSYS", - Precision: 5, - Type: Stock, - AlternateId: "M85548101"}, - 2257441078987656: &Security{ - SecurityId: 2257441078987656, - Name: "ELOS", - Description: "Syneron Medical Ltd", - Symbol: "ELOS", - Precision: 5, - Type: Stock, - AlternateId: "M87245102"}, - 2257443452285280: &Security{ - SecurityId: 2257443452285280, - Name: "TARO", - Description: "Taro Pharmaceutical Industries Ltd", - Symbol: "TARO", - Precision: 5, - Type: Stock, - AlternateId: "M8737E108"}, - 2257445229368220: &Security{ - SecurityId: 2257445229368220, - Name: "TATT", - Description: "TAT Technologies Ltd", - Symbol: "TATT", - Precision: 5, - Type: Stock, - AlternateId: "M8740S227"}, - 2257454443692168: &Security{ - SecurityId: 2257454443692168, - Name: "TISA", - Description: "Top Image Systems Ltd", - Symbol: "TISA", - Precision: 5, - Type: Stock, - AlternateId: "M87896102"}, - 2257456143463812: &Security{ - SecurityId: 2257456143463812, - Name: "OTIV", - Description: "On Track Innovations Ltd.", - Symbol: "OTIV", - Precision: 5, - Type: Stock, - AlternateId: "M8791A109"}, - 2259722603857140: &Security{ - SecurityId: 2259722603857140, - Name: "SODA", - Description: "SodaStream Intl Ltd", - Symbol: "SODA", - Precision: 5, - Type: Stock, - AlternateId: "M9068E105"}, - 2260197123930756: &Security{ - SecurityId: 2260197123930756, - Name: "VBLT", - Description: "Vascular Biogenics Ltd.", - Symbol: "VBLT", - Precision: 5, - Type: Stock, - AlternateId: "M96883109"}, - 2260336325465844: &Security{ - SecurityId: 2260336325465844, - Name: "WIX", - Description: "Wix.com Ltd.", - Symbol: "WIX", - Precision: 5, - Type: Stock, - AlternateId: "M98068105"}, - 2335899086588952: &Security{ - SecurityId: 2335899086588952, - Name: "AER", - Description: "AerCap Holdings N.V.", - Symbol: "AER", - Precision: 5, - Type: Stock, - AlternateId: "N00985106"}, - 2335957617847392: &Security{ - SecurityId: 2335957617847392, - Name: "AFMD", - Description: "Affimed N.V.", - Symbol: "AFMD", - Precision: 5, - Type: Stock, - AlternateId: "N01045108"}, - 2336445149905908: &Security{ - SecurityId: 2336445149905908, - Name: "AVG", - Description: "AVG Technologies N.V.", - Symbol: "AVG", - Precision: 5, - Type: Stock, - AlternateId: "N07831105"}, - 2341523651959908: &Security{ - SecurityId: 2341523651959908, - Name: "CMPR", - Description: "Cimpress NV", - Symbol: "CMPR", - Precision: 5, - Type: Stock, - AlternateId: "N20146101"}, - 2341541067898248: &Security{ - SecurityId: 2341541067898248, - Name: "CNV", - Description: "Cnova N.V.", - Symbol: "CNV", - Precision: 5, - Type: Stock, - AlternateId: "N20947102"}, - 2341678141360080: &Security{ - SecurityId: 2341678141360080, - Name: "CSTM", - Description: "Constellium N.V.", - Symbol: "CSTM", - Precision: 5, - Type: Stock, - AlternateId: "N22035104"}, - 2341693261263420: &Security{ - SecurityId: 2341693261263420, - Name: "CLB", - Description: "Core Laboratories N.V.", - Symbol: "CLB", - Precision: 5, - Type: Stock, - AlternateId: "N22717107"}, - 2344436129618568: &Security{ - SecurityId: 2344436129618568, - Name: "FCAU", - Description: "Fiat Chrysler Automobiles N.V.", - Symbol: "FCAU", - Precision: 5, - Type: Stock, - AlternateId: "N31738102"}, - 2344436129619792: &Security{ - SecurityId: 2344436129619792, - Name: "FCAM", - Description: "Fiat Chrysler Automobiles N.V., 7.875% Mandatory Convertible Securities due 2016", - Symbol: "FCAM", - Precision: 5, - Type: Stock, - AlternateId: "N31738110"}, - 2344586498920764: &Security{ - SecurityId: 2344586498920764, - Name: "FI", - Description: "Frank's International N.V.", - Symbol: "FI", - Precision: 5, - Type: Stock, - AlternateId: "N33462107"}, - 2347716784143492: &Security{ - SecurityId: 2347716784143492, - Name: "INXN", - Description: "InterXion Holding N.V.", - Symbol: "INXN", - Precision: 5, - Type: Stock, - AlternateId: "N47279109"}, - 2350072121418828: &Security{ - SecurityId: 2350072121418828, - Name: "MBLY", - Description: "Mobileye N.V.", - Symbol: "MBLY", - Precision: 5, - Type: Stock, - AlternateId: "N51488117"}, - 2350235133188928: &Security{ - SecurityId: 2350235133188928, - Name: "LYB", - Description: "LyondellBasell Industries N.V. Class A", - Symbol: "LYB", - Precision: 5, - Type: Stock, - AlternateId: "N53745100"}, - 2350698908759172: &Security{ - SecurityId: 2350698908759172, - Name: "MYL", - Description: "Mylan N.V.", - Symbol: "MYL", - Precision: 5, - Type: Stock, - AlternateId: "N59465109"}, - 2353217492951172: &Security{ - SecurityId: 2353217492951172, - Name: "NXPI", - Description: "NXP Semiconductors N.V.", - Symbol: "NXPI", - Precision: 5, - Type: Stock, - AlternateId: "N6596X109"}, - 2353363438144392: &Security{ - SecurityId: 2353363438144392, - Name: "OFIX", - Description: "Orthofix Intl N.V.", - Symbol: "OFIX", - Precision: 5, - Type: Stock, - AlternateId: "N6748L102"}, - 2355716266072452: &Security{ - SecurityId: 2355716266072452, - Name: "PRQR", - Description: "ProQR Therapeutics B.V.", - Symbol: "PRQR", - Precision: 5, - Type: Stock, - AlternateId: "N71542109"}, - 2356332226609176: &Security{ - SecurityId: 2356332226609176, - Name: "ST", - Description: "Sensata Technologies Holding N.V.", - Symbol: "ST", - Precision: 5, - Type: Stock, - AlternateId: "N7902X106"}, - 2361269362102884: &Security{ - SecurityId: 2361269362102884, - Name: "QURE", - Description: "uniQure N.V.", - Symbol: "QURE", - Precision: 5, - Type: Stock, - AlternateId: "N90064101"}, - 2361752310490992: &Security{ - SecurityId: 2361752310490992, - Name: "WMGI", - Description: "Wright Medical Group N.V.", - Symbol: "WMGI", - Precision: 5, - Type: Stock, - AlternateId: "N96617118"}, - 2361822385748832: &Security{ - SecurityId: 2361822385748832, - Name: "YNDX", - Description: "Yandex N.V.", - Symbol: "YNDX", - Precision: 5, - Type: Stock, - AlternateId: "N97284108"}, - 2547541043984628: &Security{ - SecurityId: 2547541043984628, - Name: "CPA", - Description: "Copa Holdings S.A.", - Symbol: "CPA", - Precision: 5, - Type: Stock, - AlternateId: "P31076105"}, - 2562057988587216: &Security{ - SecurityId: 2562057988587216, - Name: "SINX", - Description: "Sionix Corp.", - Symbol: "SINX", - Precision: 5, - Type: Stock, - AlternateId: "P8696W104"}, - 2660554920255696: &Security{ - SecurityId: 2660554920255696, - Name: "PARN", - Description: "Parnell Pharmaceuticals Holdings Ltd.", - Symbol: "PARN", - Precision: 5, - Type: Stock, - AlternateId: "Q73622104"}, - 2666112475666788: &Security{ - SecurityId: 2666112475666788, - Name: "TROX", - Description: "Tronox Ltd", - Symbol: "TROX", - Precision: 5, - Type: Stock, - AlternateId: "Q9235V101"}, - 3162941156782980: &Security{ - SecurityId: 3162941156782980, - Name: "MMYT", - Description: "MakeMyTrip Limited", - Symbol: "MMYT", - Precision: 5, - Type: Stock, - AlternateId: "V5633W109"}, - 3168672438236076: &Security{ - SecurityId: 3168672438236076, - Name: "RCL", - Description: "Royal Caribbean Cruises Ltd", - Symbol: "RCL", - Precision: 5, - Type: Stock, - AlternateId: "V7780T103"}, - 3453041173847688: &Security{ - SecurityId: 3453041173847688, - Name: "ANW", - Description: "Aegean Marine Petroleum Network, Inc.", - Symbol: "ANW", - Precision: 5, - Type: Stock, - AlternateId: "Y0017S102"}, - 3453195727073088: &Security{ - SecurityId: 3453195727073088, - Name: "ASC", - Description: "Ardmore Shipping Corp.", - Symbol: "ASC", - Precision: 5, - Type: Stock, - AlternateId: "Y0207T100"}, - 3453369807514320: &Security{ - SecurityId: 3453369807514320, - Name: "AVGO", - Description: "Avago Technologies Ltd", - Symbol: "AVGO", - Precision: 5, - Type: Stock, - AlternateId: "Y0486S104"}, - 3453757296605064: &Security{ - SecurityId: 3453757296605064, - Name: "TEUFF", - Description: "Box Ships, Inc.", - Symbol: "TEUFF", - Precision: 5, - Type: Stock, - AlternateId: "Y09675102"}, - 3455938487933244: &Security{ - SecurityId: 3455938487933244, - Name: "CPLP", - Description: "Capital Product Partners, L.P.", - Symbol: "CPLP", - Precision: 5, - Type: Stock, - AlternateId: "Y11082107"}, - 3456423510645384: &Security{ - SecurityId: 3456423510645384, - Name: "CMRE", - Description: "Costamare, Inc.", - Symbol: "CMRE", - Precision: 5, - Type: Stock, - AlternateId: "Y1771G102"}, - 3456578500571124: &Security{ - SecurityId: 3456578500571124, - Name: "DAC", - Description: "Danaos Corp.", - Symbol: "DAC", - Precision: 5, - Type: Stock, - AlternateId: "Y1968P105"}, - 3458694136489092: &Security{ - SecurityId: 3458694136489092, - Name: "DHT", - Description: "DHT Holdings, Inc.", - Symbol: "DHT", - Precision: 5, - Type: Stock, - AlternateId: "Y2065G121"}, - 3458694196952784: &Security{ - SecurityId: 3458694196952784, - Name: "DSX", - Description: "Diana Shipping, Inc.", - Symbol: "DSX", - Precision: 5, - Type: Stock, - AlternateId: "Y2066G104"}, - 3458694393467748: &Security{ - SecurityId: 3458694393467748, - Name: "DCIX", - Description: "Diana Containerships, Inc.", - Symbol: "DCIX", - Precision: 5, - Type: Stock, - AlternateId: "Y2069P101"}, - 3458759698617444: &Security{ - SecurityId: 3458759698617444, - Name: "DRYS", - Description: "Dryships, Inc.", - Symbol: "DRYS", - Precision: 5, - Type: Stock, - AlternateId: "Y2109Q101"}, - 3458776965072732: &Security{ - SecurityId: 3458776965072732, - Name: "EGLE", - Description: "Eagle Bulk Shipping, Inc.", - Symbol: "EGLE", - Precision: 5, - Type: Stock, - AlternateId: "Y2187A127"}, - 3458927270640132: &Security{ - SecurityId: 3458927270640132, - Name: "ESEA", - Description: "Euroseas Ltd.", - Symbol: "ESEA", - Precision: 5, - Type: Stock, - AlternateId: "Y23592309"}, - 3459088011477384: &Security{ - SecurityId: 3459088011477384, - Name: "FLEX", - Description: "Flextronics Intl Ltd", - Symbol: "FLEX", - Precision: 5, - Type: Stock, - AlternateId: "Y2573F102"}, - 3459168822842208: &Security{ - SecurityId: 3459168822842208, - Name: "GLOP", - Description: "GasLog Partners LP", - Symbol: "GLOP", - Precision: 5, - Type: Stock, - AlternateId: "Y2687W108"}, - 3459168844677216: &Security{ - SecurityId: 3459168844677216, - Name: "GNRT", - Description: "Gener8 Maritime, Inc.", - Symbol: "GNRT", - Precision: 5, - Type: Stock, - AlternateId: "Y26889108"}, - 3459231590093208: &Security{ - SecurityId: 3459231590093208, - Name: "GIGM", - Description: "GigaMedia Ltd", - Symbol: "GIGM", - Precision: 5, - Type: Stock, - AlternateId: "Y2711Y112"}, - 3459231961287156: &Security{ - SecurityId: 3459231961287156, - Name: "GSL", - Description: "Global Ship Lease, Inc.", - Symbol: "GSL", - Precision: 5, - Type: Stock, - AlternateId: "Y27183105"}, - 3459238325352072: &Security{ - SecurityId: 3459238325352072, - Name: "GMLP", - Description: "Golar LNG Partners L.P.", - Symbol: "GMLP", - Precision: 5, - Type: Stock, - AlternateId: "Y2745C102"}, - 3461671811799360: &Security{ - SecurityId: 3461671811799360, - Name: "HMLP", - Description: "Hoegh LNG Partners LP", - Symbol: "HMLP", - Precision: 5, - Type: Stock, - AlternateId: "Y3262R100"}, - 3464808461087292: &Security{ - SecurityId: 3464808461087292, - Name: "KEN", - Description: "Kenon Holdings Ltd.", - Symbol: "KEN", - Precision: 5, - Type: Stock, - AlternateId: "Y46717107"}, - 3464952185828196: &Security{ - SecurityId: 3464952185828196, - Name: "KNOP", - Description: "KNOT Offshore Partners L.P.", - Symbol: "KNOP", - Precision: 5, - Type: Stock, - AlternateId: "Y48125101"}, - 3470124276086112: &Security{ - SecurityId: 3470124276086112, - Name: "NVGS", - Description: "Navigator Holdings Ltd.", - Symbol: "NVGS", - Precision: 5, - Type: Stock, - AlternateId: "Y62132108"}, - 3470124279445200: &Security{ - SecurityId: 3470124279445200, - Name: "NAP", - Description: "Navios Maritime Midstream Partners LP", - Symbol: "NAP", - Precision: 5, - Type: Stock, - AlternateId: "Y62134104"}, - 3470124408775524: &Security{ - SecurityId: 3470124408775524, - Name: "NNA", - Description: "Navios Maritime Acquisition Corp.", - Symbol: "NNA", - Precision: 5, - Type: Stock, - AlternateId: "Y62159101"}, - 3470124645601452: &Security{ - SecurityId: 3470124645601452, - Name: "NM", - Description: "Navios Maritime Holdings, Inc.", - Symbol: "NM", - Precision: 5, - Type: Stock, - AlternateId: "Y62196103"}, - 3470126642664840: &Security{ - SecurityId: 3470126642664840, - Name: "NMM", - Description: "Navios Maritime Partners, L.P.", - Symbol: "NMM", - Precision: 5, - Type: Stock, - AlternateId: "Y62267102"}, - 3470213750911128: &Security{ - SecurityId: 3470213750911128, - Name: "NAO", - Description: "Nordic American Offshore Ltd.", - Symbol: "NAO", - Precision: 5, - Type: Stock, - AlternateId: "Y6366T112"}, - 3470285482317108: &Security{ - SecurityId: 3470285482317108, - Name: "ORIG", - Description: "Ocean Rig UDW, Inc.", - Symbol: "ORIG", - Precision: 5, - Type: Stock, - AlternateId: "Y64354205"}, - 3472880028775704: &Security{ - SecurityId: 3472880028775704, - Name: "PXS", - Description: "Pyxis Tankers, Inc.", - Symbol: "PXS", - Precision: 5, - Type: Stock, - AlternateId: "Y71726106"}, - 3473039321877420: &Security{ - SecurityId: 3473039321877420, - Name: "SB", - Description: "Safe Bulkers, Inc.", - Symbol: "SB", - Precision: 5, - Type: Stock, - AlternateId: "Y7388L103"}, - 3473186965162776: &Security{ - SecurityId: 3473186965162776, - Name: "STNG", - Description: "Scorpio Tankers, Inc.", - Symbol: "STNG", - Precision: 5, - Type: Stock, - AlternateId: "Y7542C106"}, - 3473187180153732: &Security{ - SecurityId: 3473187180153732, - Name: "SDLP", - Description: "Seadrill Partners LLC", - Symbol: "SDLP", - Precision: 5, - Type: Stock, - AlternateId: "Y7545W109"}, - 3473187203670696: &Security{ - SecurityId: 3473187203670696, - Name: "SALT", - Description: "Scorpio Bulkers, Inc.", - Symbol: "SALT", - Precision: 5, - Type: Stock, - AlternateId: "Y7546A122"}, - 3473191372475268: &Security{ - SecurityId: 3473191372475268, - Name: "SSW", - Description: "Seaspan Corp.", - Symbol: "SSW", - Precision: 5, - Type: Stock, - AlternateId: "Y75638109"}, - 3475698985417860: &Security{ - SecurityId: 3475698985417860, - Name: "SBLK", - Description: "Star Bulk Carriers Corp.", - Symbol: "SBLK", - Precision: 5, - Type: Stock, - AlternateId: "Y8162K121"}, - 3475766527813512: &Security{ - SecurityId: 3475766527813512, - Name: "SEMI", - Description: "SunEdison Semiconductor Ltd.", - Symbol: "SEMI", - Precision: 5, - Type: Stock, - AlternateId: "Y8213L102"}, - 3476012566363380: &Security{ - SecurityId: 3476012566363380, - Name: "TGP", - Description: "Teekay LNG Partners, L.P.", - Symbol: "TGP", - Precision: 5, - Type: Stock, - AlternateId: "Y8564M105"}, - 3476012583159468: &Security{ - SecurityId: 3476012583159468, - Name: "TK", - Description: "Teekay Shipping Corp.", - Symbol: "TK", - Precision: 5, - Type: Stock, - AlternateId: "Y8564W103"}, - 3476012621790564: &Security{ - SecurityId: 3476012621790564, - Name: "TOO", - Description: "Teekay Offshore Partners, L.P.", - Symbol: "TOO", - Precision: 5, - Type: Stock, - AlternateId: "Y8565J101"}, - 3476012628509064: &Security{ - SecurityId: 3476012628509064, - Name: "TNK", - Description: "Teekay Tankers Ltd", - Symbol: "TNK", - Precision: 5, - Type: Stock, - AlternateId: "Y8565N102"}, - 3476328401355840: &Security{ - SecurityId: 3476328401355840, - Name: "RIGP", - Description: "Transocean Partners LLC", - Symbol: "RIGP", - Precision: 5, - Type: Stock, - AlternateId: "Y8977Y100"}, - 3478681301507172: &Security{ - SecurityId: 3478681301507172, - Name: "VTTI", - Description: "VTTI Energy Partners LP", - Symbol: "VTTI", - Precision: 5, - Type: Stock, - AlternateId: "Y9384M101"}, - 3478826880544500: &Security{ - SecurityId: 3478826880544500, - Name: "WVE", - Description: "WAVE Life Sciences Ltd.", - Symbol: "WVE", - Precision: 5, - Type: Stock, - AlternateId: "Y95308105"}, - 6542151264: &Security{ - SecurityId: 6542151264, - Name: "AAC", - Description: "AAC Holdings, Inc.", - Symbol: "AAC", - Precision: 5, - Type: Stock, - AlternateId: "000307108"}, - 6893237592: &Security{ - SecurityId: 6893237592, - Name: "AAON", - Description: "AAON, Inc.", - Symbol: "AAON", - Precision: 5, - Type: Stock, - AlternateId: "000360206"}, - 6894870516: &Security{ - SecurityId: 6894870516, - Name: "AIR", - Description: "AAR Corp.", - Symbol: "AIR", - Precision: 5, - Type: Stock, - AlternateId: "000361105"}, - 6962101776: &Security{ - SecurityId: 6962101776, - Name: "ABB", - Description: "ABB Ltd ADR", - Symbol: "ABB", - Precision: 5, - Type: Stock, - AlternateId: "000375204"}, - 17523480672: &Security{ - SecurityId: 17523480672, - Name: "ACCO", - Description: "ACCO Brands Corp.", - Symbol: "ACCO", - Precision: 5, - Type: Stock, - AlternateId: "00081T108"}, - 17790539652: &Security{ - SecurityId: 17790539652, - Name: "ACNB", - Description: "ACNB Corp.", - Symbol: "ACNB", - Precision: 5, - Type: Stock, - AlternateId: "000868109"}, - 17973617616: &Security{ - SecurityId: 17973617616, - Name: "ADMA", - Description: "ADMA Biologics, Inc.", - Symbol: "ADMA", - Precision: 5, - Type: Stock, - AlternateId: "000899104"}, - 19905175872: &Security{ - SecurityId: 19905175872, - Name: "ABM", - Description: "ABM Industries, Inc.", - Symbol: "ABM", - Precision: 5, - Type: Stock, - AlternateId: "000957100"}, - 78456589848: &Security{ - SecurityId: 78456589848, - Name: "ADT", - Description: "ADT Corp. (The)", - Symbol: "ADT", - Precision: 5, - Type: Stock, - AlternateId: "00101J106"}, - 78547289004: &Security{ - SecurityId: 78547289004, - Name: "AEPI", - Description: "AEP Industries, Inc.", - Symbol: "AEPI", - Precision: 5, - Type: Stock, - AlternateId: "001031103"}, - 78674939784: &Security{ - SecurityId: 78674939784, - Name: "AFL", - Description: "AFLAC, Inc.", - Symbol: "AFL", - Precision: 5, - Type: Stock, - AlternateId: "001055102"}, - 78854658696: &Security{ - SecurityId: 78854658696, - Name: "AGCO", - Description: "AGCO Corp.", - Symbol: "AGCO", - Precision: 5, - Type: Stock, - AlternateId: "001084102"}, - 82724494104: &Security{ - SecurityId: 82724494104, - Name: "GAS", - Description: "AGL Resources, Inc.", - Symbol: "GAS", - Precision: 5, - Type: Stock, - AlternateId: "001204106"}, - 82852144884: &Security{ - SecurityId: 82852144884, - Name: "MITT", - Description: "AG Mortgage Investment Trust, Inc.", - Symbol: "MITT", - Precision: 5, - Type: Stock, - AlternateId: "001228105"}, - 83204864136: &Security{ - SecurityId: 83204864136, - Name: "AHC", - Description: "A.H. Belo Corp.", - Symbol: "AHC", - Precision: 5, - Type: Stock, - AlternateId: "001282102"}, - 84923111412: &Security{ - SecurityId: 84923111412, - Name: "AES", - Description: "AES Corp. (The)", - Symbol: "AES", - Precision: 5, - Type: Stock, - AlternateId: "00130H105"}, - 89501744736: &Security{ - SecurityId: 89501744736, - Name: "AKS", - Description: "AK Steel Holding Corp.", - Symbol: "AKS", - Precision: 5, - Type: Stock, - AlternateId: "001547108"}, - 91589507352: &Security{ - SecurityId: 91589507352, - Name: "GRI", - Description: "Cohen & Steers Global Realty Majors ETF", - Symbol: "GRI", - Precision: 5, - Type: Stock, - AlternateId: "00162Q106"}, - 91589553972: &Security{ - SecurityId: 91589553972, - Name: "EQL", - Description: "ALPS Equal Sector Weight ETF", - Symbol: "EQL", - Precision: 5, - Type: Stock, - AlternateId: "00162Q205"}, - 91589600592: &Security{ - SecurityId: 91589600592, - Name: "CRBQ", - Description: "Global Commodity Equity ETF", - Symbol: "CRBQ", - Precision: 5, - Type: Stock, - AlternateId: "00162Q304"}, - 91589700276: &Security{ - SecurityId: 91589700276, - Name: "PUTX", - Description: "ALPS Enhanced Put Write Strategy ETF", - Symbol: "PUTX", - Precision: 5, - Type: Stock, - AlternateId: "00162Q551"}, - 91589701860: &Security{ - SecurityId: 91589701860, - Name: "SLOW", - Description: "ALPS Sector Low Volatility ETF", - Symbol: "SLOW", - Precision: 5, - Type: Stock, - AlternateId: "00162Q569"}, - 91589703084: &Security{ - SecurityId: 91589703084, - Name: "SLDR", - Description: "ALPS Sector Leaders ETF", - Symbol: "SLDR", - Precision: 5, - Type: Stock, - AlternateId: "00162Q577"}, - 91589704308: &Security{ - SecurityId: 91589704308, - Name: "SGDJ", - Description: "Sprott Junior Gold Miners ETF", - Symbol: "SGDJ", - Precision: 5, - Type: Stock, - AlternateId: "00162Q585"}, - 91589705532: &Security{ - SecurityId: 91589705532, - Name: "SBIO", - Description: "ALPS Medical Breakthroughs ETF", - Symbol: "SBIO", - Precision: 5, - Type: Stock, - AlternateId: "00162Q593"}, - 91589744484: &Security{ - SecurityId: 91589744484, - Name: "STXX", - Description: "ALPS STOXX Europe 600 ETF", - Symbol: "STXX", - Precision: 5, - Type: Stock, - AlternateId: "00162Q635"}, - 91589745708: &Security{ - SecurityId: 91589745708, - Name: "SGDM", - Description: "Sprott Gold Miners ETF", - Symbol: "SGDM", - Precision: 5, - Type: Stock, - AlternateId: "00162Q643"}, - 91589746896: &Security{ - SecurityId: 91589746896, - Name: "EQLT", - Description: "Workplace Equality Portfolio", - Symbol: "EQLT", - Precision: 5, - Type: Stock, - AlternateId: "00162Q650"}, - 91589748480: &Security{ - SecurityId: 91589748480, - Name: "EDOG", - Description: "ALPS Emerging Sector Dividend Dogs ETF", - Symbol: "EDOG", - Precision: 5, - Type: Stock, - AlternateId: "00162Q668"}, - 91589749704: &Security{ - SecurityId: 91589749704, - Name: "ENFR", - Description: "Alerian Energy Infrastructure ETF", - Symbol: "ENFR", - Precision: 5, - Type: Stock, - AlternateId: "00162Q676"}, - 91589788656: &Security{ - SecurityId: 91589788656, - Name: "IDOG", - Description: "ALPS International Sector Dividend Dogs ETF", - Symbol: "IDOG", - Precision: 5, - Type: Stock, - AlternateId: "00162Q718"}, - 91589789880: &Security{ - SecurityId: 91589789880, - Name: "BFOR", - Description: "Barron's 400 ETF", - Symbol: "BFOR", - Precision: 5, - Type: Stock, - AlternateId: "00162Q726"}, - 91589791104: &Security{ - SecurityId: 91589791104, - Name: "HVPW", - Description: "U.S. Equity High Volatility Put Write Index Fund", - Symbol: "HVPW", - Precision: 5, - Type: Stock, - AlternateId: "00162Q734"}, - 91589797548: &Security{ - SecurityId: 91589797548, - Name: "RIGS", - Description: "RiverFront Strategic Income Fund", - Symbol: "RIGS", - Precision: 5, - Type: Stock, - AlternateId: "00162Q783"}, - 91589798772: &Security{ - SecurityId: 91589798772, - Name: "SPXH", - Description: "Janus Velocity Volatility Hedged Large Cap ETF", - Symbol: "SPXH", - Precision: 5, - Type: Stock, - AlternateId: "00162Q791"}, - 91589835276: &Security{ - SecurityId: 91589835276, - Name: "TRSK", - Description: "Janus Velocity Tail Risk Hedged Large Cap ETF", - Symbol: "TRSK", - Precision: 5, - Type: Stock, - AlternateId: "00162Q817"}, - 91589840496: &Security{ - SecurityId: 91589840496, - Name: "SDOG", - Description: "ALPS Sector Dividend Dogs ETF", - Symbol: "SDOG", - Precision: 5, - Type: Stock, - AlternateId: "00162Q858"}, - 91589841720: &Security{ - SecurityId: 91589841720, - Name: "AMLP", - Description: "Alerian MLP ETF", - Symbol: "AMLP", - Precision: 5, - Type: Stock, - AlternateId: "00162Q866"}, - 91656691992: &Security{ - SecurityId: 91656691992, - Name: "AMAG", - Description: "AMAG Pharmaceuticals Inc", - Symbol: "AMAG", - Precision: 5, - Type: Stock, - AlternateId: "00163U106"}, - 91718837676: &Security{ - SecurityId: 91718837676, - Name: "AMCX", - Description: "AMC Networks, Inc.", - Symbol: "AMCX", - Precision: 5, - Type: Stock, - AlternateId: "00164V103"}, - 91747391184: &Security{ - SecurityId: 91747391184, - Name: "AMC", - Description: "AMC Entertainment Holdings, Inc.", - Symbol: "AMC", - Precision: 5, - Type: Stock, - AlternateId: "00165C104"}, - 91903642164: &Security{ - SecurityId: 91903642164, - Name: "AMFW", - Description: "Amec Foster Wheeler plc", - Symbol: "AMFW", - Precision: 5, - Type: Stock, - AlternateId: "00167X205"}, - 93850270308: &Security{ - SecurityId: 93850270308, - Name: "AHS", - Description: "AMN Healthcare Services, Inc.", - Symbol: "AHS", - Precision: 5, - Type: Stock, - AlternateId: "001744101"}, - 95887644732: &Security{ - SecurityId: 95887644732, - Name: "AMRK", - Description: "A-Mark Precious Metals, Inc.", - Symbol: "AMRK", - Precision: 5, - Type: Stock, - AlternateId: "00181T107"}, - 98042591916: &Security{ - SecurityId: 98042591916, - Name: "ARC", - Description: "ARC Document Solutions, Inc.", - Symbol: "ARC", - Precision: 5, - Type: Stock, - AlternateId: "00191G103"}, - 98061067908: &Security{ - SecurityId: 98061067908, - Name: "AUMA", - Description: "AR Capital Acquisition Corp.", - Symbol: "AUMA", - Precision: 5, - Type: Stock, - AlternateId: "00191R109"}, - 98061114528: &Security{ - SecurityId: 98061114528, - Name: "AUMAU", - Description: "AR Capital Acquisition Corp. (Units)", - Symbol: "AUMAU", - Precision: 5, - Type: Stock, - AlternateId: "00191R208"}, - 98136697140: &Security{ - SecurityId: 98136697140, - Name: "ARIS", - Description: "ARI Network Services, Inc.", - Symbol: "ARIS", - Precision: 5, - Type: Stock, - AlternateId: "001930205"}, - 157136521608: &Security{ - SecurityId: 157136521608, - Name: "T", - Description: "AT&T, Inc.", - Symbol: "T", - Precision: 5, - Type: Stock, - AlternateId: "00206R102"}, - 159022870524: &Security{ - SecurityId: 159022870524, - Name: "ABIO", - Description: "Arca Biopharma, Inc.", - Symbol: "ABIO", - Precision: 5, - Type: Stock, - AlternateId: "00211Y407"}, - 159026089644: &Security{ - SecurityId: 159026089644, - Name: "LIFE", - Description: "aTyr Pharma, Inc.", - Symbol: "LIFE", - Precision: 5, - Type: Stock, - AlternateId: "002120103"}, - 159027769188: &Security{ - SecurityId: 159027769188, - Name: "ATEN", - Description: "A10 Networks, Inc.", - Symbol: "ATEN", - Precision: 5, - Type: Stock, - AlternateId: "002121101"}, - 159115109364: &Security{ - SecurityId: 159115109364, - Name: "ARCW", - Description: "ARC Group Worldwide, Inc.", - Symbol: "ARCW", - Precision: 5, - Type: Stock, - AlternateId: "00213H105"}, - 159135264900: &Security{ - SecurityId: 159135264900, - Name: "ASBB", - Description: "ASB Bancorp, Inc.", - Symbol: "ASBB", - Precision: 5, - Type: Stock, - AlternateId: "00213T109"}, - 159190692048: &Security{ - SecurityId: 159190692048, - Name: "ARKK", - Description: "ARK Innovation ETF", - Symbol: "ARKK", - Precision: 5, - Type: Stock, - AlternateId: "00214Q104"}, - 159190738668: &Security{ - SecurityId: 159190738668, - Name: "ARKQ", - Description: "ARK Industrial Innovation ETF", - Symbol: "ARKQ", - Precision: 5, - Type: Stock, - AlternateId: "00214Q203"}, - 159190785288: &Security{ - SecurityId: 159190785288, - Name: "ARKG", - Description: "ARK Genomic Revolution Multi-Sector ETF", - Symbol: "ARKG", - Precision: 5, - Type: Stock, - AlternateId: "00214Q302"}, - 159190831908: &Security{ - SecurityId: 159190831908, - Name: "ARKW", - Description: "ARK Web x.0 ETF", - Symbol: "ARKW", - Precision: 5, - Type: Stock, - AlternateId: "00214Q401"}, - 161392668732: &Security{ - SecurityId: 161392668732, - Name: "AUO", - Description: "AU Optronics Corp. ADR", - Symbol: "AUO", - Precision: 5, - Type: Stock, - AlternateId: "002255107"}, - 163542577032: &Security{ - SecurityId: 163542577032, - Name: "AVHI", - Description: "A V Homes, Inc.", - Symbol: "AVHI", - Precision: 5, - Type: Stock, - AlternateId: "00234P102"}, - 165684087612: &Security{ - SecurityId: 165684087612, - Name: "AVX", - Description: "AVX Corp.", - Symbol: "AVX", - Precision: 5, - Type: Stock, - AlternateId: "002444107"}, - 165852049068: &Security{ - SecurityId: 165852049068, - Name: "AXTI", - Description: "AXT Inc.", - Symbol: "AXTI", - Precision: 5, - Type: Stock, - AlternateId: "00246W103"}, - 165865486032: &Security{ - SecurityId: 165865486032, - Name: "AZZ", - Description: "AZZ, Inc.", - Symbol: "AZZ", - Precision: 5, - Type: Stock, - AlternateId: "002474104"}, - 167802176448: &Security{ - SecurityId: 167802176448, - Name: "AAN", - Description: "Aaron's, Inc.", - Symbol: "AAN", - Precision: 5, - Type: Stock, - AlternateId: "002535300"}, - 167986841076: &Security{ - SecurityId: 167986841076, - Name: "ABAX", - Description: "ABAXIS, Inc.", - Symbol: "ABAX", - Precision: 5, - Type: Stock, - AlternateId: "002567105"}, - 174270284352: &Security{ - SecurityId: 174270284352, - Name: "ABT", - Description: "Abbott Laboratories", - Symbol: "ABT", - Precision: 5, - Type: Stock, - AlternateId: "002824100"}, - 174623004036: &Security{ - SecurityId: 174623004036, - Name: "ABBV", - Description: "AbbVie, Inc.", - Symbol: "ABBV", - Precision: 5, - Type: Stock, - AlternateId: "00287Y109"}, - 174732225444: &Security{ - SecurityId: 174732225444, - Name: "ABGB", - Description: "Abengoa, S.A.", - Symbol: "ABGB", - Precision: 5, - Type: Stock, - AlternateId: "00289R201"}, - 174743936316: &Security{ - SecurityId: 174743936316, - Name: "ABEO", - Description: "Abeona Therapeutics", - Symbol: "ABEO", - Precision: 5, - Type: Stock, - AlternateId: "00289Y107"}, - 174696953724: &Security{ - SecurityId: 174696953724, - Name: "ANF", - Description: "Abercrombie & Fitch Co.", - Symbol: "ANF", - Precision: 5, - Type: Stock, - AlternateId: "002896207"}, - 235107655740: &Security{ - SecurityId: 235107655740, - Name: "FAX", - Description: "Aberdeen Asia-Pacific Income Fund, Inc.", - Symbol: "FAX", - Precision: 5, - Type: Stock, - AlternateId: "003009107"}, - 235188277380: &Security{ - SecurityId: 235188277380, - Name: "ISL", - Description: "Aberdeen Israel Fund, Inc. (The)", - Symbol: "ISL", - Precision: 5, - Type: Stock, - AlternateId: "00301L109"}, - 235201714056: &Security{ - SecurityId: 235201714056, - Name: "ABE", - Description: "Aberdeen Emerging Markets Smaller Company Opportunities Fund, Inc.", - Symbol: "ABE", - Precision: 5, - Type: Stock, - AlternateId: "00301T102"}, - 235206753012: &Security{ - SecurityId: 235206753012, - Name: "CH", - Description: "Aberdeen Chile Fund, Inc. (The)", - Symbol: "CH", - Precision: 5, - Type: Stock, - AlternateId: "00301W105"}, - 235154684844: &Security{ - SecurityId: 235154684844, - Name: "IAF", - Description: "Aberdeen Australia Equity Fund, Inc.", - Symbol: "IAF", - Precision: 5, - Type: Stock, - AlternateId: "003011103"}, - 235158044292: &Security{ - SecurityId: 235158044292, - Name: "FCO", - Description: "Aberdeen Global Income Fund, Inc.", - Symbol: "FCO", - Precision: 5, - Type: Stock, - AlternateId: "003013109"}, - 235436860440: &Security{ - SecurityId: 235436860440, - Name: "IF", - Description: "Aberdeen Indonesia Fund, Inc. (The)", - Symbol: "IF", - Precision: 5, - Type: Stock, - AlternateId: "00305P106"}, - 235488928536: &Security{ - SecurityId: 235488928536, - Name: "LAQ", - Description: "Aberdeen Latin America Equity Fund, Inc. (The)", - Symbol: "LAQ", - Precision: 5, - Type: Stock, - AlternateId: "00306K106"}, - 239694686784: &Security{ - SecurityId: 239694686784, - Name: "SGF", - Description: "Aberdeen Singapore Fund, Inc.", - Symbol: "SGF", - Precision: 5, - Type: Stock, - AlternateId: "003244100"}, - 248462282304: &Security{ - SecurityId: 248462282304, - Name: "ABMD", - Description: "ABIOMED, Inc.", - Symbol: "ABMD", - Precision: 5, - Type: Stock, - AlternateId: "003654100"}, - 252688196376: &Security{ - SecurityId: 252688196376, - Name: "AXAS", - Description: "Abraxas Petroleum Corp.", - Symbol: "AXAS", - Precision: 5, - Type: Stock, - AlternateId: "003830106"}, - 313502052888: &Security{ - SecurityId: 313502052888, - Name: "WBIA", - Description: "WBI SMID Tactical Growth Shares", - Symbol: "WBIA", - Precision: 5, - Type: Stock, - AlternateId: "00400R106"}, - 313502099508: &Security{ - SecurityId: 313502099508, - Name: "WBIB", - Description: "WBI SMID Tactical Value Shares", - Symbol: "WBIB", - Precision: 5, - Type: Stock, - AlternateId: "00400R205"}, - 313502146128: &Security{ - SecurityId: 313502146128, - Name: "WBIC", - Description: "WBI SMID Tactical Yield Shares", - Symbol: "WBIC", - Precision: 5, - Type: Stock, - AlternateId: "00400R304"}, - 313502192748: &Security{ - SecurityId: 313502192748, - Name: "WBID", - Description: "WBI SMID Tactical Select Shares", - Symbol: "WBID", - Precision: 5, - Type: Stock, - AlternateId: "00400R403"}, - 313502239368: &Security{ - SecurityId: 313502239368, - Name: "WBIE", - Description: "WBI Large Cap Tactical Growth Shares", - Symbol: "WBIE", - Precision: 5, - Type: Stock, - AlternateId: "00400R502"}, - 313502285988: &Security{ - SecurityId: 313502285988, - Name: "WBIF", - Description: "WBI Large Cap Tactical Value Shares", - Symbol: "WBIF", - Precision: 5, - Type: Stock, - AlternateId: "00400R601"}, - 313502332608: &Security{ - SecurityId: 313502332608, - Name: "WBIG", - Description: "WBI Large Cap Tactical Yield Shares", - Symbol: "WBIG", - Precision: 5, - Type: Stock, - AlternateId: "00400R700"}, - 313502379588: &Security{ - SecurityId: 313502379588, - Name: "WBIL", - Description: "WBI Large Cap Tactical Select Shares", - Symbol: "WBIL", - Precision: 5, - Type: Stock, - AlternateId: "00400R809"}, - 313502388480: &Security{ - SecurityId: 313502388480, - Name: "WBII", - Description: "WBI Tactical Income Shares", - Symbol: "WBII", - Precision: 5, - Type: Stock, - AlternateId: "00400R874"}, - 313502389704: &Security{ - SecurityId: 313502389704, - Name: "WBIH", - Description: "WBI Tactical High Income Shares", - Symbol: "WBIH", - Precision: 5, - Type: Stock, - AlternateId: "00400R882"}, - 313466967648: &Security{ - SecurityId: 313466967648, - Name: "FFTY", - Description: "Innovator IBD 50 Fund ETF", - Symbol: "FFTY", - Precision: 5, - Type: Stock, - AlternateId: "004006508"}, - 313715364228: &Security{ - SecurityId: 313715364228, - Name: "ACHC", - Description: "Acadia Healthcare Co.", - Symbol: "ACHC", - Precision: 5, - Type: Stock, - AlternateId: "00404A109"}, - 317939598432: &Security{ - SecurityId: 317939598432, - Name: "ACAD", - Description: "ACADIA Pharmaceuticals, Inc.", - Symbol: "ACAD", - Precision: 5, - Type: Stock, - AlternateId: "004225108"}, - 318006783108: &Security{ - SecurityId: 318006783108, - Name: "AKR", - Description: "Acadia Realty Trust", - Symbol: "AKR", - Precision: 5, - Type: Stock, - AlternateId: "004239109"}, - 320015603592: &Security{ - SecurityId: 320015603592, - Name: "AXDX", - Description: "Accelerate Diagnostics, Inc.", - Symbol: "AXDX", - Precision: 5, - Type: Stock, - AlternateId: "00430H102"}, - 320020782408: &Security{ - SecurityId: 320020782408, - Name: "ACST", - Description: "Acasti Pharma Inc.", - Symbol: "ACST", - Precision: 5, - Type: Stock, - AlternateId: "00430K402"}, - 320180205924: &Security{ - SecurityId: 320180205924, - Name: "ANCX", - Description: "Access National Corp.", - Symbol: "ANCX", - Precision: 5, - Type: Stock, - AlternateId: "004337101"}, - 320257468512: &Security{ - SecurityId: 320257468512, - Name: "XLRN", - Description: "Acceleron Pharma, Inc.", - Symbol: "XLRN", - Precision: 5, - Type: Stock, - AlternateId: "00434H108"}, - 320583604356: &Security{ - SecurityId: 320583604356, - Name: "VXDN", - Description: "AccuShares Spot CBOE VIX Down Shares", - Symbol: "VXDN", - Precision: 5, - Type: Stock, - AlternateId: "00439V789"}, - 320583605580: &Security{ - SecurityId: 320583605580, - Name: "VXUP", - Description: "AccuShares Spot CBOE VIX Up Shares", - Symbol: "VXUP", - Precision: 5, - Type: Stock, - AlternateId: "00439V797"}, - 322454405952: &Security{ - SecurityId: 322454405952, - Name: "ACRX", - Description: "AcelRX Pharmaceuticals, Inc.", - Symbol: "ACRX", - Precision: 5, - Type: Stock, - AlternateId: "00444T100"}, - 322415774784: &Security{ - SecurityId: 322415774784, - Name: "ACET", - Description: "Aceto Corp.", - Symbol: "ACET", - Precision: 5, - Type: Stock, - AlternateId: "004446100"}, - 322420813776: &Security{ - SecurityId: 322420813776, - Name: "AKAO", - Description: "Achaogen, Inc.", - Symbol: "AKAO", - Precision: 5, - Type: Stock, - AlternateId: "004449104"}, - 322691278500: &Security{ - SecurityId: 322691278500, - Name: "ACHN", - Description: "Achillion Pharmaceuticals, Inc.", - Symbol: "ACHN", - Precision: 5, - Type: Stock, - AlternateId: "00448Q201"}, - 322721464932: &Security{ - SecurityId: 322721464932, - Name: "ACIW", - Description: "ACI Worldwide, Inc.", - Symbol: "ACIW", - Precision: 5, - Type: Stock, - AlternateId: "004498101"}, - 326628251892: &Security{ - SecurityId: 326628251892, - Name: "ACRS", - Description: "Aclaris Therapeutics, Inc.", - Symbol: "ACRS", - Precision: 5, - Type: Stock, - AlternateId: "00461U105"}, - 330941505744: &Security{ - SecurityId: 330941505744, - Name: "ACU", - Description: "Acme United Corp.", - Symbol: "ACU", - Precision: 5, - Type: Stock, - AlternateId: "004816104"}, - 331149778200: &Security{ - SecurityId: 331149778200, - Name: "ACOR", - Description: "Acorda Therapeutics, Inc.", - Symbol: "ACOR", - Precision: 5, - Type: Stock, - AlternateId: "00484M106"}, - 331180011252: &Security{ - SecurityId: 331180011252, - Name: "ATV", - Description: "Acorn Intl, Inc. ADR", - Symbol: "ATV", - Precision: 5, - Type: Stock, - AlternateId: "004854105"}, - 331440351768: &Security{ - SecurityId: 331440351768, - Name: "AIII", - Description: "ACRE Realty Investors, Inc.", - Symbol: "AIII", - Precision: 5, - Type: Stock, - AlternateId: "00489F106"}, - 392116573152: &Security{ - SecurityId: 392116573152, - Name: "ACPW", - Description: "Active Power, Inc.", - Symbol: "ACPW", - Precision: 5, - Type: Stock, - AlternateId: "00504W308"}, - 392297878332: &Security{ - SecurityId: 392297878332, - Name: "ATNM", - Description: "Actinium Pharmaceuticals, Inc.", - Symbol: "ATNM", - Precision: 5, - Type: Stock, - AlternateId: "00507W107"}, - 392360070636: &Security{ - SecurityId: 392360070636, - Name: "ATU", - Description: "Actuant Corp.", - Symbol: "ATU", - Precision: 5, - Type: Stock, - AlternateId: "00508X203"}, - 392361703560: &Security{ - SecurityId: 392361703560, - Name: "AYI", - Description: "Acuity Brands, Inc.", - Symbol: "AYI", - Precision: 5, - Type: Stock, - AlternateId: "00508Y102"}, - 392400661320: &Security{ - SecurityId: 392400661320, - Name: "ACUR", - Description: "Acura Pharmaceuticals, Inc.", - Symbol: "ACUR", - Precision: 5, - Type: Stock, - AlternateId: "00509L802"}, - 394126980228: &Security{ - SecurityId: 394126980228, - Name: "ACXM", - Description: "Acxiom Corp.", - Symbol: "ACXM", - Precision: 5, - Type: Stock, - AlternateId: "005125109"}, - 401005054368: &Security{ - SecurityId: 401005054368, - Name: "ADMP", - Description: "Adamis Pharmaceuticals Corp.", - Symbol: "ADMP", - Precision: 5, - Type: Stock, - AlternateId: "00547W208"}, - 401028522264: &Security{ - SecurityId: 401028522264, - Name: "ADMS", - Description: "Adamas Pharmaceuticals, Inc.", - Symbol: "ADMS", - Precision: 5, - Type: Stock, - AlternateId: "00548A106"}, - 474602421456: &Security{ - SecurityId: 474602421456, - Name: "ADX", - Description: "Adams Diversified Equity Fund, Inc.", - Symbol: "ADX", - Precision: 5, - Type: Stock, - AlternateId: "006212104"}, - 477019482336: &Security{ - SecurityId: 477019482336, - Name: "AE", - Description: "Adams Resources & Energy, Inc.", - Symbol: "AE", - Precision: 5, - Type: Stock, - AlternateId: "006351308"}, - 481122783936: &Security{ - SecurityId: 481122783936, - Name: "ADK", - Description: "AdCare Health Systems, Inc.", - Symbol: "ADK", - Precision: 5, - Type: Stock, - AlternateId: "00650W300"}, - 481267137852: &Security{ - SecurityId: 481267137852, - Name: "ADAP", - Description: "Adaptimmune Therapeutics plc", - Symbol: "ADAP", - Precision: 5, - Type: Stock, - AlternateId: "00653A107"}, - 485619022872: &Security{ - SecurityId: 485619022872, - Name: "ADUS", - Description: "Addus HomeCare Corp.", - Symbol: "ADUS", - Precision: 5, - Type: Stock, - AlternateId: "006739106"}, - 485669504664: &Security{ - SecurityId: 485669504664, - Name: "ADDM", - Description: "ADDvantage Technologies Group, Inc.", - Symbol: "ADDM", - Precision: 5, - Type: Stock, - AlternateId: "006743306"}, - 487910018880: &Security{ - SecurityId: 487910018880, - Name: "ADPT", - Description: "Adeptus Health, Inc.", - Symbol: "ADPT", - Precision: 5, - Type: Stock, - AlternateId: "006855100"}, - 488044388196: &Security{ - SecurityId: 488044388196, - Name: "IOTS", - Description: "Adesto Technologies Corp.", - Symbol: "IOTS", - Precision: 5, - Type: Stock, - AlternateId: "00687D101"}, - 553169818980: &Security{ - SecurityId: 553169818980, - Name: "ADBE", - Description: "Adobe Systems, Inc.", - Symbol: "ADBE", - Precision: 5, - Type: Stock, - AlternateId: "00724F101"}, - 555580068120: &Security{ - SecurityId: 555580068120, - Name: "ADTN", - Description: "ADTRAN, Inc.", - Symbol: "ADTN", - Precision: 5, - Type: Stock, - AlternateId: "00738A106"}, - 555659009892: &Security{ - SecurityId: 555659009892, - Name: "ADRO", - Description: "Aduro Biotech, Inc.", - Symbol: "ADRO", - Precision: 5, - Type: Stock, - AlternateId: "00739L101"}, - 559550680344: &Security{ - SecurityId: 559550680344, - Name: "AAP", - Description: "Advance Auto Parts, Inc.", - Symbol: "AAP", - Precision: 5, - Type: Stock, - AlternateId: "00751Y106"}, - 559832995728: &Security{ - SecurityId: 559832995728, - Name: "ASX", - Description: "Advanced Semiconductor Engineering, Inc. ADS", - Symbol: "ASX", - Precision: 5, - Type: Stock, - AlternateId: "00756M404"}, - 561641802336: &Security{ - SecurityId: 561641802336, - Name: "AEHR", - Description: "Aehr Test Systems", - Symbol: "AEHR", - Precision: 5, - Type: Stock, - AlternateId: "00760J108"}, - 561781256832: &Security{ - SecurityId: 561781256832, - Name: "ATE", - Description: "Advantest Corp.", - Symbol: "ATE", - Precision: 5, - Type: Stock, - AlternateId: "00762U200"}, - 561784569660: &Security{ - SecurityId: 561784569660, - Name: "ABCO", - Description: "Advisory Board Co. (The)", - Symbol: "ABCO", - Precision: 5, - Type: Stock, - AlternateId: "00762W107"}, - 561806404668: &Security{ - SecurityId: 561806404668, - Name: "AGC", - Description: "Advent Claymore Convertible Securities and Income Fund II", - Symbol: "AGC", - Precision: 5, - Type: Stock, - AlternateId: "007639107"}, - 561871909764: &Security{ - SecurityId: 561871909764, - Name: "AVK", - Description: "Advent/Claymore Convertible Securities and Income Fund", - Symbol: "AVK", - Precision: 5, - Type: Stock, - AlternateId: "00764C109"}, - 561935734992: &Security{ - SecurityId: 561935734992, - Name: "LCM", - Description: "Advent/Claymore Enhanced Growth & Income Fund", - Symbol: "LCM", - Precision: 5, - Type: Stock, - AlternateId: "00765E104"}, - 562021395264: &Security{ - SecurityId: 562021395264, - Name: "ACM", - Description: "AECOM", - Symbol: "ACM", - Precision: 5, - Type: Stock, - AlternateId: "00766T100"}, - 562056667272: &Security{ - SecurityId: 562056667272, - Name: "AEGR", - Description: "Aegerion Pharmaceuticals Inc.", - Symbol: "AEGR", - Precision: 5, - Type: Stock, - AlternateId: "00767E102"}, - 562150772568: &Security{ - SecurityId: 562150772568, - Name: "AADR", - Description: "AdvisorShares WCM/BNY Mellon Focused Growth ADR ETF", - Symbol: "AADR", - Precision: 5, - Type: Stock, - AlternateId: "00768Y206"}, - 562150912428: &Security{ - SecurityId: 562150912428, - Name: "HYLD", - Description: "Peritus High Yield ETF", - Symbol: "HYLD", - Precision: 5, - Type: Stock, - AlternateId: "00768Y503"}, - 562150924128: &Security{ - SecurityId: 562150924128, - Name: "FLRT", - Description: "AdvisorShares Pacific Asset Enhanced Floating Rate ETF", - Symbol: "FLRT", - Precision: 5, - Type: Stock, - AlternateId: "00768Y594"}, - 562150961856: &Security{ - SecurityId: 562150961856, - Name: "DIVI", - Description: "AdvisorShares Athena High Dividend ETF", - Symbol: "DIVI", - Precision: 5, - Type: Stock, - AlternateId: "00768Y628"}, - 562150963080: &Security{ - SecurityId: 562150963080, - Name: "MAUI", - Description: "AdvisorShares Market Adaptive Unconstrained Income ETF", - Symbol: "MAUI", - Precision: 5, - Type: Stock, - AlternateId: "00768Y636"}, - 562150964304: &Security{ - SecurityId: 562150964304, - Name: "YPRO", - Description: "AdvisorShares YieldPro ETF", - Symbol: "YPRO", - Precision: 5, - Type: Stock, - AlternateId: "00768Y644"}, - 562150965492: &Security{ - SecurityId: 562150965492, - Name: "HOLD", - Description: "AdvisorShares Sage Core Reserves ETF", - Symbol: "HOLD", - Precision: 5, - Type: Stock, - AlternateId: "00768Y651"}, - 562150967076: &Security{ - SecurityId: 562150967076, - Name: "GEUR", - Description: "AdvisorShares Gartman Gold/Euro ETF", - Symbol: "GEUR", - Precision: 5, - Type: Stock, - AlternateId: "00768Y669"}, - 562150969524: &Security{ - SecurityId: 562150969524, - Name: "GYEN", - Description: "AdvisorShares Gartman Gold/Yen ETF", - Symbol: "GYEN", - Precision: 5, - Type: Stock, - AlternateId: "00768Y685"}, - 562151008476: &Security{ - SecurityId: 562151008476, - Name: "MINC", - Description: "AdvisorShares Newfleet Multi - Sector Income ETF", - Symbol: "MINC", - Precision: 5, - Type: Stock, - AlternateId: "00768Y727"}, - 562151009700: &Security{ - SecurityId: 562151009700, - Name: "DBIZ", - Description: "AdvisorShares Pring Turner Business Cycle ETF", - Symbol: "DBIZ", - Precision: 5, - Type: Stock, - AlternateId: "00768Y735"}, - 562151010924: &Security{ - SecurityId: 562151010924, - Name: "EPRO", - Description: "AdvisorShares EquityPro ETF", - Symbol: "EPRO", - Precision: 5, - Type: Stock, - AlternateId: "00768Y743"}, - 562151012112: &Security{ - SecurityId: 562151012112, - Name: "QEH", - Description: "AdvisorShares QAM Equity Hedge ETF", - Symbol: "QEH", - Precision: 5, - Type: Stock, - AlternateId: "00768Y750"}, - 562151013696: &Security{ - SecurityId: 562151013696, - Name: "VEGA", - Description: "AdvisorShares STAR Global Buy-Write ETF", - Symbol: "VEGA", - Precision: 5, - Type: Stock, - AlternateId: "00768Y768"}, - 562151014920: &Security{ - SecurityId: 562151014920, - Name: "GIVE", - Description: "AdvisorShares Global Echo ETF", - Symbol: "GIVE", - Precision: 5, - Type: Stock, - AlternateId: "00768Y776"}, - 562151052288: &Security{ - SecurityId: 562151052288, - Name: "GTAA", - Description: "AdvisorShares Morgan Creek Global Tactical ETF", - Symbol: "GTAA", - Precision: 5, - Type: Stock, - AlternateId: "00768Y800"}, - 562151053872: &Security{ - SecurityId: 562151053872, - Name: "TTFS", - Description: "AdvisorShares TrimTabs Float Shrink ETF", - Symbol: "TTFS", - Precision: 5, - Type: Stock, - AlternateId: "00768Y818"}, - 562151056320: &Security{ - SecurityId: 562151056320, - Name: "FWDB", - Description: "AdvisorShares Madrona Global Bond ETF", - Symbol: "FWDB", - Precision: 5, - Type: Stock, - AlternateId: "00768Y834"}, - 562151057544: &Security{ - SecurityId: 562151057544, - Name: "FWDI", - Description: "AdvisorShares Madrona International ETF", - Symbol: "FWDI", - Precision: 5, - Type: Stock, - AlternateId: "00768Y842"}, - 562151059092: &Security{ - SecurityId: 562151059092, - Name: "FWDD", - Description: "AdvisorShares Madrona Domestic ETF", - Symbol: "FWDD", - Precision: 5, - Type: Stock, - AlternateId: "00768Y859"}, - 562151062764: &Security{ - SecurityId: 562151062764, - Name: "HDGE", - Description: "Ranger Equity Bear ETF", - Symbol: "HDGE", - Precision: 5, - Type: Stock, - AlternateId: "00768Y883"}, - 563811866064: &Security{ - SecurityId: 563811866064, - Name: "AEGN", - Description: "Aegion Corp.", - Symbol: "AEGN", - Precision: 5, - Type: Stock, - AlternateId: "00770F104"}, - 563899206240: &Security{ - SecurityId: 563899206240, - Name: "AERI", - Description: "Aerie Pharmaceuticals, Inc.", - Symbol: "AERI", - Precision: 5, - Type: Stock, - AlternateId: "00771V108"}, - 563979827844: &Security{ - SecurityId: 563979827844, - Name: "ACY", - Description: "AeroCentury Corp.", - Symbol: "ACY", - Precision: 5, - Type: Stock, - AlternateId: "007737109"}, - 564280479000: &Security{ - SecurityId: 564280479000, - Name: "HIVE", - Description: "Aerohive Networks, Inc.", - Symbol: "HIVE", - Precision: 5, - Type: Stock, - AlternateId: "007786106"}, - 565963454196: &Security{ - SecurityId: 565963454196, - Name: "AJRD", - Description: "Aerojet Rocketdyne Holdings, Inc.", - Symbol: "AJRD", - Precision: 5, - Type: Stock, - AlternateId: "007800105"}, - 566334649440: &Security{ - SecurityId: 566334649440, - Name: "ARO", - Description: "Aeropostale, Inc.", - Symbol: "ARO", - Precision: 5, - Type: Stock, - AlternateId: "007865108"}, - 568185586128: &Security{ - SecurityId: 568185586128, - Name: "WMS", - Description: "Advanced Drainage Systems, Inc.", - Symbol: "WMS", - Precision: 5, - Type: Stock, - AlternateId: "00790R104"}, - 568188945216: &Security{ - SecurityId: 568188945216, - Name: "AAAP", - Description: "Advanced Accelerator Applications S.A.", - Symbol: "AAAP", - Precision: 5, - Type: Stock, - AlternateId: "00790T100"}, - 568145275452: &Security{ - SecurityId: 568145275452, - Name: "AMD", - Description: "Advanced Micro Devices, Inc.", - Symbol: "AMD", - Precision: 5, - Type: Stock, - AlternateId: "007903107"}, - 568267887276: &Security{ - SecurityId: 568267887276, - Name: "AEG", - Description: "AEGON N.V. ADR", - Symbol: "AEG", - Precision: 5, - Type: Stock, - AlternateId: "007924103"}, - 568568538432: &Security{ - SecurityId: 568568538432, - Name: "AEIS", - Description: "Advanced Energy Industries, Inc.", - Symbol: "AEIS", - Precision: 5, - Type: Stock, - AlternateId: "007973100"}, - 568572037704: &Security{ - SecurityId: 568572037704, - Name: "AEZS", - Description: "AEterna Zentaris, Inc.", - Symbol: "AEZS", - Precision: 5, - Type: Stock, - AlternateId: "007975402"}, - 627435766728: &Security{ - SecurityId: 627435766728, - Name: "AES-C", - Description: "AES Trust III, $3.375 Trust Convertible Preferred Securities", - Symbol: "AES-C", - Precision: 5, - Type: Stock, - AlternateId: "00808N202"}, - 629570512224: &Security{ - SecurityId: 629570512224, - Name: "AET", - Description: "Aetna, Inc.", - Symbol: "AET", - Precision: 5, - Type: Stock, - AlternateId: "00817Y108"}, - 631572614496: &Security{ - SecurityId: 631572614496, - Name: "AMG", - Description: "Affiliated Managers Group, Inc.", - Symbol: "AMG", - Precision: 5, - Type: Stock, - AlternateId: "008252108"}, - 631678430304: &Security{ - SecurityId: 631678430304, - Name: "AFFX", - Description: "Affymetrix, Inc.", - Symbol: "AFFX", - Precision: 5, - Type: Stock, - AlternateId: "00826T108"}, - 636033674340: &Security{ - SecurityId: 636033674340, - Name: "A", - Description: "Agilent Technologies, Inc.", - Symbol: "A", - Precision: 5, - Type: Stock, - AlternateId: "00846U101"}, - 636070905972: &Security{ - SecurityId: 636070905972, - Name: "AGEN", - Description: "Agenus, Inc.", - Symbol: "AGEN", - Precision: 5, - Type: Stock, - AlternateId: "00847G705"}, - 636075664884: &Security{ - SecurityId: 636075664884, - Name: "AGYS", - Description: "Agilysys, Inc.", - Symbol: "AGYS", - Precision: 5, - Type: Stock, - AlternateId: "00847J105"}, - 636079023936: &Security{ - SecurityId: 636079023936, - Name: "AGRX", - Description: "Agile Therapeutics, Inc.", - Symbol: "AGRX", - Precision: 5, - Type: Stock, - AlternateId: "00847L100"}, - 636099179472: &Security{ - SecurityId: 636099179472, - Name: "AGIO", - Description: "Agios Pharmaceuticals, Inc.", - Symbol: "AGIO", - Precision: 5, - Type: Stock, - AlternateId: "00847X104"}, - 636050470752: &Security{ - SecurityId: 636050470752, - Name: "AEM", - Description: "Agnico Eagle Mines Ltd", - Symbol: "AEM", - Precision: 5, - Type: Stock, - AlternateId: "008474108"}, - 636168043584: &Security{ - SecurityId: 636168043584, - Name: "ADC", - Description: "Agree Realty Corp.", - Symbol: "ADC", - Precision: 5, - Type: Stock, - AlternateId: "008492100"}, - 638186942340: &Security{ - SecurityId: 638186942340, - Name: "AGFS", - Description: "AgroFresh Solutions, Inc.", - Symbol: "AGFS", - Precision: 5, - Type: Stock, - AlternateId: "00856G109"}, - 646574944608: &Security{ - SecurityId: 646574944608, - Name: "AGU", - Description: "Agrium, Inc.", - Symbol: "AGU", - Precision: 5, - Type: Stock, - AlternateId: "008916108"}, - 705326232636: &Security{ - SecurityId: 705326232636, - Name: "AIMT", - Description: "Aimmune Therapeutics, Inc.", - Symbol: "AIMT", - Precision: 5, - Type: Stock, - AlternateId: "00900T107"}, - 707613916212: &Security{ - SecurityId: 707613916212, - Name: "AIRI", - Description: "Air Industries Group", - Symbol: "AIRI", - Precision: 5, - Type: Stock, - AlternateId: "00912N205"}, - 707630758920: &Security{ - SecurityId: 707630758920, - Name: "AL", - Description: "Air Lease Corp.", - Symbol: "AL", - Precision: 5, - Type: Stock, - AlternateId: "00912X302"}, - 707588768700: &Security{ - SecurityId: 707588768700, - Name: "AIRM", - Description: "Air Methods Corp.", - Symbol: "AIRM", - Precision: 5, - Type: Stock, - AlternateId: "009128307"}, - 707770073880: &Security{ - SecurityId: 707770073880, - Name: "APD", - Description: "Air Products and Chemicals, Inc.", - Symbol: "APD", - Precision: 5, - Type: Stock, - AlternateId: "009158106"}, - 709642845540: &Security{ - SecurityId: 709642845540, - Name: "AIRT", - Description: "Air T, Inc.", - Symbol: "AIRT", - Precision: 5, - Type: Stock, - AlternateId: "009207101"}, - 712175706504: &Security{ - SecurityId: 712175706504, - Name: "ARG", - Description: "Airgas, Inc.", - Symbol: "ARG", - Precision: 5, - Type: Stock, - AlternateId: "009363102"}, - 720624174948: &Security{ - SecurityId: 720624174948, - Name: "AKAM", - Description: "Akamai Technologies, Inc.", - Symbol: "AKAM", - Precision: 5, - Type: Stock, - AlternateId: "00971T101"}, - 720657767412: &Security{ - SecurityId: 720657767412, - Name: "AKBA", - Description: "Akebia Therapeutics, Inc.", - Symbol: "AKBA", - Precision: 5, - Type: Stock, - AlternateId: "00972D105"}, - 720662806368: &Security{ - SecurityId: 720662806368, - Name: "AKTX", - Description: "Akari Therapeutics, plc", - Symbol: "AKTX", - Precision: 5, - Type: Stock, - AlternateId: "00972G108"}, - 720719913096: &Security{ - SecurityId: 720719913096, - Name: "AKER", - Description: "Akers Biosciences, Inc.", - Symbol: "AKER", - Precision: 5, - Type: Stock, - AlternateId: "00973E102"}, - 2906066611260: &Security{ - SecurityId: 2906066611260, - Name: "ALG", - Description: "Alamo Group, Inc.", - Symbol: "ALG", - Precision: 5, - Type: Stock, - AlternateId: "011311107"}, - 2912780036340: &Security{ - SecurityId: 2912780036340, - Name: "ALRM", - Description: "Alarm.com Holdings, Inc.", - Symbol: "ALRM", - Precision: 5, - Type: Stock, - AlternateId: "011642105"}, - 2912852259972: &Security{ - SecurityId: 2912852259972, - Name: "ALK", - Description: "Alaska Air Group, Inc.", - Symbol: "ALK", - Precision: 5, - Type: Stock, - AlternateId: "011659109"}, - 2913000065892: &Security{ - SecurityId: 2913000065892, - Name: "ALSK", - Description: "Alaska Communications Systems Group, Inc.", - Symbol: "ALSK", - Precision: 5, - Type: Stock, - AlternateId: "01167P101"}, - 2984623931232: &Security{ - SecurityId: 2984623931232, - Name: "AIN", - Description: "Albany Intl Corp.", - Symbol: "AIN", - Precision: 5, - Type: Stock, - AlternateId: "012348108"}, - 2986671383172: &Security{ - SecurityId: 2986671383172, - Name: "AMRI", - Description: "Albany Molecular Research, Inc.", - Symbol: "AMRI", - Precision: 5, - Type: Stock, - AlternateId: "012423109"}, - 2991206346084: &Security{ - SecurityId: 2991206346084, - Name: "ALB", - Description: "Albemarle Corp.", - Symbol: "ALB", - Precision: 5, - Type: Stock, - AlternateId: "012653101"}, - 3071730496392: &Security{ - SecurityId: 3071730496392, - Name: "ABDC", - Description: "Alcentra Capital Corp.", - Symbol: "ABDC", - Precision: 5, - Type: Stock, - AlternateId: "01374T102"}, - 3073688928612: &Security{ - SecurityId: 3073688928612, - Name: "AA", - Description: "Alcoa, Inc.", - Symbol: "AA", - Precision: 5, - Type: Stock, - AlternateId: "013817101"}, - 3073689022212: &Security{ - SecurityId: 3073689022212, - Name: "AA-B", - Description: "Alcoa, Inc., 5.375% Dep Shares Class B Mand Convertible Preferred Stock Series 1", - Symbol: "AA-B", - Precision: 5, - Type: Stock, - AlternateId: "013817309"}, - 3141293472756: &Security{ - SecurityId: 3141293472756, - Name: "ALDR", - Description: "Alder BioPharmaceuticals, Inc.", - Symbol: "ALDR", - Precision: 5, - Type: Stock, - AlternateId: "014339105"}, - 3141387531072: &Security{ - SecurityId: 3141387531072, - Name: "AXXDF", - Description: "Alderon Iron Ore Corp.", - Symbol: "AXXDF", - Precision: 5, - Type: Stock, - AlternateId: "01434T100"}, - 3141629395992: &Security{ - SecurityId: 3141629395992, - Name: "ALDX", - Description: "Aldeyra Therapeutics, Inc.", - Symbol: "ALDX", - Precision: 5, - Type: Stock, - AlternateId: "01438T106"}, - 3143849848308: &Security{ - SecurityId: 3143849848308, - Name: "ALR", - Description: "Alere, Inc.", - Symbol: "ALR", - Precision: 5, - Type: Stock, - AlternateId: "01449J105"}, - 3150109777284: &Security{ - SecurityId: 3150109777284, - Name: "ALX", - Description: "Alexander's, Inc.", - Symbol: "ALX", - Precision: 5, - Type: Stock, - AlternateId: "014752109"}, - 3217709282436: &Security{ - SecurityId: 3217709282436, - Name: "ARE", - Description: "Alexandria Real Estate Equities, Inc.", - Symbol: "ARE", - Precision: 5, - Type: Stock, - AlternateId: "015271109"}, - 3217709468916: &Security{ - SecurityId: 3217709468916, - Name: "ARE-D", - Description: "Alexandria Real Estate Equities, 7.00% Series D Cumul Convertible Preferred Stk", - Symbol: "ARE-D", - Precision: 5, - Type: Stock, - AlternateId: "015271505"}, - 3219805443096: &Security{ - SecurityId: 3219805443096, - Name: "AXU", - Description: "Alexco Resource Corp.", - Symbol: "AXU", - Precision: 5, - Type: Stock, - AlternateId: "01535P106"}, - 3219765132420: &Security{ - SecurityId: 3219765132420, - Name: "ALXN", - Description: "Alexion Pharmaceuticals, Inc.", - Symbol: "ALXN", - Precision: 5, - Type: Stock, - AlternateId: "015351109"}, - 3219951616452: &Security{ - SecurityId: 3219951616452, - Name: "ALXA", - Description: "Alexza Pharmaceuticals, Inc.", - Symbol: "ALXA", - Precision: 5, - Type: Stock, - AlternateId: "015384209"}, - 3291892882056: &Security{ - SecurityId: 3291892882056, - Name: "BABA", - Description: "Alibaba Group Holding Ltd.", - Symbol: "BABA", - Precision: 5, - Type: Stock, - AlternateId: "01609W102"}, - 3295829902032: &Security{ - SecurityId: 3295829902032, - Name: "ALCO", - Description: "Alico, Inc.", - Symbol: "ALCO", - Precision: 5, - Type: Stock, - AlternateId: "016230104"}, - 3295959232356: &Security{ - SecurityId: 3295959232356, - Name: "ALGN", - Description: "Align Technology, Inc.", - Symbol: "ALGN", - Precision: 5, - Type: Stock, - AlternateId: "016255101"}, - 3295965950892: &Security{ - SecurityId: 3295965950892, - Name: "ALIM", - Description: "Alimera Sciences, Inc.", - Symbol: "ALIM", - Precision: 5, - Type: Stock, - AlternateId: "016259103"}, - 3372267546432: &Security{ - SecurityId: 3372267546432, - Name: "Y", - Description: "Alleghany Corp.", - Symbol: "Y", - Precision: 5, - Type: Stock, - AlternateId: "017175100"}, - 3378472048008: &Security{ - SecurityId: 3378472048008, - Name: "ATI", - Description: "Allegheny Technologies, Inc.", - Symbol: "ATI", - Precision: 5, - Type: Stock, - AlternateId: "01741R102"}, - 3378878515260: &Security{ - SecurityId: 3378878515260, - Name: "ABTX", - Description: "Allegiance Bancshares, Inc.", - Symbol: "ABTX", - Precision: 5, - Type: Stock, - AlternateId: "01748H107"}, - 3459031563456: &Security{ - SecurityId: 3459031563456, - Name: "ALE", - Description: "ALLETE, Inc.", - Symbol: "ALE", - Precision: 5, - Type: Stock, - AlternateId: "018522300"}, - 3459159120996: &Security{ - SecurityId: 3459159120996, - Name: "AKP", - Description: "Alliance California Municipal Income Fund", - Symbol: "AKP", - Precision: 5, - Type: Stock, - AlternateId: "018546101"}, - 3459392587872: &Security{ - SecurityId: 3459392587872, - Name: "ADS", - Description: "Alliance Data Systems Corp.", - Symbol: "ADS", - Precision: 5, - Type: Stock, - AlternateId: "018581108"}, - 3461094131940: &Security{ - SecurityId: 3461094131940, - Name: "AIQ", - Description: "Alliance Healthcare Services, Inc.", - Symbol: "AIQ", - Precision: 5, - Type: Stock, - AlternateId: "018606301"}, - 3461171300928: &Security{ - SecurityId: 3461171300928, - Name: "AHGP", - Description: "Alliance Holdings GP L.P.", - Symbol: "AHGP", - Precision: 5, - Type: Stock, - AlternateId: "01861G100"}, - 3461376214296: &Security{ - SecurityId: 3461376214296, - Name: "AFB", - Description: "AllianceBernstein National Municipal Income Fund", - Symbol: "AFB", - Precision: 5, - Type: Stock, - AlternateId: "01864U106"}, - 3461567783832: &Security{ - SecurityId: 3461567783832, - Name: "AFOP", - Description: "Alliance Fiber Optic Products, Inc.", - Symbol: "AFOP", - Precision: 5, - Type: Stock, - AlternateId: "018680306"}, - 3463729356384: &Security{ - SecurityId: 3463729356384, - Name: "ARLP", - Description: "Alliance Resource Partners, L.P.", - Symbol: "ARLP", - Precision: 5, - Type: Stock, - AlternateId: "01877R108"}, - 3463850288664: &Security{ - SecurityId: 3463850288664, - Name: "AWF", - Description: "AllianceBernstein Global High Income Fund, Inc.", - Symbol: "AWF", - Precision: 5, - Type: Stock, - AlternateId: "01879R106"}, - 3465440885088: &Security{ - SecurityId: 3465440885088, - Name: "LNT", - Description: "Alliant Energy Corp.", - Symbol: "LNT", - Precision: 5, - Type: Stock, - AlternateId: "018802108"}, - 3465521506404: &Security{ - SecurityId: 3465521506404, - Name: "ACG", - Description: "AllianceBernstein Income Fund, Inc.", - Symbol: "ACG", - Precision: 5, - Type: Stock, - AlternateId: "01881E101"}, - 3465566856324: &Security{ - SecurityId: 3465566856324, - Name: "NCZ", - Description: "AllianzGI Convertible & Income Fund II", - Symbol: "NCZ", - Precision: 5, - Type: Stock, - AlternateId: "018825109"}, - 3465571894956: &Security{ - SecurityId: 3465571894956, - Name: "NCV", - Description: "AllianzGI Convertible & Income Fund", - Symbol: "NCV", - Precision: 5, - Type: Stock, - AlternateId: "018828103"}, - 3465573574500: &Security{ - SecurityId: 3465573574500, - Name: "NIE", - Description: "AllianzGI Equity & Convertible Income Fund", - Symbol: "NIE", - Precision: 5, - Type: Stock, - AlternateId: "018829101"}, - 3465635720508: &Security{ - SecurityId: 3465635720508, - Name: "NFJ", - Description: "AllianzGI NFJ Dividend, Interest & Premium Strategy Fund", - Symbol: "NFJ", - Precision: 5, - Type: Stock, - AlternateId: "01883A107"}, - 3465650837088: &Security{ - SecurityId: 3465650837088, - Name: "ACV", - Description: "AllianzGI Diversified Income & Convertible Fund due 5/22/2030", - Symbol: "ACV", - Precision: 5, - Type: Stock, - AlternateId: "01883J108"}, - 3530865287520: &Security{ - SecurityId: 3530865287520, - Name: "AHPI", - Description: "Allied Healthcare Products, Inc.", - Symbol: "AHPI", - Precision: 5, - Type: Stock, - AlternateId: "019222108"}, - 3539570783616: &Security{ - SecurityId: 3539570783616, - Name: "ALQA", - Description: "Alliqua BioMedical, Inc.", - Symbol: "ALQA", - Precision: 5, - Type: Stock, - AlternateId: "019621200"}, - 3541851655524: &Security{ - SecurityId: 3541851655524, - Name: "ALSN", - Description: "Allison Transmission Holdings, Inc.", - Symbol: "ALSN", - Precision: 5, - Type: Stock, - AlternateId: "01973R101"}, - 3544327409760: &Security{ - SecurityId: 3544327409760, - Name: "MDRX", - Description: "Allscripts Healthcare Solutions, Inc.", - Symbol: "MDRX", - Precision: 5, - Type: Stock, - AlternateId: "01988P108"}, - 5642223220836: &Security{ - SecurityId: 5642223220836, - Name: "ALL", - Description: "Allstate Corp. (The)", - Symbol: "ALL", - Precision: 5, - Type: Stock, - AlternateId: "020002101"}, - 5642560823616: &Security{ - SecurityId: 5642560823616, - Name: "ALLY", - Description: "Ally Financial, Inc.", - Symbol: "ALLY", - Precision: 5, - Type: Stock, - AlternateId: "02005N100"}, - 5647062287988: &Security{ - SecurityId: 5647062287988, - Name: "AAU", - Description: "Almaden Minerals Ltd", - Symbol: "AAU", - Precision: 5, - Type: Stock, - AlternateId: "020283305"}, - 5650942107744: &Security{ - SecurityId: 5650942107744, - Name: "AFAM", - Description: "Almost Family, Inc.", - Symbol: "AFAM", - Precision: 5, - Type: Stock, - AlternateId: "020409108"}, - 5651152059708: &Security{ - SecurityId: 5651152059708, - Name: "ALNY", - Description: "Alnylam Pharmaceuticals, Inc.", - Symbol: "ALNY", - Precision: 5, - Type: Stock, - AlternateId: "02043Q107"}, - 5653207909656: &Security{ - SecurityId: 5653207909656, - Name: "BSI", - Description: "Alon Blue Square Israel Ltd.", - Symbol: "BSI", - Precision: 5, - Type: Stock, - AlternateId: "02051Q106"}, - 5653273414788: &Security{ - SecurityId: 5653273414788, - Name: "ALDW", - Description: "Alon USA Partners L.P.", - Symbol: "ALDW", - Precision: 5, - Type: Stock, - AlternateId: "02052T109"}, - 5653224705672: &Security{ - SecurityId: 5653224705672, - Name: "ALJ", - Description: "Alon USA Energy, Inc.", - Symbol: "ALJ", - Precision: 5, - Type: Stock, - AlternateId: "020520102"}, - 5657613542280: &Security{ - SecurityId: 5657613542280, - Name: "IMOM", - Description: "MomentumShares International Quantitative Momentum ETF", - Symbol: "IMOM", - Precision: 5, - Type: Stock, - AlternateId: "02072L102"}, - 5657613588900: &Security{ - SecurityId: 5657613588900, - Name: "IVAL", - Description: "ValueShares International Quantitiative Value ETF", - Symbol: "IVAL", - Precision: 5, - Type: Stock, - AlternateId: "02072L201"}, - 5657613682500: &Security{ - SecurityId: 5657613682500, - Name: "QMOM", - Description: "MomentumShares U.S. Quantitative Momentum ETF", - Symbol: "QMOM", - Precision: 5, - Type: Stock, - AlternateId: "02072L409"}, - 5657883960708: &Security{ - SecurityId: 5657883960708, - Name: "APT", - Description: "Alpha Pro Tech Ltd", - Symbol: "APT", - Precision: 5, - Type: Stock, - AlternateId: "020772109"}, - 5658035126076: &Security{ - SecurityId: 5658035126076, - Name: "GOOG", - Description: "Alphabet, Inc. Cl C", - Symbol: "GOOG", - Precision: 5, - Type: Stock, - AlternateId: "02079K107"}, - 5658035219316: &Security{ - SecurityId: 5658035219316, - Name: "GOOGL", - Description: "Alphabet, Inc. Cl A", - Symbol: "GOOGL", - Precision: 5, - Type: Stock, - AlternateId: "02079K305"}, - 5659778614068: &Security{ - SecurityId: 5659778614068, - Name: "AGD", - Description: "Alpine Global Dynamic Dividend Fund", - Symbol: "AGD", - Precision: 5, - Type: Stock, - AlternateId: "02082E205"}, - 5659832315052: &Security{ - SecurityId: 5659832315052, - Name: "AWP", - Description: "Alpine Global Premier Properties Fund", - Symbol: "AWP", - Precision: 5, - Type: Stock, - AlternateId: "02083A103"}, - 5720946869628: &Security{ - SecurityId: 5720946869628, - Name: "AOD", - Description: "Alpine Total Dynamic Dividend Fund", - Symbol: "AOD", - Precision: 5, - Type: Stock, - AlternateId: "021060207"}, - 5731703083584: &Security{ - SecurityId: 5731703083584, - Name: "RESI", - Description: "Altisource Residential Corp.", - Symbol: "RESI", - Precision: 5, - Type: Stock, - AlternateId: "02153W100"}, - 5731704763488: &Security{ - SecurityId: 5731704763488, - Name: "AAMC", - Description: "Altisource Asset Management Corp.", - Symbol: "AAMC", - Precision: 5, - Type: Stock, - AlternateId: "02153X108"}, - 5799477269016: &Security{ - SecurityId: 5799477269016, - Name: "AIMC", - Description: "Altra Industrial Motion Corp.", - Symbol: "AIMC", - Precision: 5, - Type: Stock, - AlternateId: "02208R106"}, - 5799539414700: &Security{ - SecurityId: 5799539414700, - Name: "MO", - Description: "Altria Group, Inc.", - Symbol: "MO", - Precision: 5, - Type: Stock, - AlternateId: "02209S103"}, - 5803735095684: &Security{ - SecurityId: 5803735095684, - Name: "ACH", - Description: "Aluminum Corp. of China Ltd ADR", - Symbol: "ACH", - Precision: 5, - Type: Stock, - AlternateId: "022276109"}, - 5879678933016: &Security{ - SecurityId: 5879678933016, - Name: "AMZN", - Description: "Amazon.com, Inc.", - Symbol: "AMZN", - Precision: 5, - Type: Stock, - AlternateId: "023135106"}, - 5879685988368: &Security{ - SecurityId: 5879685988368, - Name: "AMBC", - Description: "Ambac Financial Group, Inc.", - Symbol: "AMBC", - Precision: 5, - Type: Stock, - AlternateId: "023139884"}, - 5879767952736: &Security{ - SecurityId: 5879767952736, - Name: "AYA", - Description: "Amaya, Inc.", - Symbol: "AYA", - Precision: 5, - Type: Stock, - AlternateId: "02314M108"}, - 5880029972832: &Security{ - SecurityId: 5880029972832, - Name: "AMBR", - Description: "Amber Road, Inc.", - Symbol: "AMBR", - Precision: 5, - Type: Stock, - AlternateId: "02318Y108"}, - 5886123666228: &Security{ - SecurityId: 5886123666228, - Name: "DIT", - Description: "AMCON Distributing Co.", - Symbol: "DIT", - Precision: 5, - Type: Stock, - AlternateId: "02341Q205"}, - 5886209279808: &Security{ - SecurityId: 5886209279808, - Name: "AMDA", - Description: "Amedica Corp.", - Symbol: "AMDA", - Precision: 5, - Type: Stock, - AlternateId: "023435100"}, - 5886210959712: &Security{ - SecurityId: 5886210959712, - Name: "AMED", - Description: "Amedisys, Inc.", - Symbol: "AMED", - Precision: 5, - Type: Stock, - AlternateId: "023436108"}, - 5888690072640: &Security{ - SecurityId: 5888690072640, - Name: "UHAL", - Description: "AMERCO", - Symbol: "UHAL", - Precision: 5, - Type: Stock, - AlternateId: "023586100"}, - 5890386484872: &Security{ - SecurityId: 5890386484872, - Name: "AEE", - Description: "Ameren Corp.", - Symbol: "AEE", - Precision: 5, - Type: Stock, - AlternateId: "023608102"}, - 5890457028960: &Security{ - SecurityId: 5890457028960, - Name: "AMRC", - Description: "Ameresco, Inc.", - Symbol: "AMRC", - Precision: 5, - Type: Stock, - AlternateId: "02361E108"}, - 5890438552968: &Security{ - SecurityId: 5890438552968, - Name: "ASBI", - Description: "Ameriana Bancorp", - Symbol: "ASBI", - Precision: 5, - Type: Stock, - AlternateId: "023613102"}, - 5890668660468: &Security{ - SecurityId: 5890668660468, - Name: "AMX", - Description: "America Movil S.A.B. de C.V. Series L ADR", - Symbol: "AMX", - Precision: 5, - Type: Stock, - AlternateId: "02364W105"}, - 5890668707088: &Security{ - SecurityId: 5890668707088, - Name: "AMOV", - Description: "America Movil S.A. de C.V. Series A ADR", - Symbol: "AMOV", - Precision: 5, - Type: Stock, - AlternateId: "02364W204"}, - 5892957976968: &Security{ - SecurityId: 5892957976968, - Name: "AAL", - Description: "American Airlines Group, Inc.", - Symbol: "AAL", - Precision: 5, - Type: Stock, - AlternateId: "02376R102"}, - 5895028943424: &Security{ - SecurityId: 5895028943424, - Name: "APPCQ", - Description: "American Apparel, Inc.", - Symbol: "APPCQ", - Precision: 5, - Type: Stock, - AlternateId: "023850100"}, - 5955742023120: &Security{ - SecurityId: 5955742023120, - Name: "AAT", - Description: "American Assets Trust, Inc.", - Symbol: "AAT", - Precision: 5, - Type: Stock, - AlternateId: "024013104"}, - 5956040994732: &Security{ - SecurityId: 5956040994732, - Name: "AXL", - Description: "American Axle & Manufacturing Holdings, Inc.", - Symbol: "AXL", - Precision: 5, - Type: Stock, - AlternateId: "024061103"}, - 5973280573248: &Security{ - SecurityId: 5973280573248, - Name: "ACC", - Description: "American Campus Communities, Inc.", - Symbol: "ACC", - Precision: 5, - Type: Stock, - AlternateId: "024835100"}, - 6034277508084: &Security{ - SecurityId: 6034277508084, - Name: "AGNC", - Description: "American Capital Agency Corp.", - Symbol: "AGNC", - Precision: 5, - Type: Stock, - AlternateId: "02503X105"}, - 6034279187628: &Security{ - SecurityId: 6034279187628, - Name: "ACAS", - Description: "American Capital Ltd", - Symbol: "ACAS", - Precision: 5, - Type: Stock, - AlternateId: "02503Y103"}, - 6034299343056: &Security{ - SecurityId: 6034299343056, - Name: "MTGE", - Description: "American Capital Mortgage Investment Corp.", - Symbol: "MTGE", - Precision: 5, - Type: Stock, - AlternateId: "02504A104"}, - 6034304382048: &Security{ - SecurityId: 6034304382048, - Name: "ACSF", - Description: "American Capital Senior Floating, Ltd.", - Symbol: "ACSF", - Precision: 5, - Type: Stock, - AlternateId: "02504D108"}, - 6034359855816: &Security{ - SecurityId: 6034359855816, - Name: "GNOW", - Description: "American CareSource Holdings, Inc.", - Symbol: "GNOW", - Precision: 5, - Type: Stock, - AlternateId: "02505A202"}, - 6041128661856: &Security{ - SecurityId: 6041128661856, - Name: "ADGE", - Description: "American DG Energy, Inc.", - Symbol: "ADGE", - Precision: 5, - Type: Stock, - AlternateId: "025398108"}, - 6045129507096: &Security{ - SecurityId: 6045129507096, - Name: "AEO", - Description: "American Eagle Outfitters, Inc.", - Symbol: "AEO", - Precision: 5, - Type: Stock, - AlternateId: "02553E106"}, - 6045117749604: &Security{ - SecurityId: 6045117749604, - Name: "AEP", - Description: "American Electric Power Co., Inc.", - Symbol: "AEP", - Precision: 5, - Type: Stock, - AlternateId: "025537101"}, - 6045357934980: &Security{ - SecurityId: 6045357934980, - Name: "AETI", - Description: "American Electric Technologies, Inc.", - Symbol: "AETI", - Precision: 5, - Type: Stock, - AlternateId: "025576109"}, - 6047534763864: &Security{ - SecurityId: 6047534763864, - Name: "AEL", - Description: "American Equity Investment Life Holding Co.", - Symbol: "AEL", - Precision: 5, - Type: Stock, - AlternateId: "025676206"}, - 6051525484932: &Security{ - SecurityId: 6051525484932, - Name: "AXP", - Description: "American Express Co.", - Symbol: "AXP", - Precision: 5, - Type: Stock, - AlternateId: "025816109"}, - 6052056243264: &Security{ - SecurityId: 6052056243264, - Name: "AFCO", - Description: "American Farmland Co.", - Symbol: "AFCO", - Precision: 5, - Type: Stock, - AlternateId: "02589Y100"}, - 6053816480976: &Security{ - SecurityId: 6053816480976, - Name: "AFG", - Description: "American Financial Group, Inc.", - Symbol: "AFG", - Precision: 5, - Type: Stock, - AlternateId: "025932104"}, - 6125816673432: &Security{ - SecurityId: 6125816673432, - Name: "AMH", - Description: "American Homes 4 Rent", - Symbol: "AMH", - Precision: 5, - Type: Stock, - AlternateId: "02665T306"}, - 6130249376976: &Security{ - SecurityId: 6130249376976, - Name: "AIG", - Description: "American Intl Group, Inc.", - Symbol: "AIG", - Precision: 5, - Type: Stock, - AlternateId: "026874784"}, - 6195678527808: &Security{ - SecurityId: 6195678527808, - Name: "ALN", - Description: "American Lorain Corp.", - Symbol: "ALN", - Precision: 5, - Type: Stock, - AlternateId: "027297100"}, - 6201815844672: &Security{ - SecurityId: 6201815844672, - Name: "AMID", - Description: "American Midstream Partners L.P.", - Symbol: "AMID", - Precision: 5, - Type: Stock, - AlternateId: "02752P100"}, - 6206256749664: &Security{ - SecurityId: 6206256749664, - Name: "AMNB", - Description: "American National Bankshares, Inc.", - Symbol: "AMNB", - Precision: 5, - Type: Stock, - AlternateId: "027745108"}, - 6280562961396: &Security{ - SecurityId: 6280562961396, - Name: "ANAT", - Description: "American National Insurance Co.", - Symbol: "ANAT", - Precision: 5, - Type: Stock, - AlternateId: "028591105"}, - 6350078908332: &Security{ - SecurityId: 6350078908332, - Name: "ARII", - Description: "American Railcar Industries, Inc.", - Symbol: "ARII", - Precision: 5, - Type: Stock, - AlternateId: "02916P103"}, - 6350104102788: &Security{ - SecurityId: 6350104102788, - Name: "ARL", - Description: "American Realty Investors, Inc.", - Symbol: "ARL", - Precision: 5, - Type: Stock, - AlternateId: "029174109"}, - 6352297774380: &Security{ - SecurityId: 6352297774380, - Name: "ARPI", - Description: "American Residential Properties, Inc.", - Symbol: "ARPI", - Precision: 5, - Type: Stock, - AlternateId: "02927E303"}, - 6354158695668: &Security{ - SecurityId: 6354158695668, - Name: "AMRB", - Description: "American River Bankshares", - Symbol: "AMRB", - Precision: 5, - Type: Stock, - AlternateId: "029326105"}, - 6358933843956: &Security{ - SecurityId: 6358933843956, - Name: "AMS", - Description: "American Shared Hospital Services", - Symbol: "AMS", - Precision: 5, - Type: Stock, - AlternateId: "029595105"}, - 6361046801028: &Security{ - SecurityId: 6361046801028, - Name: "AMSWA", - Description: "American Software, Inc.", - Symbol: "AMSWA", - Precision: 5, - Type: Stock, - AlternateId: "029683109"}, - 6365470909284: &Security{ - SecurityId: 6365470909284, - Name: "AWR", - Description: "American States Water Co.", - Symbol: "AWR", - Precision: 5, - Type: Stock, - AlternateId: "029899101"}, - 8465568744060: &Security{ - SecurityId: 8465568744060, - Name: "AMSC", - Description: "American Superconductor Corp.", - Symbol: "AMSC", - Precision: 5, - Type: Stock, - AlternateId: "030111207"}, - 8468162024256: &Security{ - SecurityId: 8468162024256, - Name: "AMT", - Description: "American Tower Corp.", - Symbol: "AMT", - Precision: 5, - Type: Stock, - AlternateId: "03027X100"}, - 8468162117856: &Security{ - SecurityId: 8468162117856, - Name: "AMT-A", - Description: "American Tower Corp., 5.25% Mandatory Convertible Cumul Preferred Stock Series A", - Symbol: "AMT-A", - Precision: 5, - Type: Stock, - AlternateId: "03027X308"}, - 8470285059168: &Security{ - SecurityId: 8470285059168, - Name: "AVD", - Description: "American Vanguard Corp.", - Symbol: "AVD", - Precision: 5, - Type: Stock, - AlternateId: "030371108"}, - 8472157830828: &Security{ - SecurityId: 8472157830828, - Name: "AWK", - Description: "American Water Works Co., Inc.", - Symbol: "AWK", - Precision: 5, - Type: Stock, - AlternateId: "030420103"}, - 8474223758724: &Security{ - SecurityId: 8474223758724, - Name: "AMWD", - Description: "American Woodmark Corp.", - Symbol: "AMWD", - Precision: 5, - Type: Stock, - AlternateId: "030506109"}, - 8476560104436: &Security{ - SecurityId: 8476560104436, - Name: "CRMT", - Description: "America's Car-Mart, Inc.", - Symbol: "CRMT", - Precision: 5, - Type: Stock, - AlternateId: "03062T105"}, - 8478656265024: &Security{ - SecurityId: 8478656265024, - Name: "AMSF", - Description: "AMERISAFE, Inc.", - Symbol: "AMSF", - Precision: 5, - Type: Stock, - AlternateId: "03071H100"}, - 8478772158708: &Security{ - SecurityId: 8478772158708, - Name: "ABC", - Description: "AmerisourceBergen Corp.", - Symbol: "ABC", - Precision: 5, - Type: Stock, - AlternateId: "03073E105"}, - 8478825906312: &Security{ - SecurityId: 8478825906312, - Name: "ASRV", - Description: "AmeriServ Financial, Inc.", - Symbol: "ASRV", - Precision: 5, - Type: Stock, - AlternateId: "03074A102"}, - 8478950198040: &Security{ - SecurityId: 8478950198040, - Name: "AMP", - Description: "Ameriprise Financial, Inc.", - Symbol: "AMP", - Precision: 5, - Type: Stock, - AlternateId: "03076C106"}, - 8478963635040: &Security{ - SecurityId: 8478963635040, - Name: "ABCB", - Description: "Ameris Bancorp", - Symbol: "ABCB", - Precision: 5, - Type: Stock, - AlternateId: "03076K108"}, - 8483352471576: &Security{ - SecurityId: 8483352471576, - Name: "APU", - Description: "AmeriGas Partners, L.P.", - Symbol: "APU", - Precision: 5, - Type: Stock, - AlternateId: "030975106"}, - 8541695612736: &Security{ - SecurityId: 8541695612736, - Name: "ATLO", - Description: "Ames National Corp.", - Symbol: "ATLO", - Precision: 5, - Type: Stock, - AlternateId: "031001100"}, - 8543870715456: &Security{ - SecurityId: 8543870715456, - Name: "AME", - Description: "AMETEK, Inc.", - Symbol: "AME", - Precision: 5, - Type: Stock, - AlternateId: "031100100"}, - 8544236871744: &Security{ - SecurityId: 8544236871744, - Name: "AMGN", - Description: "Amgen, Inc.", - Symbol: "AMGN", - Precision: 5, - Type: Stock, - AlternateId: "031162100"}, - 8552752525188: &Security{ - SecurityId: 8552752525188, - Name: "FOLD", - Description: "Amicus Therapeutics, Inc.", - Symbol: "FOLD", - Precision: 5, - Type: Stock, - AlternateId: "03152W109"}, - 8555060317248: &Security{ - SecurityId: 8555060317248, - Name: "AMKR", - Description: "Amkor Technology, Inc.", - Symbol: "AMKR", - Precision: 5, - Type: Stock, - AlternateId: "031652100"}, - 8620251253164: &Security{ - SecurityId: 8620251253164, - Name: "AP", - Description: "Ampco-Pittsburgh Corp.", - Symbol: "AP", - Precision: 5, - Type: Stock, - AlternateId: "032037103"}, - 8620647642540: &Security{ - SecurityId: 8620647642540, - Name: "AMPH", - Description: "Amphastar Pharmaceuticals, Inc.", - Symbol: "AMPH", - Precision: 5, - Type: Stock, - AlternateId: "03209R103"}, - 8620651001988: &Security{ - SecurityId: 8620651001988, - Name: "AMPE", - Description: "Ampio Pharmaceuticals, Inc.", - Symbol: "AMPE", - Precision: 5, - Type: Stock, - AlternateId: "03209T109"}, - 8620610690916: &Security{ - SecurityId: 8620610690916, - Name: "APH", - Description: "Amphenol Corp.", - Symbol: "APH", - Precision: 5, - Type: Stock, - AlternateId: "032095101"}, - 8622330617736: &Security{ - SecurityId: 8622330617736, - Name: "BETR", - Description: "Amplify Snack Brands, Inc.", - Symbol: "BETR", - Precision: 5, - Type: Stock, - AlternateId: "03211L102"}, - 8622337382856: &Security{ - SecurityId: 8622337382856, - Name: "APHB", - Description: "AmpliPhi Biosciences Corp.", - Symbol: "APHB", - Precision: 5, - Type: Stock, - AlternateId: "03211P202"}, - 8622552327156: &Security{ - SecurityId: 8622552327156, - Name: "AXR", - Description: "AMREP Corp.", - Symbol: "AXR", - Precision: 5, - Type: Stock, - AlternateId: "032159105"}, - 8626751507124: &Security{ - SecurityId: 8626751507124, - Name: "AMSG", - Description: "AmSurg Corp.", - Symbol: "AMSG", - Precision: 5, - Type: Stock, - AlternateId: "03232P405"}, - 8626751553744: &Security{ - SecurityId: 8626751553744, - Name: "AMSGP", - Description: "AmSurg Corp., 5.25% Mandatory Convertible Preferred Stock Series A-1", - Symbol: "AMSGP", - Precision: 5, - Type: Stock, - AlternateId: "03232P504"}, - 8626773388752: &Security{ - SecurityId: 8626773388752, - Name: "ASYS", - Description: "Amtech Systems, Inc.", - Symbol: "ASYS", - Precision: 5, - Type: Stock, - AlternateId: "032332504"}, - 8626905985284: &Security{ - SecurityId: 8626905985284, - Name: "AFSI", - Description: "AmTrust Financial Services, Inc.", - Symbol: "AFSI", - Precision: 5, - Type: Stock, - AlternateId: "032359309"}, - 8626988192868: &Security{ - SecurityId: 8626988192868, - Name: "AMRS", - Description: "Amyris, Inc.", - Symbol: "AMRS", - Precision: 5, - Type: Stock, - AlternateId: "03236M101"}, - 8628886158948: &Security{ - SecurityId: 8628886158948, - Name: "ANAC", - Description: "Anacor Pharmaceuticals, Inc.", - Symbol: "ANAC", - Precision: 5, - Type: Stock, - AlternateId: "032420101"}, - 8631004154940: &Security{ - SecurityId: 8631004154940, - Name: "APC", - Description: "Anadarko Petroleum Corp.", - Symbol: "APC", - Precision: 5, - Type: Stock, - AlternateId: "032511107"}, - 8631004294800: &Security{ - SecurityId: 8631004294800, - Name: "AEUA", - Description: "Anadarko Petroleum Corp., 7.50% Tangible Equity Units due 6/7/2018", - Symbol: "AEUA", - Precision: 5, - Type: Stock, - AlternateId: "032511404"}, - 8631010873440: &Security{ - SecurityId: 8631010873440, - Name: "ANAD", - Description: "ANADIGICS, Inc.", - Symbol: "ANAD", - Precision: 5, - Type: Stock, - AlternateId: "032515108"}, - 8633427840756: &Security{ - SecurityId: 8633427840756, - Name: "ADI", - Description: "Analog Devices, Inc.", - Symbol: "ADI", - Precision: 5, - Type: Stock, - AlternateId: "032654105"}, - 8633432926332: &Security{ - SecurityId: 8633432926332, - Name: "ALOG", - Description: "Analogic Corp.", - Symbol: "ALOG", - Precision: 5, - Type: Stock, - AlternateId: "032657207"}, - 8635851619776: &Security{ - SecurityId: 8635851619776, - Name: "AVXL", - Description: "Anavex Life Sciences Corp.", - Symbol: "AVXL", - Precision: 5, - Type: Stock, - AlternateId: "032797300"}, - 8637695745048: &Security{ - SecurityId: 8637695745048, - Name: "ABCW", - Description: "Anchor BanCorp Wisconsin, Inc.", - Symbol: "ABCW", - Precision: 5, - Type: Stock, - AlternateId: "03283P106"}, - 8637667191504: &Security{ - SecurityId: 8637667191504, - Name: "ANCB", - Description: "Anchor Bancorp", - Symbol: "ANCB", - Precision: 5, - Type: Stock, - AlternateId: "032838104"}, - 8779332723372: &Security{ - SecurityId: 8779332723372, - Name: "ANDE", - Description: "Andersons, Inc. (The)", - Symbol: "ANDE", - Precision: 5, - Type: Stock, - AlternateId: "034164103"}, - 8792378300772: &Security{ - SecurityId: 8792378300772, - Name: "ANGO", - Description: "AngioDynamics, Inc.", - Symbol: "ANGO", - Precision: 5, - Type: Stock, - AlternateId: "03475V101"}, - 8792332951140: &Security{ - SecurityId: 8792332951140, - Name: "ANGI", - Description: "Angie's List, Inc.", - Symbol: "ANGI", - Precision: 5, - Type: Stock, - AlternateId: "034754101"}, - 8857461787992: &Security{ - SecurityId: 8857461787992, - Name: "AU", - Description: "AngloGold Ashanti Ltd ADR", - Symbol: "AU", - Precision: 5, - Type: Stock, - AlternateId: "035128206"}, - 8859814883424: &Security{ - SecurityId: 8859814883424, - Name: "ANIK", - Description: "Anika Therapeutics, Inc.", - Symbol: "ANIK", - Precision: 5, - Type: Stock, - AlternateId: "035255108"}, - 8860048349940: &Security{ - SecurityId: 8860048349940, - Name: "AXE", - Description: "Anixter Intl, Inc.", - Symbol: "AXE", - Precision: 5, - Type: Stock, - AlternateId: "035290105"}, - 8870448672324: &Security{ - SecurityId: 8870448672324, - Name: "NLY", - Description: "Annaly Capital Management, Inc.", - Symbol: "NLY", - Precision: 5, - Type: Stock, - AlternateId: "035710409"}, - 8946740050164: &Security{ - SecurityId: 8946740050164, - Name: "ANSS", - Description: "ANSYS, Inc.", - Symbol: "ANSS", - Precision: 5, - Type: Stock, - AlternateId: "03662Q105"}, - 8946820671768: &Security{ - SecurityId: 8946820671768, - Name: "ATRS", - Description: "Antares Pharma, Inc.", - Symbol: "ATRS", - Precision: 5, - Type: Stock, - AlternateId: "036642106"}, - 8948968900524: &Security{ - SecurityId: 8948968900524, - Name: "AM", - Description: "Antero Midstream Partners LP", - Symbol: "AM", - Precision: 5, - Type: Stock, - AlternateId: "03673L103"}, - 8949044529828: &Security{ - SecurityId: 8949044529828, - Name: "ANTH", - Description: "Anthera Pharmaceuticals. Inc.", - Symbol: "ANTH", - Precision: 5, - Type: Stock, - AlternateId: "03674U201"}, - 8949049522200: &Security{ - SecurityId: 8949049522200, - Name: "AR", - Description: "Antero Resources Corp.", - Symbol: "AR", - Precision: 5, - Type: Stock, - AlternateId: "03674X106"}, - 8949057966792: &Security{ - SecurityId: 8949057966792, - Name: "ANTX", - Description: "Anthem, Inc., 5.25% Equity Units due 5/1/2018", - Symbol: "ANTX", - Precision: 5, - Type: Stock, - AlternateId: "036752202"}, - 9018662886756: &Security{ - SecurityId: 9018662886756, - Name: "ANH", - Description: "Anworth Mortgage Asset Corp.", - Symbol: "ANH", - Precision: 5, - Type: Stock, - AlternateId: "037347101"}, - 9020602843416: &Security{ - SecurityId: 9020602843416, - Name: "AXN", - Description: "Aoxing Pharmaceutical Co. Inc.", - Symbol: "AXN", - Precision: 5, - Type: Stock, - AlternateId: "03740A106"}, - 9020648193012: &Security{ - SecurityId: 9020648193012, - Name: "APA", - Description: "Apache Corp.", - Symbol: "APA", - Precision: 5, - Type: Stock, - AlternateId: "037411105"}, - 9021115126116: &Security{ - SecurityId: 9021115126116, - Name: "AIV", - Description: "Apartment Investment & Management Co.", - Symbol: "AIV", - Precision: 5, - Type: Stock, - AlternateId: "03748R101"}, - 9021115413864: &Security{ - SecurityId: 9021115413864, - Name: "AIV-A", - Description: "Apartment Investment & Management, 6.875% Class A Cumulative Preferred Stock", - Symbol: "AIV-A", - Precision: 5, - Type: Stock, - AlternateId: "03748R762"}, - 9023320462212: &Security{ - SecurityId: 9023320462212, - Name: "APOG", - Description: "Apogee Enterprises, Inc.", - Symbol: "APOG", - Precision: 5, - Type: Stock, - AlternateId: "037598109"}, - 9024946330356: &Security{ - SecurityId: 9024946330356, - Name: "APOL", - Description: "Apollo Group, Inc.", - Symbol: "APOL", - Precision: 5, - Type: Stock, - AlternateId: "037604105"}, - 9025050466584: &Security{ - SecurityId: 9025050466584, - Name: "AINV", - Description: "Apollo Investment Corp.", - Symbol: "AINV", - Precision: 5, - Type: Stock, - AlternateId: "03761U106"}, - 9025003530648: &Security{ - SecurityId: 9025003530648, - Name: "APO", - Description: "Apollo Global Management LLC", - Symbol: "APO", - Precision: 5, - Type: Stock, - AlternateId: "037612306"}, - 9025110932724: &Security{ - SecurityId: 9025110932724, - Name: "ARI", - Description: "Apollo Commercial Real Estate Finance, Inc.", - Symbol: "ARI", - Precision: 5, - Type: Stock, - AlternateId: "03762U105"}, - 9025173078408: &Security{ - SecurityId: 9025173078408, - Name: "AMTG", - Description: "Apollo Residential Mortgage, Inc.", - Symbol: "AMTG", - Precision: 5, - Type: Stock, - AlternateId: "03763V102"}, - 9025131088188: &Security{ - SecurityId: 9025131088188, - Name: "AFT", - Description: "Apollo Senior Floating Rate Fund", - Symbol: "AFT", - Precision: 5, - Type: Stock, - AlternateId: "037636107"}, - 9025134447276: &Security{ - SecurityId: 9025134447276, - Name: "AIF", - Description: "Apollo Tactical Income Fund, Inc.", - Symbol: "AIF", - Precision: 5, - Type: Stock, - AlternateId: "037638103"}, - 9025280574048: &Security{ - SecurityId: 9025280574048, - Name: "APIC", - Description: "Apigee Corp.", - Symbol: "APIC", - Precision: 5, - Type: Stock, - AlternateId: "03765N108"}, - 9029494730304: &Security{ - SecurityId: 9029494730304, - Name: "APPF", - Description: "AppFolio, Inc. Cl A", - Symbol: "APPF", - Precision: 5, - Type: Stock, - AlternateId: "03783C100"}, - 9029479613760: &Security{ - SecurityId: 9029479613760, - Name: "AAPL", - Description: "Apple, Inc.", - Symbol: "AAPL", - Precision: 5, - Type: Stock, - AlternateId: "037833100"}, - 9029592194688: &Security{ - SecurityId: 9029592194688, - Name: "APLE", - Description: "Apple Hospitality REIT, Inc.", - Symbol: "APLE", - Precision: 5, - Type: Stock, - AlternateId: "03784Y200"}, - 9092686969908: &Security{ - SecurityId: 9092686969908, - Name: "ARCI", - Description: "Appliance Recycling Centers of America, Inc.", - Symbol: "ARCI", - Precision: 5, - Type: Stock, - AlternateId: "03814F205"}, - 9094616802036: &Security{ - SecurityId: 9094616802036, - Name: "AIT", - Description: "Applied Industrial Technologies, Inc.", - Symbol: "AIT", - Precision: 5, - Type: Stock, - AlternateId: "03820C105"}, - 9094628559168: &Security{ - SecurityId: 9094628559168, - Name: "AGTC", - Description: "Applied Genetic Technologies Corp.", - Symbol: "AGTC", - Precision: 5, - Type: Stock, - AlternateId: "03820J100"}, - 9094771466712: &Security{ - SecurityId: 9094771466712, - Name: "AMCC", - Description: "Applied Micro Circuits Corp.", - Symbol: "AMCC", - Precision: 5, - Type: Stock, - AlternateId: "03822W406"}, - 9094720938228: &Security{ - SecurityId: 9094720938228, - Name: "AMAT", - Description: "Applied Materials, Inc.", - Symbol: "AMAT", - Precision: 5, - Type: Stock, - AlternateId: "038222105"}, - 9094828433544: &Security{ - SecurityId: 9094828433544, - Name: "AAOI", - Description: "Applied Optoelectronics, Inc.", - Symbol: "AAOI", - Precision: 5, - Type: Stock, - AlternateId: "03823U102"}, - 9096964905132: &Security{ - SecurityId: 9096964905132, - Name: "ATR", - Description: "AptarGroup, Inc.", - Symbol: "ATR", - Precision: 5, - Type: Stock, - AlternateId: "038336103"}, - 9097189973676: &Security{ - SecurityId: 9097189973676, - Name: "WTR", - Description: "Aqua America, Inc.", - Symbol: "WTR", - Precision: 5, - Type: Stock, - AlternateId: "03836W103"}, - 9097228604772: &Security{ - SecurityId: 9097228604772, - Name: "AQMS", - Description: "Aqua Metals, Inc.", - Symbol: "AQMS", - Precision: 5, - Type: Stock, - AlternateId: "03837J101"}, - 9099089619300: &Security{ - SecurityId: 9099089619300, - Name: "AQXP", - Description: "Aquinox Pharmaceuticals, Inc.", - Symbol: "AQXP", - Precision: 5, - Type: Stock, - AlternateId: "03842B101"}, - 9101298314520: &Security{ - SecurityId: 9101298314520, - Name: "ARMK", - Description: "Aramark", - Symbol: "ARMK", - Precision: 5, - Type: Stock, - AlternateId: "03852U106"}, - 9105764413284: &Security{ - SecurityId: 9105764413284, - Name: "PETX", - Description: "Aratana Therapeutics, Inc.", - Symbol: "PETX", - Precision: 5, - Type: Stock, - AlternateId: "03874P101"}, - 9106056666432: &Security{ - SecurityId: 9106056666432, - Name: "ABUS", - Description: "Arbutus Biopharma Corp.", - Symbol: "ABUS", - Precision: 5, - Type: Stock, - AlternateId: "03879J100"}, - 9106063384932: &Security{ - SecurityId: 9106063384932, - Name: "ARCX", - Description: "Arc Logistics Partners LP", - Symbol: "ARCX", - Precision: 5, - Type: Stock, - AlternateId: "03879N101"}, - 9109960094304: &Security{ - SecurityId: 9109960094304, - Name: "ABR", - Description: "Arbor Realty Trust, Inc.", - Symbol: "ABR", - Precision: 5, - Type: Stock, - AlternateId: "038923108"}, - 9168674430708: &Security{ - SecurityId: 9168674430708, - Name: "RKDA", - Description: "Arcadia Biosciences, Inc.", - Symbol: "RKDA", - Precision: 5, - Type: Stock, - AlternateId: "039014105"}, - 9175581011700: &Security{ - SecurityId: 9175581011700, - Name: "ARCB", - Description: "ArcBest Corp.", - Symbol: "ARCB", - Precision: 5, - Type: Stock, - AlternateId: "03937C105"}, - 9175656594384: &Security{ - SecurityId: 9175656594384, - Name: "MT", - Description: "ArcelorMittal", - Symbol: "MT", - Precision: 5, - Type: Stock, - AlternateId: "03938L104"}, - 9175621415904: &Security{ - SecurityId: 9175621415904, - Name: "ACIIQ", - Description: "Arch Coal, Inc.", - Symbol: "ACIIQ", - Precision: 5, - Type: Stock, - AlternateId: "039380308"}, - 9177803143560: &Security{ - SecurityId: 9177803143560, - Name: "ADM", - Description: "Archer Daniels Midland Co.", - Symbol: "ADM", - Precision: 5, - Type: Stock, - AlternateId: "039483102"}, - 9179964809280: &Security{ - SecurityId: 9179964809280, - Name: "APLP", - Description: "Archrock Partners, L.P.", - Symbol: "APLP", - Precision: 5, - Type: Stock, - AlternateId: "03957U100"}, - 9179968168728: &Security{ - SecurityId: 9179968168728, - Name: "AROC", - Description: "Archrock, Inc.", - Symbol: "AROC", - Precision: 5, - Type: Stock, - AlternateId: "03957W106"}, - 9182091203280: &Security{ - SecurityId: 9182091203280, - Name: "ACAT", - Description: "Arctic Cat, Inc.", - Symbol: "ACAT", - Precision: 5, - Type: Stock, - AlternateId: "039670104"}, - 9182223893052: &Security{ - SecurityId: 9182223893052, - Name: "ARDX", - Description: "Ardelyx, Inc.", - Symbol: "ARDX", - Precision: 5, - Type: Stock, - AlternateId: "039697107"}, - 11284693298568: &Security{ - SecurityId: 11284693298568, - Name: "ARNA", - Description: "Arena Pharmaceuticals, Inc.", - Symbol: "ARNA", - Precision: 5, - Type: Stock, - AlternateId: "040047102"}, - 11286639973764: &Security{ - SecurityId: 11286639973764, - Name: "AGX", - Description: "Argan, Inc.", - Symbol: "AGX", - Precision: 5, - Type: Stock, - AlternateId: "04010E109"}, - 11286651730860: &Security{ - SecurityId: 11286651730860, - Name: "ARCC", - Description: "Ares Capital Corp.", - Symbol: "ARCC", - Precision: 5, - Type: Stock, - AlternateId: "04010L103"}, - 11286849925728: &Security{ - SecurityId: 11286849925728, - Name: "ACRE", - Description: "Ares Commercial Real Estate Corp.", - Symbol: "ACRE", - Precision: 5, - Type: Stock, - AlternateId: "04013V108"}, - 11286883517832: &Security{ - SecurityId: 11286883517832, - Name: "ARDC", - Description: "Ares Dynamic Credit Allocation Fund", - Symbol: "ARDC", - Precision: 5, - Type: Stock, - AlternateId: "04014F102"}, - 11286915430500: &Security{ - SecurityId: 11286915430500, - Name: "ARES", - Description: "Ares Management L.P.", - Symbol: "ARES", - Precision: 5, - Type: Stock, - AlternateId: "04014Y101"}, - 11288915853228: &Security{ - SecurityId: 11288915853228, - Name: "ARGS", - Description: "Argos Therapeutics, Inc.", - Symbol: "ARGS", - Precision: 5, - Type: Stock, - AlternateId: "040221103"}, - 11291168218176: &Security{ - SecurityId: 11291168218176, - Name: "ARIA", - Description: "ARIAD Pharmaceuticals, Inc.", - Symbol: "ARIA", - Precision: 5, - Type: Stock, - AlternateId: "04033A100"}, - 11293212311064: &Security{ - SecurityId: 11293212311064, - Name: "ANET", - Description: "Arista Networks, Inc.", - Symbol: "ANET", - Precision: 5, - Type: Stock, - AlternateId: "040413106"}, - 11299740978276: &Security{ - SecurityId: 11299740978276, - Name: "ARKR", - Description: "Ark Restaurants Corp.", - Symbol: "ARKR", - Precision: 5, - Type: Stock, - AlternateId: "040712101"}, - 11369646642996: &Security{ - SecurityId: 11369646642996, - Name: "AI", - Description: "Arlington Asset Investment Corp.", - Symbol: "AI", - Precision: 5, - Type: Stock, - AlternateId: "041356205"}, - 11441700443232: &Security{ - SecurityId: 11441700443232, - Name: "AHH", - Description: "Armada Hoffler Properties, Inc.", - Symbol: "AHH", - Precision: 5, - Type: Stock, - AlternateId: "04208T108"}, - 11447767402812: &Security{ - SecurityId: 11447767402812, - Name: "ARR", - Description: "ARMOUR Residential REIT, Inc.", - Symbol: "ARR", - Precision: 5, - Type: Stock, - AlternateId: "042315507"}, - 11450353824648: &Security{ - SecurityId: 11450353824648, - Name: "AWI", - Description: "Armstrong World Industries, Inc.", - Symbol: "AWI", - Precision: 5, - Type: Stock, - AlternateId: "04247X102"}, - 11454715834092: &Security{ - SecurityId: 11454715834092, - Name: "ARTX", - Description: "Arotech Corp.", - Symbol: "ARTX", - Precision: 5, - Type: Stock, - AlternateId: "042682203"}, - 11454796409148: &Security{ - SecurityId: 11454796409148, - Name: "ARQL", - Description: "ArQule, Inc.", - Symbol: "ARQL", - Precision: 5, - Type: Stock, - AlternateId: "04269E107"}, - 11454828321780: &Security{ - SecurityId: 11454828321780, - Name: "ARRY", - Description: "Array BioPharma, Inc.", - Symbol: "ARRY", - Precision: 5, - Type: Stock, - AlternateId: "04269X105"}, - 11454786424800: &Security{ - SecurityId: 11454786424800, - Name: "HRT", - Description: "Arrhythmia Research Technology, Inc.", - Symbol: "HRT", - Precision: 5, - Type: Stock, - AlternateId: "042698308"}, - 11456615433168: &Security{ - SecurityId: 11456615433168, - Name: "GYLD", - Description: "Arrow Dow Jones Global Yield ETF", - Symbol: "GYLD", - Precision: 5, - Type: Stock, - AlternateId: "04273H104"}, - 11456595277632: &Security{ - SecurityId: 11456595277632, - Name: "ARW", - Description: "Arrow Electronics, Inc.", - Symbol: "ARW", - Precision: 5, - Type: Stock, - AlternateId: "042735100"}, - 11456654064264: &Security{ - SecurityId: 11456654064264, - Name: "AROW", - Description: "Arrow Financial Corp.", - Symbol: "AROW", - Precision: 5, - Type: Stock, - AlternateId: "042744102"}, - 11456776966608: &Security{ - SecurityId: 11456776966608, - Name: "QVM", - Description: "Arrow QVM Equity Factor ETF", - Symbol: "QVM", - Precision: 5, - Type: Stock, - AlternateId: "042765784"}, - 11456776967832: &Security{ - SecurityId: 11456776967832, - Name: "DWAT", - Description: "Arrow DWA Tactical ETF", - Symbol: "DWAT", - Precision: 5, - Type: Stock, - AlternateId: "042765792"}, - 11456961480900: &Security{ - SecurityId: 11456961480900, - Name: "ARWR", - Description: "Arrowhead Research Corp.", - Symbol: "ARWR", - Precision: 5, - Type: Stock, - AlternateId: "042797209"}, - 11521774503072: &Security{ - SecurityId: 11521774503072, - Name: "ARTNA", - Description: "Artesian Resources Corp.", - Symbol: "ARTNA", - Precision: 5, - Type: Stock, - AlternateId: "043113208"}, - 11522088544608: &Security{ - SecurityId: 11522088544608, - Name: "APAM", - Description: "Artisan Partners Asset Management, Inc.", - Symbol: "APAM", - Precision: 5, - Type: Stock, - AlternateId: "04316A108"}, - 11522085185196: &Security{ - SecurityId: 11522085185196, - Name: "ARTW", - Description: "Art's-Way Manufacturing Co., Inc.", - Symbol: "ARTW", - Precision: 5, - Type: Stock, - AlternateId: "043168103"}, - 11528430774480: &Security{ - SecurityId: 11528430774480, - Name: "ABG", - Description: "Asbury Automotive Group, Inc.", - Symbol: "ABG", - Precision: 5, - Type: Stock, - AlternateId: "043436104"}, - 11530503420516: &Security{ - SecurityId: 11530503420516, - Name: "ASNA", - Description: "Ascena Retail Group, Inc", - Symbol: "ASNA", - Precision: 5, - Type: Stock, - AlternateId: "04351G101"}, - 11530518537060: &Security{ - SecurityId: 11530518537060, - Name: "ASND", - Description: "Ascendis Pharma A/S", - Symbol: "ASND", - Precision: 5, - Type: Stock, - AlternateId: "04351P101"}, - 11532777620832: &Security{ - SecurityId: 11532777620832, - Name: "ASCMA", - Description: "Ascent Capital Group, Inc.", - Symbol: "ASCMA", - Precision: 5, - Type: Stock, - AlternateId: "043632108"}, - 11532782753028: &Security{ - SecurityId: 11532782753028, - Name: "ASTI", - Description: "Ascent Solar Technologies, Inc.", - Symbol: "ASTI", - Precision: 5, - Type: Stock, - AlternateId: "043635309"}, - 11600076474468: &Security{ - SecurityId: 11600076474468, - Name: "AHP", - Description: "Ashford Hospitality Prime, Inc.", - Symbol: "AHP", - Precision: 5, - Type: Stock, - AlternateId: "044102101"}, - 11600078154372: &Security{ - SecurityId: 11600078154372, - Name: "AHT", - Description: "Ashford Hospitality Trust, Inc.", - Symbol: "AHT", - Precision: 5, - Type: Stock, - AlternateId: "044103109"}, - 11600078340852: &Security{ - SecurityId: 11600078340852, - Name: "AHT-E", - Description: "Ashford Hospitality Trust, 9.00% Series E Cumulative Preferred Stock", - Symbol: "AHT-E", - Precision: 5, - Type: Stock, - AlternateId: "044103505"}, - 11600079833916: &Security{ - SecurityId: 11600079833916, - Name: "AINC", - Description: "Ashford, Inc.", - Symbol: "AINC", - Precision: 5, - Type: Stock, - AlternateId: "044104107"}, - 11602265014224: &Security{ - SecurityId: 11602265014224, - Name: "ASH", - Description: "Ashland, Inc.", - Symbol: "ASH", - Precision: 5, - Type: Stock, - AlternateId: "044209104"}, - 11617489053720: &Security{ - SecurityId: 11617489053720, - Name: "APB", - Description: "Asia Pacific Fund, Inc. (The)", - Symbol: "APB", - Precision: 5, - Type: Stock, - AlternateId: "044901106"}, - 11678848785396: &Security{ - SecurityId: 11678848785396, - Name: "GRR", - Description: "Asia Tigers Fund, Inc. (The)", - Symbol: "GRR", - Precision: 5, - Type: Stock, - AlternateId: "04516T105"}, - 11680852567284: &Security{ - SecurityId: 11680852567284, - Name: "ASPN", - Description: "Aspen Aerogels, Inc.", - Symbol: "ASPN", - Precision: 5, - Type: Stock, - AlternateId: "04523Y105"}, - 11682923533740: &Security{ - SecurityId: 11682923533740, - Name: "AZPN", - Description: "Aspen Technology, Inc.", - Symbol: "AZPN", - Precision: 5, - Type: Stock, - AlternateId: "045327103"}, - 11685463113204: &Security{ - SecurityId: 11685463113204, - Name: "ASB", - Description: "Associated Banc-Corp.", - Symbol: "ASB", - Precision: 5, - Type: Stock, - AlternateId: "045487105"}, - 11687278778136: &Security{ - SecurityId: 11687278778136, - Name: "AC", - Description: "Associated Capital Group, Inc.", - Symbol: "AC", - Precision: 5, - Type: Stock, - AlternateId: "045528106"}, - 11759094119520: &Security{ - SecurityId: 11759094119520, - Name: "AIZ", - Description: "Assurant, Inc.", - Symbol: "AIZ", - Precision: 5, - Type: Stock, - AlternateId: "04621X108"}, - 11759099158404: &Security{ - SecurityId: 11759099158404, - Name: "ASFI", - Description: "Asta Funding, Inc.", - Symbol: "ASFI", - Precision: 5, - Type: Stock, - AlternateId: "046220109"}, - 11759105876580: &Security{ - SecurityId: 11759105876580, - Name: "ASTE", - Description: "Astec Industries, Inc.", - Symbol: "ASTE", - Precision: 5, - Type: Stock, - AlternateId: "046224101"}, - 11759258721852: &Security{ - SecurityId: 11759258721852, - Name: "AST", - Description: "Asterias Biotherapeutics, Inc.", - Symbol: "AST", - Precision: 5, - Type: Stock, - AlternateId: "04624N107"}, - 11759349421008: &Security{ - SecurityId: 11759349421008, - Name: "AF", - Description: "Astoria Financial Corp.", - Symbol: "AF", - Precision: 5, - Type: Stock, - AlternateId: "046265104"}, - 11761462378080: &Security{ - SecurityId: 11761462378080, - Name: "AZN", - Description: "AstraZeneca Group plc ADR", - Symbol: "AZN", - Precision: 5, - Type: Stock, - AlternateId: "046353108"}, - 11761663932000: &Security{ - SecurityId: 11761663932000, - Name: "ALOT", - Description: "Astro-Med, Inc.", - Symbol: "ALOT", - Precision: 5, - Type: Stock, - AlternateId: "04638F108"}, - 11763518228064: &Security{ - SecurityId: 11763518228064, - Name: "ATRO", - Description: "Astronics Corp. Cl A", - Symbol: "ATRO", - Precision: 5, - Type: Stock, - AlternateId: "046433108"}, - 11763926374536: &Security{ - SecurityId: 11763926374536, - Name: "ASUR", - Description: "Asure Software, Inc.", - Symbol: "ASUR", - Precision: 5, - Type: Stock, - AlternateId: "04649U102"}, - 11765574078012: &Security{ - SecurityId: 11765574078012, - Name: "ATRA", - Description: "Atara Biotherapeutics, Inc.", - Symbol: "ATRA", - Precision: 5, - Type: Stock, - AlternateId: "046513107"}, - 11833234049304: &Security{ - SecurityId: 11833234049304, - Name: "AFCB", - Description: "Athens Bancshares Corp.", - Symbol: "AFCB", - Precision: 5, - Type: Stock, - AlternateId: "047042106"}, - 11841973091352: &Security{ - SecurityId: 11841973091352, - Name: "BPTH", - Description: "Bio-Path Holdings, Inc.", - Symbol: "BPTH", - Precision: 5, - Type: Stock, - AlternateId: "04744L106"}, - 11915721670464: &Security{ - SecurityId: 11915721670464, - Name: "AAME", - Description: "Atlantic American Corp.", - Symbol: "AAME", - Precision: 5, - Type: Stock, - AlternateId: "048209100"}, - 11916084514284: &Security{ - SecurityId: 11916084514284, - Name: "ACBI", - Description: "Atlantic Capital Bancshares, Inc.", - Symbol: "ACBI", - Precision: 5, - Type: Stock, - AlternateId: "048269203"}, - 11920191128640: &Security{ - SecurityId: 11920191128640, - Name: "ACFC", - Description: "Atlantic Coast Federal Corp.", - Symbol: "ACFC", - Precision: 5, - Type: Stock, - AlternateId: "048426100"}, - 11927118199500: &Security{ - SecurityId: 11927118199500, - Name: "AT", - Description: "Atlantic Power Corp.", - Symbol: "AT", - Precision: 5, - Type: Stock, - AlternateId: "04878Q863"}, - 11990155579956: &Security{ - SecurityId: 11990155579956, - Name: "ATNI", - Description: "Atlantic Tele-Network, Inc.", - Symbol: "ATNI", - Precision: 5, - Type: Stock, - AlternateId: "049079205"}, - 11992192907400: &Security{ - SecurityId: 11992192907400, - Name: "ATLC", - Description: "Atlanticus Holdings Corporation", - Symbol: "ATLC", - Precision: 5, - Type: Stock, - AlternateId: "04914Y102"}, - 11992263498036: &Security{ - SecurityId: 11992263498036, - Name: "AAWW", - Description: "Atlas Air Worldwide Holdings, Inc.", - Symbol: "AAWW", - Precision: 5, - Type: Stock, - AlternateId: "049164205"}, - 11998501545060: &Security{ - SecurityId: 11998501545060, - Name: "ARP", - Description: "Atlas Resource Partners L.P.", - Symbol: "ARP", - Precision: 5, - Type: Stock, - AlternateId: "04941A101"}, - 12000666570192: &Security{ - SecurityId: 12000666570192, - Name: "ATML", - Description: "Atmel Corp.", - Symbol: "ATML", - Precision: 5, - Type: Stock, - AlternateId: "049513104"}, - 12000963862260: &Security{ - SecurityId: 12000963862260, - Name: "ATO", - Description: "Atmos Energy Corp.", - Symbol: "ATO", - Precision: 5, - Type: Stock, - AlternateId: "049560105"}, - 12002927333184: &Security{ - SecurityId: 12002927333184, - Name: "ATOS", - Description: "Atossa Genetics, Inc.", - Symbol: "ATOS", - Precision: 5, - Type: Stock, - AlternateId: "04962H100"}, - 12002979448260: &Security{ - SecurityId: 12002979448260, - Name: "ATRC", - Description: "AtriCure, Inc.", - Symbol: "ATRC", - Precision: 5, - Type: Stock, - AlternateId: "04963C209"}, - 12003036508332: &Security{ - SecurityId: 12003036508332, - Name: "ATRM", - Description: "ATRM Holdings, Inc.", - Symbol: "ATRM", - Precision: 5, - Type: Stock, - AlternateId: "04964A103"}, - 12009314913012: &Security{ - SecurityId: 12009314913012, - Name: "ATRI", - Description: "Atrion Corp.", - Symbol: "ATRI", - Precision: 5, - Type: Stock, - AlternateId: "049904105"}, - 14106102177888: &Security{ - SecurityId: 14106102177888, - Name: "ATW", - Description: "Atwood Oceanics, Inc.", - Symbol: "ATW", - Precision: 5, - Type: Stock, - AlternateId: "050095108"}, - 14114685015612: &Security{ - SecurityId: 14114685015612, - Name: "AUBN", - Description: "Auburn National Bancorporation, Inc.", - Symbol: "AUBN", - Precision: 5, - Type: Stock, - AlternateId: "050473107"}, - 14195212524936: &Security{ - SecurityId: 14195212524936, - Name: "AUPH", - Description: "Aurinia Pharmaceuticals, Inc.", - Symbol: "AUPH", - Precision: 5, - Type: Stock, - AlternateId: "05156V102"}, - 14275711527660: &Security{ - SecurityId: 14275711527660, - Name: "ADAT", - Description: "AuthentiDate Holding Corp.", - Symbol: "ADAT", - Precision: 5, - Type: Stock, - AlternateId: "052666203"}, - 14277893302296: &Security{ - SecurityId: 14277893302296, - Name: "ADSK", - Description: "Autodesk, Inc.", - Symbol: "ADSK", - Precision: 5, - Type: Stock, - AlternateId: "052769106"}, - 14278019273532: &Security{ - SecurityId: 14278019273532, - Name: "ATHM", - Description: "AutoHome, Inc.", - Symbol: "ATHM", - Precision: 5, - Type: Stock, - AlternateId: "05278C107"}, - 14340710940588: &Security{ - SecurityId: 14340710940588, - Name: "ADP", - Description: "Automatic Data Processing, Inc.", - Symbol: "ADP", - Precision: 5, - Type: Stock, - AlternateId: "053015103"}, - 14345593584264: &Security{ - SecurityId: 14345593584264, - Name: "AN", - Description: "AutoNation, Inc.", - Symbol: "AN", - Precision: 5, - Type: Stock, - AlternateId: "05329W102"}, - 14347357181064: &Security{ - SecurityId: 14347357181064, - Name: "AZO", - Description: "AutoZone, Inc.", - Symbol: "AZO", - Precision: 5, - Type: Stock, - AlternateId: "053332102"}, - 14347622560572: &Security{ - SecurityId: 14347622560572, - Name: "AAVL", - Description: "Avalanche Biotechnologies, Inc.", - Symbol: "AAVL", - Precision: 5, - Type: Stock, - AlternateId: "05337G107"}, - 14349572594820: &Security{ - SecurityId: 14349572594820, - Name: "AWX", - Description: "Avalon Holdings Corp.", - Symbol: "AWX", - Precision: 5, - Type: Stock, - AlternateId: "05343P109"}, - 14349839653476: &Security{ - SecurityId: 14349839653476, - Name: "AVB", - Description: "AvalonBay Communities, Inc.", - Symbol: "AVB", - Precision: 5, - Type: Stock, - AlternateId: "053484101"}, - 14351640201900: &Security{ - SecurityId: 14351640201900, - Name: "AGR", - Description: "Avangrid, Inc.", - Symbol: "AGR", - Precision: 5, - Type: Stock, - AlternateId: "05351W103"}, - 14352033232152: &Security{ - SecurityId: 14352033232152, - Name: "ACP", - Description: "Avenue Income Credit Strategies Fund", - Symbol: "ACP", - Precision: 5, - Type: Stock, - AlternateId: "05358E106"}, - 14352023154564: &Security{ - SecurityId: 14352023154564, - Name: "AVEO", - Description: "Aveo Pharmaceuticals, Inc.", - Symbol: "AVEO", - Precision: 5, - Type: Stock, - AlternateId: "053588109"}, - 14353764916356: &Security{ - SecurityId: 14353764916356, - Name: "AVY", - Description: "Avery Dennison Corp.", - Symbol: "AVY", - Precision: 5, - Type: Stock, - AlternateId: "053611109"}, - 14354122674312: &Security{ - SecurityId: 14354122674312, - Name: "AVNW", - Description: "Aviat Networks, Inc.", - Symbol: "AVNW", - Precision: 5, - Type: Stock, - AlternateId: "05366Y102"}, - 14354152907328: &Security{ - SecurityId: 14354152907328, - Name: "AVH", - Description: "Avianca Holdings S.A.", - Symbol: "AVH", - Precision: 5, - Type: Stock, - AlternateId: "05367G100"}, - 14354168023872: &Security{ - SecurityId: 14354168023872, - Name: "AVID", - Description: "Avid Technology, Inc.", - Symbol: "AVID", - Precision: 5, - Type: Stock, - AlternateId: "05367P100"}, - 14356067669892: &Security{ - SecurityId: 14356067669892, - Name: "AVGR", - Description: "Avinger, Inc.", - Symbol: "AVGR", - Precision: 5, - Type: Stock, - AlternateId: "053734109"}, - 14356309534452: &Security{ - SecurityId: 14356309534452, - Name: "CAR", - Description: "Avis Budget Group, Inc.", - Symbol: "CAR", - Precision: 5, - Type: Stock, - AlternateId: "053774105"}, - 14356442224188: &Security{ - SecurityId: 14356442224188, - Name: "AVA", - Description: "Avista Corp.", - Symbol: "AVA", - Precision: 5, - Type: Stock, - AlternateId: "05379B107"}, - 14358068092332: &Security{ - SecurityId: 14358068092332, - Name: "AVT", - Description: "Avnet, Inc.", - Symbol: "AVT", - Precision: 5, - Type: Stock, - AlternateId: "053807103"}, - 14358194063568: &Security{ - SecurityId: 14358194063568, - Name: "AV", - Description: "Aviva plc", - Symbol: "AV", - Precision: 5, - Type: Stock, - AlternateId: "05382A104"}, - 14360243195052: &Security{ - SecurityId: 14360243195052, - Name: "ASM", - Description: "Avino Silver & Gold Mines Ltd", - Symbol: "ASM", - Precision: 5, - Type: Stock, - AlternateId: "053906103"}, - 14425541626248: &Security{ - SecurityId: 14425541626248, - Name: "AVP", - Description: "Avon Products, Inc.", - Symbol: "AVP", - Precision: 5, - Type: Stock, - AlternateId: "054303102"}, - 14430110181696: &Security{ - SecurityId: 14430110181696, - Name: "AWRE", - Description: "Aware, Inc.", - Symbol: "AWRE", - Precision: 5, - Type: Stock, - AlternateId: "05453N100"}, - 14430132017028: &Security{ - SecurityId: 14430132017028, - Name: "ACLS", - Description: "Axcelis Technologies, Inc.", - Symbol: "ACLS", - Precision: 5, - Type: Stock, - AlternateId: "054540109"}, - 14432122455228: &Security{ - SecurityId: 14432122455228, - Name: "AXPW", - Description: "Axion Power International, Inc.", - Symbol: "AXPW", - Precision: 5, - Type: Stock, - AlternateId: "05460X307"}, - 14432270167872: &Security{ - SecurityId: 14432270167872, - Name: "AXLL", - Description: "Axiall Corporation", - Symbol: "AXLL", - Precision: 5, - Type: Stock, - AlternateId: "05463D100"}, - 14432357508048: &Security{ - SecurityId: 14432357508048, - Name: "AXSM", - Description: "Axsome Therapeutics, Inc.", - Symbol: "AXSM", - Precision: 5, - Type: Stock, - AlternateId: "05464T104"}, - 14438790437436: &Security{ - SecurityId: 14438790437436, - Name: "BBT", - Description: "BB&T Corp.", - Symbol: "BBT", - Precision: 5, - Type: Stock, - AlternateId: "054937107"}, - 14497486297920: &Security{ - SecurityId: 14497486297920, - Name: "AZUR", - Description: "Azure Midstream Partners, LP", - Symbol: "AZUR", - Precision: 5, - Type: Stock, - AlternateId: "05501X100"}, - 14497899483672: &Security{ - SecurityId: 14497899483672, - Name: "BGS", - Description: "B&G Foods, Inc.", - Symbol: "BGS", - Precision: 5, - Type: Stock, - AlternateId: "05508R106"}, - 14502281601708: &Security{ - SecurityId: 14502281601708, - Name: "BCBP", - Description: "BCB Bancorp, Inc.", - Symbol: "BCBP", - Precision: 5, - Type: Stock, - AlternateId: "055298103"}, - 14504161379616: &Security{ - SecurityId: 14504161379616, - Name: "BCE", - Description: "BCE, Inc.", - Symbol: "BCE", - Precision: 5, - Type: Stock, - AlternateId: "05534B760"}, - 14506186708836: &Security{ - SecurityId: 14506186708836, - Name: "BGCP", - Description: "BGC Partners, Inc.", - Symbol: "BGCP", - Precision: 5, - Type: Stock, - AlternateId: "05541T101"}, - 14506403426244: &Security{ - SecurityId: 14506403426244, - Name: "BBL", - Description: "BHP Billiton plc ADR", - Symbol: "BBL", - Precision: 5, - Type: Stock, - AlternateId: "05545E209"}, - 14506599894588: &Security{ - SecurityId: 14506599894588, - Name: "BIND", - Description: "BIND Therapeutics, Inc.", - Symbol: "BIND", - Precision: 5, - Type: Stock, - AlternateId: "05548N107"}, - 14510535281316: &Security{ - SecurityId: 14510535281316, - Name: "BOKF", - Description: "BOK Financial Corp.", - Symbol: "BOKF", - Precision: 5, - Type: Stock, - AlternateId: "05561Q201"}, - 14510555390160: &Security{ - SecurityId: 14510555390160, - Name: "BP", - Description: "BP p.l.c. ADR", - Symbol: "BP", - Precision: 5, - Type: Stock, - AlternateId: "055622104"}, - 14510612497212: &Security{ - SecurityId: 14510612497212, - Name: "BPT", - Description: "BP Prudhoe Bay Royalty Trust", - Symbol: "BPT", - Precision: 5, - Type: Stock, - AlternateId: "055630107"}, - 14510681454636: &Security{ - SecurityId: 14510681454636, - Name: "BRT", - Description: "BRT Realty Trust", - Symbol: "BRT", - Precision: 5, - Type: Stock, - AlternateId: "055645303"}, - 14510844284256: &Security{ - SecurityId: 14510844284256, - Name: "BOFI", - Description: "BofI Holding, Inc.", - Symbol: "BOFI", - Precision: 5, - Type: Stock, - AlternateId: "05566U108"}, - 14512817833056: &Security{ - SecurityId: 14512817833056, - Name: "BLMT", - Description: "BSB Bancorp, Inc.", - Symbol: "BLMT", - Precision: 5, - Type: Stock, - AlternateId: "05573H108"}, - 14514821614944: &Security{ - SecurityId: 14514821614944, - Name: "RILY", - Description: "B. Riley Financial, Inc.", - Symbol: "RILY", - Precision: 5, - Type: Stock, - AlternateId: "05580M108"}, - 14517040387716: &Security{ - SecurityId: 14517040387716, - Name: "STCK", - Description: "BMC Stock Holdings, Inc.", - Symbol: "STCK", - Precision: 5, - Type: Stock, - AlternateId: "05591B109"}, - 14576065452864: &Security{ - SecurityId: 14576065452864, - Name: "BWXT", - Description: "BWX Technologies, Inc.", - Symbol: "BWXT", - Precision: 5, - Type: Stock, - AlternateId: "05605H100"}, - 14578188487488: &Security{ - SecurityId: 14578188487488, - Name: "BW", - Description: "Babcock & Wilcox Enterprises, Inc.", - Symbol: "BW", - Precision: 5, - Type: Stock, - AlternateId: "05614L100"}, - 14578292623680: &Security{ - SecurityId: 14578292623680, - Name: "MPV", - Description: "Babson Capital Participation Investors", - Symbol: "MPV", - Precision: 5, - Type: Stock, - AlternateId: "05616B100"}, - 14578368206724: &Security{ - SecurityId: 14578368206724, - Name: "MCI", - Description: "Babson Capital Corporate Investors", - Symbol: "MCI", - Precision: 5, - Type: Stock, - AlternateId: "05617K109"}, - 14578383322944: &Security{ - SecurityId: 14578383322944, - Name: "BGH", - Description: "Babson Capital Global Short Duration High Yield Fund", - Symbol: "BGH", - Precision: 5, - Type: Stock, - AlternateId: "05617T100"}, - 14586747810912: &Security{ - SecurityId: 14586747810912, - Name: "BMI", - Description: "Badger Meter, Inc.", - Symbol: "BMI", - Precision: 5, - Type: Stock, - AlternateId: "056525108"}, - 14591277735264: &Security{ - SecurityId: 14591277735264, - Name: "BIDU", - Description: "Baidu, Inc. ADR", - Symbol: "BIDU", - Precision: 5, - Type: Stock, - AlternateId: "056752108"}, - 14658579948348: &Security{ - SecurityId: 14658579948348, - Name: "BHI", - Description: "Baker Hughes, Inc.", - Symbol: "BHI", - Precision: 5, - Type: Stock, - AlternateId: "057224107"}, - 14669646937920: &Security{ - SecurityId: 14669646937920, - Name: "BWINA", - Description: "Baldwin & Lyons, Inc. Cl A", - Symbol: "BWINA", - Precision: 5, - Type: Stock, - AlternateId: "057755100"}, - 14669646984900: &Security{ - SecurityId: 14669646984900, - Name: "BWINB", - Description: "Baldwin & Lyons, Inc. Cl B", - Symbol: "BWINB", - Precision: 5, - Type: Stock, - AlternateId: "057755209"}, - 14741727658776: &Security{ - SecurityId: 14741727658776, - Name: "BLL", - Description: "Ball Corp.", - Symbol: "BLL", - Precision: 5, - Type: Stock, - AlternateId: "058498106"}, - 14743417352436: &Security{ - SecurityId: 14743417352436, - Name: "BTN", - Description: "Ballantyne of Omaha, Inc.", - Symbol: "BTN", - Precision: 5, - Type: Stock, - AlternateId: "058516105"}, - 14819861715372: &Security{ - SecurityId: 14819861715372, - Name: "BANF", - Description: "BancFirst Corp.", - Symbol: "BANF", - Precision: 5, - Type: Stock, - AlternateId: "05945F103"}, - 14819897080620: &Security{ - SecurityId: 14819897080620, - Name: "BBD", - Description: "Banco Bradesco S.A. ADR", - Symbol: "BBD", - Precision: 5, - Type: Stock, - AlternateId: "059460303"}, - 14821831905048: &Security{ - SecurityId: 14821831905048, - Name: "BCH", - Description: "Banco de Chile ADR", - Symbol: "BCH", - Precision: 5, - Type: Stock, - AlternateId: "059520106"}, - 14824001968884: &Security{ - SecurityId: 14824001968884, - Name: "BMA", - Description: "Banco Macro S.A.", - Symbol: "BMA", - Precision: 5, - Type: Stock, - AlternateId: "05961W105"}, - 14824158173172: &Security{ - SecurityId: 14824158173172, - Name: "SAN", - Description: "Banco Santander S.A. ADR", - Symbol: "SAN", - Precision: 5, - Type: Stock, - AlternateId: "05964H105"}, - 14824245513348: &Security{ - SecurityId: 14824245513348, - Name: "BSAC", - Description: "Banco Santander Chile ADR", - Symbol: "BSAC", - Precision: 5, - Type: Stock, - AlternateId: "05965X109"}, - 14824327814460: &Security{ - SecurityId: 14824327814460, - Name: "BSBR", - Description: "Banco Santander (Brasil) S.A. ADR", - Symbol: "BSBR", - Precision: 5, - Type: Stock, - AlternateId: "05967A107"}, - 14824406756232: &Security{ - SecurityId: 14824406756232, - Name: "CIB", - Description: "BanColombia S.A. ADR", - Symbol: "CIB", - Precision: 5, - Type: Stock, - AlternateId: "05968L102"}, - 14824448746740: &Security{ - SecurityId: 14824448746740, - Name: "TBBK", - Description: "Bancorp, Inc. (The)", - Symbol: "TBBK", - Precision: 5, - Type: Stock, - AlternateId: "05969A105"}, - 14824435309740: &Security{ - SecurityId: 14824435309740, - Name: "BXS", - Description: "BancorpSouth, Inc.", - Symbol: "BXS", - Precision: 5, - Type: Stock, - AlternateId: "059692103"}, - 14824440348696: &Security{ - SecurityId: 14824440348696, - Name: "BCV", - Description: "Bancroft Fund Ltd", - Symbol: "BCV", - Precision: 5, - Type: Stock, - AlternateId: "059695106"}, - 14830486966368: &Security{ - SecurityId: 14830486966368, - Name: "BKJ", - Description: "Bancorp of New Jersey, Inc.", - Symbol: "BKJ", - Precision: 5, - Type: Stock, - AlternateId: "059915108"}, - 16937551801296: &Security{ - SecurityId: 16937551801296, - Name: "BAC", - Description: "Bank of America Corp.", - Symbol: "BAC", - Precision: 5, - Type: Stock, - AlternateId: "060505104"}, - 16937552044872: &Security{ - SecurityId: 16937552044872, - Name: "BAC-L", - Description: "Bank of America, 7.25% Non-Cumulative Convertible Preferred Stock, Series L", - Symbol: "BAC-L", - Precision: 5, - Type: Stock, - AlternateId: "060505682"}, - 17094513596292: &Security{ - SecurityId: 17094513596292, - Name: "BOH", - Description: "Bank of Hawaii Corp,", - Symbol: "BOH", - Precision: 5, - Type: Stock, - AlternateId: "062540109"}, - 17170588443528: &Security{ - SecurityId: 17170588443528, - Name: "BMRC", - Description: "Bank of Marin Bancorp", - Symbol: "BMRC", - Precision: 5, - Type: Stock, - AlternateId: "063425102"}, - 17175237620580: &Security{ - SecurityId: 17175237620580, - Name: "BMO", - Description: "BMO Financial Group", - Symbol: "BMO", - Precision: 5, - Type: Stock, - AlternateId: "063671101"}, - 17177291791020: &Security{ - SecurityId: 17177291791020, - Name: "BKMU", - Description: "Bank Mutual Corp.", - Symbol: "BKMU", - Precision: 5, - Type: Stock, - AlternateId: "063750103"}, - 17181349743384: &Security{ - SecurityId: 17181349743384, - Name: "OZRK", - Description: "Bank of the Ozarks, Inc.", - Symbol: "OZRK", - Precision: 5, - Type: Stock, - AlternateId: "063904106"}, - 17240431915584: &Security{ - SecurityId: 17240431915584, - Name: "BK", - Description: "Bank of New York Mellon Corp. (The)", - Symbol: "BK", - Precision: 5, - Type: Stock, - AlternateId: "064058100"}, - 17242549911612: &Security{ - SecurityId: 17242549911612, - Name: "BNS", - Description: "Bank of Nova Scotia (The)", - Symbol: "BNS", - Precision: 5, - Type: Stock, - AlternateId: "064149107"}, - 17318853186696: &Security{ - SecurityId: 17318853186696, - Name: "BKSC", - Description: "Bank of South Carolina Corp.", - Symbol: "BKSC", - Precision: 5, - Type: Stock, - AlternateId: "065066102"}, - 17405774994384: &Security{ - SecurityId: 17405774994384, - Name: "BFIN", - Description: "BankFinancial Corp.", - Symbol: "BFIN", - Precision: 5, - Type: Stock, - AlternateId: "06643P104"}, - 17406000062856: &Security{ - SecurityId: 17406000062856, - Name: "RATE", - Description: "Bankrate, Inc.", - Symbol: "RATE", - Precision: 5, - Type: Stock, - AlternateId: "06647F102"}, - 17407882912428: &Security{ - SecurityId: 17407882912428, - Name: "BKU", - Description: "BankUnited, Inc.", - Symbol: "BKU", - Precision: 5, - Type: Stock, - AlternateId: "06652K103"}, - 17407901435040: &Security{ - SecurityId: 17407901435040, - Name: "BANR", - Description: "Banner Corp.", - Symbol: "BANR", - Precision: 5, - Type: Stock, - AlternateId: "06652V208"}, - 17407987048620: &Security{ - SecurityId: 17407987048620, - Name: "BWFG", - Description: "Bankwell Financial Group, Inc.", - Symbol: "BWFG", - Precision: 5, - Type: Stock, - AlternateId: "06654A103"}, - 17414258734764: &Security{ - SecurityId: 17414258734764, - Name: "BAA", - Description: "Banro Corp.", - Symbol: "BAA", - Precision: 5, - Type: Stock, - AlternateId: "066800103"}, - 17414535871404: &Security{ - SecurityId: 17414535871404, - Name: "BZUN", - Description: "Baozun, Inc.", - Symbol: "BZUN", - Precision: 5, - Type: Stock, - AlternateId: "06684L103"}, - 17414515715904: &Security{ - SecurityId: 17414515715904, - Name: "BHB", - Description: "Bar Harbor Bankshares", - Symbol: "BHB", - Precision: 5, - Type: Stock, - AlternateId: "066849100"}, - 17482243161168: &Security{ - SecurityId: 17482243161168, - Name: "DJP", - Description: "iPath Bloomberg Commodity Index Total Return ETN due 6/12/2036", - Symbol: "DJP", - Precision: 5, - Type: Stock, - AlternateId: "06738C778"}, - 17482243162392: &Security{ - SecurityId: 17482243162392, - Name: "OIL", - Description: "Barclays iPath S&P GSCI Crude Oil Total Return Index ETN due on 8/14/2036", - Symbol: "OIL", - Precision: 5, - Type: Stock, - AlternateId: "06738C786"}, - 17482243163616: &Security{ - SecurityId: 17482243163616, - Name: "GSP", - Description: "Barclays iPath S&P GSCI Total Return Index ETN due 6/12/2036", - Symbol: "GSP", - Precision: 5, - Type: Stock, - AlternateId: "06738C794"}, - 17482249730556: &Security{ - SecurityId: 17482249730556, - Name: "JJM", - Description: "iPath Bloomberg Industrial Metals Subindex Total Return ETN due 10/22/37", - Symbol: "JJM", - Precision: 5, - Type: Stock, - AlternateId: "06738G407"}, - 17482249926288: &Security{ - SecurityId: 17482249926288, - Name: "AYT", - Description: "iPath GEMS Asia 8 ETN due on 4/8/2038", - Symbol: "AYT", - Precision: 5, - Type: Stock, - AlternateId: "06738G878"}, - 17482227755652: &Security{ - SecurityId: 17482227755652, - Name: "BCR", - Description: "C.R. Bard, Inc.", - Symbol: "BCR", - Precision: 5, - Type: Stock, - AlternateId: "067383109"}, - 17482308376932: &Security{ - SecurityId: 17482308376932, - Name: "JJC", - Description: "iPath Bloomberg Copper Subindex Total Return ETN due 10/22/37", - Symbol: "JJC", - Precision: 5, - Type: Stock, - AlternateId: "06739F101"}, - 17482308378516: &Security{ - SecurityId: 17482308378516, - Name: "JJN", - Description: "iPath Bloomberg Nickel Subindex Total Return ETN due 10/22/37", - Symbol: "JJN", - Precision: 5, - Type: Stock, - AlternateId: "06739F119"}, - 17482308380964: &Security{ - SecurityId: 17482308380964, - Name: "BWV", - Description: "Barclays iPath CBOE S&P 500 BuyWrite Index ETN due on 5/28/2037", - Symbol: "BWV", - Precision: 5, - Type: Stock, - AlternateId: "06739F135"}, - 17482308386184: &Security{ - SecurityId: 17482308386184, - Name: "GBB", - Description: "Barclays iPath GBP/USD Exchange Rate ETN due on 5/14/2037", - Symbol: "GBB", - Precision: 5, - Type: Stock, - AlternateId: "06739F176"}, - 17482308387408: &Security{ - SecurityId: 17482308387408, - Name: "ERO", - Description: "Barclays iPath EUR/USD Exchange Rate ETN due on 5/14/2037", - Symbol: "ERO", - Precision: 5, - Type: Stock, - AlternateId: "06739F184"}, - 17482308481872: &Security{ - SecurityId: 17482308481872, - Name: "BCS-", - Description: "Barclays Bank plc, 6.625% Non-cum Callable Dollar Preference Shares Series 2 ADR", - Symbol: "BCS-", - Precision: 5, - Type: Stock, - AlternateId: "06739F390"}, - 17482310389620: &Security{ - SecurityId: 17482310389620, - Name: "JYN", - Description: "Barclays iPath JPY/USD Exchange Rate ETN due 5/14/2037", - Symbol: "JYN", - Precision: 5, - Type: Stock, - AlternateId: "06739G851"}, - 17482311744048: &Security{ - SecurityId: 17482311744048, - Name: "GRN", - Description: "Barclays Bank iPath Global Carbon ETN due on 6/24/2038", - Symbol: "GRN", - Precision: 5, - Type: Stock, - AlternateId: "06739H164"}, - 17482311748080: &Security{ - SecurityId: 17482311748080, - Name: "JJT", - Description: "iPath Bloomberg Tin Subindex Total Return ETN due 6/24/2038", - Symbol: "JJT", - Precision: 5, - Type: Stock, - AlternateId: "06739H198"}, - 17482311783000: &Security{ - SecurityId: 17482311783000, - Name: "JJA", - Description: "iPath Bloomberg Agriculture Subindex Total Return ETN due 10/22/2037", - Symbol: "JJA", - Precision: 5, - Type: Stock, - AlternateId: "06739H206"}, - 17482311784224: &Security{ - SecurityId: 17482311784224, - Name: "SGG", - Description: "iPath Bloomberg Sugar Subindex Total Return ETN due on 6/24/38", - Symbol: "SGG", - Precision: 5, - Type: Stock, - AlternateId: "06739H214"}, - 17482311786672: &Security{ - SecurityId: 17482311786672, - Name: "JJS", - Description: "iPath Bloomberg Softs Subindex Total Return ETN due 6/24/2038", - Symbol: "JJS", - Precision: 5, - Type: Stock, - AlternateId: "06739H230"}, - 17482311788256: &Security{ - SecurityId: 17482311788256, - Name: "JJP", - Description: "iPath Bloomberg Precious Metals Subindex Total Return ETN due 6/24/38", - Symbol: "JJP", - Precision: 5, - Type: Stock, - AlternateId: "06739H248"}, - 17482311789444: &Security{ - SecurityId: 17482311789444, - Name: "PGM", - Description: "iPath Bloomberg Platinum Subindex Total Return ETN due 6/24/38", - Symbol: "PGM", - Precision: 5, - Type: Stock, - AlternateId: "06739H255"}, - 17482311790668: &Security{ - SecurityId: 17482311790668, - Name: "LD", - Description: "iPath Bloomberg Lead Subindex Total Return ETN due 6/24/2038", - Symbol: "LD", - Precision: 5, - Type: Stock, - AlternateId: "06739H263"}, - 17482311791892: &Security{ - SecurityId: 17482311791892, - Name: "BAL", - Description: "iPath Bloomberg Cotton Subindex Total Return ETN due 6/24/38", - Symbol: "BAL", - Precision: 5, - Type: Stock, - AlternateId: "06739H271"}, - 17482311794700: &Security{ - SecurityId: 17482311794700, - Name: "JO", - Description: "iPath Bloomberg Coffee Subindex Total Return ETN due 6/24/2038", - Symbol: "JO", - Precision: 5, - Type: Stock, - AlternateId: "06739H297"}, - 17482311829620: &Security{ - SecurityId: 17482311829620, - Name: "JJG", - Description: "iPath Bloomberg Grains Subindex Total Return ETN due 10/22/37", - Symbol: "JJG", - Precision: 5, - Type: Stock, - AlternateId: "06739H305"}, - 17482311830844: &Security{ - SecurityId: 17482311830844, - Name: "NIB", - Description: "iPath Bloomberg Cocoa Subindex Total Return ETN due 6/24/2038", - Symbol: "NIB", - Precision: 5, - Type: Stock, - AlternateId: "06739H313"}, - 17482311832068: &Security{ - SecurityId: 17482311832068, - Name: "JJU", - Description: "iPath Bloomberg Aluminum Subindex Total Return ETN due 6/24/38", - Symbol: "JJU", - Precision: 5, - Type: Stock, - AlternateId: "06739H321"}, - 17482311837288: &Security{ - SecurityId: 17482311837288, - Name: "BCS-D", - Description: "Barclays Bank plc, 8.125% Non-cum Callable Dollar Preference Shares Series 5 ADR", - Symbol: "BCS-D", - Precision: 5, - Type: Stock, - AlternateId: "06739H362"}, - 17482311877464: &Security{ - SecurityId: 17482311877464, - Name: "ICI", - Description: "Barclays Bank iPath Optimized Currency Carry ETN due on 1/30/2019", - Symbol: "ICI", - Precision: 5, - Type: Stock, - AlternateId: "06739H412"}, - 17482311878688: &Security{ - SecurityId: 17482311878688, - Name: "PGD", - Description: "iPath Asian and Gulf Currency Revaluation ETN due on 2/4/2038", - Symbol: "PGD", - Precision: 5, - Type: Stock, - AlternateId: "06739H420"}, - 17482311882684: &Security{ - SecurityId: 17482311882684, - Name: "JEM", - Description: "iPath GEMS Index ETN due 2/4/2038", - Symbol: "JEM", - Precision: 5, - Type: Stock, - AlternateId: "06739H453"}, - 17482311924084: &Security{ - SecurityId: 17482311924084, - Name: "BCS-C", - Description: "Barclays Bank plc, 7.75% Non-cum Callable Dollar Preference Shares, Series 4 ADR", - Symbol: "BCS-C", - Precision: 5, - Type: Stock, - AlternateId: "06739H511"}, - 17482311974736: &Security{ - SecurityId: 17482311974736, - Name: "GAZ", - Description: "iPath Bloomberg Natural Gas Subindex Total Return ETN due 10/22/37", - Symbol: "GAZ", - Precision: 5, - Type: Stock, - AlternateId: "06739H644"}, - 17482312021356: &Security{ - SecurityId: 17482312021356, - Name: "COW", - Description: "iPath Bloomberg Livestock Subindex Total Return ETN due 10/22/2037", - Symbol: "COW", - Precision: 5, - Type: Stock, - AlternateId: "06739H743"}, - 17482312022544: &Security{ - SecurityId: 17482312022544, - Name: "JJE", - Description: "iPath Bloomberg Energy Subindex Total Return ETN due 10/22/37", - Symbol: "JJE", - Precision: 5, - Type: Stock, - AlternateId: "06739H750"}, - 17482312025352: &Security{ - SecurityId: 17482312025352, - Name: "BCS-A", - Description: "Barclays Bank plc, 7.10% Non-cum Callable Dollar Preference Shares Series 3 ADR", - Symbol: "BCS-A", - Precision: 5, - Type: Stock, - AlternateId: "06739H776"}, - 17483936022252: &Security{ - SecurityId: 17483936022252, - Name: "VQT", - Description: "Barclays ETN+ S&P VEQTOR ETN due on 9/8/2020", - Symbol: "VQT", - Precision: 5, - Type: Stock, - AlternateId: "06740C337"}, - 17483936113044: &Security{ - SecurityId: 17483936113044, - Name: "VXZ", - Description: "Barclays Bank iPath S&P 500 VIX Mid-Term Futures ETN due 1/30/2019", - Symbol: "VXZ", - Precision: 5, - Type: Stock, - AlternateId: "06740C519"}, - 17483951186640: &Security{ - SecurityId: 17483951186640, - Name: "DLBS", - Description: "iPath US Treasury Long Bond Bear ETN", - Symbol: "DLBS", - Precision: 5, - Type: Stock, - AlternateId: "06740L444"}, - 17483951187828: &Security{ - SecurityId: 17483951187828, - Name: "DTYS", - Description: "iPath US Treasury 10-year Bear ETN", - Symbol: "DTYS", - Precision: 5, - Type: Stock, - AlternateId: "06740L451"}, - 17483951189412: &Security{ - SecurityId: 17483951189412, - Name: "DTUL", - Description: "iPath US Treasury 2-year Bull ETN due on 8/13/2020", - Symbol: "DTUL", - Precision: 5, - Type: Stock, - AlternateId: "06740L469"}, - 17483951190636: &Security{ - SecurityId: 17483951190636, - Name: "STPP", - Description: "iPath US Treasury Steepener ETN", - Symbol: "STPP", - Precision: 5, - Type: Stock, - AlternateId: "06740L477"}, - 17483951191860: &Security{ - SecurityId: 17483951191860, - Name: "FLAT", - Description: "iPath US Treasury Flattenerr ETN", - Symbol: "FLAT", - Precision: 5, - Type: Stock, - AlternateId: "06740L485"}, - 17483951193084: &Security{ - SecurityId: 17483951193084, - Name: "DTYL", - Description: "iPath US Treasury 10-year Bull ETN", - Symbol: "DTYL", - Precision: 5, - Type: Stock, - AlternateId: "06740L493"}, - 17483951229588: &Security{ - SecurityId: 17483951229588, - Name: "DTUS", - Description: "iPath US Treasury 2-year Bear ETN", - Symbol: "DTUS", - Precision: 5, - Type: Stock, - AlternateId: "06740L519"}, - 17483951230812: &Security{ - SecurityId: 17483951230812, - Name: "DLBL", - Description: "iPath US Treasury Long Bond Bull ETN due 8/13/2020", - Symbol: "DLBL", - Precision: 5, - Type: Stock, - AlternateId: "06740L527"}, - 17483951239704: &Security{ - SecurityId: 17483951239704, - Name: "XXV", - Description: "iPath Inverse S&P 500 VIX Short-Term Futures ETN due on 7/17/2020", - Symbol: "XXV", - Precision: 5, - Type: Stock, - AlternateId: "06740L592"}, - 17483957761248: &Security{ - SecurityId: 17483957761248, - Name: "BCM", - Description: "iPath Pure Beta Broad Commodity ETN", - Symbol: "BCM", - Precision: 5, - Type: Stock, - AlternateId: "06740P114"}, - 17483957762472: &Security{ - SecurityId: 17483957762472, - Name: "SBV", - Description: "iPath Pure Beta S&P GSCI-Weighted ETN due on 4/18/2041", - Symbol: "SBV", - Precision: 5, - Type: Stock, - AlternateId: "06740P122"}, - 17483957763696: &Security{ - SecurityId: 17483957763696, - Name: "CHOC", - Description: "iPath Pure Beta Cocoa ETN due on 4/18/2041", - Symbol: "CHOC", - Precision: 5, - Type: Stock, - AlternateId: "06740P130"}, - 17483957765280: &Security{ - SecurityId: 17483957765280, - Name: "CAFE", - Description: "iPath Pure Beta Coffee ETN", - Symbol: "CAFE", - Precision: 5, - Type: Stock, - AlternateId: "06740P148"}, - 17483957766468: &Security{ - SecurityId: 17483957766468, - Name: "CTNN", - Description: "iPath Pure Beta Cotton ETN due on 4/18/2041", - Symbol: "CTNN", - Precision: 5, - Type: Stock, - AlternateId: "06740P155"}, - 17483957767692: &Security{ - SecurityId: 17483957767692, - Name: "SGAR", - Description: "iPath Pure Beta Sugar ETN", - Symbol: "SGAR", - Precision: 5, - Type: Stock, - AlternateId: "06740P163"}, - 17483957768916: &Security{ - SecurityId: 17483957768916, - Name: "FOIL", - Description: "iPath Pure Beta Aluminum ETN due on 4/18/2041", - Symbol: "FOIL", - Precision: 5, - Type: Stock, - AlternateId: "06740P171"}, - 17483957770500: &Security{ - SecurityId: 17483957770500, - Name: "CUPM", - Description: "iPath Pure Beta Copper ETN due on 4/18/2041", - Symbol: "CUPM", - Precision: 5, - Type: Stock, - AlternateId: "06740P189"}, - 17483957771724: &Security{ - SecurityId: 17483957771724, - Name: "LEDD", - Description: "iPath Pure Beta Lead ETN due on 4/18/2041", - Symbol: "LEDD", - Precision: 5, - Type: Stock, - AlternateId: "06740P197"}, - 17483957806644: &Security{ - SecurityId: 17483957806644, - Name: "ROLA", - Description: "iPath Long Extended Russell 1000 Total Return Index ETN due on 11/30/2020", - Symbol: "ROLA", - Precision: 5, - Type: Stock, - AlternateId: "06740P205"}, - 17483957807868: &Security{ - SecurityId: 17483957807868, - Name: "NINI", - Description: "iPath Pure Beta Nickel ETN due on 4/18/2041", - Symbol: "NINI", - Precision: 5, - Type: Stock, - AlternateId: "06740P213"}, - 17483957809092: &Security{ - SecurityId: 17483957809092, - Name: "OLEM", - Description: "iPath Pure Beta Crude Oil ETN due on 4/18/2041", - Symbol: "OLEM", - Precision: 5, - Type: Stock, - AlternateId: "06740P221"}, - 17483957810676: &Security{ - SecurityId: 17483957810676, - Name: "DCNG", - Description: "iPath Pure Beta Seasonal Natural Gas ETN due on 4/18/2041", - Symbol: "DCNG", - Precision: 5, - Type: Stock, - AlternateId: "06740P239"}, - 17483957814312: &Security{ - SecurityId: 17483957814312, - Name: "DIRT", - Description: "iPath Pure Beta Agriculture ETN", - Symbol: "DIRT", - Precision: 5, - Type: Stock, - AlternateId: "06740P262"}, - 17483957815536: &Security{ - SecurityId: 17483957815536, - Name: "WEET", - Description: "iPath Pure Beta Grains ETN due on 4/18/2041", - Symbol: "WEET", - Precision: 5, - Type: Stock, - AlternateId: "06740P270"}, - 17483957817120: &Security{ - SecurityId: 17483957817120, - Name: "GRWN", - Description: "iPath Pure Beta Softs ETN", - Symbol: "GRWN", - Precision: 5, - Type: Stock, - AlternateId: "06740P288"}, - 17483957818344: &Security{ - SecurityId: 17483957818344, - Name: "HEVY", - Description: "iPath Pure Beta Industrial Metals ETN due on 4/18/2041", - Symbol: "HEVY", - Precision: 5, - Type: Stock, - AlternateId: "06740P296"}, - 17483957854488: &Security{ - SecurityId: 17483957854488, - Name: "ONG", - Description: "iPath Pure Beta Energy ETN due on 4/18/2041", - Symbol: "ONG", - Precision: 5, - Type: Stock, - AlternateId: "06740P312"}, - 17483957855712: &Security{ - SecurityId: 17483957855712, - Name: "LSTK", - Description: "iPath Pure Beta Livestock ETN due on 4/18/2041", - Symbol: "LSTK", - Precision: 5, - Type: Stock, - AlternateId: "06740P320"}, - 17483957857296: &Security{ - SecurityId: 17483957857296, - Name: "BLNG", - Description: "iPath Pure Beta Precious Metals ETN due on 4/18/2041", - Symbol: "BLNG", - Precision: 5, - Type: Stock, - AlternateId: "06740P338"}, - 17483957993124: &Security{ - SecurityId: 17483957993124, - Name: "SFLA", - Description: "iPath Long Extended S&P 500 Total Return Index ETN due on 11/30/2020", - Symbol: "SFLA", - Precision: 5, - Type: Stock, - AlternateId: "06740P601"}, - 17483957998380: &Security{ - SecurityId: 17483957998380, - Name: "DFVS", - Description: "iPath US Treasury 5-year Bear ETN due on 7/12/2021", - Symbol: "DFVS", - Precision: 5, - Type: Stock, - AlternateId: "06740P643"}, - 17483957999568: &Security{ - SecurityId: 17483957999568, - Name: "DFVL", - Description: "iPath US Treasury 5-year Bull ETN due on 7/12/2021", - Symbol: "DFVL", - Precision: 5, - Type: Stock, - AlternateId: "06740P650"}, - 17483958086724: &Security{ - SecurityId: 17483958086724, - Name: "RTLA", - Description: "iPath Long Extended Russell 2000 Total Return Index ETN due on 11/30/2020", - Symbol: "RTLA", - Precision: 5, - Type: Stock, - AlternateId: "06740P809"}, - 17483958094392: &Security{ - SecurityId: 17483958094392, - Name: "EMSA", - Description: "iPath Short Enhanced MSCI Emerging Markets Index ETN due on 11/30/2020", - Symbol: "EMSA", - Precision: 5, - Type: Stock, - AlternateId: "06740P866"}, - 17483958095616: &Security{ - SecurityId: 17483958095616, - Name: "EMLB", - Description: "iPath Long Enhanced MSCI Emerging Markets Index ETN due on 11/30/2020", - Symbol: "EMLB", - Precision: 5, - Type: Stock, - AlternateId: "06740P874"}, - 17484009978456: &Security{ - SecurityId: 17484009978456, - Name: "IVOP", - Description: "iPath Inverse S&P 500 VIX Short-Term Futures ETN (II) due 9/20/2021", - Symbol: "IVOP", - Precision: 5, - Type: Stock, - AlternateId: "06741K486"}, - 17484011741124: &Security{ - SecurityId: 17484011741124, - Name: "XVZ", - Description: "iPath S&P 500 Dynamic VIX ETN due 8/18/2021", - Symbol: "XVZ", - Precision: 5, - Type: Stock, - AlternateId: "06741L609"}, - 17484053739300: &Security{ - SecurityId: 17484053739300, - Name: "CAPE", - Description: "Barclays ETN & Shiller CAPE ETN", - Symbol: "CAPE", - Precision: 5, - Type: Stock, - AlternateId: "06742A669"}, - 17484053784336: &Security{ - SecurityId: 17484053784336, - Name: "BCS", - Description: "Barclays Bank plc ADR", - Symbol: "BCS", - Precision: 5, - Type: Stock, - AlternateId: "06742A750"}, - 17484056860068: &Security{ - SecurityId: 17484056860068, - Name: "FEEU", - Description: "Barclays ETN+ FI Enhanced Europe 50 ETN", - Symbol: "FEEU", - Precision: 5, - Type: Stock, - AlternateId: "06742C129"}, - 17484056863704: &Security{ - SecurityId: 17484056863704, - Name: "FIGY", - Description: "Barclays ETN+ FI Enhanced Global High Yield ETN", - Symbol: "FIGY", - Precision: 5, - Type: Stock, - AlternateId: "06742C152"}, - 17484057139788: &Security{ - SecurityId: 17484057139788, - Name: "ATMP", - Description: "Barclays ETN+ Select MLP ETN", - Symbol: "ATMP", - Precision: 5, - Type: Stock, - AlternateId: "06742C723"}, - 17484060497652: &Security{ - SecurityId: 17484060497652, - Name: "VXX", - Description: "Barclays Bank iPath S&P 500 VIX Short-Term Futures ETN due 1/30/2019", - Symbol: "VXX", - Precision: 5, - Type: Stock, - AlternateId: "06742E711"}, - 17484070528944: &Security{ - SecurityId: 17484070528944, - Name: "OSMS", - Description: "Barclays OFI SteelPath MLP ETN", - Symbol: "OSMS", - Precision: 5, - Type: Stock, - AlternateId: "06742K618"}, - 17484090593328: &Security{ - SecurityId: 17484090593328, - Name: "WIL", - Description: "Barclays Women in Leadership ETN", - Symbol: "WIL", - Precision: 5, - Type: Stock, - AlternateId: "06742W430"}, - 17486688815460: &Security{ - SecurityId: 17486688815460, - Name: "BHACU", - Description: "Barington/Hilco Acquisition Corp.", - Symbol: "BHACU", - Precision: 5, - Type: Stock, - AlternateId: "06759V101"}, - 17490919768164: &Security{ - SecurityId: 17490919768164, - Name: "BNED", - Description: "Barnes & Noble Education, Inc.", - Symbol: "BNED", - Precision: 5, - Type: Stock, - AlternateId: "06777U101"}, - 17490876098436: &Security{ - SecurityId: 17490876098436, - Name: "BKS", - Description: "Barnes & Noble, Inc.", - Symbol: "BKS", - Precision: 5, - Type: Stock, - AlternateId: "067774109"}, - 17492632976772: &Security{ - SecurityId: 17492632976772, - Name: "B", - Description: "Barnes Group, Inc.", - Symbol: "B", - Precision: 5, - Type: Stock, - AlternateId: "067806109"}, - 17494801360992: &Security{ - SecurityId: 17494801360992, - Name: "ABX", - Description: "Barrick Gold Corp.", - Symbol: "ABX", - Precision: 5, - Type: Stock, - AlternateId: "067901108"}, - 17558048980800: &Security{ - SecurityId: 17558048980800, - Name: "BRN", - Description: "Barnwell Industries, Inc.", - Symbol: "BRN", - Precision: 5, - Type: Stock, - AlternateId: "068221100"}, - 17560229122512: &Security{ - SecurityId: 17560229122512, - Name: "CUDA", - Description: "Barracuda Networks, Inc.", - Symbol: "CUDA", - Precision: 5, - Type: Stock, - AlternateId: "068323104"}, - 17562681361872: &Security{ - SecurityId: 17562681361872, - Name: "BBG", - Description: "Bill Barrett Corp.", - Symbol: "BBG", - Precision: 5, - Type: Stock, - AlternateId: "06846N104"}, - 17562647769696: &Security{ - SecurityId: 17562647769696, - Name: "BBSI", - Description: "Barrett Business Services, Inc.", - Symbol: "BBSI", - Precision: 5, - Type: Stock, - AlternateId: "068463108"}, - 17649695548224: &Security{ - SecurityId: 17649695548224, - Name: "BAS", - Description: "Basic Energy Services, Inc.", - Symbol: "BAS", - Precision: 5, - Type: Stock, - AlternateId: "06985P100"}, - 19752128002512: &Security{ - SecurityId: 19752128002512, - Name: "BSET", - Description: "Bassett Furniture Industries, Inc.", - Symbol: "BSET", - Precision: 5, - Type: Stock, - AlternateId: "070203104"}, - 19841831254188: &Security{ - SecurityId: 19841831254188, - Name: "BXLT", - Description: "Baxalta, Inc.", - Symbol: "BXLT", - Precision: 5, - Type: Stock, - AlternateId: "07177M103"}, - 19843613326980: &Security{ - SecurityId: 19843613326980, - Name: "BAX", - Description: "Baxter Intl, Inc.", - Symbol: "BAX", - Precision: 5, - Type: Stock, - AlternateId: "071813109"}, - 19920232369800: &Security{ - SecurityId: 19920232369800, - Name: "BYLK", - Description: "Baylake Corp.", - Symbol: "BYLK", - Precision: 5, - Type: Stock, - AlternateId: "072788102"}, - 19987640398944: &Security{ - SecurityId: 19987640398944, - Name: "BV", - Description: "Bazaarvoice, Inc.", - Symbol: "BV", - Precision: 5, - Type: Stock, - AlternateId: "073271108"}, - 19987796602944: &Security{ - SecurityId: 19987796602944, - Name: "BFR", - Description: "BBVA Banco Francés S.V. ADR", - Symbol: "BFR", - Precision: 5, - Type: Stock, - AlternateId: "07329M100"}, - 19987768049724: &Security{ - SecurityId: 19987768049724, - Name: "BBCN", - Description: "BBCN Bancorp, Inc.", - Symbol: "BBCN", - Precision: 5, - Type: Stock, - AlternateId: "073295107"}, - 19989395597412: &Security{ - SecurityId: 19989395597412, - Name: "BEAV", - Description: "B/E Aerospace, Inc.", - Symbol: "BEAV", - Precision: 5, - Type: Stock, - AlternateId: "073302101"}, - 19996414712964: &Security{ - SecurityId: 19996414712964, - Name: "BECN", - Description: "Beacon Roofing Supply, Inc.", - Symbol: "BECN", - Precision: 5, - Type: Stock, - AlternateId: "073685109"}, - 20061293239908: &Security{ - SecurityId: 20061293239908, - Name: "BBGI", - Description: "Beasley Broadcast Group, Inc.", - Symbol: "BBGI", - Precision: 5, - Type: Stock, - AlternateId: "074014101"}, - 20150880935076: &Security{ - SecurityId: 20150880935076, - Name: "BZH", - Description: "Beazer Homes USA, Inc.", - Symbol: "BZH", - Precision: 5, - Type: Stock, - AlternateId: "07556Q881"}, - 20150899074180: &Security{ - SecurityId: 20150899074180, - Name: "BEBE", - Description: "bebe stores. inc.", - Symbol: "BEBE", - Precision: 5, - Type: Stock, - AlternateId: "075571109"}, - 20157499965060: &Security{ - SecurityId: 20157499965060, - Name: "BDX", - Description: "Becton Dickinson and Co.", - Symbol: "BDX", - Precision: 5, - Type: Stock, - AlternateId: "075887109"}, - 20157558751296: &Security{ - SecurityId: 20157558751296, - Name: "BBBY", - Description: "Bed Bath & Beyond, Inc.", - Symbol: "BBBY", - Precision: 5, - Type: Stock, - AlternateId: "075896100"}, - 20303102563236: &Security{ - SecurityId: 20303102563236, - Name: "BELFA", - Description: "Bel Fuse, Inc. Cl A", - Symbol: "BELFA", - Precision: 5, - Type: Stock, - AlternateId: "077347201"}, - 20303102609856: &Security{ - SecurityId: 20303102609856, - Name: "BELFB", - Description: "Bel Fuse, Inc. Cl B", - Symbol: "BELFB", - Precision: 5, - Type: Stock, - AlternateId: "077347300"}, - 20305334726424: &Security{ - SecurityId: 20305334726424, - Name: "BDC", - Description: "Belden, Inc.", - Symbol: "BDC", - Precision: 5, - Type: Stock, - AlternateId: "077454106"}, - 20381280243300: &Security{ - SecurityId: 20381280243300, - Name: "BXE", - Description: "Bellatrix Exploration Ltd", - Symbol: "BXE", - Precision: 5, - Type: Stock, - AlternateId: "078314101"}, - 20390345130888: &Security{ - SecurityId: 20390345130888, - Name: "BLPH", - Description: "Bellerophon Therapeutics, Inc.", - Symbol: "BLPH", - Precision: 5, - Type: Stock, - AlternateId: "078771102"}, - 20462239414332: &Security{ - SecurityId: 20462239414332, - Name: "BLCM", - Description: "Bellicum Pharmaceuticals, Inc.", - Symbol: "BLCM", - Precision: 5, - Type: Stock, - AlternateId: "079481107"}, - 22656143755764: &Security{ - SecurityId: 22656143755764, - Name: "BMS", - Description: "Bemis Co., Inc.", - Symbol: "BMS", - Precision: 5, - Type: Stock, - AlternateId: "081437105"}, - 22660332717924: &Security{ - SecurityId: 22660332717924, - Name: "BHE", - Description: "Benchmark Electronics, Inc.", - Symbol: "BHE", - Precision: 5, - Type: Stock, - AlternateId: "08160H101"}, - 22662590121864: &Security{ - SecurityId: 22662590121864, - Name: "BNCL", - Description: "Beneficial Bancorp, Inc.", - Symbol: "BNCL", - Precision: 5, - Type: Stock, - AlternateId: "08171T102"}, - 22664679564312: &Security{ - SecurityId: 22664679564312, - Name: "BNFT", - Description: "Benefitfocus, Inc.", - Symbol: "BNFT", - Precision: 5, - Type: Stock, - AlternateId: "08180D106"}, - 22725915097788: &Security{ - SecurityId: 22725915097788, - Name: "BNTC", - Description: "Benitec Biopharma Ltd. ADR", - Symbol: "BNTC", - Precision: 5, - Type: Stock, - AlternateId: "082053307"}, - 22891169063304: &Security{ - SecurityId: 22891169063304, - Name: "WRB", - Description: "W.R. Berkley Corp.", - Symbol: "WRB", - Precision: 5, - Type: Stock, - AlternateId: "084423102"}, - 22895819920224: &Security{ - SecurityId: 22895819920224, - Name: "BRK.A", - Description: "Berkshire Hathaway, Inc. Cl A", - Symbol: "BRK.A", - Precision: 5, - Type: Stock, - AlternateId: "084670108"}, - 22895820199944: &Security{ - SecurityId: 22895820199944, - Name: "BRK.B", - Description: "Berkshire Hathaway, Inc. Cl B", - Symbol: "BRK.B", - Precision: 5, - Type: Stock, - AlternateId: "084670702"}, - 22895880386364: &Security{ - SecurityId: 22895880386364, - Name: "BHLB", - Description: "Berkshire Hills Bancorp, Inc.", - Symbol: "BHLB", - Precision: 5, - Type: Stock, - AlternateId: "084680107"}, - 22976535546540: &Security{ - SecurityId: 22976535546540, - Name: "BERY", - Description: "Berry Plastics Group, Inc.", - Symbol: "BERY", - Precision: 5, - Type: Stock, - AlternateId: "08579W103"}, - 23050018746468: &Security{ - SecurityId: 23050018746468, - Name: "BBY", - Description: "Best Buy Co., Inc.", - Symbol: "BBY", - Precision: 5, - Type: Stock, - AlternateId: "086516101"}, - 23208863391072: &Security{ - SecurityId: 23208863391072, - Name: "BHP", - Description: "BHP Billiton plc ADR", - Symbol: "BHP", - Precision: 5, - Type: Stock, - AlternateId: "088606108"}, - 23276677886820: &Security{ - SecurityId: 23276677886820, - Name: "BGFV", - Description: "Big 5 Sporting Goods Corp.", - Symbol: "BGFV", - Precision: 5, - Type: Stock, - AlternateId: "08915P101"}, - 23280690489516: &Security{ - SecurityId: 23280690489516, - Name: "BIG", - Description: "Big Lots, Inc.", - Symbol: "BIG", - Precision: 5, - Type: Stock, - AlternateId: "089302103"}, - 23291979188580: &Security{ - SecurityId: 23291979188580, - Name: "BH", - Description: "Biglari Holdings, Inc.", - Symbol: "BH", - Precision: 5, - Type: Stock, - AlternateId: "08986R101"}, - 25401299748192: &Security{ - SecurityId: 25401299748192, - Name: "BIO.B", - Description: "Bio-Rad Laboratories, Inc. Cl B", - Symbol: "BIO.B", - Precision: 5, - Type: Stock, - AlternateId: "090572108"}, - 25401299794812: &Security{ - SecurityId: 25401299794812, - Name: "BIO", - Description: "Bio-Rad Laboratories, Inc.", - Symbol: "BIO", - Precision: 5, - Type: Stock, - AlternateId: "090572207"}, - 25401393806508: &Security{ - SecurityId: 25401393806508, - Name: "BASI", - Description: "Bioanalytical Systems, Inc.", - Symbol: "BASI", - Precision: 5, - Type: Stock, - AlternateId: "09058M103"}, - 25401408923052: &Security{ - SecurityId: 25401408923052, - Name: "BCRX", - Description: "BioCryst Pharmaceuticals, Inc.", - Symbol: "BCRX", - Precision: 5, - Type: Stock, - AlternateId: "09058V103"}, - 25403081820696: &Security{ - SecurityId: 25403081820696, - Name: "BDSI", - Description: "BioDelivery Sciences Intl, Inc.", - Symbol: "BDSI", - Precision: 5, - Type: Stock, - AlternateId: "09060J106"}, - 25403137247844: &Security{ - SecurityId: 25403137247844, - Name: "BMRN", - Description: "BioMarin Pharmaceutical, Inc.", - Symbol: "BMRN", - Precision: 5, - Type: Stock, - AlternateId: "09061G101"}, - 25403224634640: &Security{ - SecurityId: 25403224634640, - Name: "BLFS", - Description: "BioLife Solutions, Inc.", - Symbol: "BLFS", - Precision: 5, - Type: Stock, - AlternateId: "09062W204"}, - 25403226267564: &Security{ - SecurityId: 25403226267564, - Name: "BIIB", - Description: "Biogen, Inc.", - Symbol: "BIIB", - Precision: 5, - Type: Stock, - AlternateId: "09062X103"}, - 25403259860028: &Security{ - SecurityId: 25403259860028, - Name: "BMR", - Description: "BioMed Realty Trust, Inc.", - Symbol: "BMR", - Precision: 5, - Type: Stock, - AlternateId: "09063H107"}, - 25403447976948: &Security{ - SecurityId: 25403447976948, - Name: "BTX", - Description: "BioTime, Inc.", - Symbol: "BTX", - Precision: 5, - Type: Stock, - AlternateId: "09066L105"}, - 25403476530456: &Security{ - SecurityId: 25403476530456, - Name: "BEAT", - Description: "BioTelemetry, Inc.", - Symbol: "BEAT", - Precision: 5, - Type: Stock, - AlternateId: "090672106"}, - 25403486654664: &Security{ - SecurityId: 25403486654664, - Name: "BSPM", - Description: "Biostar Pharmaceuticals, Inc.", - Symbol: "BSPM", - Precision: 5, - Type: Stock, - AlternateId: "090678202"}, - 25403600821824: &Security{ - SecurityId: 25403600821824, - Name: "BOTA", - Description: "Biota Pharmaceuticals, Inc.", - Symbol: "BOTA", - Precision: 5, - Type: Stock, - AlternateId: "090694100"}, - 25405324108056: &Security{ - SecurityId: 25405324108056, - Name: "BLRX", - Description: "BioLineRX Ltd ADR", - Symbol: "BLRX", - Precision: 5, - Type: Stock, - AlternateId: "09071M106"}, - 25405391292696: &Security{ - SecurityId: 25405391292696, - Name: "BIOA", - Description: "BioAmber, Inc.", - Symbol: "BIOA", - Precision: 5, - Type: Stock, - AlternateId: "09072Q106"}, - 25405399690740: &Security{ - SecurityId: 25405399690740, - Name: "BIOC", - Description: "Biocept, Inc.", - Symbol: "BIOC", - Precision: 5, - Type: Stock, - AlternateId: "09072V105"}, - 25405403049828: &Security{ - SecurityId: 25405403049828, - Name: "BPMX", - Description: "BioPharmX Corp.", - Symbol: "BPMX", - Precision: 5, - Type: Stock, - AlternateId: "09072X101"}, - 25405445040336: &Security{ - SecurityId: 25405445040336, - Name: "TECH", - Description: "Bio-Techne Corp.", - Symbol: "TECH", - Precision: 5, - Type: Stock, - AlternateId: "09073M104"}, - 25405451758836: &Security{ - SecurityId: 25405451758836, - Name: "BVXV", - Description: "BiondVax Pharmaceuticals Ltd.", - Symbol: "BVXV", - Precision: 5, - Type: Stock, - AlternateId: "09073Q105"}, - 25405490389932: &Security{ - SecurityId: 25405490389932, - Name: "BITI", - Description: "Biotie Therapies Corp.", - Symbol: "BITI", - Precision: 5, - Type: Stock, - AlternateId: "09074D103"}, - 25409642400864: &Security{ - SecurityId: 25409642400864, - Name: "BIOL", - Description: "Biolase, Inc.", - Symbol: "BIOL", - Precision: 5, - Type: Stock, - AlternateId: "090911108"}, - 25409763333144: &Security{ - SecurityId: 25409763333144, - Name: "BSTC", - Description: "BioSpecifics Technologies Corp.", - Symbol: "BSTC", - Precision: 5, - Type: Stock, - AlternateId: "090931106"}, - 25473195757440: &Security{ - SecurityId: 25473195757440, - Name: "BDMS", - Description: "Birner Dental Management Services, Inc.", - Symbol: "BDMS", - Precision: 5, - Type: Stock, - AlternateId: "091283200"}, - 25483723544124: &Security{ - SecurityId: 25483723544124, - Name: "BITA", - Description: "Bitauto Holdings Ltd", - Symbol: "BITA", - Precision: 5, - Type: Stock, - AlternateId: "091727107"}, - 25485898646844: &Security{ - SecurityId: 25485898646844, - Name: "BBOX", - Description: "Black Box Corp.", - Symbol: "BBOX", - Precision: 5, - Type: Stock, - AlternateId: "091826107"}, - 25488187963344: &Security{ - SecurityId: 25488187963344, - Name: "BGT", - Description: "BlackRock Global Floating Rate Income Trust", - Symbol: "BGT", - Precision: 5, - Type: Stock, - AlternateId: "091941104"}, - 25546865348196: &Security{ - SecurityId: 25546865348196, - Name: "BDE", - Description: "Black Diamond, Inc.", - Symbol: "BDE", - Precision: 5, - Type: Stock, - AlternateId: "09202G101"}, - 25548959829636: &Security{ - SecurityId: 25548959829636, - Name: "BKH", - Description: "Black Hills Corp. (SD)", - Symbol: "BKH", - Precision: 5, - Type: Stock, - AlternateId: "092113109"}, - 25548959832084: &Security{ - SecurityId: 25548959832084, - Name: "BKHU", - Description: "Black Hills Corp., 7.75% Equity Units", - Symbol: "BKHU", - Precision: 5, - Type: Stock, - AlternateId: "092113125"}, - 25549191616320: &Security{ - SecurityId: 25549191616320, - Name: "BKFS", - Description: "Black Knight Financial Services, Inc. Cl A", - Symbol: "BKFS", - Precision: 5, - Type: Stock, - AlternateId: "09214X100"}, - 25551410389092: &Security{ - SecurityId: 25551410389092, - Name: "BSM", - Description: "Black Stone Minerals, L.P.", - Symbol: "BSM", - Precision: 5, - Type: Stock, - AlternateId: "09225M101"}, - 25551580030380: &Security{ - SecurityId: 25551580030380, - Name: "BBRY", - Description: "BlackBerry Limited", - Symbol: "BBRY", - Precision: 5, - Type: Stock, - AlternateId: "09228F103"}, - 25553755133136: &Security{ - SecurityId: 25553755133136, - Name: "HAWK", - Description: "Blackhawk Network Holdings, Inc.", - Symbol: "HAWK", - Precision: 5, - Type: Stock, - AlternateId: "09238E104"}, - 25555869769716: &Security{ - SecurityId: 25555869769716, - Name: "BKN", - Description: "BlackRock Investment Quality Municipal Trust", - Symbol: "BKN", - Precision: 5, - Type: Stock, - AlternateId: "09247D105"}, - 25555873128768: &Security{ - SecurityId: 25555873128768, - Name: "BKT", - Description: "BlackRock Income Trust", - Symbol: "BKT", - Precision: 5, - Type: Stock, - AlternateId: "09247F100"}, - 25555903361892: &Security{ - SecurityId: 25555903361892, - Name: "BLK", - Description: "BlackRock, Inc.", - Symbol: "BLK", - Precision: 5, - Type: Stock, - AlternateId: "09247X101"}, - 25555863051216: &Security{ - SecurityId: 25555863051216, - Name: "BYM", - Description: "BlackRock Municipal Income Quality Trust", - Symbol: "BYM", - Precision: 5, - Type: Stock, - AlternateId: "092479104"}, - 25555928556312: &Security{ - SecurityId: 25555928556312, - Name: "BPK", - Description: "BlackRock Municipal 2018 Term Trust", - Symbol: "BPK", - Precision: 5, - Type: Stock, - AlternateId: "09248C106"}, - 25555930235856: &Security{ - SecurityId: 25555930235856, - Name: "BUI", - Description: "BlackRock Utility and Infrastructure Trust", - Symbol: "BUI", - Precision: 5, - Type: Stock, - AlternateId: "09248D104"}, - 25555931915400: &Security{ - SecurityId: 25555931915400, - Name: "BFZ", - Description: "BlackRock California Municipal Income Trust", - Symbol: "BFZ", - Precision: 5, - Type: Stock, - AlternateId: "09248E102"}, - 25555933595268: &Security{ - SecurityId: 25555933595268, - Name: "BFK", - Description: "BlackRock Municipal Income Trust", - Symbol: "BFK", - Precision: 5, - Type: Stock, - AlternateId: "09248F109"}, - 25555936954356: &Security{ - SecurityId: 25555936954356, - Name: "BBF", - Description: "BlackRock Municipal Income Investment Trust", - Symbol: "BBF", - Precision: 5, - Type: Stock, - AlternateId: "09248H105"}, - 25555940313444: &Security{ - SecurityId: 25555940313444, - Name: "BNJ", - Description: "BlackRock New Jersey Municipal Income Trust", - Symbol: "BNJ", - Precision: 5, - Type: Stock, - AlternateId: "09248J101"}, - 25555941993312: &Security{ - SecurityId: 25555941993312, - Name: "BLH", - Description: "BlackRock New York Municipal 2018 Term Trust", - Symbol: "BLH", - Precision: 5, - Type: Stock, - AlternateId: "09248K108"}, - 25555943672856: &Security{ - SecurityId: 25555943672856, - Name: "BNY", - Description: "BlackRock New York Municipal Income Trust", - Symbol: "BNY", - Precision: 5, - Type: Stock, - AlternateId: "09248L106"}, - 25555957109892: &Security{ - SecurityId: 25555957109892, - Name: "BSD", - Description: "BlackRock Strategic Municipal Trust", - Symbol: "BSD", - Precision: 5, - Type: Stock, - AlternateId: "09248T109"}, - 25555963828032: &Security{ - SecurityId: 25555963828032, - Name: "BBN", - Description: "BlackRock Taxable Municipal Bond Trust", - Symbol: "BBN", - Precision: 5, - Type: Stock, - AlternateId: "09248X100"}, - 25555910080320: &Security{ - SecurityId: 25555910080320, - Name: "BHV", - Description: "BlackRock Virginia Municipal Bond Fund", - Symbol: "BHV", - Precision: 5, - Type: Stock, - AlternateId: "092481100"}, - 25555985663364: &Security{ - SecurityId: 25555985663364, - Name: "BLJ", - Description: "BlackRock New Jersey Municipal Bond Trust", - Symbol: "BLJ", - Precision: 5, - Type: Stock, - AlternateId: "09249A109"}, - 25555989022452: &Security{ - SecurityId: 25555989022452, - Name: "BJZ", - Description: "BlackRock California Municipal 2018 Term Trust", - Symbol: "BJZ", - Precision: 5, - Type: Stock, - AlternateId: "09249C105"}, - 25555992381540: &Security{ - SecurityId: 25555992381540, - Name: "BHK", - Description: "BlackRock Core Bond Trust", - Symbol: "BHK", - Precision: 5, - Type: Stock, - AlternateId: "09249E101"}, - 25555997420496: &Security{ - SecurityId: 25555997420496, - Name: "BBK", - Description: "BlackRock Municipal Bond Trust", - Symbol: "BBK", - Precision: 5, - Type: Stock, - AlternateId: "09249H104"}, - 25556002459452: &Security{ - SecurityId: 25556002459452, - Name: "BIE", - Description: "BlackRock Municipal Bond Investment Trust", - Symbol: "BIE", - Precision: 5, - Type: Stock, - AlternateId: "09249K107"}, - 25556004138996: &Security{ - SecurityId: 25556004138996, - Name: "BZM", - Description: "BlackRock Maryland Municipal Bond Trust", - Symbol: "BZM", - Precision: 5, - Type: Stock, - AlternateId: "09249L105"}, - 25556007498084: &Security{ - SecurityId: 25556007498084, - Name: "BLE", - Description: "BlackRock Municipal Income Trust II", - Symbol: "BLE", - Precision: 5, - Type: Stock, - AlternateId: "09249N101"}, - 25556010857496: &Security{ - SecurityId: 25556010857496, - Name: "BQH", - Description: "BlackRock New York Municipal Bond Trust", - Symbol: "BQH", - Precision: 5, - Type: Stock, - AlternateId: "09249P106"}, - 25556014216584: &Security{ - SecurityId: 25556014216584, - Name: "BFY", - Description: "BlackRock New York Municipal Income Trust II", - Symbol: "BFY", - Precision: 5, - Type: Stock, - AlternateId: "09249R102"}, - 25556019255540: &Security{ - SecurityId: 25556019255540, - Name: "BSE", - Description: "BlackRock New York Municipal Income Quality Trust", - Symbol: "BSE", - Precision: 5, - Type: Stock, - AlternateId: "09249U105"}, - 25556022614628: &Security{ - SecurityId: 25556022614628, - Name: "BLW", - Description: "BlackRock Limited Duration Income Trust", - Symbol: "BLW", - Precision: 5, - Type: Stock, - AlternateId: "09249W101"}, - 25556024294532: &Security{ - SecurityId: 25556024294532, - Name: "BKK", - Description: "BlackRock Municipal 2020 Term Trust", - Symbol: "BKK", - Precision: 5, - Type: Stock, - AlternateId: "09249X109"}, - 25557619929516: &Security{ - SecurityId: 25557619929516, - Name: "BTA", - Description: "BlackRock Long-Term Municipal Advantage Trust", - Symbol: "BTA", - Precision: 5, - Type: Stock, - AlternateId: "09250B103"}, - 25557628327560: &Security{ - SecurityId: 25557628327560, - Name: "BAF", - Description: "BlackRock Municipal Income Investment Quality Trust", - Symbol: "BAF", - Precision: 5, - Type: Stock, - AlternateId: "09250G102"}, - 25557638405508: &Security{ - SecurityId: 25557638405508, - Name: "BFO", - Description: "BlackRock Florida Municipal 2020 Term Trust", - Symbol: "BFO", - Precision: 5, - Type: Stock, - AlternateId: "09250M109"}, - 25557651842148: &Security{ - SecurityId: 25557651842148, - Name: "BGR", - Description: "BlackRock Global Energy and Resources Trust", - Symbol: "BGR", - Precision: 5, - Type: Stock, - AlternateId: "09250U101"}, - 25557655201596: &Security{ - SecurityId: 25557655201596, - Name: "BME", - Description: "BlackRock Health Sciences Trust", - Symbol: "BME", - Precision: 5, - Type: Stock, - AlternateId: "09250W107"}, - 25557603133428: &Security{ - SecurityId: 25557603133428, - Name: "BOE", - Description: "BlackRock Global Opportunities Equity Trust", - Symbol: "BOE", - Precision: 5, - Type: Stock, - AlternateId: "092501105"}, - 25557614890560: &Security{ - SecurityId: 25557614890560, - Name: "BTZ", - Description: "BlackRock Credit Allocation Income Trust", - Symbol: "BTZ", - Precision: 5, - Type: Stock, - AlternateId: "092508100"}, - 25557678716112: &Security{ - SecurityId: 25557678716112, - Name: "BDJ", - Description: "BlackRock Enhanced Equity Dividend Trust", - Symbol: "BDJ", - Precision: 5, - Type: Stock, - AlternateId: "09251A104"}, - 25557729104700: &Security{ - SecurityId: 25557729104700, - Name: "BGY", - Description: "BlackRock International Growth and Income Trust", - Symbol: "BGY", - Precision: 5, - Type: Stock, - AlternateId: "092524107"}, - 25557821483472: &Security{ - SecurityId: 25557821483472, - Name: "MHD", - Description: "BlackRock MuniHoldings Fund", - Symbol: "MHD", - Precision: 5, - Type: Stock, - AlternateId: "09253N104"}, - 25557824842884: &Security{ - SecurityId: 25557824842884, - Name: "MUH", - Description: "BlackRock MuniHoldings Fund II", - Symbol: "MUH", - Precision: 5, - Type: Stock, - AlternateId: "09253P109"}, - 25557828201972: &Security{ - SecurityId: 25557828201972, - Name: "MVF", - Description: "BlackRock MuniVest Fund, Inc.", - Symbol: "MVF", - Precision: 5, - Type: Stock, - AlternateId: "09253R105"}, - 25557831561060: &Security{ - SecurityId: 25557831561060, - Name: "MVT", - Description: "BlackRock MuniVest Fund II, Inc.", - Symbol: "MVT", - Precision: 5, - Type: Stock, - AlternateId: "09253T101"}, - 25557833240928: &Security{ - SecurityId: 25557833240928, - Name: "BX", - Description: "Blackstone Group L.P.", - Symbol: "BX", - Precision: 5, - Type: Stock, - AlternateId: "09253U108"}, - 25557836600016: &Security{ - SecurityId: 25557836600016, - Name: "MYD", - Description: "BlackRock MuniYield Fund, Inc.", - Symbol: "MYD", - Precision: 5, - Type: Stock, - AlternateId: "09253W104"}, - 25557838279560: &Security{ - SecurityId: 25557838279560, - Name: "MUI", - Description: "BlackRock Muni Intermediate Duration Fund", - Symbol: "MUI", - Precision: 5, - Type: Stock, - AlternateId: "09253X102"}, - 25557839959104: &Security{ - SecurityId: 25557839959104, - Name: "MEN", - Description: "BlackRock MuniEnhanced Fund, Inc.", - Symbol: "MEN", - Precision: 5, - Type: Stock, - AlternateId: "09253Y100"}, - 25557787891296: &Security{ - SecurityId: 25557787891296, - Name: "BKCC", - Description: "BlackRock Capital Investment Corp.", - Symbol: "BKCC", - Precision: 5, - Type: Stock, - AlternateId: "092533108"}, - 25557860114532: &Security{ - SecurityId: 25557860114532, - Name: "MUS", - Description: "BlackRock MuniHoldings Quality Fund, Inc.", - Symbol: "MUS", - Precision: 5, - Type: Stock, - AlternateId: "09254A101"}, - 25557863473980: &Security{ - SecurityId: 25557863473980, - Name: "MUE", - Description: "BlackRock MuniHoldings Quality Fund II", - Symbol: "MUE", - Precision: 5, - Type: Stock, - AlternateId: "09254C107"}, - 25557866833068: &Security{ - SecurityId: 25557866833068, - Name: "MYI", - Description: "BlackRock MuniYield Quality Fund III, Inc.", - Symbol: "MYI", - Precision: 5, - Type: Stock, - AlternateId: "09254E103"}, - 25557868512576: &Security{ - SecurityId: 25557868512576, - Name: "MQY", - Description: "BlackRock MuniYield Quality Fund, Inc.", - Symbol: "MQY", - Precision: 5, - Type: Stock, - AlternateId: "09254F100"}, - 25557870192480: &Security{ - SecurityId: 25557870192480, - Name: "MQT", - Description: "BlackRock MuniYield Quality Fund II, Inc.", - Symbol: "MQT", - Precision: 5, - Type: Stock, - AlternateId: "09254G108"}, - 25557875231112: &Security{ - SecurityId: 25557875231112, - Name: "MUA", - Description: "BlackRock MuniAssets Fund", - Symbol: "MUA", - Precision: 5, - Type: Stock, - AlternateId: "09254J102"}, - 25557876910980: &Security{ - SecurityId: 25557876910980, - Name: "MZA", - Description: "BlackRock MuniYield Arizona Fund, Inc.", - Symbol: "MZA", - Precision: 5, - Type: Stock, - AlternateId: "09254K109"}, - 25557878590524: &Security{ - SecurityId: 25557878590524, - Name: "MUC", - Description: "BlackRock MuniHoldings California Quality Fund", - Symbol: "MUC", - Precision: 5, - Type: Stock, - AlternateId: "09254L107"}, - 25557880270068: &Security{ - SecurityId: 25557880270068, - Name: "MYC", - Description: "BlackRock MuniYield California Fund, Inc.", - Symbol: "MYC", - Precision: 5, - Type: Stock, - AlternateId: "09254M105"}, - 25557881949612: &Security{ - SecurityId: 25557881949612, - Name: "MCA", - Description: "BlackRock MuniYield California Quality Fund, Inc.", - Symbol: "MCA", - Precision: 5, - Type: Stock, - AlternateId: "09254N103"}, - 25557885309024: &Security{ - SecurityId: 25557885309024, - Name: "MFL", - Description: "BlackRock MuniHoldings Investment Quality Fund", - Symbol: "MFL", - Precision: 5, - Type: Stock, - AlternateId: "09254P108"}, - 25557888668112: &Security{ - SecurityId: 25557888668112, - Name: "MYF", - Description: "BlackRock MuniYield Investment Fund", - Symbol: "MYF", - Precision: 5, - Type: Stock, - AlternateId: "09254R104"}, - 25557892027200: &Security{ - SecurityId: 25557892027200, - Name: "MFT", - Description: "BlackRock MuniYield Investment Quality Fund", - Symbol: "MFT", - Precision: 5, - Type: Stock, - AlternateId: "09254T100"}, - 25557895386612: &Security{ - SecurityId: 25557895386612, - Name: "MIY", - Description: "BlackRock MuniYield Michigan Quality Fund, Inc.", - Symbol: "MIY", - Precision: 5, - Type: Stock, - AlternateId: "09254V105"}, - 25557898745700: &Security{ - SecurityId: 25557898745700, - Name: "MUJ", - Description: "BlackRock MuniHoldings New Jersey Quality Fund", - Symbol: "MUJ", - Precision: 5, - Type: Stock, - AlternateId: "09254X101"}, - 25557900425604: &Security{ - SecurityId: 25557900425604, - Name: "MYJ", - Description: "BlackRock MuniYield New Jersey Fund, Inc.", - Symbol: "MYJ", - Precision: 5, - Type: Stock, - AlternateId: "09254Y109"}, - 25557923940120: &Security{ - SecurityId: 25557923940120, - Name: "MHN", - Description: "BlackRock MuniHoldings New York Quality Fund, Inc.", - Symbol: "MHN", - Precision: 5, - Type: Stock, - AlternateId: "09255C106"}, - 25557927299208: &Security{ - SecurityId: 25557927299208, - Name: "MYN", - Description: "BlackRock MuniYield New York Quality Fund, Inc.", - Symbol: "MYN", - Precision: 5, - Type: Stock, - AlternateId: "09255E102"}, - 25557928979076: &Security{ - SecurityId: 25557928979076, - Name: "MNE", - Description: "BlackRock Muni New York Intermediate Duration Fund", - Symbol: "MNE", - Precision: 5, - Type: Stock, - AlternateId: "09255F109"}, - 25557930658620: &Security{ - SecurityId: 25557930658620, - Name: "MPA", - Description: "BlackRock MuniYield Pennsylvania Quality Fund", - Symbol: "MPA", - Precision: 5, - Type: Stock, - AlternateId: "09255G107"}, - 25557937377120: &Security{ - SecurityId: 25557937377120, - Name: "EGF", - Description: "BlackRock Enhanced Government Fund", - Symbol: "EGF", - Precision: 5, - Type: Stock, - AlternateId: "09255K108"}, - 25557945775164: &Security{ - SecurityId: 25557945775164, - Name: "HYT", - Description: "Blackrock Corporate High Yield Fund, Inc.", - Symbol: "HYT", - Precision: 5, - Type: Stock, - AlternateId: "09255P107"}, - 25557947454708: &Security{ - SecurityId: 25557947454708, - Name: "BHL", - Description: "BlackRock Defined Opportunity Credit Trust", - Symbol: "BHL", - Precision: 5, - Type: Stock, - AlternateId: "09255Q105"}, - 25557949134252: &Security{ - SecurityId: 25557949134252, - Name: "DSU", - Description: "BlackRock Debt Strategies Fund, Inc.", - Symbol: "DSU", - Precision: 5, - Type: Stock, - AlternateId: "09255R103"}, - 25557959211840: &Security{ - SecurityId: 25557959211840, - Name: "FRA", - Description: "BlackRock Floating Rate Income Strategies Fund, Inc.", - Symbol: "FRA", - Precision: 5, - Type: Stock, - AlternateId: "09255X100"}, - 25557981047172: &Security{ - SecurityId: 25557981047172, - Name: "CII", - Description: "BlackRock Enhanced Capital and Income Fund, Inc.", - Symbol: "CII", - Precision: 5, - Type: Stock, - AlternateId: "09256A109"}, - 25558014639348: &Security{ - SecurityId: 25558014639348, - Name: "BSL", - Description: "Blackstone / GSO Senior Floating Rate Term Fund", - Symbol: "BSL", - Precision: 5, - Type: Stock, - AlternateId: "09256U105"}, - 25558041513312: &Security{ - SecurityId: 25558041513312, - Name: "BCX", - Description: "BlackRock Resources & Commodities Strategy Trust", - Symbol: "BCX", - Precision: 5, - Type: Stock, - AlternateId: "09257A108"}, - 25558046551944: &Security{ - SecurityId: 25558046551944, - Name: "BGX", - Description: "Blackstone / GSO Long-Short Credit Income Fund", - Symbol: "BGX", - Precision: 5, - Type: Stock, - AlternateId: "09257D102"}, - 25558070066532: &Security{ - SecurityId: 25558070066532, - Name: "BGB", - Description: "Blackstone/GSO Strategic Credit Fund", - Symbol: "BGB", - Precision: 5, - Type: Stock, - AlternateId: "09257R101"}, - 25558078464576: &Security{ - SecurityId: 25558078464576, - Name: "BXMT", - Description: "Blackstone Mortgage Trust, Inc.", - Symbol: "BXMT", - Precision: 5, - Type: Stock, - AlternateId: "09257W100"}, - 25558101979452: &Security{ - SecurityId: 25558101979452, - Name: "BIT", - Description: "BlackRock Multi-Sector Income Trust", - Symbol: "BIT", - Precision: 5, - Type: Stock, - AlternateId: "09258A107"}, - 25558108697988: &Security{ - SecurityId: 25558108697988, - Name: "MHE", - Description: "BlackRock Masssachusetts Tax-Exempt Trust", - Symbol: "MHE", - Precision: 5, - Type: Stock, - AlternateId: "09258E109"}, - 25558112057040: &Security{ - SecurityId: 25558112057040, - Name: "BST", - Description: "BlackRock Science and Technology Trust", - Symbol: "BST", - Precision: 5, - Type: Stock, - AlternateId: "09258G104"}, - 25634317914504: &Security{ - SecurityId: 25634317914504, - Name: "ADRA", - Description: "PowerShares BLDRS Asia 50 ADR Index Fund", - Symbol: "ADRA", - Precision: 5, - Type: Stock, - AlternateId: "09348R102"}, - 25634317961124: &Security{ - SecurityId: 25634317961124, - Name: "ADRD", - Description: "PowerShares BLDRS Developed Markets 100 ADR Index Fund", - Symbol: "ADRD", - Precision: 5, - Type: Stock, - AlternateId: "09348R201"}, - 25634318007744: &Security{ - SecurityId: 25634318007744, - Name: "ADRE", - Description: "PowerShares BLDRS Emerging Markets 50 ADR Index Fund", - Symbol: "ADRE", - Precision: 5, - Type: Stock, - AlternateId: "09348R300"}, - 25634318054724: &Security{ - SecurityId: 25634318054724, - Name: "ADRU", - Description: "PowerShares BLDRS Europe 100 ADR Index Fund", - Symbol: "ADRU", - Precision: 5, - Type: Stock, - AlternateId: "09348R409"}, - 25638567343092: &Security{ - SecurityId: 25638567343092, - Name: "HRB", - Description: "H&R Block, Inc.", - Symbol: "HRB", - Precision: 5, - Type: Stock, - AlternateId: "093671105"}, - 25638700032864: &Security{ - SecurityId: 25638700032864, - Name: "BDR", - Description: "Blonder Tongue Laboratories, Inc.", - Symbol: "BDR", - Precision: 5, - Type: Stock, - AlternateId: "093698108"}, - 25707989231712: &Security{ - SecurityId: 25707989231712, - Name: "BLMN", - Description: "Bloomin' Brands, Inc.", - Symbol: "BLMN", - Precision: 5, - Type: Stock, - AlternateId: "094235108"}, - 25784470546164: &Security{ - SecurityId: 25784470546164, - Name: "BLT", - Description: "Blount Intl, Inc.", - Symbol: "BLT", - Precision: 5, - Type: Stock, - AlternateId: "095180105"}, - 25786299647808: &Security{ - SecurityId: 25786299647808, - Name: "BCOR", - Description: "Blucora, Inc.", - Symbol: "BCOR", - Precision: 5, - Type: Stock, - AlternateId: "095229100"}, - 25788350459160: &Security{ - SecurityId: 25788350459160, - Name: "BLBD", - Description: "Blue Bird Corp.", - Symbol: "BLBD", - Precision: 5, - Type: Stock, - AlternateId: "095306106"}, - 25788451235976: &Security{ - SecurityId: 25788451235976, - Name: "BUFF", - Description: "Blue Buffalo Pet Products, Inc.", - Symbol: "BUFF", - Precision: 5, - Type: Stock, - AlternateId: "09531U102"}, - 25790651533152: &Security{ - SecurityId: 25790651533152, - Name: "BBLU", - Description: "Blue Earth, Inc.", - Symbol: "BBLU", - Precision: 5, - Type: Stock, - AlternateId: "095428108"}, - 25793122248036: &Security{ - SecurityId: 25793122248036, - Name: "BHBK", - Description: "Blue Hills Bancorp, Inc.", - Symbol: "BHBK", - Precision: 5, - Type: Stock, - AlternateId: "095573101"}, - 25797576589740: &Security{ - SecurityId: 25797576589740, - Name: "NILE", - Description: "Blue Nile, Inc.", - Symbol: "NILE", - Precision: 5, - Type: Stock, - AlternateId: "09578R103"}, - 25860745267776: &Security{ - SecurityId: 25860745267776, - Name: "BLUE", - Description: "bluebird bio, Inc.", - Symbol: "BLUE", - Precision: 5, - Type: Stock, - AlternateId: "09609G100"}, - 25864798181508: &Security{ - SecurityId: 25864798181508, - Name: "BXC", - Description: "BlueLinx Holdings, Inc.", - Symbol: "BXC", - Precision: 5, - Type: Stock, - AlternateId: "09624H109"}, - 25864880482692: &Security{ - SecurityId: 25864880482692, - Name: "BKEP", - Description: "Blueknight Energy Partners L.P.", - Symbol: "BKEP", - Precision: 5, - Type: Stock, - AlternateId: "09625U109"}, - 25864982939016: &Security{ - SecurityId: 25864982939016, - Name: "BRG", - Description: "Bluerock Residential Growth REIT, Inc.", - Symbol: "BRG", - Precision: 5, - Type: Stock, - AlternateId: "09627J102"}, - 25865008133508: &Security{ - SecurityId: 25865008133508, - Name: "BPMC", - Description: "Blueprint Medicines Corp.", - Symbol: "BPMC", - Precision: 5, - Type: Stock, - AlternateId: "09627Y109"}, - 25873367582160: &Security{ - SecurityId: 25873367582160, - Name: "BWP", - Description: "Boardwalk Pipeline Partners, L.P.", - Symbol: "BWP", - Precision: 5, - Type: Stock, - AlternateId: "096627104"}, - 25875776151396: &Security{ - SecurityId: 25875776151396, - Name: "BOBE", - Description: "Bob Evans Farms, Inc.", - Symbol: "BOBE", - Precision: 5, - Type: Stock, - AlternateId: "096761101"}, - 25938664333812: &Security{ - SecurityId: 25938664333812, - Name: "BA", - Description: "Boeing Company (The)", - Symbol: "BA", - Precision: 5, - Type: Stock, - AlternateId: "097023105"}, - 25945633060488: &Security{ - SecurityId: 25945633060488, - Name: "WIFI", - Description: "Boingo Wireless, Inc.", - Symbol: "WIFI", - Precision: 5, - Type: Stock, - AlternateId: "09739C102"}, - 25945634740032: &Security{ - SecurityId: 25945634740032, - Name: "BCC", - Description: "Boise Cascade Co.", - Symbol: "BCC", - Precision: 5, - Type: Stock, - AlternateId: "09739D100"}, - 25947742658112: &Security{ - SecurityId: 25947742658112, - Name: "BOJA", - Description: "Bojangles', Inc.", - Symbol: "BOJA", - Precision: 5, - Type: Stock, - AlternateId: "097488100"}, - 25954170548580: &Security{ - SecurityId: 25954170548580, - Name: "BONT", - Description: "Bon-Ton Stores, Inc. (The)", - Symbol: "BONT", - Precision: 5, - Type: Stock, - AlternateId: "09776J101"}, - 25954217578044: &Security{ - SecurityId: 25954217578044, - Name: "BONA", - Description: "Bona Film Group Ltd", - Symbol: "BONA", - Precision: 5, - Type: Stock, - AlternateId: "09777B107"}, - 25954325073324: &Security{ - SecurityId: 25954325073324, - Name: "BCEI", - Description: "Bonanza Creek Energy, Inc.", - Symbol: "BCEI", - Precision: 5, - Type: Stock, - AlternateId: "097793103"}, - 26027922580704: &Security{ - SecurityId: 26027922580704, - Name: "BNSO", - Description: "Bonso Electronics Intl, Inc.", - Symbol: "BNSO", - Precision: 5, - Type: Stock, - AlternateId: "098529308"}, - 26103983897664: &Security{ - SecurityId: 26103983897664, - Name: "BOOT", - Description: "Boot Barn Holdings, Inc.", - Symbol: "BOOT", - Precision: 5, - Type: Stock, - AlternateId: "099406100"}, - 26106153961752: &Security{ - SecurityId: 26106153961752, - Name: "BAH", - Description: "Booz Allen Hamilton Holding Corp.", - Symbol: "BAH", - Precision: 5, - Type: Stock, - AlternateId: "099502106"}, - 26110631818008: &Security{ - SecurityId: 26110631818008, - Name: "BWA", - Description: "BorgWarner, Inc.", - Symbol: "BWA", - Precision: 5, - Type: Stock, - AlternateId: "099724106"}, - 101571154715196: &Security{ - SecurityId: 101571154715196, - Name: "SAM", - Description: "Boston Beer Co. (The)", - Symbol: "SAM", - Precision: 5, - Type: Stock, - AlternateId: "100557107"}, - 101640573244404: &Security{ - SecurityId: 101640573244404, - Name: "BPFH", - Description: "Boston Private Financial Holdings, Inc.", - Symbol: "BPFH", - Precision: 5, - Type: Stock, - AlternateId: "101119105"}, - 101640620273508: &Security{ - SecurityId: 101640620273508, - Name: "BXP", - Description: "Boston Properties, Inc.", - Symbol: "BXP", - Precision: 5, - Type: Stock, - AlternateId: "101121101"}, - 101640690817596: &Security{ - SecurityId: 101640690817596, - Name: "BSX", - Description: "Boston Scientific Corp.", - Symbol: "BSX", - Precision: 5, - Type: Stock, - AlternateId: "101137107"}, - 101645348392728: &Security{ - SecurityId: 101645348392728, - Name: "EPAY", - Description: "Bottomline Technologies (de), Inc.", - Symbol: "EPAY", - Precision: 5, - Type: Stock, - AlternateId: "101388106"}, - 101649216548196: &Security{ - SecurityId: 101649216548196, - Name: "BIF", - Description: "Boulder Growth & Income Fund, Inc.", - Symbol: "BIF", - Precision: 5, - Type: Stock, - AlternateId: "101507101"}, - 101727940150368: &Security{ - SecurityId: 101727940150368, - Name: "BWL.A", - Description: "Bowl America, Inc. Cl A", - Symbol: "BWL.A", - Precision: 5, - Type: Stock, - AlternateId: "102565108"}, - 101797637495760: &Security{ - SecurityId: 101797637495760, - Name: "BOX", - Description: "Box, Inc. Cl A", - Symbol: "BOX", - Precision: 5, - Type: Stock, - AlternateId: "10316T104"}, - 101801586272868: &Security{ - SecurityId: 101801586272868, - Name: "BYD", - Description: "Boyd Gaming Corp.", - Symbol: "BYD", - Precision: 5, - Type: Stock, - AlternateId: "103304101"}, - 101886904047384: &Security{ - SecurityId: 101886904047384, - Name: "BRC", - Description: "Brady Corp.", - Symbol: "BRC", - Precision: 5, - Type: Stock, - AlternateId: "104674106"}, - 101951861563044: &Security{ - SecurityId: 101951861563044, - Name: "BCLI", - Description: "Brainstorm Cell Therapeutics, Inc.", - Symbol: "BCLI", - Precision: 5, - Type: Stock, - AlternateId: "10501E201"}, - 101958684163308: &Security{ - SecurityId: 101958684163308, - Name: "BDN", - Description: "Brandywine Realty Trust", - Symbol: "BDN", - Precision: 5, - Type: Stock, - AlternateId: "105368203"}, - 101962831088700: &Security{ - SecurityId: 101962831088700, - Name: "BRFS", - Description: "BRF S.A. ADR", - Symbol: "BRFS", - Precision: 5, - Type: Stock, - AlternateId: "10552T107"}, - 101962846205172: &Security{ - SecurityId: 101962846205172, - Name: "BAK", - Description: "Braskem S.A. ADR", - Symbol: "BAK", - Precision: 5, - Type: Stock, - AlternateId: "105532105"}, - 101962921787856: &Security{ - SecurityId: 101962921787856, - Name: "LND", - Description: "BrasilAgro - Brazilian Agricultural Real Estate Co ADR", - Symbol: "LND", - Precision: 5, - Type: Stock, - AlternateId: "10554B104"}, - 101965279968900: &Security{ - SecurityId: 101965279968900, - Name: "BBRG", - Description: "Bravo Brio Restaurant Group", - Symbol: "BBRG", - Precision: 5, - Type: Stock, - AlternateId: "10567B109"}, - 102045812517180: &Security{ - SecurityId: 102045812517180, - Name: "BBEP", - Description: "BreitBurn Energy Partners, L.P.", - Symbol: "BBEP", - Precision: 5, - Type: Stock, - AlternateId: "106776107"}, - 102187059824664: &Security{ - SecurityId: 102187059824664, - Name: "BDGE", - Description: "Bridge Bancorp, Inc.", - Symbol: "BDGE", - Precision: 5, - Type: Stock, - AlternateId: "108035106"}, - 102187330242804: &Security{ - SecurityId: 102187330242804, - Name: "BPI", - Description: "Bridgepoint Education, Inc.", - Symbol: "BPI", - Precision: 5, - Type: Stock, - AlternateId: "10807M105"}, - 102187337054544: &Security{ - SecurityId: 102187337054544, - Name: "BLIN", - Description: "Bridgeline Digital, Inc.", - Symbol: "BLIN", - Precision: 5, - Type: Stock, - AlternateId: "10807Q304"}, - 102202475340204: &Security{ - SecurityId: 102202475340204, - Name: "BRID", - Description: "Bridgford Foods Corp.", - Symbol: "BRID", - Precision: 5, - Type: Stock, - AlternateId: "108763103"}, - 102265481095812: &Security{ - SecurityId: 102265481095812, - Name: "BGG", - Description: "Briggs & Stratton Corp.", - Symbol: "BGG", - Precision: 5, - Type: Stock, - AlternateId: "109043109"}, - 102267961888320: &Security{ - SecurityId: 102267961888320, - Name: "BFAM", - Description: "Bright Horizons Family Solutions, Inc.", - Symbol: "BFAM", - Precision: 5, - Type: Stock, - AlternateId: "109194100"}, - 102269696931684: &Security{ - SecurityId: 102269696931684, - Name: "BCOV", - Description: "Brightcove, Inc.", - Symbol: "BCOV", - Precision: 5, - Type: Stock, - AlternateId: "10921T101"}, - 102278538430272: &Security{ - SecurityId: 102278538430272, - Name: "EAT", - Description: "Brinker Intl, Inc.", - Symbol: "EAT", - Precision: 5, - Type: Stock, - AlternateId: "109641100"}, - 102278849159376: &Security{ - SecurityId: 102278849159376, - Name: "BCO", - Description: "Brink's Co. (The)", - Symbol: "BCO", - Precision: 5, - Type: Stock, - AlternateId: "109696104"}, - 104383367696736: &Security{ - SecurityId: 104383367696736, - Name: "BMY", - Description: "Bristol-Myers Squibb Co.", - Symbol: "BMY", - Precision: 5, - Type: Stock, - AlternateId: "110122108"}, - 104390029053756: &Security{ - SecurityId: 104390029053756, - Name: "BTI", - Description: "British American Tobacco plc ADR", - Symbol: "BTI", - Precision: 5, - Type: Stock, - AlternateId: "110448107"}, - 104463834739956: &Security{ - SecurityId: 104463834739956, - Name: "BRX", - Description: "Brixmor Property Group, Inc.", - Symbol: "BRX", - Precision: 5, - Type: Stock, - AlternateId: "11120U105"}, - 104466082066236: &Security{ - SecurityId: 104466082066236, - Name: "BRCM", - Description: "Broadcom Corp.", - Symbol: "BRCM", - Precision: 5, - Type: Stock, - AlternateId: "111320107"}, - 104466161148228: &Security{ - SecurityId: 104466161148228, - Name: "BSFT", - Description: "BroadSoft, Inc.", - Symbol: "BSFT", - Precision: 5, - Type: Stock, - AlternateId: "11133B409"}, - 104466191241132: &Security{ - SecurityId: 104466191241132, - Name: "BR", - Description: "Broadridge Financial Solutions, Inc.", - Symbol: "BR", - Precision: 5, - Type: Stock, - AlternateId: "11133T103"}, - 104468202021528: &Security{ - SecurityId: 104468202021528, - Name: "BVSN", - Description: "BroadVision, Inc.", - Symbol: "BVSN", - Precision: 5, - Type: Stock, - AlternateId: "111412706"}, - 104468386499316: &Security{ - SecurityId: 104468386499316, - Name: "BYFC", - Description: "Broadway Financial Corp.", - Symbol: "BYFC", - Precision: 5, - Type: Stock, - AlternateId: "111444105"}, - 104472614186136: &Security{ - SecurityId: 104472614186136, - Name: "BRCD", - Description: "Brocade Communications Systems, Inc.", - Symbol: "BRCD", - Precision: 5, - Type: Stock, - AlternateId: "111621306"}, - 104546869916112: &Security{ - SecurityId: 104546869916112, - Name: "BKD", - Description: "Brookdale Senior Living, Inc.", - Symbol: "BKD", - Precision: 5, - Type: Stock, - AlternateId: "112463104"}, - 104549170990032: &Security{ - SecurityId: 104549170990032, - Name: "BAM", - Description: "Brookfield Asset Management, Inc.", - Symbol: "BAM", - Precision: 5, - Type: Stock, - AlternateId: "112585104"}, - 104553257495940: &Security{ - SecurityId: 104553257495940, - Name: "INF", - Description: "Brookfield Global Listed Infrastructure Income Fund", - Symbol: "INF", - Precision: 5, - Type: Stock, - AlternateId: "11273Q109"}, - 104553579982104: &Security{ - SecurityId: 104553579982104, - Name: "BOI", - Description: "Brookfield Mortgage Opportunity Income Fund, Inc.", - Symbol: "BOI", - Precision: 5, - Type: Stock, - AlternateId: "112792106"}, - 104555335180932: &Security{ - SecurityId: 104555335180932, - Name: "BOXC", - Description: "Brookfield Office Properties Canada", - Symbol: "BOXC", - Precision: 5, - Type: Stock, - AlternateId: "112823109"}, - 104555440996704: &Security{ - SecurityId: 104555440996704, - Name: "HTR", - Description: "Brookfield Total Return Fund, Inc.", - Symbol: "HTR", - Precision: 5, - Type: Stock, - AlternateId: "11283U108"}, - 104631614941500: &Security{ - SecurityId: 104631614941500, - Name: "BRKL", - Description: "Brookline Bancorp, Inc.", - Symbol: "BRKL", - Precision: 5, - Type: Stock, - AlternateId: "11373M107"}, - 104701295490696: &Security{ - SecurityId: 104701295490696, - Name: "BRKS", - Description: "Brooks Automation, Inc.", - Symbol: "BRKS", - Precision: 5, - Type: Stock, - AlternateId: "114340102"}, - 104777432483940: &Security{ - SecurityId: 104777432483940, - Name: "BRO", - Description: "Brown & Brown, Inc.", - Symbol: "BRO", - Precision: 5, - Type: Stock, - AlternateId: "115236101"}, - 104786141292864: &Security{ - SecurityId: 104786141292864, - Name: "BF.A", - Description: "Brown-Forman Corp. Cl A", - Symbol: "BF.A", - Precision: 5, - Type: Stock, - AlternateId: "115637100"}, - 104786141339844: &Security{ - SecurityId: 104786141339844, - Name: "BF.B", - Description: "Brown-Forman Corp. Cl B", - Symbol: "BF.B", - Precision: 5, - Type: Stock, - AlternateId: "115637209"}, - 104929862675076: &Security{ - SecurityId: 104929862675076, - Name: "BC", - Description: "Brunswick Corp.", - Symbol: "BC", - Precision: 5, - Type: Stock, - AlternateId: "117043109"}, - 104943047660676: &Security{ - SecurityId: 104943047660676, - Name: "BMTC", - Description: "Bryn Mawr Bank Corp.", - Symbol: "BMTC", - Precision: 5, - Type: Stock, - AlternateId: "117665109"}, - 104945266526400: &Security{ - SecurityId: 104945266526400, - Name: "BSQR", - Description: "BSQUARE Corp.", - Symbol: "BSQR", - Precision: 5, - Type: Stock, - AlternateId: "11776U300"}, - 104945320227780: &Security{ - SecurityId: 104945320227780, - Name: "BTG", - Description: "B2Gold Corp.", - Symbol: "BTG", - Precision: 5, - Type: Stock, - AlternateId: "11777Q209"}, - 105012514898532: &Security{ - SecurityId: 105012514898532, - Name: "BPL", - Description: "Buckeye Partners, L.P.", - Symbol: "BPL", - Precision: 5, - Type: Stock, - AlternateId: "118230101"}, - 105016928929560: &Security{ - SecurityId: 105016928929560, - Name: "BKE", - Description: "Buckle, Inc. (The)", - Symbol: "BKE", - Precision: 5, - Type: Stock, - AlternateId: "118440106"}, - 107202609871056: &Security{ - SecurityId: 107202609871056, - Name: "BBW", - Description: "Build-A-Bear Workshop, Inc.", - Symbol: "BBW", - Precision: 5, - Type: Stock, - AlternateId: "120076104"}, - 107202705609276: &Security{ - SecurityId: 107202705609276, - Name: "BLDR", - Description: "Builders FirstSource, Inc.", - Symbol: "BLDR", - Precision: 5, - Type: Stock, - AlternateId: "12008R107"}, - 107219773866888: &Security{ - SecurityId: 107219773866888, - Name: "BUR", - Description: "Burcon Nutrascience Corp.", - Symbol: "BUR", - Precision: 5, - Type: Stock, - AlternateId: "120831102"}, - 107358977081880: &Security{ - SecurityId: 107358977081880, - Name: "BURL", - Description: "Burlington Stores, Inc.", - Symbol: "BURL", - Precision: 5, - Type: Stock, - AlternateId: "122017106"}, - 107529100347600: &Security{ - SecurityId: 107529100347600, - Name: "CFFI", - Description: "C&F Financial Corp.", - Symbol: "CFFI", - Precision: 5, - Type: Stock, - AlternateId: "12466Q104"}, - 107531241858144: &Security{ - SecurityId: 107531241858144, - Name: "CAE", - Description: "CAE, Inc.", - Symbol: "CAE", - Precision: 5, - Type: Stock, - AlternateId: "124765108"}, - 107531349353496: &Security{ - SecurityId: 107531349353496, - Name: "CAI", - Description: "CAI Intl, Inc.", - Symbol: "CAI", - Precision: 5, - Type: Stock, - AlternateId: "12477X106"}, - 107531441732196: &Security{ - SecurityId: 107531441732196, - Name: "CBFV", - Description: "CB Financial Services, Inc. (PA)", - Symbol: "CBFV", - Precision: 5, - Type: Stock, - AlternateId: "12479G101"}, - 107533055843208: &Security{ - SecurityId: 107533055843208, - Name: "CBZ", - Description: "CBIZ, Inc.", - Symbol: "CBZ", - Precision: 5, - Type: Stock, - AlternateId: "124805102"}, - 107533228843584: &Security{ - SecurityId: 107533228843584, - Name: "CBL", - Description: "CBL & Associates Properties, Inc.", - Symbol: "CBL", - Precision: 5, - Type: Stock, - AlternateId: "124830100"}, - 107533361533356: &Security{ - SecurityId: 107533361533356, - Name: "CBS.A", - Description: "CBS Corp.", - Symbol: "CBS.A", - Precision: 5, - Type: Stock, - AlternateId: "124857103"}, - 107533361579976: &Security{ - SecurityId: 107533361579976, - Name: "CBS", - Description: "CBS Corp.. Cl B", - Symbol: "CBS", - Precision: 5, - Type: Stock, - AlternateId: "124857202"}, - 107533421999496: &Security{ - SecurityId: 107533421999496, - Name: "CAW", - Description: "CCA Industries, Inc.", - Symbol: "CAW", - Precision: 5, - Type: Stock, - AlternateId: "124867102"}, - 107594215700832: &Security{ - SecurityId: 107594215700832, - Name: "CBOE", - Description: "CBOE Holdings, Inc.", - Symbol: "CBOE", - Precision: 5, - Type: Stock, - AlternateId: "12503M108"}, - 107594266089024: &Security{ - SecurityId: 107594266089024, - Name: "IGR", - Description: "CBRE Clarion Real Estate Income Fund", - Symbol: "IGR", - Precision: 5, - Type: Stock, - AlternateId: "12504G100"}, - 107594274487428: &Security{ - SecurityId: 107594274487428, - Name: "CBG", - Description: "CBRE Group, Inc.", - Symbol: "CBG", - Precision: 5, - Type: Stock, - AlternateId: "12504L109"}, - 107594422293312: &Security{ - SecurityId: 107594422293312, - Name: "CDI", - Description: "CDI Corp.", - Symbol: "CDI", - Precision: 5, - Type: Stock, - AlternateId: "125071100"}, - 107594504594532: &Security{ - SecurityId: 107594504594532, - Name: "CDK", - Description: "CDK Global, Inc.", - Symbol: "CDK", - Precision: 5, - Type: Stock, - AlternateId: "12508E101"}, - 107596417677156: &Security{ - SecurityId: 107596417677156, - Name: "CECE", - Description: "CECO Environmental Corp.", - Symbol: "CECE", - Precision: 5, - Type: Stock, - AlternateId: "125141101"}, - 107598728828736: &Security{ - SecurityId: 107598728828736, - Name: "CF", - Description: "CF Industries Holdings, Inc.", - Symbol: "CF", - Precision: 5, - Type: Stock, - AlternateId: "125269100"}, - 107602818740676: &Security{ - SecurityId: 107602818740676, - Name: "CHRW", - Description: "C.H. Robinson Worldwide, Inc.", - Symbol: "CHRW", - Precision: 5, - Type: Stock, - AlternateId: "12541W209"}, - 107603173092852: &Security{ - SecurityId: 107603173092852, - Name: "CIFC", - Description: "CIFC Corp.", - Symbol: "CIFC", - Precision: 5, - Type: Stock, - AlternateId: "12547R105"}, - 107604896379012: &Security{ - SecurityId: 107604896379012, - Name: "CI", - Description: "Cigna Corp.", - Symbol: "CI", - Precision: 5, - Type: Stock, - AlternateId: "125509109"}, - 107605366997796: &Security{ - SecurityId: 107605366997796, - Name: "CIT", - Description: "CIT Group, Inc.", - Symbol: "CIT", - Precision: 5, - Type: Stock, - AlternateId: "125581801"}, - 107607172258548: &Security{ - SecurityId: 107607172258548, - Name: "CNL", - Description: "Cleco Corp.", - Symbol: "CNL", - Precision: 5, - Type: Stock, - AlternateId: "12561W105"}, - 107607217608144: &Security{ - SecurityId: 107607217608144, - Name: "CKX", - Description: "CKX Lands, Inc.", - Symbol: "CKX", - Precision: 5, - Type: Stock, - AlternateId: "12562N104"}, - 107609399429364: &Security{ - SecurityId: 107609399429364, - Name: "CME", - Description: "CME Group, Inc.", - Symbol: "CME", - Precision: 5, - Type: Stock, - AlternateId: "12572Q105"}, - 107609520361644: &Security{ - SecurityId: 107609520361644, - Name: "CMFN", - Description: "CM Finance, Inc.", - Symbol: "CMFN", - Precision: 5, - Type: Stock, - AlternateId: "12574Q103"}, - 107611965882432: &Security{ - SecurityId: 107611965882432, - Name: "CMS", - Description: "CMS Energy Corp.", - Symbol: "CMS", - Precision: 5, - Type: Stock, - AlternateId: "125896100"}, - 107613598469436: &Security{ - SecurityId: 107613598469436, - Name: "CSS", - Description: "CSS Industries, Inc.", - Symbol: "CSS", - Precision: 5, - Type: Stock, - AlternateId: "125906107"}, - 107613687489156: &Security{ - SecurityId: 107613687489156, - Name: "BNK", - Description: "C1 Financial, Inc.", - Symbol: "BNK", - Precision: 5, - Type: Stock, - AlternateId: "12591N109"}, - 107613664067808: &Security{ - SecurityId: 107613664067808, - Name: "CVU", - Description: "CPI Aerostructures, Inc.", - Symbol: "CVU", - Precision: 5, - Type: Stock, - AlternateId: "125919308"}, - 107613761391936: &Security{ - SecurityId: 107613761391936, - Name: "CNXC", - Description: "CNX Coal Resources LP", - Symbol: "CNXC", - Precision: 5, - Type: Stock, - AlternateId: "12592V100"}, - 107613952961472: &Security{ - SecurityId: 107613952961472, - Name: "CTIB", - Description: "CTI Industries Corp.", - Symbol: "CTIB", - Precision: 5, - Type: Stock, - AlternateId: "125961300"}, - 107674610520384: &Security{ - SecurityId: 107674610520384, - Name: "CNA", - Description: "CNA Financial Corp.", - Symbol: "CNA", - Precision: 5, - Type: Stock, - AlternateId: "126117100"}, - 107674672666428: &Security{ - SecurityId: 107674672666428, - Name: "CCNE", - Description: "CNB Financial Corp. (PA)", - Symbol: "CCNE", - Precision: 5, - Type: Stock, - AlternateId: "126128107"}, - 107674723054980: &Security{ - SecurityId: 107674723054980, - Name: "CEO", - Description: "CNOOC Ltd ADR", - Symbol: "CEO", - Precision: 5, - Type: Stock, - AlternateId: "126132109"}, - 107674845666804: &Security{ - SecurityId: 107674845666804, - Name: "CPL", - Description: "CPFL Energia SA ADR", - Symbol: "CPL", - Precision: 5, - Type: Stock, - AlternateId: "126153105"}, - 107675070735348: &Security{ - SecurityId: 107675070735348, - Name: "CRAI", - Description: "Charles River Associates, Inc.", - Symbol: "CRAI", - Precision: 5, - Type: Stock, - AlternateId: "12618T105"}, - 107675107686864: &Security{ - SecurityId: 107675107686864, - Name: "CPSH", - Description: "CPS Technologies Corp.", - Symbol: "CPSH", - Precision: 5, - Type: Stock, - AlternateId: "12619F104"}, - 107676799060140: &Security{ - SecurityId: 107676799060140, - Name: "CNO", - Description: "CNO Financial Group, Inc.", - Symbol: "CNO", - Precision: 5, - Type: Stock, - AlternateId: "12621E103"}, - 107677103070708: &Security{ - SecurityId: 107677103070708, - Name: "CRHM", - Description: "CRH Medical Corp.", - Symbol: "CRHM", - Precision: 5, - Type: Stock, - AlternateId: "12626F105"}, - 107677111515372: &Security{ - SecurityId: 107677111515372, - Name: "CRH", - Description: "CRH plc ADR", - Symbol: "CRH", - Precision: 5, - Type: Stock, - AlternateId: "12626K203"}, - 107679162279780: &Security{ - SecurityId: 107679162279780, - Name: "PMTS", - Description: "CPI Card Group, Inc.", - Symbol: "PMTS", - Precision: 5, - Type: Stock, - AlternateId: "12634H101"}, - 107679148843140: &Security{ - SecurityId: 107679148843140, - Name: "CSGS", - Description: "CSG Systems Intl, Inc.", - Symbol: "CSGS", - Precision: 5, - Type: Stock, - AlternateId: "126349109"}, - 107679390707700: &Security{ - SecurityId: 107679390707700, - Name: "CSPI", - Description: "CSP, Inc.", - Symbol: "CSPI", - Precision: 5, - Type: Stock, - AlternateId: "126389105"}, - 107681072003352: &Security{ - SecurityId: 107681072003352, - Name: "CSWI", - Description: "CSW Industrials, Inc.", - Symbol: "CSWI", - Precision: 5, - Type: Stock, - AlternateId: "126402106"}, - 107681082080940: &Security{ - SecurityId: 107681082080940, - Name: "CSX", - Description: "CSX Corp.", - Symbol: "CSX", - Precision: 5, - Type: Stock, - AlternateId: "126408103"}, - 107681245003800: &Security{ - SecurityId: 107681245003800, - Name: "CTCM", - Description: "CTC Media, Inc.", - Symbol: "CTCM", - Precision: 5, - Type: Stock, - AlternateId: "12642X106"}, - 107681476790772: &Security{ - SecurityId: 107681476790772, - Name: "CST", - Description: "CST Brands, Inc.", - Symbol: "CST", - Precision: 5, - Type: Stock, - AlternateId: "12646R105"}, - 107681587645464: &Security{ - SecurityId: 107681587645464, - Name: "CTIC", - Description: "CTI BioPharma Corp.", - Symbol: "CTIC", - Precision: 5, - Type: Stock, - AlternateId: "12648L106"}, - 107681648111604: &Security{ - SecurityId: 107681648111604, - Name: "AFTY", - Description: "CSOP FTSE China A50 ETF", - Symbol: "AFTY", - Precision: 5, - Type: Stock, - AlternateId: "12649L105"}, - 107681648158224: &Security{ - SecurityId: 107681648158224, - Name: "CNHX", - Description: "CSOP MSCI China A International Hedged ETF", - Symbol: "CNHX", - Precision: 5, - Type: Stock, - AlternateId: "12649L204"}, - 107683294135248: &Security{ - SecurityId: 107683294135248, - Name: "CSRA", - Description: "CSRA, Inc.", - Symbol: "CSRA", - Precision: 5, - Type: Stock, - AlternateId: "12650T104"}, - 107683247106036: &Security{ - SecurityId: 107683247106036, - Name: "CTS", - Description: "CTS Corp.", - Symbol: "CTS", - Precision: 5, - Type: Stock, - AlternateId: "126501105"}, - 107683433543448: &Security{ - SecurityId: 107683433543448, - Name: "CUNB", - Description: "CU Bancorp (CA)", - Symbol: "CUNB", - Precision: 5, - Type: Stock, - AlternateId: "126534106"}, - 107683678814040: &Security{ - SecurityId: 107683678814040, - Name: "CUI", - Description: "CUI Global, Inc.", - Symbol: "CUI", - Precision: 5, - Type: Stock, - AlternateId: "126576206"}, - 107685422208756: &Security{ - SecurityId: 107685422208756, - Name: "CVBF", - Description: "CVB Financial Corp.", - Symbol: "CVBF", - Precision: 5, - Type: Stock, - AlternateId: "126600105"}, - 107685423888300: &Security{ - SecurityId: 107685423888300, - Name: "CVV", - Description: "CVD Equipment Corp.", - Symbol: "CVV", - Precision: 5, - Type: Stock, - AlternateId: "126601103"}, - 107685585131616: &Security{ - SecurityId: 107685585131616, - Name: "CVI", - Description: "CVR Energy, Inc.", - Symbol: "CVI", - Precision: 5, - Type: Stock, - AlternateId: "12662P108"}, - 107685645597756: &Security{ - SecurityId: 107685645597756, - Name: "CVRR", - Description: "CVR Refining L.P.", - Symbol: "CVRR", - Precision: 5, - Type: Stock, - AlternateId: "12663P107"}, - 107685608646168: &Security{ - SecurityId: 107685608646168, - Name: "UAN", - Description: "CVR Partners L.P.", - Symbol: "UAN", - Precision: 5, - Type: Stock, - AlternateId: "126633106"}, - 107685773295192: &Security{ - SecurityId: 107685773295192, - Name: "CVSL", - Description: "CVSL, Inc.", - Symbol: "CVSL", - Precision: 5, - Type: Stock, - AlternateId: "12665T206"}, - 107685724539456: &Security{ - SecurityId: 107685724539456, - Name: "CVS", - Description: "CVS Health Corp.", - Symbol: "CVS", - Precision: 5, - Type: Stock, - AlternateId: "126650100"}, - 107687797185888: &Security{ - SecurityId: 107687797185888, - Name: "CYS", - Description: "CYS Investments, Inc.", - Symbol: "CYS", - Precision: 5, - Type: Stock, - AlternateId: "12673A108"}, - 107687822380020: &Security{ - SecurityId: 107687822380020, - Name: "CA", - Description: "CA, Inc.", - Symbol: "CA", - Precision: 5, - Type: Stock, - AlternateId: "12673P105"}, - 107689782585060: &Security{ - SecurityId: 107689782585060, - Name: "CAB", - Description: "Cabela's, Inc.", - Symbol: "CAB", - Precision: 5, - Type: Stock, - AlternateId: "126804301"}, - 107690110017012: &Security{ - SecurityId: 107690110017012, - Name: "CABO", - Description: "Cable One, Inc.", - Symbol: "CABO", - Precision: 5, - Type: Stock, - AlternateId: "12685J105"}, - 107690158726020: &Security{ - SecurityId: 107690158726020, - Name: "CVC", - Description: "Cablevision Systems Corporation", - Symbol: "CVC", - Precision: 5, - Type: Stock, - AlternateId: "12686C109"}, - 107751036407652: &Security{ - SecurityId: 107751036407652, - Name: "CBT", - Description: "Cabot Corp.", - Symbol: "CBT", - Precision: 5, - Type: Stock, - AlternateId: "127055101"}, - 107751311864748: &Security{ - SecurityId: 107751311864748, - Name: "CCMP", - Description: "Cabot Microelectronics Corp.", - Symbol: "CCMP", - Precision: 5, - Type: Stock, - AlternateId: "12709P103"}, - 107751281631660: &Security{ - SecurityId: 107751281631660, - Name: "COG", - Description: "Cabot Oil & Gas Corp.", - Symbol: "COG", - Precision: 5, - Type: Stock, - AlternateId: "127097103"}, - 107753446750032: &Security{ - SecurityId: 107753446750032, - Name: "CACI", - Description: "CACI Intl, Inc.", - Symbol: "CACI", - Precision: 5, - Type: Stock, - AlternateId: "127190304"}, - 107757751512672: &Security{ - SecurityId: 107757751512672, - Name: "CDNS", - Description: "Cadence Design Systems, Inc.", - Symbol: "CDNS", - Precision: 5, - Type: Stock, - AlternateId: "127387108"}, - 107761802793084: &Security{ - SecurityId: 107761802793084, - Name: "CDZI", - Description: "Cadiz, Inc.", - Symbol: "CDZI", - Precision: 5, - Type: Stock, - AlternateId: "127537207"}, - 107764347364524: &Security{ - SecurityId: 107764347364524, - Name: "PRSS", - Description: "CafePress, Inc.", - Symbol: "PRSS", - Precision: 5, - Type: Stock, - AlternateId: "12769A103"}, - 107829271288008: &Security{ - SecurityId: 107829271288008, - Name: "CALM", - Description: "Cal-Maine Foods, Inc.", - Symbol: "CALM", - Precision: 5, - Type: Stock, - AlternateId: "128030202"}, - 107829405610704: &Security{ - SecurityId: 107829405610704, - Name: "CLBS", - Description: "Caladrius Biosciences, Inc.", - Symbol: "CLBS", - Precision: 5, - Type: Stock, - AlternateId: "128058104"}, - 107831362363452: &Security{ - SecurityId: 107831362363452, - Name: "CHW", - Description: "Calamos Global Dynamic Income Fund", - Symbol: "CHW", - Precision: 5, - Type: Stock, - AlternateId: "12811L107"}, - 107831369081952: &Security{ - SecurityId: 107831369081952, - Name: "CHY", - Description: "Calamos Convertible and High Income Fund", - Symbol: "CHY", - Precision: 5, - Type: Stock, - AlternateId: "12811P108"}, - 107831372441040: &Security{ - SecurityId: 107831372441040, - Name: "CLMS", - Description: "Calamos Asset Management, Inc.", - Symbol: "CLMS", - Precision: 5, - Type: Stock, - AlternateId: "12811R104"}, - 107831375800128: &Security{ - SecurityId: 107831375800128, - Name: "CFGE", - Description: "Calamos Focus Growth ETF", - Symbol: "CFGE", - Precision: 5, - Type: Stock, - AlternateId: "12811T100"}, - 107831379159540: &Security{ - SecurityId: 107831379159540, - Name: "CCD", - Description: "Calamos Dynamic Convertible & Income Fund", - Symbol: "CCD", - Precision: 5, - Type: Stock, - AlternateId: "12811V105"}, - 107831338848864: &Security{ - SecurityId: 107831338848864, - Name: "CHI", - Description: "Calamos Convertible Opportunities and Income Fund", - Symbol: "CHI", - Precision: 5, - Type: Stock, - AlternateId: "128117108"}, - 107831340528408: &Security{ - SecurityId: 107831340528408, - Name: "CGO", - Description: "Calamos Global Total Return Fund", - Symbol: "CGO", - Precision: 5, - Type: Stock, - AlternateId: "128118106"}, - 107831395955556: &Security{ - SecurityId: 107831395955556, - Name: "CSQ", - Description: "Calamos Strategic Total Return Fund", - Symbol: "CSQ", - Precision: 5, - Type: Stock, - AlternateId: "128125101"}, - 107831397635460: &Security{ - SecurityId: 107831397635460, - Name: "CAMP", - Description: "CalAmp Corp.", - Symbol: "CAMP", - Precision: 5, - Type: Stock, - AlternateId: "128126109"}, - 107831819218896: &Security{ - SecurityId: 107831819218896, - Name: "CAA", - Description: "CalAtlantic Group, Inc.", - Symbol: "CAA", - Precision: 5, - Type: Stock, - AlternateId: "128195104"}, - 107833695350004: &Security{ - SecurityId: 107833695350004, - Name: "CVGW", - Description: "Calavo Growers, Inc.", - Symbol: "CVGW", - Precision: 5, - Type: Stock, - AlternateId: "128246105"}, - 107920519739928: &Security{ - SecurityId: 107920519739928, - Name: "CCC", - Description: "Calgon Carbon Corp.", - Symbol: "CCC", - Precision: 5, - Type: Stock, - AlternateId: "129603106"}, - 110027764293768: &Security{ - SecurityId: 110027764293768, - Name: "CFNB", - Description: "California First National Bancorp", - Symbol: "CFNB", - Precision: 5, - Type: Stock, - AlternateId: "130222102"}, - 110034637282620: &Security{ - SecurityId: 110034637282620, - Name: "CRC", - Description: "California Resources Corp.", - Symbol: "CRC", - Precision: 5, - Type: Stock, - AlternateId: "13057Q107"}, - 110039021080200: &Security{ - SecurityId: 110039021080200, - Name: "CWT", - Description: "California Water Service Group", - Symbol: "CWT", - Precision: 5, - Type: Stock, - AlternateId: "130788102"}, - 110041286882148: &Security{ - SecurityId: 110041286882148, - Name: "CALA", - Description: "Calithera Biosciences, Inc.", - Symbol: "CALA", - Precision: 5, - Type: Stock, - AlternateId: "13089P101"}, - 110101687740036: &Security{ - SecurityId: 110101687740036, - Name: "CALX", - Description: "Calix, Inc.", - Symbol: "CALX", - Precision: 5, - Type: Stock, - AlternateId: "13100M509"}, - 110104376618448: &Security{ - SecurityId: 110104376618448, - Name: "ELY", - Description: "Callaway Golf Co.", - Symbol: "ELY", - Precision: 5, - Type: Stock, - AlternateId: "131193104"}, - 110106240992136: &Security{ - SecurityId: 110106240992136, - Name: "CPE", - Description: "Callon Petroleum Co.", - Symbol: "CPE", - Precision: 5, - Type: Stock, - AlternateId: "13123X102"}, - 110110791071916: &Security{ - SecurityId: 110110791071916, - Name: "CLMT", - Description: "Calumet Specialty Products Partners, L.P.", - Symbol: "CLMT", - Precision: 5, - Type: Stock, - AlternateId: "131476103"}, - 110180092028220: &Security{ - SecurityId: 110180092028220, - Name: "ABCD", - Description: "Cambium Learning Group, Inc.", - Symbol: "ABCD", - Precision: 5, - Type: Stock, - AlternateId: "13201A107"}, - 110180076911676: &Security{ - SecurityId: 110180076911676, - Name: "CBM", - Description: "Cambrex Corp.", - Symbol: "CBM", - Precision: 5, - Type: Stock, - AlternateId: "132011107"}, - 110180379288996: &Security{ - SecurityId: 110180379288996, - Name: "SYLD", - Description: "Cambria Shareholder Yield ETF", - Symbol: "SYLD", - Precision: 5, - Type: Stock, - AlternateId: "132061201"}, - 110180379335616: &Security{ - SecurityId: 110180379335616, - Name: "FYLD", - Description: "Cambria Foreign Shareholder Yield ETF", - Symbol: "FYLD", - Precision: 5, - Type: Stock, - AlternateId: "132061300"}, - 110180379382596: &Security{ - SecurityId: 110180379382596, - Name: "GVAL", - Description: "Cambria Global Value ETF", - Symbol: "GVAL", - Precision: 5, - Type: Stock, - AlternateId: "132061409"}, - 110180379429216: &Security{ - SecurityId: 110180379429216, - Name: "GMOM", - Description: "Cambria Global Momentum ETF", - Symbol: "GMOM", - Precision: 5, - Type: Stock, - AlternateId: "132061508"}, - 110180379475836: &Security{ - SecurityId: 110180379475836, - Name: "GAA", - Description: "Cambria Global Asset Allocation ETF", - Symbol: "GAA", - Precision: 5, - Type: Stock, - AlternateId: "132061607"}, - 110180379579552: &Security{ - SecurityId: 110180379579552, - Name: "VAMO", - Description: "Cambria Value and Momentum ETF", - Symbol: "VAMO", - Precision: 5, - Type: Stock, - AlternateId: "132061888"}, - 110258567047008: &Security{ - SecurityId: 110258567047008, - Name: "CAC", - Description: "Camden National Corp.", - Symbol: "CAC", - Precision: 5, - Type: Stock, - AlternateId: "133034108"}, - 110260738790280: &Security{ - SecurityId: 110260738790280, - Name: "CPT", - Description: "Camden Property Trust", - Symbol: "CPT", - Precision: 5, - Type: Stock, - AlternateId: "133131102"}, - 110262828232800: &Security{ - SecurityId: 110262828232800, - Name: "CCJ", - Description: "Cameco Corp.", - Symbol: "CCJ", - Precision: 5, - Type: Stock, - AlternateId: "13321L108"}, - 110267225467380: &Security{ - SecurityId: 110267225467380, - Name: "CAM", - Description: "Cameron Intl Corp.", - Symbol: "CAM", - Precision: 5, - Type: Stock, - AlternateId: "13342B105"}, - 110345586272388: &Security{ - SecurityId: 110345586272388, - Name: "CPB", - Description: "Campbell Soup Co.", - Symbol: "CPB", - Precision: 5, - Type: Stock, - AlternateId: "134429109"}, - 110350223692020: &Security{ - SecurityId: 110350223692020, - Name: "CCG", - Description: "Campus Crest Communities, Inc.", - Symbol: "CCG", - Precision: 5, - Type: Stock, - AlternateId: "13466Y105"}, - 110493849335652: &Security{ - SecurityId: 110493849335652, - Name: "CM", - Description: "Canadian Imperial Bank of Commerce", - Symbol: "CM", - Precision: 5, - Type: Stock, - AlternateId: "136069101"}, - 110500433430408: &Security{ - SecurityId: 110500433430408, - Name: "CNI", - Description: "Canadian National Railway Co.", - Symbol: "CNI", - Precision: 5, - Type: Stock, - AlternateId: "136375102"}, - 110500493896548: &Security{ - SecurityId: 110500493896548, - Name: "CNQ", - Description: "Canadian Natural Resources Ltd", - Symbol: "CNQ", - Precision: 5, - Type: Stock, - AlternateId: "136385101"}, - 110502529591104: &Security{ - SecurityId: 110502529591104, - Name: "CP", - Description: "Canadian Pacific Railway Ltd", - Symbol: "CP", - Precision: 5, - Type: Stock, - AlternateId: "13645T100"}, - 110578960517328: &Security{ - SecurityId: 110578960517328, - Name: "CGIX", - Description: "Cancer Genetics, Inc.", - Symbol: "CGIX", - Precision: 5, - Type: Stock, - AlternateId: "13739U104"}, - 110650209921540: &Security{ - SecurityId: 110650209921540, - Name: "CAJ", - Description: "Canon, Inc. ADR", - Symbol: "CAJ", - Precision: 5, - Type: Stock, - AlternateId: "138006309"}, - 110650757383008: &Security{ - SecurityId: 110650757383008, - Name: "CMN", - Description: "Cantel Medical Corp.", - Symbol: "CMN", - Precision: 5, - Type: Stock, - AlternateId: "138098108"}, - 110652460513380: &Security{ - SecurityId: 110652460513380, - Name: "CPHC", - Description: "Canterbury Park Holding Corp.", - Symbol: "CPHC", - Precision: 5, - Type: Stock, - AlternateId: "13811E101"}, - 110742054590196: &Security{ - SecurityId: 110742054590196, - Name: "CCBG", - Description: "Capital City Bank Group, Inc.", - Symbol: "CCBG", - Precision: 5, - Type: Stock, - AlternateId: "139674105"}, - 110744352304740: &Security{ - SecurityId: 110744352304740, - Name: "CBF", - Description: "Capital Bank Financial Corp.", - Symbol: "CBF", - Precision: 5, - Type: Stock, - AlternateId: "139794101"}, - 112853132027892: &Security{ - SecurityId: 112853132027892, - Name: "COF", - Description: "Capital One Financial Corp.", - Symbol: "COF", - Precision: 5, - Type: Stock, - AlternateId: "14040H105"}, - 112853535135696: &Security{ - SecurityId: 112853535135696, - Name: "CSU", - Description: "Capital Senior Living Corp.", - Symbol: "CSU", - Precision: 5, - Type: Stock, - AlternateId: "140475104"}, - 112855281938892: &Security{ - SecurityId: 112855281938892, - Name: "CSWC", - Description: "Capital Southwest Corp.", - Symbol: "CSWC", - Precision: 5, - Type: Stock, - AlternateId: "140501123"}, - 112855567471128: &Security{ - SecurityId: 112855567471128, - Name: "CPTA", - Description: "Capitala Finance Corp.", - Symbol: "CPTA", - Precision: 5, - Type: Stock, - AlternateId: "14054R106"}, - 112855619539224: &Security{ - SecurityId: 112855619539224, - Name: "CLAC", - Description: "Capitol Acquisition Corp. III", - Symbol: "CLAC", - Precision: 5, - Type: Stock, - AlternateId: "14055M106"}, - 112855619585844: &Security{ - SecurityId: 112855619585844, - Name: "CLACU", - Description: "Capitol Acquisition Corp. III (Units)", - Symbol: "CLACU", - Precision: 5, - Type: Stock, - AlternateId: "14055M205"}, - 112855735432548: &Security{ - SecurityId: 112855735432548, - Name: "CFFN", - Description: "Capitol Federal Financial", - Symbol: "CFFN", - Precision: 5, - Type: Stock, - AlternateId: "14057J101"}, - 112857855108084: &Security{ - SecurityId: 112857855108084, - Name: "CAPN", - Description: "Capnia, Inc.", - Symbol: "CAPN", - Precision: 5, - Type: Stock, - AlternateId: "14066L105"}, - 112857902277444: &Security{ - SecurityId: 112857902277444, - Name: "CPST", - Description: "Capstone Turbine Corp.", - Symbol: "CPST", - Precision: 5, - Type: Stock, - AlternateId: "14067D409"}, - 112857904003608: &Security{ - SecurityId: 112857904003608, - Name: "CMO", - Description: "Capstead Mortgage Corp.", - Symbol: "CMO", - Precision: 5, - Type: Stock, - AlternateId: "14067E506"}, - 112859652297060: &Security{ - SecurityId: 112859652297060, - Name: "CAPR", - Description: "Capricor Therapeutics, Inc.", - Symbol: "CAPR", - Precision: 5, - Type: Stock, - AlternateId: "14070B101"}, - 112859944550532: &Security{ - SecurityId: 112859944550532, - Name: "CARA", - Description: "Cara Therapeutics, Inc.", - Symbol: "CARA", - Precision: 5, - Type: Stock, - AlternateId: "140755109"}, - 112860119230452: &Security{ - SecurityId: 112860119230452, - Name: "CRR", - Description: "CARBO Ceramics, Inc.", - Symbol: "CRR", - Precision: 5, - Type: Stock, - AlternateId: "140781105"}, - 112929484012020: &Security{ - SecurityId: 112929484012020, - Name: "CARB", - Description: "Carbonite, Inc.", - Symbol: "CARB", - Precision: 5, - Type: Stock, - AlternateId: "141337105"}, - 112929781304124: &Security{ - SecurityId: 112929781304124, - Name: "CBYL", - Description: "Carbylan Therapeutics, Inc.", - Symbol: "CBYL", - Precision: 5, - Type: Stock, - AlternateId: "141384107"}, - 112931573454180: &Security{ - SecurityId: 112931573454180, - Name: "CRDC", - Description: "Cardica, Inc.", - Symbol: "CRDC", - Precision: 5, - Type: Stock, - AlternateId: "14141R101"}, - 112932037028484: &Security{ - SecurityId: 112932037028484, - Name: "CFNL", - Description: "Cardinal Financial Corp.", - Symbol: "CFNL", - Precision: 5, - Type: Stock, - AlternateId: "14149F109"}, - 112932068941152: &Security{ - SecurityId: 112932068941152, - Name: "CAH", - Description: "Cardinal Health, Inc.", - Symbol: "CAH", - Precision: 5, - Type: Stock, - AlternateId: "14149Y108"}, - 112935910222944: &Security{ - SecurityId: 112935910222944, - Name: "CATM", - Description: "Cardtronics, Inc.", - Symbol: "CATM", - Precision: 5, - Type: Stock, - AlternateId: "14161H108"}, - 112935896785944: &Security{ - SecurityId: 112935896785944, - Name: "CSII", - Description: "Cardiovascular Systems, Inc.", - Symbol: "CSII", - Precision: 5, - Type: Stock, - AlternateId: "141619106"}, - 112935948854040: &Security{ - SecurityId: 112935948854040, - Name: "CCP", - Description: "Care Capital Properties, Inc.", - Symbol: "CCP", - Precision: 5, - Type: Stock, - AlternateId: "141624106"}, - 112936007640636: &Security{ - SecurityId: 112936007640636, - Name: "CRCM", - Description: "Care.com, Inc.", - Symbol: "CRCM", - Precision: 5, - Type: Stock, - AlternateId: "141633107"}, - 112936192398468: &Security{ - SecurityId: 112936192398468, - Name: "CECO", - Description: "Career Education Corp.", - Symbol: "CECO", - Precision: 5, - Type: Stock, - AlternateId: "141665109"}, - 112936279738284: &Security{ - SecurityId: 112936279738284, - Name: "CDNA", - Description: "CareDx, Inc.", - Symbol: "CDNA", - Precision: 5, - Type: Stock, - AlternateId: "14167L103"}, - 112938288559164: &Security{ - SecurityId: 112938288559164, - Name: "CTRE", - Description: "CareTrust REIT, Inc.", - Symbol: "CTRE", - Precision: 5, - Type: Stock, - AlternateId: "14174T107"}, - 113007851535168: &Security{ - SecurityId: 113007851535168, - Name: "CSL", - Description: "Carlisle Companies, Inc.", - Symbol: "CSL", - Precision: 5, - Type: Stock, - AlternateId: "142339100"}, - 113080068304776: &Security{ - SecurityId: 113080068304776, - Name: "CG", - Description: "Carlyle Group L.P. (The)", - Symbol: "CG", - Precision: 5, - Type: Stock, - AlternateId: "14309L102"}, - 113081847018120: &Security{ - SecurityId: 113081847018120, - Name: "KMX", - Description: "CarMax, Inc.", - Symbol: "KMX", - Precision: 5, - Type: Stock, - AlternateId: "143130102"}, - 113088387582720: &Security{ - SecurityId: 113088387582720, - Name: "CKEC", - Description: "Carmike Cinemas, Inc.", - Symbol: "CKEC", - Precision: 5, - Type: Stock, - AlternateId: "143436400"}, - 113092872017580: &Security{ - SecurityId: 113092872017580, - Name: "CUK", - Description: "Carnival plc", - Symbol: "CUK", - Precision: 5, - Type: Stock, - AlternateId: "14365C103"}, - 113092865392320: &Security{ - SecurityId: 113092865392320, - Name: "CCL", - Description: "Carnival Corp.", - Symbol: "CCL", - Precision: 5, - Type: Stock, - AlternateId: "143658300"}, - 113095218441132: &Security{ - SecurityId: 113095218441132, - Name: "CLBH", - Description: "Carolina Bank Holdings, Inc.", - Symbol: "CLBH", - Precision: 5, - Type: Stock, - AlternateId: "143785103"}, - 113097331398204: &Security{ - SecurityId: 113097331398204, - Name: "CARO", - Description: "Carolina Financial Corp.", - Symbol: "CARO", - Precision: 5, - Type: Stock, - AlternateId: "143873107"}, - 113099088276540: &Security{ - SecurityId: 113099088276540, - Name: "CSV", - Description: "Carriage Services, Inc.", - Symbol: "CSV", - Precision: 5, - Type: Stock, - AlternateId: "143905107"}, - 113162206566024: &Security{ - SecurityId: 113162206566024, - Name: "CART", - Description: "Carolina Trust Bank", - Symbol: "CART", - Precision: 5, - Type: Stock, - AlternateId: "144200102"}, - 113162698693548: &Security{ - SecurityId: 113162698693548, - Name: "CRS", - Description: "Carpenter Technology Corp.", - Symbol: "CRS", - Precision: 5, - Type: Stock, - AlternateId: "144285103"}, - 113169171933612: &Security{ - SecurityId: 113169171933612, - Name: "CRZO", - Description: "Carrizo Oil & Gas, Inc.", - Symbol: "CRZO", - Precision: 5, - Type: Stock, - AlternateId: "144577103"}, - 113251751933904: &Security{ - SecurityId: 113251751933904, - Name: "TAST", - Description: "Carrols Restaurant Group, Inc.", - Symbol: "TAST", - Precision: 5, - Type: Stock, - AlternateId: "14574X104"}, - 113319070943364: &Security{ - SecurityId: 113319070943364, - Name: "CRI", - Description: "Carter's, Inc.", - Symbol: "CRI", - Precision: 5, - Type: Stock, - AlternateId: "146229109"}, - 113325653358216: &Security{ - SecurityId: 113325653358216, - Name: "CRTN", - Description: "Cartesian, Inc.", - Symbol: "CRTN", - Precision: 5, - Type: Stock, - AlternateId: "146534102"}, - 113332427482896: &Security{ - SecurityId: 113332427482896, - Name: "CARV", - Description: "Carver Bancorp, Inc.", - Symbol: "CARV", - Precision: 5, - Type: Stock, - AlternateId: "146875604"}, - 113395431372156: &Security{ - SecurityId: 113395431372156, - Name: "CACB", - Description: "Cascade Bancorp", - Symbol: "CACB", - Precision: 5, - Type: Stock, - AlternateId: "147154207"}, - 113399600132196: &Security{ - SecurityId: 113399600132196, - Name: "CSCD", - Description: "Cascade Microtech, Inc.", - Symbol: "CSCD", - Precision: 5, - Type: Stock, - AlternateId: "147322101"}, - 113401907924688: &Security{ - SecurityId: 113401907924688, - Name: "CWST", - Description: "Casella Waste Systems, Inc.", - Symbol: "CWST", - Precision: 5, - Type: Stock, - AlternateId: "147448104"}, - 113403963774636: &Security{ - SecurityId: 113403963774636, - Name: "CASY", - Description: "Casey's General Stores, Inc.", - Symbol: "CASY", - Precision: 5, - Type: Stock, - AlternateId: "147528103"}, - 113404093104960: &Security{ - SecurityId: 113404093104960, - Name: "CSH", - Description: "Cash America Intl, Inc.", - Symbol: "CSH", - Precision: 5, - Type: Stock, - AlternateId: "14754D100"}, - 113471835377796: &Security{ - SecurityId: 113471835377796, - Name: "CASS", - Description: "Cass Information Systems, Inc.", - Symbol: "CASS", - Precision: 5, - Type: Stock, - AlternateId: "14808P109"}, - 113480078932836: &Security{ - SecurityId: 113480078932836, - Name: "CAS", - Description: "Castle (A.M.) & Co.", - Symbol: "CAS", - Precision: 5, - Type: Stock, - AlternateId: "148411101"}, - 113480206583616: &Security{ - SecurityId: 113480206583616, - Name: "ROX", - Description: "Castle Brands, Inc.", - Symbol: "ROX", - Precision: 5, - Type: Stock, - AlternateId: "148435100"}, - 113484534954048: &Security{ - SecurityId: 113484534954048, - Name: "CSLT", - Description: "Castlight Health, Inc.", - Symbol: "CSLT", - Precision: 5, - Type: Stock, - AlternateId: "14862Q100"}, - 113486891455548: &Security{ - SecurityId: 113486891455548, - Name: "CATB", - Description: "Catabasis Pharmaceuticals, Inc.", - Symbol: "CATB", - Precision: 5, - Type: Stock, - AlternateId: "14875P107"}, - 113488733994120: &Security{ - SecurityId: 113488733994120, - Name: "CTLT", - Description: "Catalent, Inc.", - Symbol: "CTLT", - Precision: 5, - Type: Stock, - AlternateId: "148806102"}, - 113489229481092: &Security{ - SecurityId: 113489229481092, - Name: "CBIO", - Description: "Catalyst Biosciences, Inc.", - Symbol: "CBIO", - Precision: 5, - Type: Stock, - AlternateId: "14888D109"}, - 113489258034276: &Security{ - SecurityId: 113489258034276, - Name: "CPRX", - Description: "Catalyst Pharmaceutical, Inc.", - Symbol: "CPRX", - Precision: 5, - Type: Stock, - AlternateId: "14888U101"}, - 113552028690120: &Security{ - SecurityId: 113552028690120, - Name: "CTT", - Description: "CatchMark Timber Trust, Inc.", - Symbol: "CTT", - Precision: 5, - Type: Stock, - AlternateId: "14912Y202"}, - 113551976575332: &Security{ - SecurityId: 113551976575332, - Name: "CAT", - Description: "Caterpillar, Inc.", - Symbol: "CAT", - Precision: 5, - Type: Stock, - AlternateId: "149123101"}, - 113552152935120: &Security{ - SecurityId: 113552152935120, - Name: "CATY", - Description: "Cathay General Bancorp, Inc.", - Symbol: "CATY", - Precision: 5, - Type: Stock, - AlternateId: "149150104"}, - 113563026769248: &Security{ - SecurityId: 113563026769248, - Name: "CAVM", - Description: "Cavium, Inc.", - Symbol: "CAVM", - Precision: 5, - Type: Stock, - AlternateId: "14964U108"}, - 115668175162392: &Security{ - SecurityId: 115668175162392, - Name: "FUN", - Description: "Cedar Fair, L.P.", - Symbol: "FUN", - Precision: 5, - Type: Stock, - AlternateId: "150185106"}, - 115683113853792: &Security{ - SecurityId: 115683113853792, - Name: "CVM", - Description: "Cel-Sci Corp.", - Symbol: "CVM", - Precision: 5, - Type: Stock, - AlternateId: "150837508"}, - 115683115346496: &Security{ - SecurityId: 115683115346496, - Name: "CGI", - Description: "Celadon Group, Inc.", - Symbol: "CGI", - Precision: 5, - Type: Stock, - AlternateId: "150838100"}, - 115683343774380: &Security{ - SecurityId: 115683343774380, - Name: "CE", - Description: "Celanese Corp., Series A Common Stock", - Symbol: "CE", - Precision: 5, - Type: Stock, - AlternateId: "150870103"}, - 115683510056328: &Security{ - SecurityId: 115683510056328, - Name: "CPXX", - Description: "Celator Pharmaceuticals, Inc.", - Symbol: "CPXX", - Precision: 5, - Type: Stock, - AlternateId: "15089R102"}, - 115743974552928: &Security{ - SecurityId: 115743974552928, - Name: "CLS", - Description: "Celestica, Inc.", - Symbol: "CLS", - Precision: 5, - Type: Stock, - AlternateId: "15101Q108"}, - 115743991348944: &Security{ - SecurityId: 115743991348944, - Name: "CELG", - Description: "Celgene Corp.", - Symbol: "CELG", - Precision: 5, - Type: Stock, - AlternateId: "151020104"}, - 115746488937900: &Security{ - SecurityId: 115746488937900, - Name: "CLDX", - Description: "Celldex Therapeutics, Inc.", - Symbol: "CLDX", - Precision: 5, - Type: Stock, - AlternateId: "15117B103"}, - 115746493976892: &Security{ - SecurityId: 115746493976892, - Name: "CLDN", - Description: "Celladon Corp.", - Symbol: "CLDN", - Precision: 5, - Type: Stock, - AlternateId: "15117E107"}, - 115746504054444: &Security{ - SecurityId: 115746504054444, - Name: "CLLS", - Description: "Cellectis S.A.", - Symbol: "CLLS", - Precision: 5, - Type: Stock, - AlternateId: "15117K103"}, - 115746509233296: &Security{ - SecurityId: 115746509233296, - Name: "CLSN", - Description: "Celsion Corp.", - Symbol: "CLSN", - Precision: 5, - Type: Stock, - AlternateId: "15117N404"}, - 115748232425856: &Security{ - SecurityId: 115748232425856, - Name: "CYAD", - Description: "Celyad S.A.", - Symbol: "CYAD", - Precision: 5, - Type: Stock, - AlternateId: "151205200"}, - 115748768513988: &Security{ - SecurityId: 115748768513988, - Name: "CX", - Description: "CEMEX SAB de CV", - Symbol: "CX", - Precision: 5, - Type: Stock, - AlternateId: "151290889"}, - 115750427730732: &Security{ - SecurityId: 115750427730732, - Name: "CETX", - Description: "Cemtrex, Inc.", - Symbol: "CETX", - Precision: 5, - Type: Stock, - AlternateId: "15130G303"}, - 115750432676484: &Security{ - SecurityId: 115750432676484, - Name: "CEMP", - Description: "Cempra, Inc.", - Symbol: "CEMP", - Precision: 5, - Type: Stock, - AlternateId: "15130J109"}, - 115750550249316: &Security{ - SecurityId: 115750550249316, - Name: "CNCO", - Description: "Cencosud S.A ADR", - Symbol: "CNCO", - Precision: 5, - Type: Stock, - AlternateId: "15132H101"}, - 115750721570148: &Security{ - SecurityId: 115750721570148, - Name: "CNC", - Description: "Centene Corp.", - Symbol: "CNC", - Precision: 5, - Type: Stock, - AlternateId: "15135B101"}, - 115750753483140: &Security{ - SecurityId: 115750753483140, - Name: "CVE", - Description: "Cenovus Energy, Inc.", - Symbol: "CVE", - Precision: 5, - Type: Stock, - AlternateId: "15135U109"}, - 115752942022464: &Security{ - SecurityId: 115752942022464, - Name: "CEN", - Description: "Center Coast MLP & Infrastructure Fund", - Symbol: "CEN", - Precision: 5, - Type: Stock, - AlternateId: "151461100"}, - 115761877579836: &Security{ - SecurityId: 115761877579836, - Name: "CNP", - Description: "CenterPoint Energy, Inc.", - Symbol: "CNP", - Precision: 5, - Type: Stock, - AlternateId: "15189T107"}, - 115822337037444: &Security{ - SecurityId: 115822337037444, - Name: "CSFL", - Description: "CenterState Banks of Florida, Inc.", - Symbol: "CSFL", - Precision: 5, - Type: Stock, - AlternateId: "15201P109"}, - 115829050462560: &Security{ - SecurityId: 115829050462560, - Name: "EBR", - Description: "Brazilian Electric Power Company", - Symbol: "EBR", - Precision: 5, - Type: Stock, - AlternateId: "15234Q108"}, - 115909497350208: &Security{ - SecurityId: 115909497350208, - Name: "CEE", - Description: "Central Europe, Russia and Turkey Fund, Inc. (The)", - Symbol: "CEE", - Precision: 5, - Type: Stock, - AlternateId: "153436100"}, - 115911484335972: &Security{ - SecurityId: 115911484335972, - Name: "CEF", - Description: "Central Fund of Canada Ltd", - Symbol: "CEF", - Precision: 5, - Type: Stock, - AlternateId: "153501101"}, - 115911615346200: &Security{ - SecurityId: 115911615346200, - Name: "CENT", - Description: "Central Garden & Pet Co.", - Symbol: "CENT", - Precision: 5, - Type: Stock, - AlternateId: "153527106"}, - 115911734598936: &Security{ - SecurityId: 115911734598936, - Name: "GTU", - Description: "Central Gold-Trust", - Symbol: "GTU", - Precision: 5, - Type: Stock, - AlternateId: "153546106"}, - 116059629826440: &Security{ - SecurityId: 116059629826440, - Name: "CET", - Description: "Central Securities Corp.", - Symbol: "CET", - Precision: 5, - Type: Stock, - AlternateId: "155123102"}, - 116070879894336: &Security{ - SecurityId: 116070879894336, - Name: "CVCY", - Description: "Central Valley Community Bancorp", - Symbol: "CVCY", - Precision: 5, - Type: Stock, - AlternateId: "155685100"}, - 116144581444704: &Security{ - SecurityId: 116144581444704, - Name: "CENX", - Description: "Century Aluminum Co.", - Symbol: "CENX", - Precision: 5, - Type: Stock, - AlternateId: "156431108"}, - 116144583124248: &Security{ - SecurityId: 116144583124248, - Name: "CNBKA", - Description: "Century Bancorp, Inc. (MA)", - Symbol: "CNBKA", - Precision: 5, - Type: Stock, - AlternateId: "156432106"}, - 116144945921088: &Security{ - SecurityId: 116144945921088, - Name: "CNTY", - Description: "Century Casinos, Inc.", - Symbol: "CNTY", - Precision: 5, - Type: Stock, - AlternateId: "156492100"}, - 116150974063164: &Security{ - SecurityId: 116150974063164, - Name: "CPHD", - Description: "Cepheid Inc.", - Symbol: "CPHD", - Precision: 5, - Type: Stock, - AlternateId: "15670R107"}, - 116150975742708: &Security{ - SecurityId: 116150975742708, - Name: "CVO", - Description: "Cenveo, Inc.", - Symbol: "CVO", - Precision: 5, - Type: Stock, - AlternateId: "15670S105"}, - 116150928713496: &Security{ - SecurityId: 116150928713496, - Name: "CTL", - Description: "CenturyLink, Inc.", - Symbol: "CTL", - Precision: 5, - Type: Stock, - AlternateId: "156700106"}, - 116151024451716: &Security{ - SecurityId: 116151024451716, - Name: "CERCU", - Description: "Cerecor, Inc. (Units)", - Symbol: "CERCU", - Precision: 5, - Type: Stock, - AlternateId: "15671L109"}, - 116151357155328: &Security{ - SecurityId: 116151357155328, - Name: "CERE", - Description: "Ceres, Inc.", - Symbol: "CERE", - Precision: 5, - Type: Stock, - AlternateId: "156773400"}, - 116151415802064: &Security{ - SecurityId: 116151415802064, - Name: "CERN", - Description: "Cerner Corp.", - Symbol: "CERN", - Precision: 5, - Type: Stock, - AlternateId: "156782104"}, - 116214582800628: &Security{ - SecurityId: 116214582800628, - Name: "CERU", - Description: "Cerulean Pharma, Inc.", - Symbol: "CERU", - Precision: 5, - Type: Stock, - AlternateId: "15708Q105"}, - 116214547528548: &Security{ - SecurityId: 116214547528548, - Name: "CERS", - Description: "Cerus Corp.", - Symbol: "CERS", - Precision: 5, - Type: Stock, - AlternateId: "157085101"}, - 116307699125436: &Security{ - SecurityId: 116307699125436, - Name: "CSBR", - Description: "Champions Oncology, Inc.", - Symbol: "CSBR", - Precision: 5, - Type: Stock, - AlternateId: "15870P307"}, - 116373398891328: &Security{ - SecurityId: 116373398891328, - Name: "ECOM", - Description: "ChannelAdvisor Corp.", - Symbol: "ECOM", - Precision: 5, - Type: Stock, - AlternateId: "159179100"}, - 116377356206736: &Security{ - SecurityId: 116377356206736, - Name: "HOTR", - Description: "Chanticleer Holdings, Inc.", - Symbol: "HOTR", - Precision: 5, - Type: Stock, - AlternateId: "15930P404"}, - 116386392400920: &Security{ - SecurityId: 116386392400920, - Name: "CTHR", - Description: "Charles & Colvard, Inc.", - Symbol: "CTHR", - Precision: 5, - Type: Stock, - AlternateId: "159765106"}, - 116388567503676: &Security{ - SecurityId: 116388567503676, - Name: "CRL", - Description: "Charles River Laboratories Intl, Inc.", - Symbol: "CRL", - Precision: 5, - Type: Stock, - AlternateId: "159864107"}, - 118567617414516: &Security{ - SecurityId: 118567617414516, - Name: "CHTR", - Description: "Charter Communications, Inc.", - Symbol: "CHTR", - Precision: 5, - Type: Stock, - AlternateId: "16117M305"}, - 118575909585360: &Security{ - SecurityId: 118575909585360, - Name: "CCF", - Description: "Chase Corp.", - Symbol: "CCF", - Precision: 5, - Type: Stock, - AlternateId: "16150R104"}, - 118643876926344: &Security{ - SecurityId: 118643876926344, - Name: "CLDT", - Description: "Chatham Lodging Trust", - Symbol: "CLDT", - Precision: 5, - Type: Stock, - AlternateId: "16208T102"}, - 118660888077228: &Security{ - SecurityId: 118660888077228, - Name: "CKP", - Description: "Checkpoint Systems, Inc.", - Symbol: "CKP", - Precision: 5, - Type: Stock, - AlternateId: "162825103"}, - 118722135274596: &Security{ - SecurityId: 118722135274596, - Name: "CAKE", - Description: "Cheesecake Factory, Inc. (The)", - Symbol: "CAKE", - Precision: 5, - Type: Stock, - AlternateId: "163072101"}, - 118722140313552: &Security{ - SecurityId: 118722140313552, - Name: "CMCM", - Description: "Cheetah Mobile, Inc.", - Symbol: "CMCM", - Precision: 5, - Type: Stock, - AlternateId: "163075104"}, - 118722202459236: &Security{ - SecurityId: 118722202459236, - Name: "CHEF", - Description: "Chefs' Warehouse, Inc. (The)", - Symbol: "CHEF", - Precision: 5, - Type: Stock, - AlternateId: "163086101"}, - 118722256207236: &Security{ - SecurityId: 118722256207236, - Name: "CHGG", - Description: "Chegg, Inc.", - Symbol: "CHGG", - Precision: 5, - Type: Stock, - AlternateId: "163092109"}, - 118733182109100: &Security{ - SecurityId: 118733182109100, - Name: "CHE", - Description: "Chemed Corp.", - Symbol: "CHE", - Precision: 5, - Type: Stock, - AlternateId: "16359R103"}, - 118737129206664: &Security{ - SecurityId: 118737129206664, - Name: "CHFC", - Description: "Chemical Financial Corp.", - Symbol: "CHFC", - Precision: 5, - Type: Stock, - AlternateId: "163731102"}, - 118739339581464: &Security{ - SecurityId: 118739339581464, - Name: "CCXI", - Description: "ChemoCentryx, Inc.", - Symbol: "CCXI", - Precision: 5, - Type: Stock, - AlternateId: "16383L106"}, - 118739426921568: &Security{ - SecurityId: 118739426921568, - Name: "CC", - Description: "Chemours Company (The)", - Symbol: "CC", - Precision: 5, - Type: Stock, - AlternateId: "163851108"}, - 118739672192196: &Security{ - SecurityId: 118739672192196, - Name: "CHMT", - Description: "Chemtura Corp.", - Symbol: "CHMT", - Precision: 5, - Type: Stock, - AlternateId: "163893209"}, - 118800200467044: &Security{ - SecurityId: 118800200467044, - Name: "CHMG", - Description: "Chemung Financial Corp.", - Symbol: "CHMG", - Precision: 5, - Type: Stock, - AlternateId: "164024101"}, - 118802353734756: &Security{ - SecurityId: 118802353734756, - Name: "CQP", - Description: "Cheniere Energy Partners, L.P.", - Symbol: "CQP", - Precision: 5, - Type: Stock, - AlternateId: "16411Q101"}, - 118802355461280: &Security{ - SecurityId: 118802355461280, - Name: "LNG", - Description: "Cheniere Energy, Inc.", - Symbol: "LNG", - Precision: 5, - Type: Stock, - AlternateId: "16411R208"}, - 118802363812704: &Security{ - SecurityId: 118802363812704, - Name: "CQH", - Description: "Cheniere Energy Partners LP Holdings, LLC", - Symbol: "CQH", - Precision: 5, - Type: Stock, - AlternateId: "16411W108"}, - 118809050363784: &Security{ - SecurityId: 118809050363784, - Name: "CHKE", - Description: "Cherokee, Inc.", - Symbol: "CHKE", - Precision: 5, - Type: Stock, - AlternateId: "16444H102"}, - 118813437520740: &Security{ - SecurityId: 118813437520740, - Name: "CHMI", - Description: "Cherry Hill Mortgage Investment Corp.", - Symbol: "CHMI", - Precision: 5, - Type: Stock, - AlternateId: "164651101"}, - 118880988317244: &Security{ - SecurityId: 118880988317244, - Name: "CHK", - Description: "Chesapeake Energy Corp.", - Symbol: "CHK", - Precision: 5, - Type: Stock, - AlternateId: "165167107"}, - 118880988648840: &Security{ - SecurityId: 118880988648840, - Name: "CHK-D", - Description: "Chesapeake Energy Corp., 4.50% Cumulative Convertible Preferred Stock", - Symbol: "CHK-D", - Precision: 5, - Type: Stock, - AlternateId: "165167842"}, - 118881105890436: &Security{ - SecurityId: 118881105890436, - Name: "CHKR", - Description: "Chesapeake Granite Wash Trust", - Symbol: "CHKR", - Precision: 5, - Type: Stock, - AlternateId: "165185109"}, - 118883032409736: &Security{ - SecurityId: 118883032409736, - Name: "CHSP", - Description: "Chesapeake Lodging Trust", - Symbol: "CHSP", - Precision: 5, - Type: Stock, - AlternateId: "165240102"}, - 118884972366432: &Security{ - SecurityId: 118884972366432, - Name: "CPK", - Description: "Chesapeake Utilities Corp.", - Symbol: "CPK", - Precision: 5, - Type: Stock, - AlternateId: "165303108"}, - 118972408136256: &Security{ - SecurityId: 118972408136256, - Name: "CVX", - Description: "Chevron Corp.", - Symbol: "CVX", - Precision: 5, - Type: Stock, - AlternateId: "166764100"}, - 118972517311476: &Security{ - SecurityId: 118972517311476, - Name: "CHEV", - Description: "Cheviot Financial Corp.", - Symbol: "CHEV", - Precision: 5, - Type: Stock, - AlternateId: "16677X105"}, - 119035581853320: &Security{ - SecurityId: 119035581853320, - Name: "CHMA", - Description: "Chiasma, Inc.", - Symbol: "CHMA", - Precision: 5, - Type: Stock, - AlternateId: "16706W102"}, - 119039821204356: &Security{ - SecurityId: 119039821204356, - Name: "CBI", - Description: "Chicago Bridge & Iron Co. N.V. ADR", - Symbol: "CBI", - Precision: 5, - Type: Stock, - AlternateId: "167250109"}, - 119114026638984: &Security{ - SecurityId: 119114026638984, - Name: "CVR", - Description: "Chicago Rivet & Machine Co.", - Symbol: "CVR", - Precision: 5, - Type: Stock, - AlternateId: "168088102"}, - 119126659030920: &Security{ - SecurityId: 119126659030920, - Name: "CHS", - Description: "Chico's FAS, Inc.", - Symbol: "CHS", - Precision: 5, - Type: Stock, - AlternateId: "168615102"}, - 119133169222644: &Security{ - SecurityId: 119133169222644, - Name: "BORN", - Description: "China New Borun Corp.", - Symbol: "BORN", - Precision: 5, - Type: Stock, - AlternateId: "16890T105"}, - 119133128911932: &Security{ - SecurityId: 119133128911932, - Name: "PLCE", - Description: "Children's Place Inc (The)", - Symbol: "PLCE", - Precision: 5, - Type: Stock, - AlternateId: "168905107"}, - 119133214572204: &Security{ - SecurityId: 119133214572204, - Name: "CCCR", - Description: "China Commercial Credit, Inc.", - Symbol: "CCCR", - Precision: 5, - Type: Stock, - AlternateId: "16891K103"}, - 119198719596312: &Security{ - SecurityId: 119198719596312, - Name: "ESPR", - Description: "Esperion Therapeutics, Inc.", - Symbol: "ESPR", - Precision: 5, - Type: Stock, - AlternateId: "16934W106"}, - 119198843934660: &Security{ - SecurityId: 119198843934660, - Name: "CBAK", - Description: "China BAK Battery, Inc.", - Symbol: "CBAK", - Precision: 5, - Type: Stock, - AlternateId: "16936Y209"}, - 119198795225544: &Security{ - SecurityId: 119198795225544, - Name: "CADC", - Description: "China Advanced Construction Materials Group, Inc.", - Symbol: "CADC", - Precision: 5, - Type: Stock, - AlternateId: "169365202"}, - 119198892596688: &Security{ - SecurityId: 119198892596688, - Name: "CEA", - Description: "China Eastern Airlines Corporation Ltd ADR", - Symbol: "CEA", - Precision: 5, - Type: Stock, - AlternateId: "16937R104"}, - 119198852286012: &Security{ - SecurityId: 119198852286012, - Name: "CHN", - Description: "China Fund, Inc. (The)", - Symbol: "CHN", - Precision: 5, - Type: Stock, - AlternateId: "169373107"}, - 119198862363600: &Security{ - SecurityId: 119198862363600, - Name: "JRJC", - Description: "China Finance Online Co. Ltd", - Symbol: "JRJC", - Precision: 5, - Type: Stock, - AlternateId: "169379104"}, - 119198927868696: &Security{ - SecurityId: 119198927868696, - Name: "CBPO", - Description: "China Biologic Products, Inc.", - Symbol: "CBPO", - Precision: 5, - Type: Stock, - AlternateId: "16938C106"}, - 119198934587196: &Security{ - SecurityId: 119198934587196, - Name: "STV", - Description: "China Digital TV Holding Co. Ltd", - Symbol: "STV", - Precision: 5, - Type: Stock, - AlternateId: "16938G107"}, - 119199020294088: &Security{ - SecurityId: 119199020294088, - Name: "CHLN", - Description: "China Housing & Land Development, Inc.", - Symbol: "CHLN", - Precision: 5, - Type: Stock, - AlternateId: "16939V202"}, - 119200698184068: &Security{ - SecurityId: 119200698184068, - Name: "CHL", - Description: "China Mobile Limited (Hong Kong) ADR", - Symbol: "CHL", - Precision: 5, - Type: Stock, - AlternateId: "16941M109"}, - 119200706582112: &Security{ - SecurityId: 119200706582112, - Name: "SNP", - Description: "China Petroleum and Chemical Corp. ADS", - Symbol: "SNP", - Precision: 5, - Type: Stock, - AlternateId: "16941R108"}, - 119200709941200: &Security{ - SecurityId: 119200709941200, - Name: "CPHI", - Description: "China Pharma Holdings, Inc.", - Symbol: "CPHI", - Precision: 5, - Type: Stock, - AlternateId: "16941T104"}, - 119200802320260: &Security{ - SecurityId: 119200802320260, - Name: "NPD", - Description: "China Nepstar Chain Drugstore Ltd ADR", - Symbol: "NPD", - Precision: 5, - Type: Stock, - AlternateId: "16943C109"}, - 119200835912436: &Security{ - SecurityId: 119200835912436, - Name: "CGA", - Description: "China Green Agriculture, Inc.", - Symbol: "CGA", - Precision: 5, - Type: Stock, - AlternateId: "16943W105"}, - 119200896378576: &Security{ - SecurityId: 119200896378576, - Name: "DL", - Description: "China Distance Education Holdings Ltd", - Symbol: "DL", - Precision: 5, - Type: Stock, - AlternateId: "16944W104"}, - 119200925025324: &Security{ - SecurityId: 119200925025324, - Name: "CNYD", - Description: "China Yida Holding Co.", - Symbol: "CNYD", - Precision: 5, - Type: Stock, - AlternateId: "16945D303"}, - 119200948446672: &Security{ - SecurityId: 119200948446672, - Name: "CHU", - Description: "China Unicom (Hong Kong) Ltd", - Symbol: "CHU", - Precision: 5, - Type: Stock, - AlternateId: "16945R104"}, - 119201138243136: &Security{ - SecurityId: 119201138243136, - Name: "HGSH", - Description: "China HGS Real Estate, Inc.", - Symbol: "HGSH", - Precision: 5, - Type: Stock, - AlternateId: "16948W100"}, - 119201161804632: &Security{ - SecurityId: 119201161804632, - Name: "CJJD", - Description: "China Jo-Jo Drugstores, Inc.", - Symbol: "CJJD", - Precision: 5, - Type: Stock, - AlternateId: "16949A206"}, - 119201173515144: &Security{ - SecurityId: 119201173515144, - Name: "CNET", - Description: "Chinanet Online Holdings, Inc.", - Symbol: "CNET", - Precision: 5, - Type: Stock, - AlternateId: "16949H102"}, - 119202858170208: &Security{ - SecurityId: 119202858170208, - Name: "MY", - Description: "China Ming Yang Wind Power Group Limited", - Symbol: "MY", - Precision: 5, - Type: Stock, - AlternateId: "16951C108"}, - 119202861529296: &Security{ - SecurityId: 119202861529296, - Name: "ZX", - Description: "China Zenix Auto Intl Ltd ADR", - Symbol: "ZX", - Precision: 5, - Type: Stock, - AlternateId: "16951E104"}, - 119205266739444: &Security{ - SecurityId: 119205266739444, - Name: "CMG", - Description: "Chipotle Mexican Grill, Inc.", - Symbol: "CMG", - Precision: 5, - Type: Stock, - AlternateId: "169656105"}, - 119211493075992: &Security{ - SecurityId: 119211493075992, - Name: "CHH", - Description: "Choice Hotels Intl, Inc.", - Symbol: "CHH", - Precision: 5, - Type: Stock, - AlternateId: "169905106"}, - 121386342173940: &Security{ - SecurityId: 121386342173940, - Name: "CBK", - Description: "Christopher & Banks Corp.", - Symbol: "CBK", - Precision: 5, - Type: Stock, - AlternateId: "171046105"}, - 121392862443144: &Security{ - SecurityId: 121392862443144, - Name: "CHD", - Description: "Church & Dwight Co., Inc.", - Symbol: "CHD", - Precision: 5, - Type: Stock, - AlternateId: "171340102"}, - 121395287808864: &Security{ - SecurityId: 121395287808864, - Name: "CHDN", - Description: "Churchill Downs, Inc.", - Symbol: "CHDN", - Precision: 5, - Type: Stock, - AlternateId: "171484108"}, - 121399157643876: &Security{ - SecurityId: 121399157643876, - Name: "CHUY", - Description: "Chuy's Holdings, Inc.", - Symbol: "CHUY", - Precision: 5, - Type: Stock, - AlternateId: "171604101"}, - 121399350799752: &Security{ - SecurityId: 121399350799752, - Name: "CBR", - Description: "CIBER, Inc.", - Symbol: "CBR", - Precision: 5, - Type: Stock, - AlternateId: "17163B102"}, - 121401641796156: &Security{ - SecurityId: 121401641796156, - Name: "CDTX", - Description: "Cidara Therapeutics, Inc.", - Symbol: "CDTX", - Precision: 5, - Type: Stock, - AlternateId: "171757107"}, - 121401766181124: &Security{ - SecurityId: 121401766181124, - Name: "CIEN", - Description: "Ciena Corp.", - Symbol: "CIEN", - Precision: 5, - Type: Stock, - AlternateId: "171779309"}, - 121401885340260: &Security{ - SecurityId: 121401885340260, - Name: "XEC", - Description: "Cimarex Energy Co.", - Symbol: "XEC", - Precision: 5, - Type: Stock, - AlternateId: "171798101"}, - 121403929433112: &Security{ - SecurityId: 121403929433112, - Name: "CBB", - Description: "Cincinnati Bell, Inc.", - Symbol: "CBB", - Precision: 5, - Type: Stock, - AlternateId: "171871106"}, - 121464820551780: &Security{ - SecurityId: 121464820551780, - Name: "CINF", - Description: "Cincinnati Financial Corp.", - Symbol: "CINF", - Precision: 5, - Type: Stock, - AlternateId: "172062101"}, - 121473394991496: &Security{ - SecurityId: 121473394991496, - Name: "CNK", - Description: "Cinemark Holdings, Inc.", - Symbol: "CNK", - Precision: 5, - Type: Stock, - AlternateId: "17243V102"}, - 121475575133172: &Security{ - SecurityId: 121475575133172, - Name: "CPHR", - Description: "Cipher Pharmaceuticals, Inc.", - Symbol: "CPHR", - Precision: 5, - Type: Stock, - AlternateId: "17253X105"}, - 121479906862980: &Security{ - SecurityId: 121479906862980, - Name: "CIR", - Description: "CIRCOR Intl, Inc.", - Symbol: "CIR", - Precision: 5, - Type: Stock, - AlternateId: "17273K109"}, - 121480039552392: &Security{ - SecurityId: 121480039552392, - Name: "CSCO", - Description: "Cisco Systems, Inc.", - Symbol: "CSCO", - Precision: 5, - Type: Stock, - AlternateId: "17275R102"}, - 121480002600768: &Security{ - SecurityId: 121480002600768, - Name: "CRUS", - Description: "Cirrus Logic, Inc.", - Symbol: "CRUS", - Precision: 5, - Type: Stock, - AlternateId: "172755100"}, - 121484058873588: &Security{ - SecurityId: 121484058873588, - Name: "CTAS", - Description: "Cintas Corp.", - Symbol: "CTAS", - Precision: 5, - Type: Stock, - AlternateId: "172908105"}, - 121484169728280: &Security{ - SecurityId: 121484169728280, - Name: "CZNC", - Description: "Citizens & Northern Corp.", - Symbol: "CZNC", - Precision: 5, - Type: Stock, - AlternateId: "172922106"}, - 121484420133552: &Security{ - SecurityId: 121484420133552, - Name: "C", - Description: "Citigroup, Inc.", - Symbol: "C", - Precision: 5, - Type: Stock, - AlternateId: "172967424"}, - 121543236784008: &Security{ - SecurityId: 121543236784008, - Name: "CTRN", - Description: "Citi Trends, Inc.", - Symbol: "CTRN", - Precision: 5, - Type: Stock, - AlternateId: "17306X102"}, - 121545522890532: &Security{ - SecurityId: 121545522890532, - Name: "CVOL", - Description: "Citigroup C-Tracks ETN Based on Performancef Citi Volatility Index TR 11/12/2020", - Symbol: "CVOL", - Precision: 5, - Type: Stock, - AlternateId: "17318Q475"}, - 121547257831332: &Security{ - SecurityId: 121547257831332, - Name: "MLPC", - Description: "C-Tracks ETNs based on Performance of the Miller/Howard MLP Fundamental Index", - Symbol: "MLPC", - Precision: 5, - Type: Stock, - AlternateId: "17321F201"}, - 121547321615556: &Security{ - SecurityId: 121547321615556, - Name: "DIVC", - Description: "C-Tracks ETNs Miller/Howard Strategic Dividend Reinvestor due 9/16/2024", - Symbol: "DIVC", - Precision: 5, - Type: Stock, - AlternateId: "17322H149"}, - 121634303884020: &Security{ - SecurityId: 121634303884020, - Name: "CFG", - Description: "Citizens Financial Group, Inc.", - Symbol: "CFG", - Precision: 5, - Type: Stock, - AlternateId: "174610105"}, - 121634408020284: &Security{ - SecurityId: 121634408020284, - Name: "CZFC", - Description: "Citizens First Corp.", - Symbol: "CZFC", - Precision: 5, - Type: Stock, - AlternateId: "17462Q107"}, - 121636489064328: &Security{ - SecurityId: 121636489064328, - Name: "CIZN", - Description: "Citizens Holding Co.", - Symbol: "CIZN", - Precision: 5, - Type: Stock, - AlternateId: "174715102"}, - 121636662064704: &Security{ - SecurityId: 121636662064704, - Name: "CIA", - Description: "Citizens, Inc.", - Symbol: "CIA", - Precision: 5, - Type: Stock, - AlternateId: "174740100"}, - 121640778803664: &Security{ - SecurityId: 121640778803664, - Name: "CZWI", - Description: "Citizens Community Bancorp, Inc.", - Symbol: "CZWI", - Precision: 5, - Type: Stock, - AlternateId: "174903104"}, - 121863238903872: &Security{ - SecurityId: 121863238903872, - Name: "CTXS", - Description: "Citrix Systems, Inc.", - Symbol: "CTXS", - Precision: 5, - Type: Stock, - AlternateId: "177376100"}, - 121873879271412: &Security{ - SecurityId: 121873879271412, - Name: "CHCO", - Description: "City Holding Co.", - Symbol: "CHCO", - Precision: 5, - Type: Stock, - AlternateId: "177835105"}, - 121946018778468: &Security{ - SecurityId: 121946018778468, - Name: "CIO", - Description: "City Office REIT, Inc.", - Symbol: "CIO", - Precision: 5, - Type: Stock, - AlternateId: "178587101"}, - 121952522251656: &Security{ - SecurityId: 121952522251656, - Name: "CIVI", - Description: "Civitas Solutions, Inc.", - Symbol: "CIVI", - Precision: 5, - Type: Stock, - AlternateId: "17887R102"}, - 122030970396732: &Security{ - SecurityId: 122030970396732, - Name: "CLC", - Description: "Clarcor, Inc. (The)", - Symbol: "CLC", - Precision: 5, - Type: Stock, - AlternateId: "179895107"}, - 124381561075776: &Security{ - SecurityId: 124381561075776, - Name: "EEB", - Description: "Guggenheim BRIC ETF", - Symbol: "EEB", - Precision: 5, - Type: Stock, - AlternateId: "18383M100"}, - 124381561085028: &Security{ - SecurityId: 124381561085028, - Name: "DJD", - Description: "Guggenheim Dow Jones Industrial Average Dividend ETF", - Symbol: "DJD", - Precision: 5, - Type: Stock, - AlternateId: "18383M175"}, - 124381561086252: &Security{ - SecurityId: 124381561086252, - Name: "BSJN", - Description: "Guggenheim BulletShares 2023 High Yield Corporate Bond ETF", - Symbol: "BSJN", - Precision: 5, - Type: Stock, - AlternateId: "18383M183"}, - 124381561087476: &Security{ - SecurityId: 124381561087476, - Name: "BSCP", - Description: "Guggenheim BulletShares 2025 Corporate Bond ETF", - Symbol: "BSCP", - Precision: 5, - Type: Stock, - AlternateId: "18383M191"}, - 124381561122756: &Security{ - SecurityId: 124381561122756, - Name: "NFO", - Description: "Guggenheim Insider Sentiment ETF", - Symbol: "NFO", - Precision: 5, - Type: Stock, - AlternateId: "18383M209"}, - 124381561123980: &Security{ - SecurityId: 124381561123980, - Name: "BSJM", - Description: "Guggenheim BulletShares 2022 High Yield Corporate Bond ETF", - Symbol: "BSJM", - Precision: 5, - Type: Stock, - AlternateId: "18383M217"}, - 124381561125204: &Security{ - SecurityId: 124381561125204, - Name: "BSJL", - Description: "Guggenheim BulletShares 2021 High Yield Corporate Bond ETF", - Symbol: "BSJL", - Precision: 5, - Type: Stock, - AlternateId: "18383M225"}, - 124381561126428: &Security{ - SecurityId: 124381561126428, - Name: "BSCO", - Description: "Guggenheim BulletShares 2024 Corporate Bond ETF", - Symbol: "BSCO", - Precision: 5, - Type: Stock, - AlternateId: "18383M233"}, - 124381561127652: &Security{ - SecurityId: 124381561127652, - Name: "BSCN", - Description: "Guggenheim BulletShares 2023 Corporate Bond ETF", - Symbol: "BSCN", - Precision: 5, - Type: Stock, - AlternateId: "18383M241"}, - 124381561129200: &Security{ - SecurityId: 124381561129200, - Name: "BSCM", - Description: "Guggenheim BulletShares 2022 Corporate Bond ETF", - Symbol: "BSCM", - Precision: 5, - Type: Stock, - AlternateId: "18383M258"}, - 124381561130424: &Security{ - SecurityId: 124381561130424, - Name: "BSCL", - Description: "Guggenheim BulletShares 2021 Corporate Bond ETF", - Symbol: "BSCL", - Precision: 5, - Type: Stock, - AlternateId: "18383M266"}, - 124381561169376: &Security{ - SecurityId: 124381561169376, - Name: "WMCR", - Description: "Wilshire Micro-Cap ETF", - Symbol: "WMCR", - Precision: 5, - Type: Stock, - AlternateId: "18383M308"}, - 124381561177044: &Security{ - SecurityId: 124381561177044, - Name: "BSJK", - Description: "Guggenheim BulletShares 2020 High Yield Corporate Bond ETF", - Symbol: "BSJK", - Precision: 5, - Type: Stock, - AlternateId: "18383M365"}, - 124381561178268: &Security{ - SecurityId: 124381561178268, - Name: "BSJJ", - Description: "Guggenheim BulletShares 2019 High Yield Corporate Bond ETF", - Symbol: "BSJJ", - Precision: 5, - Type: Stock, - AlternateId: "18383M373"}, - 124381561179492: &Security{ - SecurityId: 124381561179492, - Name: "BSJI", - Description: "Guggenheim BulletShares 2018 High Yield Corp. Bond ETF", - Symbol: "BSJI", - Precision: 5, - Type: Stock, - AlternateId: "18383M381"}, - 124381561181076: &Security{ - SecurityId: 124381561181076, - Name: "BSJH", - Description: "Guggenheim BulletShares 2017 High Yield Corporate Bond ETF", - Symbol: "BSJH", - Precision: 5, - Type: Stock, - AlternateId: "18383M399"}, - 124381561217220: &Security{ - SecurityId: 124381561217220, - Name: "BSJG", - Description: "Guggenheim BulletShares 2016 High Yield Corp. Bond ETF", - Symbol: "BSJG", - Precision: 5, - Type: Stock, - AlternateId: "18383M415"}, - 124381561224888: &Security{ - SecurityId: 124381561224888, - Name: "WREI", - Description: "Wilshire US REIT ETF", - Symbol: "WREI", - Precision: 5, - Type: Stock, - AlternateId: "18383M472"}, - 124381561262616: &Security{ - SecurityId: 124381561262616, - Name: "CVY", - Description: "Guggenheim Multi-Asset Income ETF", - Symbol: "CVY", - Precision: 5, - Type: Stock, - AlternateId: "18383M506"}, - 124381561263840: &Security{ - SecurityId: 124381561263840, - Name: "BSCK", - Description: "Guggenheim BulletShares 2020 Corporate Bond ETF", - Symbol: "BSCK", - Precision: 5, - Type: Stock, - AlternateId: "18383M514"}, - 124381561265064: &Security{ - SecurityId: 124381561265064, - Name: "BSCJ", - Description: "Guggenheim BulletShares 2019 Corporate Bond ETF", - Symbol: "BSCJ", - Precision: 5, - Type: Stock, - AlternateId: "18383M522"}, - 124381561266288: &Security{ - SecurityId: 124381561266288, - Name: "BSCI", - Description: "Guggenheim BulletShares 2018 Corporate Bond ETF", - Symbol: "BSCI", - Precision: 5, - Type: Stock, - AlternateId: "18383M530"}, - 124381561267872: &Security{ - SecurityId: 124381561267872, - Name: "BSCH", - Description: "Guggenheim BulletShares 2017 Corporate Bond ETF", - Symbol: "BSCH", - Precision: 5, - Type: Stock, - AlternateId: "18383M548"}, - 124381561269060: &Security{ - SecurityId: 124381561269060, - Name: "BSCG", - Description: "Guggenheim BulletShares 2016 Corporate Bond ETF", - Symbol: "BSCG", - Precision: 5, - Type: Stock, - AlternateId: "18383M555"}, - 124381561309236: &Security{ - SecurityId: 124381561309236, - Name: "CSD", - Description: "Guggenheim Spin-Off ETF", - Symbol: "CSD", - Precision: 5, - Type: Stock, - AlternateId: "18383M605"}, - 124381561310460: &Security{ - SecurityId: 124381561310460, - Name: "RYJ", - Description: "Guggenheim Raymond James SB-1 Equity ETF", - Symbol: "RYJ", - Precision: 5, - Type: Stock, - AlternateId: "18383M613"}, - 124381561315680: &Security{ - SecurityId: 124381561315680, - Name: "GSY", - Description: "Guggenheim Enhanced Short Duration ETF", - Symbol: "GSY", - Precision: 5, - Type: Stock, - AlternateId: "18383M654"}, - 124381561358304: &Security{ - SecurityId: 124381561358304, - Name: "CZA", - Description: "Guggenheim Mid-Cap Core ETF", - Symbol: "CZA", - Precision: 5, - Type: Stock, - AlternateId: "18383M720"}, - 124381561410144: &Security{ - SecurityId: 124381561410144, - Name: "LVL", - Description: "Guggenheim S&P Global Dividend Opportunities Index ETF", - Symbol: "LVL", - Precision: 5, - Type: Stock, - AlternateId: "18383M860"}, - 124381561411728: &Security{ - SecurityId: 124381561411728, - Name: "DEF", - Description: "Guggenheim Defensive Equity ETF", - Symbol: "DEF", - Precision: 5, - Type: Stock, - AlternateId: "18383M878"}, - 124381567798308: &Security{ - SecurityId: 124381567798308, - Name: "CQQQ", - Description: "Guggenheim China Technology ETF", - Symbol: "CQQQ", - Precision: 5, - Type: Stock, - AlternateId: "18383Q135"}, - 124381567981116: &Security{ - SecurityId: 124381567981116, - Name: "CGW", - Description: "Guggenheim S&P Global Water Index ETF", - Symbol: "CGW", - Precision: 5, - Type: Stock, - AlternateId: "18383Q507"}, - 124381568027736: &Security{ - SecurityId: 124381568027736, - Name: "ENY", - Description: "Guggenheim Canadian Energy Income ETF", - Symbol: "ENY", - Precision: 5, - Type: Stock, - AlternateId: "18383Q606"}, - 124381568076804: &Security{ - SecurityId: 124381568076804, - Name: "GHII", - Description: "Guggenheim S&P High Income Infrastructure ETF", - Symbol: "GHII", - Precision: 5, - Type: Stock, - AlternateId: "18383Q721"}, - 124381568078388: &Security{ - SecurityId: 124381568078388, - Name: "TAN", - Description: "Guggenheim Solar ETF", - Symbol: "TAN", - Precision: 5, - Type: Stock, - AlternateId: "18383Q739"}, - 124381568086056: &Security{ - SecurityId: 124381568086056, - Name: "SEA", - Description: "Guggenheim Shipping ETF", - Symbol: "SEA", - Precision: 5, - Type: Stock, - AlternateId: "18383Q796"}, - 124381568120976: &Security{ - SecurityId: 124381568120976, - Name: "HGI", - Description: "Guggenheim International Multi-Asset Income ETF", - Symbol: "HGI", - Precision: 5, - Type: Stock, - AlternateId: "18383Q804"}, - 124381568125008: &Security{ - SecurityId: 124381568125008, - Name: "FRN", - Description: "Guggenheim Frontier Markets ETF", - Symbol: "FRN", - Precision: 5, - Type: Stock, - AlternateId: "18383Q838"}, - 124381568127420: &Security{ - SecurityId: 124381568127420, - Name: "HAO", - Description: "Guggenheim China Small Cap ETF", - Symbol: "HAO", - Precision: 5, - Type: Stock, - AlternateId: "18383Q853"}, - 124381568128644: &Security{ - SecurityId: 124381568128644, - Name: "TAO", - Description: "Guggenheim China Real Estate ETF", - Symbol: "TAO", - Precision: 5, - Type: Stock, - AlternateId: "18383Q861"}, - 124381568130228: &Security{ - SecurityId: 124381568130228, - Name: "CUT", - Description: "Guggenheim Timber ETF", - Symbol: "CUT", - Precision: 5, - Type: Stock, - AlternateId: "18383Q879"}, - 124381687047012: &Security{ - SecurityId: 124381687047012, - Name: "YAO", - Description: "Guggenheim China All-Cap ETF", - Symbol: "YAO", - Precision: 5, - Type: Stock, - AlternateId: "18385P101"}, - 124381687093632: &Security{ - SecurityId: 124381687093632, - Name: "EMRE", - Description: "Guggenhein Emerging Market Real Estate ETF", - Symbol: "EMRE", - Precision: 5, - Type: Stock, - AlternateId: "18385P200"}, - 124451564251428: &Security{ - SecurityId: 124451564251428, - Name: "CDTI", - Description: "Clean Diesel Technologies, Inc.", - Symbol: "CDTI", - Precision: 5, - Type: Stock, - AlternateId: "18449C401"}, - 124451554033980: &Security{ - SecurityId: 124451554033980, - Name: "CLH", - Description: "Clean Harbors, Inc.", - Symbol: "CLH", - Precision: 5, - Type: Stock, - AlternateId: "184496107"}, - 124451559072612: &Security{ - SecurityId: 124451559072612, - Name: "CLNE", - Description: "Clean Energy Fuels Corp.", - Symbol: "CLNE", - Precision: 5, - Type: Stock, - AlternateId: "184499101"}, - 124453257164676: &Security{ - SecurityId: 124453257164676, - Name: "CCO", - Description: "Clear Channel Outdoor Holdings, Inc.", - Symbol: "CCO", - Precision: 5, - Type: Stock, - AlternateId: "18451C109"}, - 124455939511104: &Security{ - SecurityId: 124455939511104, - Name: "EMO", - Description: "ClearBridge Energy MLP Opportunity Fund, Inc.", - Symbol: "EMO", - Precision: 5, - Type: Stock, - AlternateId: "18469P100"}, - 124455941191008: &Security{ - SecurityId: 124455941191008, - Name: "CTR", - Description: "ClearBridge Energy MLP Total Return Fund, Inc.", - Symbol: "CTR", - Precision: 5, - Type: Stock, - AlternateId: "18469Q108"}, - 124455899200428: &Security{ - SecurityId: 124455899200428, - Name: "CBA", - Description: "Clearbridge American Energy MLP Fund, Inc.", - Symbol: "CBA", - Precision: 5, - Type: Stock, - AlternateId: "184691103"}, - 124455900879972: &Security{ - SecurityId: 124455900879972, - Name: "CEM", - Description: "ClearBridge Energy MLP Fund, Inc.", - Symbol: "CEM", - Precision: 5, - Type: Stock, - AlternateId: "184692101"}, - 124521026310792: &Security{ - SecurityId: 124521026310792, - Name: "CLIR", - Description: "Clearsign Combustion Corp.", - Symbol: "CLIR", - Precision: 5, - Type: Stock, - AlternateId: "185064102"}, - 124527716221356: &Security{ - SecurityId: 124527716221356, - Name: "CLW", - Description: "Clearwater Paper Corp.", - Symbol: "CLW", - Precision: 5, - Type: Stock, - AlternateId: "18538R103"}, - 124538433897672: &Security{ - SecurityId: 124538433897672, - Name: "CBLI", - Description: "Cleveland BioLabs, Inc.", - Symbol: "CBLI", - Precision: 5, - Type: Stock, - AlternateId: "185860202"}, - 124616650208868: &Security{ - SecurityId: 124616650208868, - Name: "CLF", - Description: "Cliffs Natural Resources, Inc.", - Symbol: "CLF", - Precision: 5, - Type: Stock, - AlternateId: "18683K101"}, - 124616863520244: &Security{ - SecurityId: 124616863520244, - Name: "CSBK", - Description: "Clifton Bancorp, Inc.", - Symbol: "CSBK", - Precision: 5, - Type: Stock, - AlternateId: "186873105"}, - 124834422501252: &Security{ - SecurityId: 124834422501252, - Name: "CLX", - Description: "Clorox Co. (The)", - Symbol: "CLX", - Precision: 5, - Type: Stock, - AlternateId: "189054109"}, - 124836394370184: &Security{ - SecurityId: 124836394370184, - Name: "CLD", - Description: "Cloud Peak Energy, Inc.", - Symbol: "CLD", - Precision: 5, - Type: Stock, - AlternateId: "18911Q102"}, - 124836528739500: &Security{ - SecurityId: 124836528739500, - Name: "GLV", - Description: "Clough Global Allocation Fund", - Symbol: "GLV", - Precision: 5, - Type: Stock, - AlternateId: "18913Y103"}, - 124836552254016: &Security{ - SecurityId: 124836552254016, - Name: "GLQ", - Description: "Clough Global Equity Fund", - Symbol: "GLQ", - Precision: 5, - Type: Stock, - AlternateId: "18914C100"}, - 124836555613464: &Security{ - SecurityId: 124836555613464, - Name: "GLO", - Description: "Clough Global Opportunities Fund", - Symbol: "GLO", - Precision: 5, - Type: Stock, - AlternateId: "18914E106"}, - 124843190096448: &Security{ - SecurityId: 124843190096448, - Name: "CLVS", - Description: "Clovis Oncology, Inc.", - Symbol: "CLVS", - Precision: 5, - Type: Stock, - AlternateId: "189464100"}, - 124843341262176: &Security{ - SecurityId: 124843341262176, - Name: "MYCC", - Description: "ClubCorp Holdings, Inc.", - Symbol: "MYCC", - Precision: 5, - Type: Stock, - AlternateId: "18948M108"}, - 124849659977424: &Security{ - SecurityId: 124849659977424, - Name: "COH", - Description: "Coach, Inc.", - Symbol: "COH", - Precision: 5, - Type: Stock, - AlternateId: "189754104"}, - 126963191334276: &Security{ - SecurityId: 126963191334276, - Name: "CWAY", - Description: "Coastway Bancorp, Inc.", - Symbol: "CWAY", - Precision: 5, - Type: Stock, - AlternateId: "190632109"}, - 126965510883864: &Security{ - SecurityId: 126965510883864, - Name: "CIE", - Description: "Cobalt Intl Energy, Inc.", - Symbol: "CIE", - Precision: 5, - Type: Stock, - AlternateId: "19075F106"}, - 126967916094048: &Security{ - SecurityId: 126967916094048, - Name: "COBZ", - Description: "CoBiz Financial, Inc.", - Symbol: "COBZ", - Precision: 5, - Type: Stock, - AlternateId: "190897108"}, - 127028867678856: &Security{ - SecurityId: 127028867678856, - Name: "COKE", - Description: "Coca-Cola Bottling Co. Consolidated", - Symbol: "COKE", - Precision: 5, - Type: Stock, - AlternateId: "191098102"}, - 127032734154816: &Security{ - SecurityId: 127032734154816, - Name: "KO", - Description: "Coca-Cola Co. (The)", - Symbol: "KO", - Precision: 5, - Type: Stock, - AlternateId: "191216100"}, - 127032907155552: &Security{ - SecurityId: 127032907155552, - Name: "KOF", - Description: "Coca-Cola FEMSA S.A. de C.V. ADR", - Symbol: "KOF", - Precision: 5, - Type: Stock, - AlternateId: "191241108"}, - 127106706123288: &Security{ - SecurityId: 127106706123288, - Name: "CDRB", - Description: "Code Rebel Corp.", - Symbol: "CDRB", - Precision: 5, - Type: Stock, - AlternateId: "19200J106"}, - 127106682608664: &Security{ - SecurityId: 127106682608664, - Name: "CDXS", - Description: "Codexis, Inc.", - Symbol: "CDXS", - Precision: 5, - Type: Stock, - AlternateId: "192005106"}, - 127106803540944: &Security{ - SecurityId: 127106803540944, - Name: "CVLY", - Description: "Codorus Valley Bancorp, Inc.", - Symbol: "CVLY", - Precision: 5, - Type: Stock, - AlternateId: "192025104"}, - 127108864616400: &Security{ - SecurityId: 127108864616400, - Name: "CDE", - Description: "Coeur Mining, Inc.", - Symbol: "CDE", - Precision: 5, - Type: Stock, - AlternateId: "192108504"}, - 127113800914440: &Security{ - SecurityId: 127113800914440, - Name: "CCOI", - Description: "Cogent Communications Holdings, Inc.", - Symbol: "CCOI", - Precision: 5, - Type: Stock, - AlternateId: "19239V302"}, - 127115505631404: &Security{ - SecurityId: 127115505631404, - Name: "CGNX", - Description: "Cognex Corp.", - Symbol: "CGNX", - Precision: 5, - Type: Stock, - AlternateId: "192422103"}, - 127115579534544: &Security{ - SecurityId: 127115579534544, - Name: "CGNT", - Description: "Cogentix Medical, Inc.", - Symbol: "CGNT", - Precision: 5, - Type: Stock, - AlternateId: "19243A104"}, - 127115633282184: &Security{ - SecurityId: 127115633282184, - Name: "CTSH", - Description: "Cognizant Technology Solutions Corp.", - Symbol: "CTSH", - Precision: 5, - Type: Stock, - AlternateId: "192446102"}, - 127115821399104: &Security{ - SecurityId: 127115821399104, - Name: "CNS", - Description: "Cohen & Steers, Inc.", - Symbol: "CNS", - Precision: 5, - Type: Stock, - AlternateId: "19247A100"}, - 127115839875096: &Security{ - SecurityId: 127115839875096, - Name: "RQI", - Description: "Cohen & Steers Quality Income Realty Fund", - Symbol: "RQI", - Precision: 5, - Type: Stock, - AlternateId: "19247L106"}, - 127115849952684: &Security{ - SecurityId: 127115849952684, - Name: "RFI", - Description: "Cohen & Steers Total Return Realty Fund", - Symbol: "RFI", - Precision: 5, - Type: Stock, - AlternateId: "19247R103"}, - 127115860030272: &Security{ - SecurityId: 127115860030272, - Name: "RNP", - Description: "Cohen & Steers REIT and Preferred Income Fund", - Symbol: "RNP", - Precision: 5, - Type: Stock, - AlternateId: "19247X100"}, - 127115819719596: &Security{ - SecurityId: 127115819719596, - Name: "COHR", - Description: "Coherent, Inc.", - Symbol: "COHR", - Precision: 5, - Type: Stock, - AlternateId: "192479103"}, - 127115881865604: &Security{ - SecurityId: 127115881865604, - Name: "UTF", - Description: "Cohen & Steers Infrastructure Fund", - Symbol: "UTF", - Precision: 5, - Type: Stock, - AlternateId: "19248A109"}, - 127115885224692: &Security{ - SecurityId: 127115885224692, - Name: "LDP", - Description: "Cohen & Steers Limited Duration Preferred and Income Fund", - Symbol: "LDP", - Precision: 5, - Type: Stock, - AlternateId: "19248C105"}, - 127115902020780: &Security{ - SecurityId: 127115902020780, - Name: "INB", - Description: "Cohen & Steers Global Income Builder", - Symbol: "INB", - Precision: 5, - Type: Stock, - AlternateId: "19248M103"}, - 127115907059736: &Security{ - SecurityId: 127115907059736, - Name: "FOF", - Description: "Cohen & Steers Closed-End Opportunity Fund", - Symbol: "FOF", - Precision: 5, - Type: Stock, - AlternateId: "19248P106"}, - 127115922176316: &Security{ - SecurityId: 127115922176316, - Name: "PSF", - Description: "Cohen & Steers Select Preferred and Income Fund", - Symbol: "PSF", - Precision: 5, - Type: Stock, - AlternateId: "19248Y107"}, - 127115944011288: &Security{ - SecurityId: 127115944011288, - Name: "MIE", - Description: "Cohen & Steers MLP Income and Energy Opportunity Fund, Inc.", - Symbol: "MIE", - Precision: 5, - Type: Stock, - AlternateId: "19249B106"}, - 127115954088876: &Security{ - SecurityId: 127115954088876, - Name: "CHRS", - Description: "Coherus BioSciences, Inc.", - Symbol: "CHRS", - Precision: 5, - Type: Stock, - AlternateId: "19249H103"}, - 127117991463192: &Security{ - SecurityId: 127117991463192, - Name: "COHU", - Description: "Cohu, Inc.", - Symbol: "COHU", - Precision: 5, - Type: Stock, - AlternateId: "192576106"}, - 127263469723416: &Security{ - SecurityId: 127263469723416, - Name: "CFX", - Description: "Colfax Corp.", - Symbol: "CFX", - Precision: 5, - Type: Stock, - AlternateId: "194014106"}, - 127265945477292: &Security{ - SecurityId: 127265945477292, - Name: "CL", - Description: "Colgate-Palmolive Co.", - Symbol: "CL", - Precision: 5, - Type: Stock, - AlternateId: "194162103"}, - 127267861965696: &Security{ - SecurityId: 127267861965696, - Name: "CLCT", - Description: "Collectors Universe, Inc.", - Symbol: "CLCT", - Precision: 5, - Type: Stock, - AlternateId: "19421R200"}, - 127424707820388: &Security{ - SecurityId: 127424707820388, - Name: "CBAN", - Description: "Colony Bankcorp, Inc.", - Symbol: "CBAN", - Precision: 5, - Type: Stock, - AlternateId: "19623P101"}, - 127424771645976: &Security{ - SecurityId: 127424771645976, - Name: "CLNY", - Description: "Colony Capital, Inc.", - Symbol: "CLNY", - Precision: 5, - Type: Stock, - AlternateId: "19624R106"}, - 127424771785836: &Security{ - SecurityId: 127424771785836, - Name: "CLNY-C", - Description: "Colony Capital, 7.125% Series C Cumulative Redeemable Perpetual Preferred Stock", - Symbol: "CLNY-C", - Precision: 5, - Type: Stock, - AlternateId: "19624R403"}, - 127501083319140: &Security{ - SecurityId: 127501083319140, - Name: "CLCD", - Description: "CoLucid Pharmaceuticals, Inc.", - Symbol: "CLCD", - Precision: 5, - Type: Stock, - AlternateId: "19716T101"}, - 127503040071816: &Security{ - SecurityId: 127503040071816, - Name: "COLB", - Description: "Columbia Banking System, Inc.", - Symbol: "COLB", - Precision: 5, - Type: Stock, - AlternateId: "197236102"}, - 127511661540996: &Security{ - SecurityId: 127511661540996, - Name: "GVT", - Description: "Columbia Concentrated Large Cap Value Strategy Fund", - Symbol: "GVT", - Precision: 5, - Type: Stock, - AlternateId: "19761R109"}, - 127511661634236: &Security{ - SecurityId: 127511661634236, - Name: "RPX", - Description: "Columbia Large Cap Growth ETF", - Symbol: "RPX", - Precision: 5, - Type: Stock, - AlternateId: "19761R307"}, - 127511661680856: &Security{ - SecurityId: 127511661680856, - Name: "RWG", - Description: "Columbia Large-Cap Growth Equity Strategy Fund", - Symbol: "RWG", - Precision: 5, - Type: Stock, - AlternateId: "19761R406"}, - 127511661820716: &Security{ - SecurityId: 127511661820716, - Name: "GMMB", - Description: "Columbia Intermediate Municipal Bond Strategy Fund", - Symbol: "GMMB", - Precision: 5, - Type: Stock, - AlternateId: "19761R703"}, - 127511661867336: &Security{ - SecurityId: 127511661867336, - Name: "GMTB", - Description: "Columbia Core Bond Strategy Fund", - Symbol: "GMTB", - Precision: 5, - Type: Stock, - AlternateId: "19761R802"}, - 127581696489348: &Security{ - SecurityId: 127581696489348, - Name: "CPGX", - Description: "Columbia Pipeline Group, Inc.", - Symbol: "CPGX", - Precision: 5, - Type: Stock, - AlternateId: "198280109"}, - 127581698168892: &Security{ - SecurityId: 127581698168892, - Name: "CPPL", - Description: "Columbia Pipeline Partners LP", - Symbol: "CPPL", - Precision: 5, - Type: Stock, - AlternateId: "198281107"}, - 127581708293100: &Security{ - SecurityId: 127581708293100, - Name: "CXP", - Description: "Columbia Property Trust, Inc.", - Symbol: "CXP", - Precision: 5, - Type: Stock, - AlternateId: "198287203"}, - 127585742684292: &Security{ - SecurityId: 127585742684292, - Name: "STK", - Description: "Columbia Seligman Premium Technology Growth Fund", - Symbol: "STK", - Precision: 5, - Type: Stock, - AlternateId: "19842X109"}, - 127587813650712: &Security{ - SecurityId: 127587813650712, - Name: "COLM", - Description: "Columbia Sportswear Co.", - Symbol: "COLM", - Precision: 5, - Type: Stock, - AlternateId: "198516106"}, - 127661940143604: &Security{ - SecurityId: 127661940143604, - Name: "CMCO", - Description: "Columbus McKinnon Corp.", - Symbol: "CMCO", - Precision: 5, - Type: Stock, - AlternateId: "199333105"}, - 127674827837136: &Security{ - SecurityId: 127674827837136, - Name: "FIX", - Description: "Comfort Systems USA, Inc.", - Symbol: "FIX", - Precision: 5, - Type: Stock, - AlternateId: "199908104"}, - 203126482361700: &Security{ - SecurityId: 203126482361700, - Name: "CMCSA", - Description: "Comcast Corp. Cl A Common Stock", - Symbol: "CMCSA", - Precision: 5, - Type: Stock, - AlternateId: "20030N101"}, - 203126685595452: &Security{ - SecurityId: 203126685595452, - Name: "CMA", - Description: "Comerica, Inc.", - Symbol: "CMA", - Precision: 5, - Type: Stock, - AlternateId: "200340107"}, - 203130832567104: &Security{ - SecurityId: 203130832567104, - Name: "MOC", - Description: "Command Security Corp.", - Symbol: "MOC", - Precision: 5, - Type: Stock, - AlternateId: "20050L100"}, - 203130926625708: &Security{ - SecurityId: 203130926625708, - Name: "CBSH", - Description: "Commerce Bancshares, Inc.", - Symbol: "CBSH", - Precision: 5, - Type: Stock, - AlternateId: "200525103"}, - 203137462011492: &Security{ - SecurityId: 203137462011492, - Name: "CUBN", - Description: "Commerce Union Bancshares, Inc. (TN)", - Symbol: "CUBN", - Precision: 5, - Type: Stock, - AlternateId: "200828101"}, - 203213640995244: &Security{ - SecurityId: 203213640995244, - Name: "CMC", - Description: "Commercial Metals Co.", - Symbol: "CMC", - Precision: 5, - Type: Stock, - AlternateId: "201723103"}, - 203362014913668: &Security{ - SecurityId: 203362014913668, - Name: "COMM", - Description: "CommScope Holding Company, Inc.", - Symbol: "COMM", - Precision: 5, - Type: Stock, - AlternateId: "20337X109"}, - 203363805384144: &Security{ - SecurityId: 203363805384144, - Name: "CSAL", - Description: "Communications Sales & Leasing, Inc.", - Symbol: "CSAL", - Precision: 5, - Type: Stock, - AlternateId: "20341J104"}, - 203368078327320: &Security{ - SecurityId: 203368078327320, - Name: "CBU", - Description: "Community Bank System, Inc.", - Symbol: "CBU", - Precision: 5, - Type: Stock, - AlternateId: "203607106"}, - 203368130395416: &Security{ - SecurityId: 203368130395416, - Name: "BTC", - Description: "Community Bankers Trust Corp.", - Symbol: "BTC", - Precision: 5, - Type: Stock, - AlternateId: "203612106"}, - 203368442804064: &Security{ - SecurityId: 203368442804064, - Name: "CYH", - Description: "Community Health Systems, Inc.", - Symbol: "CYH", - Precision: 5, - Type: Stock, - AlternateId: "203668108"}, - 203368630920984: &Security{ - SecurityId: 203368630920984, - Name: "CHCT", - Description: "Community Healthcare Trust, Inc.", - Symbol: "CHCT", - Precision: 5, - Type: Stock, - AlternateId: "20369C106"}, - 203374596916980: &Security{ - SecurityId: 203374596916980, - Name: "JCS", - Description: "Communications Systems, Inc.", - Symbol: "JCS", - Precision: 5, - Type: Stock, - AlternateId: "203900105"}, - 203435803803744: &Security{ - SecurityId: 203435803803744, - Name: "CTBI", - Description: "Community Trust Bancorp, Inc.", - Symbol: "CTBI", - Precision: 5, - Type: Stock, - AlternateId: "204149108"}, - 203435860910436: &Security{ - SecurityId: 203435860910436, - Name: "CWBC", - Description: "Community West Bancshares", - Symbol: "CWBC", - Precision: 5, - Type: Stock, - AlternateId: "204157101"}, - 203435953289568: &Security{ - SecurityId: 203435953289568, - Name: "COB", - Description: "CommunityOne Bancorp", - Symbol: "COB", - Precision: 5, - Type: Stock, - AlternateId: "20416Q108"}, - 203442125924772: &Security{ - SecurityId: 203442125924772, - Name: "CBD", - Description: "Companhia Brasileira de Distribuição (CBD) Preferred Shares ADR", - Symbol: "CBD", - Precision: 5, - Type: Stock, - AlternateId: "20440T201"}, - 203442130917108: &Security{ - SecurityId: 203442130917108, - Name: "SID", - Description: "Companhia Siderurgica Nacional S.A. (CSN) ADR", - Symbol: "SID", - Precision: 5, - Type: Stock, - AlternateId: "20440W105"}, - 203442092519076: &Security{ - SecurityId: 203442092519076, - Name: "CIG", - Description: "Companhia Energetica De Minas Gerais - CEMIG ADR", - Symbol: "CIG", - Precision: 5, - Type: Stock, - AlternateId: "204409601"}, - 203442154431624: &Security{ - SecurityId: 203442154431624, - Name: "SBS", - Description: "Companhia de Saneamento Basico do Estado de Sao Paulo - SABESP", - Symbol: "SBS", - Precision: 5, - Type: Stock, - AlternateId: "20441A102"}, - 203442213218256: &Security{ - SecurityId: 203442213218256, - Name: "CCU", - Description: "Compañía Cervecerías Unidas S.A. ADR", - Symbol: "CCU", - Precision: 5, - Type: Stock, - AlternateId: "204429104"}, - 203444353048932: &Security{ - SecurityId: 203444353048932, - Name: "CMP", - Description: "Compass Minerals Intl, Inc.", - Symbol: "CMP", - Precision: 5, - Type: Stock, - AlternateId: "20451N101"}, - 203444358087888: &Security{ - SecurityId: 203444358087888, - Name: "CODI", - Description: "Compass Diversified Holdings", - Symbol: "CODI", - Precision: 5, - Type: Stock, - AlternateId: "20451Q104"}, - 203444432280036: &Security{ - SecurityId: 203444432280036, - Name: "CSA", - Description: "Victory CEMP US Small Cap Volatility Weighted Index ETF", - Symbol: "CSA", - Precision: 5, - Type: Stock, - AlternateId: "20452Y775"}, - 203518274628780: &Security{ - SecurityId: 203518274628780, - Name: "CPSI", - Description: "Computer Programs and Systems, Inc.", - Symbol: "CPSI", - Precision: 5, - Type: Stock, - AlternateId: "205306103"}, - 203518632387024: &Security{ - SecurityId: 203518632387024, - Name: "CSC", - Description: "Computer Sciences Corp.", - Symbol: "CSC", - Precision: 5, - Type: Stock, - AlternateId: "205363104"}, - 203520876353928: &Security{ - SecurityId: 203520876353928, - Name: "CTG", - Description: "Computer Task Group, Inc.", - Symbol: "CTG", - Precision: 5, - Type: Stock, - AlternateId: "205477102"}, - 203525018286948: &Security{ - SecurityId: 203525018286948, - Name: "CIX", - Description: "CompX Intl, Inc.", - Symbol: "CIX", - Precision: 5, - Type: Stock, - AlternateId: "20563P101"}, - 203525090510580: &Security{ - SecurityId: 203525090510580, - Name: "SCOR", - Description: "comScore, Inc.", - Symbol: "SCOR", - Precision: 5, - Type: Stock, - AlternateId: "20564W105"}, - 203525285392584: &Security{ - SecurityId: 203525285392584, - Name: "CHCI", - Description: "Comstock Holding Companies, Inc.", - Symbol: "CHCI", - Precision: 5, - Type: Stock, - AlternateId: "205684202"}, - 203527274011272: &Security{ - SecurityId: 203527274011272, - Name: "LODE", - Description: "Comstock Mining, Inc.", - Symbol: "LODE", - Precision: 5, - Type: Stock, - AlternateId: "205750102"}, - 203527347961068: &Security{ - SecurityId: 203527347961068, - Name: "CRK", - Description: "Comstock Resources, Inc.", - Symbol: "CRK", - Precision: 5, - Type: Stock, - AlternateId: "205768203"}, - 203529279519684: &Security{ - SecurityId: 203529279519684, - Name: "CMTL", - Description: "Comtech Telecommunications Corp.", - Symbol: "CMTL", - Precision: 5, - Type: Stock, - AlternateId: "205826209"}, - 203529643949448: &Security{ - SecurityId: 203529643949448, - Name: "CAG", - Description: "ConAgra Foods, Inc.", - Symbol: "CAG", - Precision: 5, - Type: Stock, - AlternateId: "205887102"}, - 203590147077216: &Security{ - SecurityId: 203590147077216, - Name: "CNAT", - Description: "Conatus Pharmaceuticals, Inc.", - Symbol: "CNAT", - Precision: 5, - Type: Stock, - AlternateId: "20600T108"}, - 203590222659828: &Security{ - SecurityId: 203590222659828, - Name: "CNCE", - Description: "Concert Pharmaceuticals, Inc.", - Symbol: "CNCE", - Precision: 5, - Type: Stock, - AlternateId: "206022105"}, - 203590442689380: &Security{ - SecurityId: 203590442689380, - Name: "CXO", - Description: "Concho Resources, Inc.", - Symbol: "CXO", - Precision: 5, - Type: Stock, - AlternateId: "20605P101"}, - 203594886953460: &Security{ - SecurityId: 203594886953460, - Name: "CCM", - Description: "Concord Medical Services Holdings Ltd ADR", - Symbol: "CCM", - Precision: 5, - Type: Stock, - AlternateId: "206277105"}, - 203601057862464: &Security{ - SecurityId: 203601057862464, - Name: "CXRX", - Description: "Concordia Healthcare Corp.", - Symbol: "CXRX", - Precision: 5, - Type: Stock, - AlternateId: "206519100"}, - 203605396450632: &Security{ - SecurityId: 203605396450632, - Name: "CCUR", - Description: "Concurrent Computer Corp.", - Symbol: "CCUR", - Precision: 5, - Type: Stock, - AlternateId: "206710402"}, - 203605755748632: &Security{ - SecurityId: 203605755748632, - Name: "CDOR", - Description: "Condor Hospitality Trust, Inc.", - Symbol: "CDOR", - Precision: 5, - Type: Stock, - AlternateId: "20676Y106"}, - 203605755795252: &Security{ - SecurityId: 203605755795252, - Name: "CDORP", - Description: "Condor Hospitality Trust, Inc., 8.00% Series A Convertible Preferred Stock", - Symbol: "CDORP", - Precision: 5, - Type: Stock, - AlternateId: "20676Y205"}, - 203607576452484: &Security{ - SecurityId: 203607576452484, - Name: "CNNX", - Description: "Cone Midstream Partners LP", - Symbol: "CNNX", - Precision: 5, - Type: Stock, - AlternateId: "206812109"}, - 203671086092388: &Security{ - SecurityId: 203671086092388, - Name: "CFMS", - Description: "ConforMIS, Inc.", - Symbol: "CFMS", - Precision: 5, - Type: Stock, - AlternateId: "20717E101"}, - 203675085258120: &Security{ - SecurityId: 203675085258120, - Name: "CNFR", - Description: "Conifer Holdings, Inc.", - Symbol: "CNFR", - Precision: 5, - Type: Stock, - AlternateId: "20731J102"}, - 203677230127716: &Security{ - SecurityId: 203677230127716, - Name: "CNMD", - Description: "CONMED Corp.", - Symbol: "CNMD", - Precision: 5, - Type: Stock, - AlternateId: "207410101"}, - 203684255961444: &Security{ - SecurityId: 203684255961444, - Name: "CTWS", - Description: "Connecticut Water Service, Inc.", - Symbol: "CTWS", - Precision: 5, - Type: Stock, - AlternateId: "207797101"}, - 203686271500824: &Security{ - SecurityId: 203686271500824, - Name: "CNXR", - Description: "Connecture, Inc.", - Symbol: "CNXR", - Precision: 5, - Type: Stock, - AlternateId: "20786J106"}, - 203686293335868: &Security{ - SecurityId: 203686293335868, - Name: "CNOB", - Description: "ConnectOne Bancorp, Inc.", - Symbol: "CNOB", - Precision: 5, - Type: Stock, - AlternateId: "20786W107"}, - 203751425485116: &Security{ - SecurityId: 203751425485116, - Name: "CONN", - Description: "Conn's, Inc.", - Symbol: "CONN", - Precision: 5, - Type: Stock, - AlternateId: "208242107"}, - 203751502747344: &Security{ - SecurityId: 203751502747344, - Name: "COP", - Description: "ConocoPhillips", - Symbol: "COP", - Precision: 5, - Type: Stock, - AlternateId: "20825C104"}, - 203757994463364: &Security{ - SecurityId: 203757994463364, - Name: "CNX", - Description: "CONSOL Energy, Inc.", - Symbol: "CNX", - Precision: 5, - Type: Stock, - AlternateId: "20854P109"}, - 203825378977596: &Security{ - SecurityId: 203825378977596, - Name: "CNSL", - Description: "Consolidated Communications Holdings, Inc.", - Symbol: "CNSL", - Precision: 5, - Type: Stock, - AlternateId: "209034107"}, - 203827436507088: &Security{ - SecurityId: 203827436507088, - Name: "ED", - Description: "Consolidated Edison, Inc.", - Symbol: "ED", - Precision: 5, - Type: Stock, - AlternateId: "209115104"}, - 205945507865880: &Security{ - SecurityId: 205945507865880, - Name: "CTO", - Description: "Consolidated-Tomoka Land Co.", - Symbol: "CTO", - Precision: 5, - Type: Stock, - AlternateId: "210226106"}, - 205947958425696: &Security{ - SecurityId: 205947958425696, - Name: "STZ", - Description: "Constellation Brands, Inc.", - Symbol: "STZ", - Precision: 5, - Type: Stock, - AlternateId: "21036P108"}, - 205947958472316: &Security{ - SecurityId: 205947958472316, - Name: "STZ.B", - Description: "Constellation Brands, Inc. Cl B", - Symbol: "STZ.B", - Precision: 5, - Type: Stock, - AlternateId: "21036P207"}, - 205951910561856: &Security{ - SecurityId: 205951910561856, - Name: "CPSS", - Description: "Consumer Portfolio Services, Inc.", - Symbol: "CPSS", - Precision: 5, - Type: Stock, - AlternateId: "210502100"}, - 205956601776144: &Security{ - SecurityId: 205956601776144, - Name: "MCF", - Description: "Contango Oil & Gas Co.", - Symbol: "MCF", - Precision: 5, - Type: Stock, - AlternateId: "21075N204"}, - 205956564777900: &Security{ - SecurityId: 205956564777900, - Name: "TCS", - Description: "Container Store Group, Inc. (The)", - Symbol: "TCS", - Precision: 5, - Type: Stock, - AlternateId: "210751103"}, - 206021989180332: &Security{ - SecurityId: 206021989180332, - Name: "CBPX", - Description: "Continental Building Products, Inc.", - Symbol: "CBPX", - Precision: 5, - Type: Stock, - AlternateId: "211171103"}, - 206032517106876: &Security{ - SecurityId: 206032517106876, - Name: "CUO", - Description: "Continental Materials Corp.", - Symbol: "CUO", - Precision: 5, - Type: Stock, - AlternateId: "211615307"}, - 206097820483428: &Security{ - SecurityId: 206097820483428, - Name: "CLR", - Description: "Continental Resources, Inc.", - Symbol: "CLR", - Precision: 5, - Type: Stock, - AlternateId: "212015101"}, - 206104412976264: &Security{ - SecurityId: 206104412976264, - Name: "CFRXW", - Description: "ContraFect Corp. Warrant A", - Symbol: "CFRXW", - Precision: 5, - Type: Stock, - AlternateId: "212326102"}, - 206104577578668: &Security{ - SecurityId: 206104577578668, - Name: "CTRV", - Description: "ContraVir Pharmaceuticals, Inc.", - Symbol: "CTRV", - Precision: 5, - Type: Stock, - AlternateId: "21234W103"}, - 206106480583740: &Security{ - SecurityId: 206106480583740, - Name: "CTRL", - Description: "Control4 Corp.", - Symbol: "CTRL", - Precision: 5, - Type: Stock, - AlternateId: "21240D107"}, - 206106482263284: &Security{ - SecurityId: 206106482263284, - Name: "VLRS", - Description: "Controladora Vuela Compania de Aviacion, S.A.B. de C.V.", - Symbol: "VLRS", - Precision: 5, - Type: Stock, - AlternateId: "21240E105"}, - 206106950876184: &Security{ - SecurityId: 206106950876184, - Name: "CVG", - Description: "Convergys Corp.", - Symbol: "CVG", - Precision: 5, - Type: Stock, - AlternateId: "212485106"}, - 206424524411208: &Security{ - SecurityId: 206424524411208, - Name: "COO", - Description: "Cooper Companies, Inc. (The)", - Symbol: "COO", - Precision: 5, - Type: Stock, - AlternateId: "216648402"}, - 206426850539436: &Security{ - SecurityId: 206426850539436, - Name: "CPS", - Description: "Cooper-Standard Holdings, Inc.", - Symbol: "CPS", - Precision: 5, - Type: Stock, - AlternateId: "21676P103"}, - 206428805612604: &Security{ - SecurityId: 206428805612604, - Name: "CTB", - Description: "Cooper Tire & Rubber Co.", - Symbol: "CTB", - Precision: 5, - Type: Stock, - AlternateId: "216831107"}, - 206493932722968: &Security{ - SecurityId: 206493932722968, - Name: "CPRT", - Description: "Copart, Inc.", - Symbol: "CPRT", - Precision: 5, - Type: Stock, - AlternateId: "217204106"}, - 206504873788284: &Security{ - SecurityId: 206504873788284, - Name: "COYN", - Description: "COPsync, Inc.", - Symbol: "COYN", - Precision: 5, - Type: Stock, - AlternateId: "217712207"}, - 206574690339756: &Security{ - SecurityId: 206574690339756, - Name: "CRBP", - Description: "Corbus Pharmaceuticals Holdings, Inc.", - Symbol: "CRBP", - Precision: 5, - Type: Stock, - AlternateId: "21833P103"}, - 206578886020740: &Security{ - SecurityId: 206578886020740, - Name: "BVA", - Description: "Cordia Bancorp, Inc.", - Symbol: "BVA", - Precision: 5, - Type: Stock, - AlternateId: "218513109"}, - 206581482706896: &Security{ - SecurityId: 206581482706896, - Name: "CORE", - Description: "Core-Mark Holding Company, Inc.", - Symbol: "CORE", - Precision: 5, - Type: Stock, - AlternateId: "218681104"}, - 206581486065984: &Security{ - SecurityId: 206581486065984, - Name: "CMT", - Description: "Core Molding Technologies, Inc.", - Symbol: "CMT", - Precision: 5, - Type: Stock, - AlternateId: "218683100"}, - 206583217750260: &Security{ - SecurityId: 206583217750260, - Name: "COR", - Description: "CoreSite Realty Corp.", - Symbol: "COR", - Precision: 5, - Type: Stock, - AlternateId: "21870Q105"}, - 206583224515380: &Security{ - SecurityId: 206583224515380, - Name: "CORR", - Description: "CorEnergy Infrastructure Trust, Inc.", - Symbol: "CORR", - Precision: 5, - Type: Stock, - AlternateId: "21870U205"}, - 206583224562000: &Security{ - SecurityId: 206583224562000, - Name: "CORR-A", - Description: "CorEnergy Infrastructure Trust, 7.375% Dep Shares Ser A Cumul Red Preferred Stk", - Symbol: "CORR-A", - Precision: 5, - Type: Stock, - AlternateId: "21870U304"}, - 206583256381356: &Security{ - SecurityId: 206583256381356, - Name: "CLGX", - Description: "CoreLogic, Inc.", - Symbol: "CLGX", - Precision: 5, - Type: Stock, - AlternateId: "21871D103"}, - 206583355478916: &Security{ - SecurityId: 206583355478916, - Name: "CVRS", - Description: "Corindus Vascular Robotics, Inc.", - Symbol: "CVRS", - Precision: 5, - Type: Stock, - AlternateId: "218730109"}, - 206585809397820: &Security{ - SecurityId: 206585809397820, - Name: "CORI", - Description: "Corium International, Inc.", - Symbol: "CORI", - Precision: 5, - Type: Stock, - AlternateId: "21887L107"}, - 206651013770412: &Security{ - SecurityId: 206651013770412, - Name: "CSOD", - Description: "Cornerstone OnDemand, Inc.", - Symbol: "CSOD", - Precision: 5, - Type: Stock, - AlternateId: "21925Y103"}, - 206653133445876: &Security{ - SecurityId: 206653133445876, - Name: "GLW", - Description: "Corning, Inc.", - Symbol: "GLW", - Precision: 5, - Type: Stock, - AlternateId: "219350105"}, - 206664155132868: &Security{ - SecurityId: 206664155132868, - Name: "BCA", - Description: "CorpBanca ADR", - Symbol: "BCA", - Precision: 5, - Type: Stock, - AlternateId: "21987A209"}, - 208762302839904: &Security{ - SecurityId: 208762302839904, - Name: "OFC", - Description: "Corporate Office Properties Trust", - Symbol: "OFC", - Precision: 5, - Type: Stock, - AlternateId: "22002T108"}, - 208766846341116: &Security{ - SecurityId: 208766846341116, - Name: "CXW", - Description: "Corrections Corp. of America", - Symbol: "CXW", - Precision: 5, - Type: Stock, - AlternateId: "22025Y407"}, - 208840507440516: &Security{ - SecurityId: 208840507440516, - Name: "CRVL", - Description: "CorVel Corp.", - Symbol: "CRVL", - Precision: 5, - Type: Stock, - AlternateId: "221006109"}, - 208853591649012: &Security{ - SecurityId: 208853591649012, - Name: "COST", - Description: "Costco Wholesale Corp.", - Symbol: "COST", - Precision: 5, - Type: Stock, - AlternateId: "22160K105"}, - 208853778086424: &Security{ - SecurityId: 208853778086424, - Name: "COT", - Description: "Cott Corp.", - Symbol: "COT", - Precision: 5, - Type: Stock, - AlternateId: "22163N106"}, - 208860100161120: &Security{ - SecurityId: 208860100161120, - Name: "ICBK", - Description: "County Bancorp, Inc.", - Symbol: "ICBK", - Precision: 5, - Type: Stock, - AlternateId: "221907108"}, - 208919284836588: &Security{ - SecurityId: 208919284836588, - Name: "COTY", - Description: "COTY, Inc.", - Symbol: "COTY", - Precision: 5, - Type: Stock, - AlternateId: "222070203"}, - 208923740904456: &Security{ - SecurityId: 208923740904456, - Name: "CPAH", - Description: "CounterPath Corp.", - Symbol: "CPAH", - Precision: 5, - Type: Stock, - AlternateId: "22228P302"}, - 208925912554884: &Security{ - SecurityId: 208925912554884, - Name: "CCSC", - Description: "Country Style Cooking Restaurant Chain Co. Ltd", - Symbol: "CCSC", - Precision: 5, - Type: Stock, - AlternateId: "22238M109"}, - 208932256464264: &Security{ - SecurityId: 208932256464264, - Name: "QUOT", - Description: "Quotient Technology, Inc.", - Symbol: "QUOT", - Precision: 5, - Type: Stock, - AlternateId: "22265J102"}, - 208934651596824: &Security{ - SecurityId: 208934651596824, - Name: "CUZ", - Description: "Cousins Properties, Inc.", - Symbol: "CUZ", - Precision: 5, - Type: Stock, - AlternateId: "222795106"}, - 208936420232328: &Security{ - SecurityId: 208936420232328, - Name: "CVA", - Description: "Covanta Holding Corporation", - Symbol: "CVA", - Precision: 5, - Type: Stock, - AlternateId: "22282E102"}, - 208936559640564: &Security{ - SecurityId: 208936559640564, - Name: "CVTI", - Description: "Covenant Transport, Inc.", - Symbol: "CVTI", - Precision: 5, - Type: Stock, - AlternateId: "22284P105"}, - 209010410676324: &Security{ - SecurityId: 209010410676324, - Name: "COWN", - Description: "Cowen Group, Inc.", - Symbol: "COWN", - Precision: 5, - Type: Stock, - AlternateId: "223622101"}, - 209077798550040: &Security{ - SecurityId: 209077798550040, - Name: "CBRL", - Description: "Cracker Barrel Old Country Store, Inc.", - Symbol: "CBRL", - Precision: 5, - Type: Stock, - AlternateId: "22410J106"}, - 209077890928740: &Security{ - SecurityId: 209077890928740, - Name: "BREW", - Description: "Craft Brew Alliance, Inc.", - Symbol: "BREW", - Precision: 5, - Type: Stock, - AlternateId: "224122101"}, - 209082679514100: &Security{ - SecurityId: 209082679514100, - Name: "CR", - Description: "Crane Co.", - Symbol: "CR", - Precision: 5, - Type: Stock, - AlternateId: "224399105"}, - 209088836986428: &Security{ - SecurityId: 209088836986428, - Name: "CRD.B", - Description: "Crawford & Co. Cl B", - Symbol: "CRD.B", - Precision: 5, - Type: Stock, - AlternateId: "224633107"}, - 209088837033048: &Security{ - SecurityId: 209088837033048, - Name: "CRD.A", - Description: "Crawford & Co. Cl A", - Symbol: "CRD.A", - Precision: 5, - Type: Stock, - AlternateId: "224633206"}, - 209095251439896: &Security{ - SecurityId: 209095251439896, - Name: "CIK", - Description: "Credit Suisse Asset Management Income Fund", - Symbol: "CIK", - Precision: 5, - Type: Stock, - AlternateId: "224916106"}, - 209158433648208: &Security{ - SecurityId: 209158433648208, - Name: "CRAY", - Description: "Cray, Inc.", - Symbol: "CRAY", - Precision: 5, - Type: Stock, - AlternateId: "225223304"}, - 209160544832100: &Security{ - SecurityId: 209160544832100, - Name: "CACC", - Description: "Credit Acceptance Corp.", - Symbol: "CACC", - Precision: 5, - Type: Stock, - AlternateId: "225310101"}, - 209161077375636: &Security{ - SecurityId: 209161077375636, - Name: "MLTI", - Description: "Credit Suisse X-Links Multi-Asset High Income ETN", - Symbol: "MLTI", - Precision: 5, - Type: Stock, - AlternateId: "22539T399"}, - 209161077413004: &Security{ - SecurityId: 209161077413004, - Name: "TVIX", - Description: "VelocityShares Daily 2X VIX Short Term ETN S&P 500 VIX STF Index due 12/4/2030", - Symbol: "TVIX", - Precision: 5, - Type: Stock, - AlternateId: "22539T423"}, - 209161077417000: &Security{ - SecurityId: 209161077417000, - Name: "MLPO", - Description: "Credit Suisse S&P MLP Index Exchange Traded Notes due 12/4/2034", - Symbol: "MLPO", - Precision: 5, - Type: Stock, - AlternateId: "22539T456"}, - 209161077464844: &Security{ - SecurityId: 209161077464844, - Name: "FIBG", - Description: "CS FI Enhanced Big Cap Growth ETN", - Symbol: "FIBG", - Precision: 5, - Type: Stock, - AlternateId: "22539T563"}, - 209162662828128: &Security{ - SecurityId: 209162662828128, - Name: "CS", - Description: "Credit Suisse Group ADR", - Symbol: "CS", - Precision: 5, - Type: Stock, - AlternateId: "225401108"}, - 209162803915584: &Security{ - SecurityId: 209162803915584, - Name: "FIEU", - Description: "Credit Suisse FI Enhanced Europe 50 ETN", - Symbol: "FIEU", - Precision: 5, - Type: Stock, - AlternateId: "22542D100"}, - 209162804058252: &Security{ - SecurityId: 209162804058252, - Name: "FLGE", - Description: "Credit Suisse FI Large Cap Growth Enhanced ETN", - Symbol: "FLGE", - Precision: 5, - Type: Stock, - AlternateId: "22542D423"}, - 209162804061060: &Security{ - SecurityId: 209162804061060, - Name: "SLVO", - Description: "Credit Suisse X-Links Silver Shares Covered Call ETN due 4/21/2033", - Symbol: "SLVO", - Precision: 5, - Type: Stock, - AlternateId: "22542D449"}, - 209162804062248: &Security{ - SecurityId: 209162804062248, - Name: "CSCR", - Description: "Credit Suisse Commodity Rotation ETN", - Symbol: "CSCR", - Precision: 5, - Type: Stock, - AlternateId: "22542D456"}, - 209162804064696: &Security{ - SecurityId: 209162804064696, - Name: "CSCB", - Description: "Credit Suisse Commodity Benchmark ETN", - Symbol: "CSCB", - Precision: 5, - Type: Stock, - AlternateId: "22542D472"}, - 209162804065920: &Security{ - SecurityId: 209162804065920, - Name: "GLDI", - Description: "Credit Suisse X-Links Gold Shares Covered Call ETN due 02/02/33", - Symbol: "GLDI", - Precision: 5, - Type: Stock, - AlternateId: "22542D480"}, - 209162804106096: &Security{ - SecurityId: 209162804106096, - Name: "DGAZ", - Description: "VelocityShares 3X Inverse Natural Gas ETN S&P GSCI Natural Gas Index ER 2/3/2032", - Symbol: "DGAZ", - Precision: 5, - Type: Stock, - AlternateId: "22542D530"}, - 209162804107680: &Security{ - SecurityId: 209162804107680, - Name: "DWTI", - Description: "VelocityShares 3X Inverse Crude ETN S&P GSCI Crude Oil Index ER 2/3/2032", - Symbol: "DWTI", - Precision: 5, - Type: Stock, - AlternateId: "22542D548"}, - 209162804155488: &Security{ - SecurityId: 209162804155488, - Name: "DSLV", - Description: "VelocityShares 3x Inverse Silver ETN linked to S&P GSCI Silver Index ER 10/14/31", - Symbol: "DSLV", - Precision: 5, - Type: Stock, - AlternateId: "22542D654"}, - 209162804157936: &Security{ - SecurityId: 209162804157936, - Name: "DGLD", - Description: "VelocityShares 3x Inverse Gold ETN linked to S&P GSCI Gold Index ER 10/14/2031", - Symbol: "DGLD", - Precision: 5, - Type: Stock, - AlternateId: "22542D670"}, - 209162804159520: &Security{ - SecurityId: 209162804159520, - Name: "UGLD", - Description: "VelocityShares 3x Long Gold ETN linked to S&P GSCI Gold Index ER 10/14/2031", - Symbol: "UGLD", - Precision: 5, - Type: Stock, - AlternateId: "22542D688"}, - 209162804206140: &Security{ - SecurityId: 209162804206140, - Name: "VIIZ", - Description: "VelocityShares VIX Medium Term ETN S&P 500 VIX Mid-Term Futures Index 12/4/2030", - Symbol: "VIIZ", - Precision: 5, - Type: Stock, - AlternateId: "22542D787"}, - 209162804207364: &Security{ - SecurityId: 209162804207364, - Name: "XIV", - Description: "VelocityShares Daily Inverse VIX Short Term ETN S&P 500 VIX STF Index 12/4/2030", - Symbol: "XIV", - Precision: 5, - Type: Stock, - AlternateId: "22542D795"}, - 209162804247540: &Security{ - SecurityId: 209162804247540, - Name: "CSMA", - Description: "Credit Suisse Merger Arbitrage Liquid Index (Net) ETN due on 10/6/2020", - Symbol: "CSMA", - Precision: 5, - Type: Stock, - AlternateId: "22542D845"}, - 209162804248728: &Security{ - SecurityId: 209162804248728, - Name: "MLPN", - Description: "Credit Suisse Cushing 30 MLP Index ETN due on 4/20/2020", - Symbol: "MLPN", - Precision: 5, - Type: Stock, - AlternateId: "22542D852"}, - 209162804251536: &Security{ - SecurityId: 209162804251536, - Name: "CSLS", - Description: "Credit Suisse X-Links Long/Short Equity ETN due 2/19/2020", - Symbol: "CSLS", - Precision: 5, - Type: Stock, - AlternateId: "22542D878"}, - 209162928207276: &Security{ - SecurityId: 209162928207276, - Name: "DHY", - Description: "Credit Suisse High Yield Bond Fund", - Symbol: "DHY", - Precision: 5, - Type: Stock, - AlternateId: "22544F103"}, - 209162914770276: &Security{ - SecurityId: 209162914770276, - Name: "CREE", - Description: "Cree, Inc.", - Symbol: "CREE", - Precision: 5, - Type: Stock, - AlternateId: "225447101"}, - 209169574447716: &Security{ - SecurityId: 209169574447716, - Name: "CPG", - Description: "Crescent Point Energy Corp.", - Symbol: "CPG", - Precision: 5, - Type: Stock, - AlternateId: "22576C101"}, - 209241035390232: &Security{ - SecurityId: 209241035390232, - Name: "CRESY", - Description: "Cresud S.A.C.I.F. y A. ADR", - Symbol: "CRESY", - Precision: 5, - Type: Stock, - AlternateId: "226406106"}, - 209247629562576: &Security{ - SecurityId: 209247629562576, - Name: "CRTO", - Description: "Criteo S.A.", - Symbol: "CRTO", - Precision: 5, - Type: Stock, - AlternateId: "226718104"}, - 209319878244816: &Security{ - SecurityId: 209319878244816, - Name: "CCRN", - Description: "Cross Country Healthcare, Inc.", - Symbol: "CCRN", - Precision: 5, - Type: Stock, - AlternateId: "227483104"}, - 209322034871940: &Security{ - SecurityId: 209322034871940, - Name: "CRT", - Description: "Cross Timbers Royalty Trust", - Symbol: "CRT", - Precision: 5, - Type: Stock, - AlternateId: "22757R109"}, - 209322066784500: &Security{ - SecurityId: 209322066784500, - Name: "CAPL", - Description: "CrossAmerica Partners LP (Units)", - Symbol: "CAPL", - Precision: 5, - Type: Stock, - AlternateId: "22758A105"}, - 209324067253956: &Security{ - SecurityId: 209324067253956, - Name: "CRDS", - Description: "Crossroads Systems, Inc.", - Symbol: "CRDS", - Precision: 5, - Type: Stock, - AlternateId: "22765D209"}, - 209324055449844: &Security{ - SecurityId: 209324055449844, - Name: "XRDC", - Description: "Crossroads Capital, Inc.", - Symbol: "XRDC", - Precision: 5, - Type: Stock, - AlternateId: "227656105"}, - 209395953092376: &Security{ - SecurityId: 209395953092376, - Name: "CCK", - Description: "Crown Holdings, Inc.", - Symbol: "CCK", - Precision: 5, - Type: Stock, - AlternateId: "228368106"}, - 209397815786448: &Security{ - SecurityId: 209397815786448, - Name: "CRWN", - Description: "Crown Media Holdings, Inc.", - Symbol: "CRWN", - Precision: 5, - Type: Stock, - AlternateId: "228411104"}, - 209408642591040: &Security{ - SecurityId: 209408642591040, - Name: "CRY", - Description: "CryoLife, Inc.", - Symbol: "CRY", - Precision: 5, - Type: Stock, - AlternateId: "228903100"}, - 209467713099708: &Security{ - SecurityId: 209467713099708, - Name: "CYRX", - Description: "Cryoport, Inc.", - Symbol: "CYRX", - Precision: 5, - Type: Stock, - AlternateId: "229050307"}, - 209476142998956: &Security{ - SecurityId: 209476142998956, - Name: "CRVP", - Description: "Crystal Rock Holdings, Inc.", - Symbol: "CRVP", - Precision: 5, - Type: Stock, - AlternateId: "22940F103"}, - 209476324397376: &Security{ - SecurityId: 209476324397376, - Name: "CTRP", - Description: "Ctrip.com Intl Ltd ADR", - Symbol: "CTRP", - Precision: 5, - Type: Stock, - AlternateId: "22943F100"}, - 209480839205508: &Security{ - SecurityId: 209480839205508, - Name: "CUBE", - Description: "CubeSmart", - Symbol: "CUBE", - Precision: 5, - Type: Stock, - AlternateId: "229663109"}, - 209480849283096: &Security{ - SecurityId: 209480849283096, - Name: "CUB", - Description: "Cubic Corp.", - Symbol: "CUB", - Precision: 5, - Type: Stock, - AlternateId: "229669106"}, - 209485384246404: &Security{ - SecurityId: 209485384246404, - Name: "CFR", - Description: "Cullen/Frost Bankers, Inc.", - Symbol: "CFR", - Precision: 5, - Type: Stock, - AlternateId: "229899109"}, - 211587665534964: &Security{ - SecurityId: 211587665534964, - Name: "CFI", - Description: "Culp, Inc.", - Symbol: "CFI", - Precision: 5, - Type: Stock, - AlternateId: "230215105"}, - 211598903845764: &Security{ - SecurityId: 211598903845764, - Name: "CPIX", - Description: "Cumberland Pharmaceuticals, Inc.", - Symbol: "CPIX", - Precision: 5, - Type: Stock, - AlternateId: "230770109"}, - 211661729882136: &Security{ - SecurityId: 211661729882136, - Name: "CMI", - Description: "Cummins, Inc.", - Symbol: "CMI", - Precision: 5, - Type: Stock, - AlternateId: "231021106"}, - 211662094358880: &Security{ - SecurityId: 211662094358880, - Name: "CMLS", - Description: "Cumulus Media, Inc.", - Symbol: "CMLS", - Precision: 5, - Type: Stock, - AlternateId: "231082108"}, - 211666338748260: &Security{ - SecurityId: 211666338748260, - Name: "CRIS", - Description: "Curis, Inc.", - Symbol: "CRIS", - Precision: 5, - Type: Stock, - AlternateId: "231269101"}, - 211666550380128: &Security{ - SecurityId: 211666550380128, - Name: "FXS", - Description: "CurrencyShares Swedish Krona Trust", - Symbol: "FXS", - Precision: 5, - Type: Stock, - AlternateId: "23129R108"}, - 211666552059672: &Security{ - SecurityId: 211666552059672, - Name: "FXB", - Description: "CurrencyShares British Pound Sterling Trust", - Symbol: "FXB", - Precision: 5, - Type: Stock, - AlternateId: "23129S106"}, - 211666555418724: &Security{ - SecurityId: 211666555418724, - Name: "FXA", - Description: "CurrencyShares Australian Dollar Trust", - Symbol: "FXA", - Precision: 5, - Type: Stock, - AlternateId: "23129U101"}, - 211666557098628: &Security{ - SecurityId: 211666557098628, - Name: "FXF", - Description: "CurrencyShares Swiss Franc Trust", - Symbol: "FXF", - Precision: 5, - Type: Stock, - AlternateId: "23129V109"}, - 211666560457716: &Security{ - SecurityId: 211666560457716, - Name: "FXC", - Description: "CurrencyShares Canadian Dollar Trust", - Symbol: "FXC", - Precision: 5, - Type: Stock, - AlternateId: "23129X105"}, - 211668154413192: &Security{ - SecurityId: 211668154413192, - Name: "FXY", - Description: "CurrencyShares Japanese Yen Trust", - Symbol: "FXY", - Precision: 5, - Type: Stock, - AlternateId: "23130A102"}, - 211668157772640: &Security{ - SecurityId: 211668157772640, - Name: "FXE", - Description: "CurrencyShares Euro Trust", - Symbol: "FXE", - Precision: 5, - Type: Stock, - AlternateId: "23130C108"}, - 211668171209280: &Security{ - SecurityId: 211668171209280, - Name: "FXSG", - Description: "CurrencyShares Singapore Dollar Trust", - Symbol: "FXSG", - Precision: 5, - Type: Stock, - AlternateId: "23130K100"}, - 211668218238780: &Security{ - SecurityId: 211668218238780, - Name: "FXCH", - Description: "CurrencyShares Chinese Renminbi Trust", - Symbol: "FXCH", - Precision: 5, - Type: Stock, - AlternateId: "23131C107"}, - 211672855658340: &Security{ - SecurityId: 211672855658340, - Name: "CW", - Description: "Curtiss-Wright Corp.", - Symbol: "CW", - Precision: 5, - Type: Stock, - AlternateId: "231561101"}, - 211674837605256: &Security{ - SecurityId: 211674837605256, - Name: "SRF", - Description: "Cushing Energy Income Fund (The)", - Symbol: "SRF", - Precision: 5, - Type: Stock, - AlternateId: "23162T102"}, - 211674921586272: &Security{ - SecurityId: 211674921586272, - Name: "SZC", - Description: "Cushing Renaissance Fund (The)", - Symbol: "SZC", - Precision: 5, - Type: Stock, - AlternateId: "231647108"}, - 211740240172608: &Security{ - SecurityId: 211740240172608, - Name: "CUBI", - Description: "Customers Bancorp, Inc.", - Symbol: "CUBI", - Precision: 5, - Type: Stock, - AlternateId: "23204G100"}, - 211742163333216: &Security{ - SecurityId: 211742163333216, - Name: "CUTR", - Description: "Cutera, Inc.", - Symbol: "CUTR", - Precision: 5, - Type: Stock, - AlternateId: "232109108"}, - 211744461047760: &Security{ - SecurityId: 211744461047760, - Name: "CSI", - Description: "Cutwater Select Income Fund", - Symbol: "CSI", - Precision: 5, - Type: Stock, - AlternateId: "232229104"}, - 211748871812580: &Security{ - SecurityId: 211748871812580, - Name: "CYAN", - Description: "Cyanotech Corp.", - Symbol: "CYAN", - Precision: 5, - Type: Stock, - AlternateId: "232437301"}, - 211749128700804: &Security{ - SecurityId: 211749128700804, - Name: "CVT", - Description: "Cvent, Inc.", - Symbol: "CVT", - Precision: 5, - Type: Stock, - AlternateId: "23247G109"}, - 211750927569288: &Security{ - SecurityId: 211750927569288, - Name: "CYBE", - Description: "CyberOptics Corp.", - Symbol: "CYBE", - Precision: 5, - Type: Stock, - AlternateId: "232517102"}, - 211751132529276: &Security{ - SecurityId: 211751132529276, - Name: "CYCCP", - Description: "Cyclacel Pharmaceuticals Inc., 6.00% Convertible Exchangeable Preferred Stock", - Symbol: "CYCCP", - Precision: 5, - Type: Stock, - AlternateId: "23254L207"}, - 211751132575896: &Security{ - SecurityId: 211751132575896, - Name: "CYCC", - Description: "Cyclacel Pharmaceuticals, Inc.", - Symbol: "CYCC", - Precision: 5, - Type: Stock, - AlternateId: "23254L306"}, - 211751300444076: &Security{ - SecurityId: 211751300444076, - Name: "CBAY", - Description: "Cymabay Therapeutics, Inc.", - Symbol: "CBAY", - Precision: 5, - Type: Stock, - AlternateId: "23257D103"}, - 211751336049300: &Security{ - SecurityId: 211751336049300, - Name: "CYNA", - Description: "Cynapsus Therapeutics, Inc.", - Symbol: "CYNA", - Precision: 5, - Type: Stock, - AlternateId: "23257Y859"}, - 211751290413108: &Security{ - SecurityId: 211751290413108, - Name: "CYNO", - Description: "Cynosure, Inc.", - Symbol: "CYNO", - Precision: 5, - Type: Stock, - AlternateId: "232577205"}, - 211755512921148: &Security{ - SecurityId: 211755512921148, - Name: "CELP", - Description: "Cypress Energy Partners, L.P.", - Symbol: "CELP", - Precision: 5, - Type: Stock, - AlternateId: "232751107"}, - 211757560606260: &Security{ - SecurityId: 211757560606260, - Name: "CYTK", - Description: "Cytokinetics, Inc.", - Symbol: "CYTK", - Precision: 5, - Type: Stock, - AlternateId: "23282W605"}, - 211757520248964: &Security{ - SecurityId: 211757520248964, - Name: "CYTR", - Description: "CytRx Corp.", - Symbol: "CYTR", - Precision: 5, - Type: Stock, - AlternateId: "232828509"}, - 211757612440896: &Security{ - SecurityId: 211757612440896, - Name: "CONE", - Description: "CyrusOne, Inc.", - Symbol: "CONE", - Precision: 5, - Type: Stock, - AlternateId: "23283R100"}, - 211757622565464: &Security{ - SecurityId: 211757622565464, - Name: "CTSO", - Description: "Cytosorbents Corp.", - Symbol: "CTSO", - Precision: 5, - Type: Stock, - AlternateId: "23283X206"}, - 211757765286096: &Security{ - SecurityId: 211757765286096, - Name: "DXI", - Description: "DXI Energy, Inc.", - Symbol: "DXI", - Precision: 5, - Type: Stock, - AlternateId: "23286A104"}, - 211818639608676: &Security{ - SecurityId: 211818639608676, - Name: "DBEM", - Description: "Deutsche X-trackers MSCI Emerging Markets Hedged Equity ETF", - Symbol: "DBEM", - Precision: 5, - Type: Stock, - AlternateId: "233051101"}, - 211818639655296: &Security{ - SecurityId: 211818639655296, - Name: "DBEF", - Description: "Deutsche X-trackers MSCI EAFE Hedged Equity ETF", - Symbol: "DBEF", - Precision: 5, - Type: Stock, - AlternateId: "233051200"}, - 211818639702276: &Security{ - SecurityId: 211818639702276, - Name: "DBBR", - Description: "Deutsche X-trackers MSCI Brazil Hedged Equity ETF", - Symbol: "DBBR", - Precision: 5, - Type: Stock, - AlternateId: "233051309"}, - 211818639748896: &Security{ - SecurityId: 211818639748896, - Name: "DBGR", - Description: "Deutsche X-trackers MSCI Germany Hedged Equity ETF", - Symbol: "DBGR", - Precision: 5, - Type: Stock, - AlternateId: "233051408"}, - 211818639759012: &Security{ - SecurityId: 211818639759012, - Name: "DEUS", - Description: "Deutsche X-trackers Russell 1000 Enhanced Beta ETF", - Symbol: "DEUS", - Precision: 5, - Type: Stock, - AlternateId: "233051481"}, - 211818639795516: &Security{ - SecurityId: 211818639795516, - Name: "DBJP", - Description: "Deutsche X-trackers MSCI Japan Hedged Equity ETF", - Symbol: "DBJP", - Precision: 5, - Type: Stock, - AlternateId: "233051507"}, - 211818639796740: &Security{ - SecurityId: 211818639796740, - Name: "DEEF", - Description: "Deutsche X-trackers FTSE Developed ex US Enhanced Beta ETF", - Symbol: "DEEF", - Precision: 5, - Type: Stock, - AlternateId: "233051515"}, - 211818639797964: &Security{ - SecurityId: 211818639797964, - Name: "ASHX", - Description: "Deutsche X-trackers CSI 300 China A-Shares Hedged Equity ETF", - Symbol: "ASHX", - Precision: 5, - Type: Stock, - AlternateId: "233051523"}, - 211818639800772: &Security{ - SecurityId: 211818639800772, - Name: "DBSP", - Description: "Deutsche X-trackers MSCI Spain Hedged Equity ETF", - Symbol: "DBSP", - Precision: 5, - Type: Stock, - AlternateId: "233051549"}, - 211818639801960: &Security{ - SecurityId: 211818639801960, - Name: "DBIT", - Description: "Deutsche X-trackers MSCI Italy Hedged Equity ETF", - Symbol: "DBIT", - Precision: 5, - Type: Stock, - AlternateId: "233051556"}, - 211818639803184: &Security{ - SecurityId: 211818639803184, - Name: "DBSE", - Description: "Deutsche X-trackers MSCI Southern Europe Hedged Equity ETF", - Symbol: "DBSE", - Precision: 5, - Type: Stock, - AlternateId: "233051564"}, - 211818639804408: &Security{ - SecurityId: 211818639804408, - Name: "DBAU", - Description: "Deutsche X-trackers MSCI Australia Hedged Equity ETF", - Symbol: "DBAU", - Precision: 5, - Type: Stock, - AlternateId: "233051572"}, - 211818639805632: &Security{ - SecurityId: 211818639805632, - Name: "DBES", - Description: "Deutsche X-trackers MSCI EAFE Small Cap Hedged Equity ETF", - Symbol: "DBES", - Precision: 5, - Type: Stock, - AlternateId: "233051580"}, - 211818639807216: &Security{ - SecurityId: 211818639807216, - Name: "HDAW", - Description: "Deutsche X-trackers MSCI All World ex US High Dividend Yield Hedged Equity ETF", - Symbol: "HDAW", - Precision: 5, - Type: Stock, - AlternateId: "233051598"}, - 211818639843360: &Security{ - SecurityId: 211818639843360, - Name: "HDEZ", - Description: "Deutsche X-trackers MSCI Eurozone High Dividend Yield Hedged Equity ETF", - Symbol: "HDEZ", - Precision: 5, - Type: Stock, - AlternateId: "233051614"}, - 211818639844584: &Security{ - SecurityId: 211818639844584, - Name: "HDEE", - Description: "Deutsche X-trackers MSCI Emerging Markets High Dividend Yield Hedged Equity ETF", - Symbol: "HDEE", - Precision: 5, - Type: Stock, - AlternateId: "233051622"}, - 211818639845808: &Security{ - SecurityId: 211818639845808, - Name: "HDEF", - Description: "Deutsche X-trackers MSCI EAFE High Dividend Yield Hedged Equity ETF", - Symbol: "HDEF", - Precision: 5, - Type: Stock, - AlternateId: "233051630"}, - 211818639848580: &Security{ - SecurityId: 211818639848580, - Name: "JPNH", - Description: "Deutsche X-trackers Japan JPX-Nikkei 400 Hedged Equity ETF", - Symbol: "JPNH", - Precision: 5, - Type: Stock, - AlternateId: "233051655"}, - 211818639849804: &Security{ - SecurityId: 211818639849804, - Name: "JPN", - Description: "Deutsche X-trackers Japan JPX-Nikkei 400 Equity ETF", - Symbol: "JPN", - Precision: 5, - Type: Stock, - AlternateId: "233051663"}, - 211818639851028: &Security{ - SecurityId: 211818639851028, - Name: "DBIF", - Description: "Deutsche X-trackers S&P Hedged Global Infrastructure ETF", - Symbol: "DBIF", - Precision: 5, - Type: Stock, - AlternateId: "233051671"}, - 211818639852612: &Security{ - SecurityId: 211818639852612, - Name: "DBRE", - Description: "Deutsche X-trackers Dow Jones Hedged International Real Estate ETF", - Symbol: "DBRE", - Precision: 5, - Type: Stock, - AlternateId: "233051689"}, - 211818639853836: &Security{ - SecurityId: 211818639853836, - Name: "DBEZ", - Description: "Deutsche X-trackers MSCI Eurozone Hedged Equity ETF", - Symbol: "DBEZ", - Precision: 5, - Type: Stock, - AlternateId: "233051697"}, - 211818639888756: &Security{ - SecurityId: 211818639888756, - Name: "RVNU", - Description: "Deutsche X-trackers Municipal Infrastructure Revenue Bond ETF", - Symbol: "RVNU", - Precision: 5, - Type: Stock, - AlternateId: "233051705"}, - 211818639889980: &Security{ - SecurityId: 211818639889980, - Name: "EMIH", - Description: "Deutsche X-trackers Emerging Markets Bond - Interest Rate Hedged ETF", - Symbol: "EMIH", - Precision: 5, - Type: Stock, - AlternateId: "233051713"}, - 211818639892788: &Security{ - SecurityId: 211818639892788, - Name: "IGIH", - Description: "Deutsche X-trackers Investment Grade Bond - Interest Rate Hedged ETF", - Symbol: "IGIH", - Precision: 5, - Type: Stock, - AlternateId: "233051739"}, - 211818639894012: &Security{ - SecurityId: 211818639894012, - Name: "HYIH", - Description: "Deutsche X-trackers High Yield Corporate Bond - Interest Rate Hedged ETF", - Symbol: "HYIH", - Precision: 5, - Type: Stock, - AlternateId: "233051747"}, - 211818639895200: &Security{ - SecurityId: 211818639895200, - Name: "ASHS", - Description: "Deutsche X-trackers Harvest CSI 500 China A-Shares Small Cap ETF", - Symbol: "ASHS", - Precision: 5, - Type: Stock, - AlternateId: "233051754"}, - 211818639896424: &Security{ - SecurityId: 211818639896424, - Name: "CN", - Description: "Deutsche X-trackers MSCI All China Equity ETF", - Symbol: "CN", - Precision: 5, - Type: Stock, - AlternateId: "233051762"}, - 211818639900456: &Security{ - SecurityId: 211818639900456, - Name: "DBMX", - Description: "Deutsche X-trackers MSCI Mexico Hedged Equity ETF", - Symbol: "DBMX", - Precision: 5, - Type: Stock, - AlternateId: "233051796"}, - 211818639936600: &Security{ - SecurityId: 211818639936600, - Name: "DBKO", - Description: "Deutsche X-trackers MSCI South Korea Hedged Equity ETF", - Symbol: "DBKO", - Precision: 5, - Type: Stock, - AlternateId: "233051812"}, - 211818639937824: &Security{ - SecurityId: 211818639937824, - Name: "DBAW", - Description: "Deutsche X-trackers MSCI All World ex US Hedged Equity ETF", - Symbol: "DBAW", - Precision: 5, - Type: Stock, - AlternateId: "233051820"}, - 211818639940632: &Security{ - SecurityId: 211818639940632, - Name: "DBAP", - Description: "Deutsche X-trackers MSCI AC Asia Pacific ex Japan Hedged Equity ETF", - Symbol: "DBAP", - Precision: 5, - Type: Stock, - AlternateId: "233051846"}, - 211818639943044: &Security{ - SecurityId: 211818639943044, - Name: "DBUK", - Description: "Deutsche X-trackers MSCI United Kingdom Hedged Equity ETF", - Symbol: "DBUK", - Precision: 5, - Type: Stock, - AlternateId: "233051861"}, - 211818639944628: &Security{ - SecurityId: 211818639944628, - Name: "ASHR", - Description: "Deutsche X-trackers Harvest CSI 300 China A-Shares ETF", - Symbol: "ASHR", - Precision: 5, - Type: Stock, - AlternateId: "233051879"}, - 211818730307940: &Security{ - SecurityId: 211818730307940, - Name: "DBVT", - Description: "DBV Technologies S.A.", - Symbol: "DBVT", - Precision: 5, - Type: Stock, - AlternateId: "23306J101"}, - 211820614837056: &Security{ - SecurityId: 211820614837056, - Name: "DPM", - Description: "DCP Midstream Partners, L.P.", - Symbol: "DPM", - Precision: 5, - Type: Stock, - AlternateId: "23311P100"}, - 211822897435416: &Security{ - SecurityId: 211822897435416, - Name: "DGSE", - Description: "DGSE Companies, Inc.", - Symbol: "DGSE", - Precision: 5, - Type: Stock, - AlternateId: "23323G106"}, - 211822882318872: &Security{ - SecurityId: 211822882318872, - Name: "DNBF", - Description: "DNB Financial Corp.", - Symbol: "DNBF", - Precision: 5, - Type: Stock, - AlternateId: "233237106"}, - 211823033484240: &Security{ - SecurityId: 211823033484240, - Name: "DNP", - Description: "DNP Select Income Fund, Inc.", - Symbol: "DNP", - Precision: 5, - Type: Stock, - AlternateId: "23325P104"}, - 211824943207812: &Security{ - SecurityId: 211824943207812, - Name: "DHI", - Description: "D. R. Horton, Inc.", - Symbol: "DHI", - Precision: 5, - Type: Stock, - AlternateId: "23331A109"}, - 211825005353496: &Security{ - SecurityId: 211825005353496, - Name: "DSPG", - Description: "DSP Group, Inc.", - Symbol: "DSPG", - Precision: 5, - Type: Stock, - AlternateId: "23332B106"}, - 211824996955452: &Security{ - SecurityId: 211824996955452, - Name: "DST", - Description: "DST Systems, Inc.", - Symbol: "DST", - Precision: 5, - Type: Stock, - AlternateId: "233326107"}, - 211825049023548: &Security{ - SecurityId: 211825049023548, - Name: "DTE", - Description: "DTE Energy Co.", - Symbol: "DTE", - Precision: 5, - Type: Stock, - AlternateId: "233331107"}, - 211825139722812: &Security{ - SecurityId: 211825139722812, - Name: "DTF", - Description: "DTF Tax-Free Income, Inc.", - Symbol: "DTF", - Precision: 5, - Type: Stock, - AlternateId: "23334J107"}, - 211825143081864: &Security{ - SecurityId: 211825143081864, - Name: "DSW", - Description: "DSW, Inc.", - Symbol: "DSW", - Precision: 5, - Type: Stock, - AlternateId: "23334L102"}, - 211825272412548: &Security{ - SecurityId: 211825272412548, - Name: "DSKX", - Description: "DS Healthcare Group, Inc.", - Symbol: "DSKX", - Precision: 5, - Type: Stock, - AlternateId: "23336Q109"}, - 211825301105916: &Security{ - SecurityId: 211825301105916, - Name: "DXPE", - Description: "DXP Enterprises, Inc.", - Symbol: "DXPE", - Precision: 5, - Type: Stock, - AlternateId: "233377407"}, - 211837990464720: &Security{ - SecurityId: 211837990464720, - Name: "DJCO", - Description: "Daily Journal Corp.", - Symbol: "DJCO", - Precision: 5, - Type: Stock, - AlternateId: "233912104"}, - 211901364056124: &Security{ - SecurityId: 211901364056124, - Name: "DAKP", - Description: "Dakota Plains Holdings, Inc.", - Symbol: "DAKP", - Precision: 5, - Type: Stock, - AlternateId: "234255107"}, - 211901422842756: &Security{ - SecurityId: 211901422842756, - Name: "DAKT", - Description: "Daktronics, Inc.", - Symbol: "DAKT", - Precision: 5, - Type: Stock, - AlternateId: "234264109"}, - 211992607562292: &Security{ - SecurityId: 211992607562292, - Name: "DAN", - Description: "Dana Holding Corp.", - Symbol: "DAN", - Precision: 5, - Type: Stock, - AlternateId: "235825205"}, - 211992782195592: &Security{ - SecurityId: 211992782195592, - Name: "DHR", - Description: "Danaher Corp.", - Symbol: "DHR", - Precision: 5, - Type: Stock, - AlternateId: "235851102"}, - 212132017369836: &Security{ - SecurityId: 212132017369836, - Name: "DQ", - Description: "Daqo New Energy Corp.", - Symbol: "DQ", - Precision: 5, - Type: Stock, - AlternateId: "23703Q203"}, - 212134519951092: &Security{ - SecurityId: 212134519951092, - Name: "DRI", - Description: "Darden Restaurants, Inc.", - Symbol: "DRI", - Precision: 5, - Type: Stock, - AlternateId: "237194105"}, - 212136518693988: &Security{ - SecurityId: 212136518693988, - Name: "DAR", - Description: "Darling Ingredients, Inc.", - Symbol: "DAR", - Precision: 5, - Type: Stock, - AlternateId: "237266101"}, - 212145397144200: &Security{ - SecurityId: 212145397144200, - Name: "DAIO", - Description: "Data I/O Corp.", - Symbol: "DAIO", - Precision: 5, - Type: Stock, - AlternateId: "237690102"}, - 212151455565984: &Security{ - SecurityId: 212151455565984, - Name: "DWCH", - Description: "Datawatch Corp.", - Symbol: "DWCH", - Precision: 5, - Type: Stock, - AlternateId: "237917208"}, - 212151571412688: &Security{ - SecurityId: 212151571412688, - Name: "DTLK", - Description: "Datalink Corp.", - Symbol: "DTLK", - Precision: 5, - Type: Stock, - AlternateId: "237934104"}, - 212216879921796: &Security{ - SecurityId: 212216879921796, - Name: "PLAY", - Description: "Dave & Buster's Entertainment, Inc.", - Symbol: "PLAY", - Precision: 5, - Type: Stock, - AlternateId: "238337109"}, - 212223581589384: &Security{ - SecurityId: 212223581589384, - Name: "DTEA", - Description: "DAVIDsTEA, Inc.", - Symbol: "DTEA", - Precision: 5, - Type: Stock, - AlternateId: "238661102"}, - 212291214687072: &Security{ - SecurityId: 212291214687072, - Name: "DVA", - Description: "DaVita Healthcare Partners, Inc.", - Symbol: "DVA", - Precision: 5, - Type: Stock, - AlternateId: "23918K108"}, - 212295413726784: &Security{ - SecurityId: 212295413726784, - Name: "DWSN", - Description: "Dawson Geophysical Co.", - Symbol: "DWSN", - Precision: 5, - Type: Stock, - AlternateId: "239360100"}, - 212297602266540: &Security{ - SecurityId: 212297602266540, - Name: "DXR", - Description: "Daxor Corp.", - Symbol: "DXR", - Precision: 5, - Type: Stock, - AlternateId: "239467103"}, - 214568034998508: &Security{ - SecurityId: 214568034998508, - Name: "DF", - Description: "Dean Foods Co.", - Symbol: "DF", - Precision: 5, - Type: Stock, - AlternateId: "242370203"}, - 214650522573372: &Security{ - SecurityId: 214650522573372, - Name: "DECK", - Description: "Deckers Outdoor Corp.", - Symbol: "DECK", - Precision: 5, - Type: Stock, - AlternateId: "243537107"}, - 214720545764340: &Security{ - SecurityId: 214720545764340, - Name: "DE", - Description: "Deere & Co.", - Symbol: "DE", - Precision: 5, - Type: Stock, - AlternateId: "244199105"}, - 214796608854408: &Security{ - SecurityId: 214796608854408, - Name: "DFRG", - Description: "Del Frisco's Restaurant Group, Inc.", - Symbol: "DFRG", - Precision: 5, - Type: Stock, - AlternateId: "245077102"}, - 214805435236560: &Security{ - SecurityId: 214805435236560, - Name: "TACO", - Description: "Del Taco Restaurants, Inc.", - Symbol: "TACO", - Precision: 5, - Type: Stock, - AlternateId: "245496104"}, - 214815833739180: &Security{ - SecurityId: 214815833739180, - Name: "DDF", - Description: "Delaware Investments Dividend and Income Fund, Inc.", - Symbol: "DDF", - Precision: 5, - Type: Stock, - AlternateId: "245915103"}, - 214874900795196: &Security{ - SecurityId: 214874900795196, - Name: "DEX", - Description: "Delaware Enhanced Global Dividend & Income Fund", - Symbol: "DEX", - Precision: 5, - Type: Stock, - AlternateId: "246060107"}, - 214876763489376: &Security{ - SecurityId: 214876763489376, - Name: "VFL", - Description: "Delaware Investments National Municipal Income Fund", - Symbol: "VFL", - Precision: 5, - Type: Stock, - AlternateId: "24610T108"}, - 214876766848428: &Security{ - SecurityId: 214876766848428, - Name: "VMM", - Description: "Delaware Investments Minnesota Municipal Income Fund II, Inc.", - Symbol: "VMM", - Precision: 5, - Type: Stock, - AlternateId: "24610V103"}, - 214876716460164: &Security{ - SecurityId: 214876716460164, - Name: "VCF", - Description: "Delaware Investments Colorado Insured Municipal Income Fund", - Symbol: "VCF", - Precision: 5, - Type: Stock, - AlternateId: "246101109"}, - 214887889265580: &Security{ - SecurityId: 214887889265580, - Name: "DKL", - Description: "Delek Logistics Partners L.P.", - Symbol: "DKL", - Precision: 5, - Type: Stock, - AlternateId: "24664T103"}, - 214887852313956: &Security{ - SecurityId: 214887852313956, - Name: "DK", - Description: "Delek US Holdings, Inc.", - Symbol: "DK", - Precision: 5, - Type: Stock, - AlternateId: "246647101"}, - 214959797265672: &Security{ - SecurityId: 214959797265672, - Name: "DAL", - Description: "Delta Air Lines, Inc.", - Symbol: "DAL", - Precision: 5, - Type: Stock, - AlternateId: "247361702"}, - 214959808743084: &Security{ - SecurityId: 214959808743084, - Name: "DLA", - Description: "Delta Apparel, Inc.", - Symbol: "DLA", - Precision: 5, - Type: Stock, - AlternateId: "247368103"}, - 214968394940184: &Security{ - SecurityId: 214968394940184, - Name: "DGAS", - Description: "Delta Natural Gas Co., Inc.", - Symbol: "DGAS", - Precision: 5, - Type: Stock, - AlternateId: "247748106"}, - 214970618751552: &Security{ - SecurityId: 214970618751552, - Name: "DEL", - Description: "Deltic Timber Corp.", - Symbol: "DEL", - Precision: 5, - Type: Stock, - AlternateId: "247850100"}, - 214972563793824: &Security{ - SecurityId: 214972563793824, - Name: "DNR", - Description: "Denbury Resources, Inc.", - Symbol: "DNR", - Precision: 5, - Type: Stock, - AlternateId: "247916208"}, - 215031341908836: &Security{ - SecurityId: 215031341908836, - Name: "DLX", - Description: "Deluxe Corp.", - Symbol: "DLX", - Precision: 5, - Type: Stock, - AlternateId: "248019101"}, - 215031425936544: &Security{ - SecurityId: 215031425936544, - Name: "DMD", - Description: "Demand Media, Inc.", - Symbol: "DMD", - Precision: 5, - Type: Stock, - AlternateId: "24802N208"}, - 215031444365556: &Security{ - SecurityId: 215031444365556, - Name: "DWRE", - Description: "Demandware, Inc.", - Symbol: "DWRE", - Precision: 5, - Type: Stock, - AlternateId: "24802Y105"}, - 215044913206224: &Security{ - SecurityId: 215044913206224, - Name: "DENN", - Description: "Denny's Corp.", - Symbol: "DENN", - Precision: 5, - Type: Stock, - AlternateId: "24869P104"}, - 215109811888956: &Security{ - SecurityId: 215109811888956, - Name: "XRAY", - Description: "DENTSPLY Intl, Inc.", - Symbol: "XRAY", - Precision: 5, - Type: Stock, - AlternateId: "249030107"}, - 215127177625224: &Security{ - SecurityId: 215127177625224, - Name: "DSCI", - Description: "Derma Sciences, Inc.", - Symbol: "DSCI", - Precision: 5, - Type: Stock, - AlternateId: "249827502"}, - 215127261419472: &Security{ - SecurityId: 215127261419472, - Name: "DERM", - Description: "Dermira, Inc.", - Symbol: "DERM", - Precision: 5, - Type: Stock, - AlternateId: "24983L104"}, - 215129231609184: &Security{ - SecurityId: 215129231609184, - Name: "DSGX", - Description: "Descartes Systems Group, Inc. (The)", - Symbol: "DSGX", - Precision: 5, - Type: Stock, - AlternateId: "249906108"}, - 215129234968272: &Security{ - SecurityId: 215129234968272, - Name: "DEPO", - Description: "DepoMed, Inc.", - Symbol: "DEPO", - Precision: 5, - Type: Stock, - AlternateId: "249908104"}, - 217238720129892: &Security{ - SecurityId: 217238720129892, - Name: "DSWL", - Description: "Deswell Industries, Inc.", - Symbol: "DSWL", - Precision: 5, - Type: Stock, - AlternateId: "250639101"}, - 217238847780672: &Security{ - SecurityId: 217238847780672, - Name: "DEST", - Description: "Destination Maternity Corp.", - Symbol: "DEST", - Precision: 5, - Type: Stock, - AlternateId: "25065D100"}, - 217238859538128: &Security{ - SecurityId: 217238859538128, - Name: "DXLG", - Description: "Destination XL Group, Inc.", - Symbol: "DXLG", - Precision: 5, - Type: Stock, - AlternateId: "25065K104"}, - 217314936305136: &Security{ - SecurityId: 217314936305136, - Name: "DOD", - Description: "Deutsche Bank ELEMENTS Dog of the Dow DJ High Yield Select 10 TR Index 11/14/22", - Symbol: "DOD", - Precision: 5, - Type: Stock, - AlternateId: "25153Q658"}, - 217314936345312: &Security{ - SecurityId: 217314936345312, - Name: "WMW", - Description: "Deutsche Bank ELEMENTS Morningstar Wide Moat Focus TR Index due 10/24/2022", - Symbol: "WMW", - Precision: 5, - Type: Stock, - AlternateId: "25153Q708"}, - 217314981561492: &Security{ - SecurityId: 217314981561492, - Name: "DPU", - Description: "DB Commodity Long ETN due 4/1/2038", - Symbol: "DPU", - Precision: 5, - Type: Stock, - AlternateId: "25154H459"}, - 217314981562716: &Security{ - SecurityId: 217314981562716, - Name: "DDP", - Description: "DB Commodity Short ETN due 4/1/2038", - Symbol: "DDP", - Precision: 5, - Type: Stock, - AlternateId: "25154H467"}, - 217314981563940: &Security{ - SecurityId: 217314981563940, - Name: "DYY", - Description: "DB Commodity Double Long ETN due 4/1/2038", - Symbol: "DYY", - Precision: 5, - Type: Stock, - AlternateId: "25154H475"}, - 217314981565164: &Security{ - SecurityId: 217314981565164, - Name: "DEE", - Description: "DB Commodity Double Short ETN due 4/1/2038", - Symbol: "DEE", - Precision: 5, - Type: Stock, - AlternateId: "25154H483"}, - 217314981605340: &Security{ - SecurityId: 217314981605340, - Name: "AGF", - Description: "DB Agriculture Long ETN due 4/1/2038", - Symbol: "AGF", - Precision: 5, - Type: Stock, - AlternateId: "25154H533"}, - 217314981606564: &Security{ - SecurityId: 217314981606564, - Name: "ADZ", - Description: "DB Agriculture Short ETN due 4/1/2038", - Symbol: "ADZ", - Precision: 5, - Type: Stock, - AlternateId: "25154H541"}, - 217314981608112: &Security{ - SecurityId: 217314981608112, - Name: "DAG", - Description: "DB Agriculture Double Long ETN due 4/1/2038", - Symbol: "DAG", - Precision: 5, - Type: Stock, - AlternateId: "25154H558"}, - 217314981609336: &Security{ - SecurityId: 217314981609336, - Name: "AGA", - Description: "DB Agriculture Double Short ETN due 4/1/2038", - Symbol: "AGA", - Precision: 5, - Type: Stock, - AlternateId: "25154H566"}, - 217314981698580: &Security{ - SecurityId: 217314981698580, - Name: "DGZ", - Description: "DB Gold Short ETN due 2/15/2038", - Symbol: "DGZ", - Precision: 5, - Type: Stock, - AlternateId: "25154H731"}, - 217314981700164: &Security{ - SecurityId: 217314981700164, - Name: "DGP", - Description: "DB Gold Double Long ETN due 2/15/2038", - Symbol: "DGP", - Precision: 5, - Type: Stock, - AlternateId: "25154H749"}, - 217314981701352: &Security{ - SecurityId: 217314981701352, - Name: "DZZ", - Description: "DB Gold Double Short ETN due 2/15/2038", - Symbol: "DZZ", - Precision: 5, - Type: Stock, - AlternateId: "25154H756"}, - 217314986780484: &Security{ - SecurityId: 217314986780484, - Name: "DTO", - Description: "DB Crude Oil Double Short ETN due 6/1/2038", - Symbol: "DTO", - Precision: 5, - Type: Stock, - AlternateId: "25154K809"}, - 217314986782932: &Security{ - SecurityId: 217314986782932, - Name: "BDG", - Description: "DB Base Metals Long ETN due 6/1/2038", - Symbol: "BDG", - Precision: 5, - Type: Stock, - AlternateId: "25154K825"}, - 217314986784156: &Security{ - SecurityId: 217314986784156, - Name: "BOS", - Description: "DB Base Metals Short ETN due 6/1/2038", - Symbol: "BOS", - Precision: 5, - Type: Stock, - AlternateId: "25154K833"}, - 217314986785380: &Security{ - SecurityId: 217314986785380, - Name: "BDD", - Description: "DB Base Metals Double Long ETN due 6/1/2038", - Symbol: "BDD", - Precision: 5, - Type: Stock, - AlternateId: "25154K841"}, - 217314986786928: &Security{ - SecurityId: 217314986786928, - Name: "BOM", - Description: "DB Base Metals Double Short ETN due 6/1/2038", - Symbol: "BOM", - Precision: 5, - Type: Stock, - AlternateId: "25154K858"}, - 217314986788152: &Security{ - SecurityId: 217314986788152, - Name: "OLO", - Description: "DB Crude Oil Long ETN due 6/1/2038", - Symbol: "OLO", - Precision: 5, - Type: Stock, - AlternateId: "25154K866"}, - 217314986789376: &Security{ - SecurityId: 217314986789376, - Name: "SZO", - Description: "DB Crude Oil Short ETN due 6/1/2038", - Symbol: "SZO", - Precision: 5, - Type: Stock, - AlternateId: "25154K874"}, - 217314991681704: &Security{ - SecurityId: 217314991681704, - Name: "LBND", - Description: "DB 3x Long 25+ Year Treasury Bond ETN due 5/31/2040", - Symbol: "LBND", - Precision: 5, - Type: Stock, - AlternateId: "25154N522"}, - 217314991682928: &Security{ - SecurityId: 217314991682928, - Name: "SBND", - Description: "DB 3x Short 25+ Year Treasury Bond ETN due 5/31/2040", - Symbol: "SBND", - Precision: 5, - Type: Stock, - AlternateId: "25154N530"}, - 217314994860720: &Security{ - SecurityId: 217314994860720, - Name: "JGBS", - Description: "DB Inverse Japanese Govt Bond Futures ETN due 11/30/2021", - Symbol: "JGBS", - Precision: 5, - Type: Stock, - AlternateId: "25154P170"}, - 217314994862304: &Security{ - SecurityId: 217314994862304, - Name: "JGBD", - Description: "DB 3x Inverse Japanese Govt Bond Futures ETN due 11/30/2021", - Symbol: "JGBD", - Precision: 5, - Type: Stock, - AlternateId: "25154P188"}, - 217315006655940: &Security{ - SecurityId: 217315006655940, - Name: "JGBT", - Description: "DB 3x Japanese Govt Bond Futures ETN due 3/31/2021", - Symbol: "JGBT", - Precision: 5, - Type: Stock, - AlternateId: "25154W209"}, - 217315006702560: &Security{ - SecurityId: 217315006702560, - Name: "JGBL", - Description: "DB Japanese Govt Bond Futures ETN due 3/31/2021", - Symbol: "JGBL", - Precision: 5, - Type: Stock, - AlternateId: "25154W308"}, - 217315006749180: &Security{ - SecurityId: 217315006749180, - Name: "BUNT", - Description: "DB 3x German Bund Futures ETN due 3/31/2021", - Symbol: "BUNT", - Precision: 5, - Type: Stock, - AlternateId: "25154W407"}, - 217315006795800: &Security{ - SecurityId: 217315006795800, - Name: "BUNL", - Description: "DB German Bund Futures ETN due 3/31/2021", - Symbol: "BUNL", - Precision: 5, - Type: Stock, - AlternateId: "25154W506"}, - 217315048657788: &Security{ - SecurityId: 217315048657788, - Name: "FIEG", - Description: "FI Enhanced Global High Yield Exchange Traded Notes", - Symbol: "FIEG", - Precision: 5, - Type: Stock, - AlternateId: "25155L293"}, - 217315058677056: &Security{ - SecurityId: 217315058677056, - Name: "KHI", - Description: "Deutsche High Income Trust", - Symbol: "KHI", - Precision: 5, - Type: Stock, - AlternateId: "25155R100"}, - 217315246794336: &Security{ - SecurityId: 217315246794336, - Name: "LBF", - Description: "Deutsche Global High Income Fund, Inc.", - Symbol: "LBF", - Precision: 5, - Type: Stock, - AlternateId: "25158V108"}, - 217315251832968: &Security{ - SecurityId: 217315251832968, - Name: "DHG", - Description: "Deutsche High Income Opportunities Fund, Inc.", - Symbol: "DHG", - Precision: 5, - Type: Stock, - AlternateId: "25158Y102"}, - 217315280386440: &Security{ - SecurityId: 217315280386440, - Name: "KSM", - Description: "Deutsche Strategic Municipal Income Trust", - Symbol: "KSM", - Precision: 5, - Type: Stock, - AlternateId: "25159F102"}, - 217316907934488: &Security{ - SecurityId: 217316907934488, - Name: "KTF", - Description: "Deutsche Municipal Income Trust", - Symbol: "KTF", - Precision: 5, - Type: Stock, - AlternateId: "25160C106"}, - 217316911293576: &Security{ - SecurityId: 217316911293576, - Name: "KMM", - Description: "Deutsche Multi-Market Income Trust", - Symbol: "KMM", - Precision: 5, - Type: Stock, - AlternateId: "25160E102"}, - 217316912973444: &Security{ - SecurityId: 217316912973444, - Name: "KST", - Description: "Deutsche Strategic Income Trust", - Symbol: "KST", - Precision: 5, - Type: Stock, - AlternateId: "25160F109"}, - 217319645708460: &Security{ - SecurityId: 217319645708460, - Name: "DVN", - Description: "Devon Energy Corp.", - Symbol: "DVN", - Precision: 5, - Type: Stock, - AlternateId: "25179M103"}, - 217321790578092: &Security{ - SecurityId: 217321790578092, - Name: "DV", - Description: "DeVry Education Group, Inc.", - Symbol: "DV", - Precision: 5, - Type: Stock, - AlternateId: "251893103"}, - 217384566226236: &Security{ - SecurityId: 217384566226236, - Name: "DXMM", - Description: "Dex Media, Inc.", - Symbol: "DXMM", - Precision: 5, - Type: Stock, - AlternateId: "25213A107"}, - 217384551109692: &Security{ - SecurityId: 217384551109692, - Name: "DXCM", - Description: "DexCom, Inc.", - Symbol: "DXCM", - Precision: 5, - Type: Stock, - AlternateId: "252131107"}, - 217390908689568: &Security{ - SecurityId: 217390908689568, - Name: "DHXM", - Description: "DHX Media Ltd.", - Symbol: "DHXM", - Precision: 5, - Type: Stock, - AlternateId: "252406608"}, - 217395256982004: &Security{ - SecurityId: 217395256982004, - Name: "DMND", - Description: "Diamond Foods, Inc.", - Symbol: "DMND", - Precision: 5, - Type: Stock, - AlternateId: "252603105"}, - 217395539204220: &Security{ - SecurityId: 217395539204220, - Name: "DHIL", - Description: "Diamond Hill Investment Group, Inc.", - Symbol: "DHIL", - Precision: 5, - Type: Stock, - AlternateId: "25264R207"}, - 217397509346952: &Security{ - SecurityId: 217397509346952, - Name: "DO", - Description: "Diamond Offshore Drilling, Inc.", - Symbol: "DO", - Precision: 5, - Type: Stock, - AlternateId: "25271C102"}, - 217397598366672: &Security{ - SecurityId: 217397598366672, - Name: "DRII", - Description: "Diamond Resorts International, Inc.", - Symbol: "DRII", - Precision: 5, - Type: Stock, - AlternateId: "25272T104"}, - 217397967882372: &Security{ - SecurityId: 217397967882372, - Name: "FANG", - Description: "Diamondback Energy, Inc.", - Symbol: "FANG", - Precision: 5, - Type: Stock, - AlternateId: "25278X109"}, - 217397919266532: &Security{ - SecurityId: 217397919266532, - Name: "DRH", - Description: "DiamondRock Hospitality Co.", - Symbol: "DRH", - Precision: 5, - Type: Stock, - AlternateId: "252784301"}, - 217460738491488: &Security{ - SecurityId: 217460738491488, - Name: "DRNA", - Description: "Dicerna Pharmaceuticals, Inc.", - Symbol: "DRNA", - Precision: 5, - Type: Stock, - AlternateId: "253031108"}, - 217467634994568: &Security{ - SecurityId: 217467634994568, - Name: "DKS", - Description: "Dick's Sporting Goods, Inc.", - Symbol: "DKS", - Precision: 5, - Type: Stock, - AlternateId: "253393102"}, - 217473920117676: &Security{ - SecurityId: 217473920117676, - Name: "DBD", - Description: "Diebold, Inc.", - Symbol: "DBD", - Precision: 5, - Type: Stock, - AlternateId: "253651103"}, - 217476350521992: &Security{ - SecurityId: 217476350521992, - Name: "DGII", - Description: "Digi Intl, Inc.", - Symbol: "DGII", - Precision: 5, - Type: Stock, - AlternateId: "253798102"}, - 217478048613732: &Security{ - SecurityId: 217478048613732, - Name: "DMRC", - Description: "Digimarc Corp.", - Symbol: "DMRC", - Precision: 5, - Type: Stock, - AlternateId: "25381B101"}, - 217478102361732: &Security{ - SecurityId: 217478102361732, - Name: "DRAD", - Description: "Digirad Corp.", - Symbol: "DRAD", - Precision: 5, - Type: Stock, - AlternateId: "253827109"}, - 217478335828248: &Security{ - SecurityId: 217478335828248, - Name: "DPW", - Description: "Digital Power Corp.", - Symbol: "DPW", - Precision: 5, - Type: Stock, - AlternateId: "253862106"}, - 217478345905836: &Security{ - SecurityId: 217478345905836, - Name: "DLR", - Description: "Digital Realty Trust, Inc.", - Symbol: "DLR", - Precision: 5, - Type: Stock, - AlternateId: "253868103"}, - 217478346240204: &Security{ - SecurityId: 217478346240204, - Name: "DLR-I", - Description: "Digital Realty Trust, 6.35% Series I Cumulative Redeemable Preferred Stock", - Symbol: "DLR-I", - Precision: 5, - Type: Stock, - AlternateId: "253868863"}, - 217478551154796: &Security{ - SecurityId: 217478551154796, - Name: "DGI", - Description: "DigitalGlobe, Inc.", - Symbol: "DGI", - Precision: 5, - Type: Stock, - AlternateId: "25389M877"}, - 217480270745952: &Security{ - SecurityId: 217480270745952, - Name: "DCOM", - Description: "Dime Community Bancshares, Inc.", - Symbol: "DCOM", - Precision: 5, - Type: Stock, - AlternateId: "253922108"}, - 217538973324936: &Security{ - SecurityId: 217538973324936, - Name: "APPS", - Description: "Digital Turbine, Inc.", - Symbol: "APPS", - Precision: 5, - Type: Stock, - AlternateId: "25400W102"}, - 217539294131556: &Security{ - SecurityId: 217539294131556, - Name: "DDS", - Description: "Dillard's, Inc.", - Symbol: "DDS", - Precision: 5, - Type: Stock, - AlternateId: "254067101"}, - 217545683390964: &Security{ - SecurityId: 217545683390964, - Name: "DMTX", - Description: "Dimension Therapeutics, Inc.", - Symbol: "DMTX", - Precision: 5, - Type: Stock, - AlternateId: "25433V105"}, - 217547752677912: &Security{ - SecurityId: 217547752677912, - Name: "DIN", - Description: "DineEquity, Inc.", - Symbol: "DIN", - Precision: 5, - Type: Stock, - AlternateId: "254423106"}, - 217550050392420: &Security{ - SecurityId: 217550050392420, - Name: "DIOD", - Description: "Diodes, Inc.", - Symbol: "DIOD", - Precision: 5, - Type: Stock, - AlternateId: "254543101"}, - 217550198198736: &Security{ - SecurityId: 217550198198736, - Name: "DPRX", - Description: "Dipexium Pharmaceuticals, Inc.", - Symbol: "DPRX", - Precision: 5, - Type: Stock, - AlternateId: "25456J104"}, - 217550199878244: &Security{ - SecurityId: 217550199878244, - Name: "DPLO", - Description: "Diplomat Pharmacy, Inc.", - Symbol: "DPLO", - Precision: 5, - Type: Stock, - AlternateId: "25456K101"}, - 217550401432200: &Security{ - SecurityId: 217550401432200, - Name: "TECL", - Description: "Direxion Technology Bull 3X Shares", - Symbol: "TECL", - Precision: 5, - Type: Stock, - AlternateId: "25459W102"}, - 217550401482852: &Security{ - SecurityId: 217550401482852, - Name: "DUST", - Description: "Direxion Daily Gold Miners Bear 3X Shares", - Symbol: "DUST", - Precision: 5, - Type: Stock, - AlternateId: "25459W235"}, - 217550401573644: &Security{ - SecurityId: 217550401573644, - Name: "RETL", - Description: "Direxion Daily Retail Bull 3X Shares", - Symbol: "RETL", - Precision: 5, - Type: Stock, - AlternateId: "25459W417"}, - 217550401578864: &Security{ - SecurityId: 217550401578864, - Name: "SOXL", - Description: "Direxion Daily Semiconductor Bull 3X Shares", - Symbol: "SOXL", - Precision: 5, - Type: Stock, - AlternateId: "25459W458"}, - 217550401623936: &Security{ - SecurityId: 217550401623936, - Name: "TMF", - Description: "Direxion Daily 20 Year Plus Treasury Bull 3x Shares", - Symbol: "TMF", - Precision: 5, - Type: Stock, - AlternateId: "25459W540"}, - 217550401625484: &Security{ - SecurityId: 217550401625484, - Name: "TYO", - Description: "Direxion Daily 7-10 Year Treasury Bear 3x Shares", - Symbol: "TYO", - Precision: 5, - Type: Stock, - AlternateId: "25459W557"}, - 217550401626708: &Security{ - SecurityId: 217550401626708, - Name: "TYD", - Description: "Direxion Daily 7-10 Year Treasury Bull 3x Shares", - Symbol: "TYD", - Precision: 5, - Type: Stock, - AlternateId: "25459W565"}, - 217550401715952: &Security{ - SecurityId: 217550401715952, - Name: "MIDU", - Description: "Direxion Daily Mid Cap Bull 3X Shares", - Symbol: "MIDU", - Precision: 5, - Type: Stock, - AlternateId: "25459W730"}, - 217550401718724: &Security{ - SecurityId: 217550401718724, - Name: "DRN", - Description: "Direxion Daily Real Estate Bull 3X Shares", - Symbol: "DRN", - Precision: 5, - Type: Stock, - AlternateId: "25459W755"}, - 217550401721172: &Security{ - SecurityId: 217550401721172, - Name: "YINN", - Description: "Direxion Daily FTSE China Bull 3X Shares", - Symbol: "YINN", - Precision: 5, - Type: Stock, - AlternateId: "25459W771"}, - 217550401722756: &Security{ - SecurityId: 217550401722756, - Name: "DZK", - Description: "Direxion Developed Markets Bull 3X Shares", - Symbol: "DZK", - Precision: 5, - Type: Stock, - AlternateId: "25459W789"}, - 217550401764156: &Security{ - SecurityId: 217550401764156, - Name: "TNA", - Description: "Direxion Small Cap Bull 3X Shares", - Symbol: "TNA", - Precision: 5, - Type: Stock, - AlternateId: "25459W847"}, - 217550401766568: &Security{ - SecurityId: 217550401766568, - Name: "SPXL", - Description: "Direxion Daily S&P 500 Bull 3X Shares", - Symbol: "SPXL", - Precision: 5, - Type: Stock, - AlternateId: "25459W862"}, - 217550401769376: &Security{ - SecurityId: 217550401769376, - Name: "ERX", - Description: "Direxion Energy Bull 3X Shares", - Symbol: "ERX", - Precision: 5, - Type: Stock, - AlternateId: "25459W888"}, - 217550404791648: &Security{ - SecurityId: 217550404791648, - Name: "TYNS", - Description: "Direxion Daily 7-10 Year Treasury Bear 1X Shares", - Symbol: "TYNS", - Precision: 5, - Type: Stock, - AlternateId: "25459Y108"}, - 217550404792872: &Security{ - SecurityId: 217550404792872, - Name: "CHAD", - Description: "Direxion Daily CSI 300 China A Shares Bear 1X Shares", - Symbol: "CHAD", - Precision: 5, - Type: Stock, - AlternateId: "25459Y116"}, - 217550404794096: &Security{ - SecurityId: 217550404794096, - Name: "WDRW", - Description: "Direxion Daily Regional Banks Bear 3X Shares", - Symbol: "WDRW", - Precision: 5, - Type: Stock, - AlternateId: "25459Y124"}, - 217550404795320: &Security{ - SecurityId: 217550404795320, - Name: "DPST", - Description: "Direxion Daily Regional Banks Bull 3X Shares", - Symbol: "DPST", - Precision: 5, - Type: Stock, - AlternateId: "25459Y132"}, - 217550404838268: &Security{ - SecurityId: 217550404838268, - Name: "QQQE", - Description: "Direxion NASDAQ-100 Equal Weighted Index Share ETF", - Symbol: "QQQE", - Precision: 5, - Type: Stock, - AlternateId: "25459Y207"}, - 217550404845936: &Security{ - SecurityId: 217550404845936, - Name: "IBLN", - Description: "Direxion iBillionaire Index ETF", - Symbol: "IBLN", - Precision: 5, - Type: Stock, - AlternateId: "25459Y264"}, - 217550404848384: &Security{ - SecurityId: 217550404848384, - Name: "EURL", - Description: "Direxion Daily FTSE Europe Bull 3x Shares", - Symbol: "EURL", - Precision: 5, - Type: Stock, - AlternateId: "25459Y280"}, - 217550404849968: &Security{ - SecurityId: 217550404849968, - Name: "ZMLP", - Description: "Direxion Zacks MLP High Income Shares", - Symbol: "ZMLP", - Precision: 5, - Type: Stock, - AlternateId: "25459Y298"}, - 217550404884888: &Security{ - SecurityId: 217550404884888, - Name: "SAGG", - Description: "Direxion Daily Total Bond Market Bear 1X Shares", - Symbol: "SAGG", - Precision: 5, - Type: Stock, - AlternateId: "25459Y306"}, - 217550404931508: &Security{ - SecurityId: 217550404931508, - Name: "TYBS", - Description: "Direxion Daily 20+ Year Treasury Bear 1X Shares", - Symbol: "TYBS", - Precision: 5, - Type: Stock, - AlternateId: "25459Y405"}, - 217550404932732: &Security{ - SecurityId: 217550404932732, - Name: "JPNL", - Description: "Direxion Daily Japan Bull 3X Shares", - Symbol: "JPNL", - Precision: 5, - Type: Stock, - AlternateId: "25459Y413"}, - 217550404937952: &Security{ - SecurityId: 217550404937952, - Name: "ERY", - Description: "Direxion Energy Bear 3X Shares", - Symbol: "ERY", - Precision: 5, - Type: Stock, - AlternateId: "25459Y454"}, - 217550404940400: &Security{ - SecurityId: 217550404940400, - Name: "EDZ", - Description: "Direxion Emerging Markets Bear 3X Shares", - Symbol: "EDZ", - Precision: 5, - Type: Stock, - AlternateId: "25459Y470"}, - 217550404980576: &Security{ - SecurityId: 217550404980576, - Name: "KORU", - Description: "Direxion Daily South Korea Bull 3X Shares", - Symbol: "KORU", - Precision: 5, - Type: Stock, - AlternateId: "25459Y520"}, - 217550405074176: &Security{ - SecurityId: 217550405074176, - Name: "VSPY", - Description: "Direxion S&P 500 Volatility Response Shares", - Symbol: "VSPY", - Precision: 5, - Type: Stock, - AlternateId: "25459Y728"}, - 217550405079396: &Security{ - SecurityId: 217550405079396, - Name: "KNOW", - Description: "Direxion All Cap Insider Sentiment Shares", - Symbol: "KNOW", - Precision: 5, - Type: Stock, - AlternateId: "25459Y769"}, - 217550405119572: &Security{ - SecurityId: 217550405119572, - Name: "TOTS", - Description: "Direxion Daily Total Market Bear 1X Shares", - Symbol: "TOTS", - Precision: 5, - Type: Stock, - AlternateId: "25459Y819"}, - 217550405127240: &Security{ - SecurityId: 217550405127240, - Name: "CURE", - Description: "Direxion Daily Healthcare Bull 3X Shares", - Symbol: "CURE", - Precision: 5, - Type: Stock, - AlternateId: "25459Y876"}, - 217552356645228: &Security{ - SecurityId: 217552356645228, - Name: "DSCO", - Description: "Discovery Laboratories, Inc.", - Symbol: "DSCO", - Precision: 5, - Type: Stock, - AlternateId: "254668403"}, - 217552475758104: &Security{ - SecurityId: 217552475758104, - Name: "DIS", - Description: "Walt Disney Co. (The)", - Symbol: "DIS", - Precision: 5, - Type: Stock, - AlternateId: "254687106"}, - 217554182247888: &Security{ - SecurityId: 217554182247888, - Name: "DISCA", - Description: "Discovery Communications, Inc. Cl A", - Symbol: "DISCA", - Precision: 5, - Type: Stock, - AlternateId: "25470F104"}, - 217554182294508: &Security{ - SecurityId: 217554182294508, - Name: "DISCB", - Description: "Discovery Communications, Inc. Cl B", - Symbol: "DISCB", - Precision: 5, - Type: Stock, - AlternateId: "25470F203"}, - 217554182341128: &Security{ - SecurityId: 217554182341128, - Name: "DISCK", - Description: "Discovery Communications, Inc. Cl C", - Symbol: "DISCK", - Precision: 5, - Type: Stock, - AlternateId: "25470F302"}, - 217554194005380: &Security{ - SecurityId: 217554194005380, - Name: "DISH", - Description: "DISH Network Corporation", - Symbol: "DISH", - Precision: 5, - Type: Stock, - AlternateId: "25470M109"}, - 217554172170336: &Security{ - SecurityId: 217554172170336, - Name: "DFS", - Description: "Discover Financial Services", - Symbol: "DFS", - Precision: 5, - Type: Stock, - AlternateId: "254709108"}, - 217558544210820: &Security{ - SecurityId: 217558544210820, - Name: "LLSP", - Description: "Direxion Daily S&P 500 Bull 1.25X Shares", - Symbol: "LLSP", - Precision: 5, - Type: Stock, - AlternateId: "25490K109"}, - 217558544257440: &Security{ - SecurityId: 217558544257440, - Name: "LLSC", - Description: "Direxion Daily Small Cap 1.25X Shares", - Symbol: "LLSC", - Precision: 5, - Type: Stock, - AlternateId: "25490K208"}, - 217558544304060: &Security{ - SecurityId: 217558544304060, - Name: "LLDM", - Description: "Direxion Daily FTSE Developed Markets Bull 1.25X Shares", - Symbol: "LLDM", - Precision: 5, - Type: Stock, - AlternateId: "25490K307"}, - 217558544311728: &Security{ - SecurityId: 217558544311728, - Name: "GASX", - Description: "Direxion Daily Natural Gas Related Bear 3X Shares", - Symbol: "GASX", - Precision: 5, - Type: Stock, - AlternateId: "25490K364"}, - 217558544312952: &Security{ - SecurityId: 217558544312952, - Name: "SICK", - Description: "Direxion Daily Healthcare Bear 3X Shares", - Symbol: "SICK", - Precision: 5, - Type: Stock, - AlternateId: "25490K372"}, - 217558544314176: &Security{ - SecurityId: 217558544314176, - Name: "LABS", - Description: "Direxion Daily S&P Biotech Bear 1X Shares", - Symbol: "LABS", - Precision: 5, - Type: Stock, - AlternateId: "25490K380"}, - 217558544350680: &Security{ - SecurityId: 217558544350680, - Name: "LLEM", - Description: "Direxion Daily FTSE Emerging Markets Bull 1.25X Shares", - Symbol: "LLEM", - Precision: 5, - Type: Stock, - AlternateId: "25490K406"}, - 217558544359572: &Security{ - SecurityId: 217558544359572, - Name: "PILS", - Description: "Direxion Daily Pharmaceutical & Medical Bear 2X Shares", - Symbol: "PILS", - Precision: 5, - Type: Stock, - AlternateId: "25490K471"}, - 217558544361156: &Security{ - SecurityId: 217558544361156, - Name: "PILL", - Description: "Direxion Daily Pharmaceutical & Medical Bull 2X Shares", - Symbol: "PILL", - Precision: 5, - Type: Stock, - AlternateId: "25490K489"}, - 217558544362380: &Security{ - SecurityId: 217558544362380, - Name: "HAKD", - Description: "Direxion Daily Cyber Security Bear 2X Shares", - Symbol: "HAKD", - Precision: 5, - Type: Stock, - AlternateId: "25490K497"}, - 217558544397300: &Security{ - SecurityId: 217558544397300, - Name: "VLML", - Description: "Direxion Value Line Mid- and Large-Cap High Dividend ETF", - Symbol: "VLML", - Precision: 5, - Type: Stock, - AlternateId: "25490K505"}, - 217558544398524: &Security{ - SecurityId: 217558544398524, - Name: "HAKK", - Description: "Direxion Daily Cyber Security Bull 2X Shares", - Symbol: "HAKK", - Precision: 5, - Type: Stock, - AlternateId: "25490K513"}, - 217558544399748: &Security{ - SecurityId: 217558544399748, - Name: "TZA", - Description: "Direxion Small Cap Bear 3X Shares", - Symbol: "TZA", - Precision: 5, - Type: Stock, - AlternateId: "25490K521"}, - 217558544401332: &Security{ - SecurityId: 217558544401332, - Name: "FAZ", - Description: "Direxion Financial Bear 3X Shares", - Symbol: "FAZ", - Precision: 5, - Type: Stock, - AlternateId: "25490K539"}, - 217558544402556: &Security{ - SecurityId: 217558544402556, - Name: "JDST", - Description: "Direxion Daily Junior Gold Miners Index Bear 3X Shares", - Symbol: "JDST", - Precision: 5, - Type: Stock, - AlternateId: "25490K547"}, - 217558544403744: &Security{ - SecurityId: 217558544403744, - Name: "JNUG", - Description: "Direxion Daily Junior Gold Miners Index Bull 3X Shares", - Symbol: "JNUG", - Precision: 5, - Type: Stock, - AlternateId: "25490K554"}, - 217558544404968: &Security{ - SecurityId: 217558544404968, - Name: "GASL", - Description: "Direxion Daily Natural Gas Related Bull 3X Shares", - Symbol: "GASL", - Precision: 5, - Type: Stock, - AlternateId: "25490K562"}, - 217558544406192: &Security{ - SecurityId: 217558544406192, - Name: "NUGT", - Description: "Direxion Daily Gold Miners Bull 3X Shares", - Symbol: "NUGT", - Precision: 5, - Type: Stock, - AlternateId: "25490K570"}, - 217558544407776: &Security{ - SecurityId: 217558544407776, - Name: "CLAW", - Description: "Direxion Daily Homebuilders & Supplies Bear 3X Shares", - Symbol: "CLAW", - Precision: 5, - Type: Stock, - AlternateId: "25490K588"}, - 217558544409000: &Security{ - SecurityId: 217558544409000, - Name: "NAIL", - Description: "Direxion Daily Homebuilders & Supplies Bull 3X Shares", - Symbol: "NAIL", - Precision: 5, - Type: Stock, - AlternateId: "25490K596"}, - 217558544443920: &Security{ - SecurityId: 217558544443920, - Name: "VLSM", - Description: "Direxion Value Line Small- and Mid-Cap High Dividend ETF", - Symbol: "VLSM", - Precision: 5, - Type: Stock, - AlternateId: "25490K604"}, - 217558544455620: &Security{ - SecurityId: 217558544455620, - Name: "HEGJ", - Description: "Direxion Daily MSCI Japan Currency Hedged Bull 2X Shares", - Symbol: "HEGJ", - Precision: 5, - Type: Stock, - AlternateId: "25490K695"}, - 217558544490540: &Security{ - SecurityId: 217558544490540, - Name: "VLLV", - Description: "Direxion Value Line Conservative Equity ETF", - Symbol: "VLLV", - Precision: 5, - Type: Stock, - AlternateId: "25490K703"}, - 217558544491764: &Security{ - SecurityId: 217558544491764, - Name: "HEGE", - Description: "Direxion Daily MSCI Europe Currency Hedged Bull 2X Shares", - Symbol: "HEGE", - Precision: 5, - Type: Stock, - AlternateId: "25490K711"}, - 217558544493348: &Security{ - SecurityId: 217558544493348, - Name: "DRIP", - Description: "Direxion Daily S&P Oil & Gas Exploration & Production Bear 3X Shares", - Symbol: "DRIP", - Precision: 5, - Type: Stock, - AlternateId: "25490K729"}, - 217558544494572: &Security{ - SecurityId: 217558544494572, - Name: "GUSH", - Description: "Direxion Daily S&P Oil & Gas Exploration & Production Bull 3X Shares", - Symbol: "GUSH", - Precision: 5, - Type: Stock, - AlternateId: "25490K737"}, - 217558544495796: &Security{ - SecurityId: 217558544495796, - Name: "LABD", - Description: "Direxion Daily S&P Biotech Bear 3X Shares", - Symbol: "LABD", - Precision: 5, - Type: Stock, - AlternateId: "25490K745"}, - 217558544496984: &Security{ - SecurityId: 217558544496984, - Name: "LABU", - Description: "Direxion Daily S&P Biotech Bull 3X Shares", - Symbol: "LABU", - Precision: 5, - Type: Stock, - AlternateId: "25490K752"}, - 217558544545188: &Security{ - SecurityId: 217558544545188, - Name: "CHAU", - Description: "Direxion Daily CSI 300 China A Share Bull 2X Shares", - Symbol: "CHAU", - Precision: 5, - Type: Stock, - AlternateId: "25490K869"}, - 217623971972340: &Security{ - SecurityId: 217623971972340, - Name: "BAGR", - Description: "Diversified Restaurant Holdings, Inc.", - Symbol: "BAGR", - Precision: 5, - Type: Stock, - AlternateId: "25532M105"}, - 217624013962848: &Security{ - SecurityId: 217624013962848, - Name: "DRA", - Description: "Diversified Real Asset Income Fund", - Symbol: "DRA", - Precision: 5, - Type: Stock, - AlternateId: "25533B108"}, - 217624314660624: &Security{ - SecurityId: 217624314660624, - Name: "DNI", - Description: "Dividend and Income Fund", - Symbol: "DNI", - Precision: 5, - Type: Stock, - AlternateId: "25538A204"}, - 217628243235648: &Security{ - SecurityId: 217628243235648, - Name: "DXYN", - Description: "Dixie Group, Inc. (The)", - Symbol: "DXYN", - Precision: 5, - Type: Stock, - AlternateId: "255519100"}, - 217698014531052: &Security{ - SecurityId: 217698014531052, - Name: "RDY", - Description: "Dr. Reddy's Laboratories Ltd. ADR", - Symbol: "RDY", - Precision: 5, - Type: Stock, - AlternateId: "256135203"}, - 217698115261284: &Security{ - SecurityId: 217698115261284, - Name: "DSS", - Description: "Document Security Systems, Inc.", - Symbol: "DSS", - Precision: 5, - Type: Stock, - AlternateId: "25614T101"}, - 217707124721724: &Security{ - SecurityId: 217707124721724, - Name: "DLB", - Description: "Dolby Laboratories, Inc.", - Symbol: "DLB", - Precision: 5, - Type: Stock, - AlternateId: "25659T107"}, - 217709143620084: &Security{ - SecurityId: 217709143620084, - Name: "DG", - Description: "Dollar General Corp.", - Symbol: "DG", - Precision: 5, - Type: Stock, - AlternateId: "256677105"}, - 217711137324384: &Security{ - SecurityId: 217711137324384, - Name: "DLTR", - Description: "Dollar Tree Stores, Inc.", - Symbol: "DLTR", - Precision: 5, - Type: Stock, - AlternateId: "256746108"}, - 217778861120904: &Security{ - SecurityId: 217778861120904, - Name: "DDC", - Description: "Dominion Diamond Corp.", - Symbol: "DDC", - Precision: 5, - Type: Stock, - AlternateId: "257287102"}, - 217783028248416: &Security{ - SecurityId: 217783028248416, - Name: "DM", - Description: "Dominion Midstream Partners, LP", - Symbol: "DM", - Precision: 5, - Type: Stock, - AlternateId: "257454108"}, - 217783125666144: &Security{ - SecurityId: 217783125666144, - Name: "DOMR", - Description: "Dominion Resources Black Warrior Trust", - Symbol: "DOMR", - Precision: 5, - Type: Stock, - AlternateId: "25746Q108"}, - 217783132384644: &Security{ - SecurityId: 217783132384644, - Name: "D", - Description: "Dominion Resources, Inc.", - Symbol: "D", - Precision: 5, - Type: Stock, - AlternateId: "25746U109"}, - 217783132664364: &Security{ - SecurityId: 217783132664364, - Name: "DCUA", - Description: "Dominion Resources, Inc., 6.125% 2013 Series A Equity Units", - Symbol: "DCUA", - Precision: 5, - Type: Stock, - AlternateId: "25746U703"}, - 217783132719012: &Security{ - SecurityId: 217783132719012, - Name: "DCUC", - Description: "Dominion Resources, Inc., 6.375% 2014 Series A Equity Units", - Symbol: "DCUC", - Precision: 5, - Type: Stock, - AlternateId: "25746U869"}, - 217783132721460: &Security{ - SecurityId: 217783132721460, - Name: "DCUB", - Description: "Dominion Resources, Inc., 6.00% 2013 Series B Equity Units", - Symbol: "DCUB", - Precision: 5, - Type: Stock, - AlternateId: "25746U885"}, - 217785154688676: &Security{ - SecurityId: 217785154688676, - Name: "DPZ", - Description: "Domino's Pizza, Inc.", - Symbol: "DPZ", - Precision: 5, - Type: Stock, - AlternateId: "25754A201"}, - 217785213475308: &Security{ - SecurityId: 217785213475308, - Name: "UFS", - Description: "Domtar Inc.", - Symbol: "UFS", - Precision: 5, - Type: Stock, - AlternateId: "257559203"}, - 217787376774276: &Security{ - SecurityId: 217787376774276, - Name: "DCI", - Description: "Donaldson Co., Inc.", - Symbol: "DCI", - Precision: 5, - Type: Stock, - AlternateId: "257651109"}, - 217789251272100: &Security{ - SecurityId: 217789251272100, - Name: "DGICA", - Description: "Donegal Group, Inc. Class A", - Symbol: "DGICA", - Precision: 5, - Type: Stock, - AlternateId: "257701201"}, - 217789251318720: &Security{ - SecurityId: 217789251318720, - Name: "DGICB", - Description: "Donegal Group, Inc. Class B", - Symbol: "DGICB", - Precision: 5, - Type: Stock, - AlternateId: "257701300"}, - 217856775148020: &Security{ - SecurityId: 217856775148020, - Name: "DMLP", - Description: "Dorchester Minerals, L.P.", - Symbol: "DMLP", - Precision: 5, - Type: Stock, - AlternateId: "25820R105"}, - 217857166498368: &Security{ - SecurityId: 217857166498368, - Name: "DORM", - Description: "Dorman Products, Inc.", - Symbol: "DORM", - Precision: 5, - Type: Stock, - AlternateId: "258278100"}, - 217865561219460: &Security{ - SecurityId: 217865561219460, - Name: "DSL", - Description: "Doubleline Income Solutions Fund", - Symbol: "DSL", - Precision: 5, - Type: Stock, - AlternateId: "258622109"}, - 217865562899004: &Security{ - SecurityId: 217865562899004, - Name: "DBL", - Description: "DoubleLine Opportunistic Credit Fund", - Symbol: "DBL", - Precision: 5, - Type: Stock, - AlternateId: "258623107"}, - 217943843082372: &Security{ - SecurityId: 217943843082372, - Name: "DEI", - Description: "Douglas Emmett, Inc.", - Symbol: "DEI", - Precision: 5, - Type: Stock, - AlternateId: "25960P109"}, - 217943846441460: &Security{ - SecurityId: 217943846441460, - Name: "PLOW", - Description: "Douglas Dynamics, Inc.", - Symbol: "PLOW", - Precision: 5, - Type: Stock, - AlternateId: "25960R105"}, - 220046577867360: &Security{ - SecurityId: 220046577867360, - Name: "DOV", - Description: "Dover Corp.", - Symbol: "DOV", - Precision: 5, - Type: Stock, - AlternateId: "260003108"}, - 220047125422032: &Security{ - SecurityId: 220047125422032, - Name: "DDE", - Description: "Dover Downs Gaming & Entertainment, Inc.", - Symbol: "DDE", - Precision: 5, - Type: Stock, - AlternateId: "260095104"}, - 220057703643564: &Security{ - SecurityId: 220057703643564, - Name: "DOW", - Description: "Dow Chemical Company (The)", - Symbol: "DOW", - Precision: 5, - Type: Stock, - AlternateId: "260543103"}, - 220131974583684: &Security{ - SecurityId: 220131974583684, - Name: "DPS", - Description: "Dr Pepper Snapple Group, Inc.", - Symbol: "DPS", - Precision: 5, - Type: Stock, - AlternateId: "26138E109"}, - 220133922938028: &Security{ - SecurityId: 220133922938028, - Name: "DRWI", - Description: "DragonWave, Inc.", - Symbol: "DRWI", - Precision: 5, - Type: Stock, - AlternateId: "26144M103"}, - 220135970483172: &Security{ - SecurityId: 220135970483172, - Name: "DRD", - Description: "DRDGold Ltd ADR", - Symbol: "DRD", - Precision: 5, - Type: Stock, - AlternateId: "26152H301"}, - 220136022458028: &Security{ - SecurityId: 220136022458028, - Name: "DWA", - Description: "Dreamworks Animation SKG, Inc.", - Symbol: "DWA", - Precision: 5, - Type: Stock, - AlternateId: "26153C103"}, - 220138516734516: &Security{ - SecurityId: 220138516734516, - Name: "DW", - Description: "Drew Industries, Inc.", - Symbol: "DW", - Precision: 5, - Type: Stock, - AlternateId: "26168L205"}, - 220144712791356: &Security{ - SecurityId: 220144712791356, - Name: "LEO", - Description: "Dreyfus Strategic Municipals, Inc.", - Symbol: "LEO", - Precision: 5, - Type: Stock, - AlternateId: "261932107"}, - 220203348185700: &Security{ - SecurityId: 220203348185700, - Name: "DHF", - Description: "Dreyfus High Yield Strategies Fund", - Symbol: "DHF", - Precision: 5, - Type: Stock, - AlternateId: "26200S101"}, - 220203406972296: &Security{ - SecurityId: 220203406972296, - Name: "DMF", - Description: "Dreyfus Municipal Income, Inc.", - Symbol: "DMF", - Precision: 5, - Type: Stock, - AlternateId: "26201R102"}, - 220203447283260: &Security{ - SecurityId: 220203447283260, - Name: "DSM", - Description: "Dreyfus Strategic Municipal Bond Fund, Inc.", - Symbol: "DSM", - Precision: 5, - Type: Stock, - AlternateId: "26202F107"}, - 220203504389988: &Security{ - SecurityId: 220203504389988, - Name: "DMB", - Description: "Dreyfus Municipal Bond Infrastructure Fund", - Symbol: "DMB", - Precision: 5, - Type: Stock, - AlternateId: "26203D101"}, - 220203494312400: &Security{ - SecurityId: 220203494312400, - Name: "DRQ", - Description: "Dril-Quip, Inc.", - Symbol: "DRQ", - Precision: 5, - Type: Stock, - AlternateId: "262037104"}, - 220292737349508: &Security{ - SecurityId: 220292737349508, - Name: "DD", - Description: "E.I. du Pont de Nemours & Co.", - Symbol: "DD", - Precision: 5, - Type: Stock, - AlternateId: "263534109"}, - 220362459889284: &Security{ - SecurityId: 220362459889284, - Name: "DCO", - Description: "Ducommun, Inc.", - Symbol: "DCO", - Precision: 5, - Type: Stock, - AlternateId: "264147109"}, - 220366714356576: &Security{ - SecurityId: 220366714356576, - Name: "DUC", - Description: "Duff & Phelps Utility & Corporate Bond Trust", - Symbol: "DUC", - Precision: 5, - Type: Stock, - AlternateId: "26432K108"}, - 220366761385716: &Security{ - SecurityId: 220366761385716, - Name: "DPG", - Description: "Duff & Phelps Global Utility Income Fund", - Symbol: "DPG", - Precision: 5, - Type: Stock, - AlternateId: "26433C105"}, - 220366766424672: &Security{ - SecurityId: 220366766424672, - Name: "DSE", - Description: "Duff & Phelps Select Energy MLP Fund, Inc.", - Symbol: "DSE", - Precision: 5, - Type: Stock, - AlternateId: "26433F108"}, - 220368817282320: &Security{ - SecurityId: 220368817282320, - Name: "DUK", - Description: "Duke Energy Corp.", - Symbol: "DUK", - Precision: 5, - Type: Stock, - AlternateId: "26441C204"}, - 220368798946548: &Security{ - SecurityId: 220368798946548, - Name: "DRE", - Description: "Duke Realty Corp.", - Symbol: "DRE", - Precision: 5, - Type: Stock, - AlternateId: "264411505"}, - 220368970080612: &Security{ - SecurityId: 220368970080612, - Name: "DLTH", - Description: "Duluth Holdings, Inc. Cl B", - Symbol: "DLTH", - Precision: 5, - Type: Stock, - AlternateId: "26443V101"}, - 220377648656448: &Security{ - SecurityId: 220377648656448, - Name: "DNB", - Description: "Dun & Bradstreet Corp. (The)", - Symbol: "DNB", - Precision: 5, - Type: Stock, - AlternateId: "26483E100"}, - 220449284278848: &Security{ - SecurityId: 220449284278848, - Name: "DNKN", - Description: "Dunkin' Brands Group, Inc.", - Symbol: "DNKN", - Precision: 5, - Type: Stock, - AlternateId: "265504100"}, - 220519159663896: &Security{ - SecurityId: 220519159663896, - Name: "DFT", - Description: "DuPont Fabros Technology, Inc.", - Symbol: "DFT", - Precision: 5, - Type: Stock, - AlternateId: "26613Q106"}, - 220529826905040: &Security{ - SecurityId: 220529826905040, - Name: "DRRX", - Description: "DURECT Corp.", - Symbol: "DRRX", - Precision: 5, - Type: Stock, - AlternateId: "266605104"}, - 220604215418028: &Security{ - SecurityId: 220604215418028, - Name: "DYAX", - Description: "Dyax Corp.", - Symbol: "DYAX", - Precision: 5, - Type: Stock, - AlternateId: "26746E103"}, - 220604260767588: &Security{ - SecurityId: 220604260767588, - Name: "DY", - Description: "Dycom Industries, Inc.", - Symbol: "DY", - Precision: 5, - Type: Stock, - AlternateId: "267475101"}, - 220613033402100: &Security{ - SecurityId: 220613033402100, - Name: "BOOM", - Description: "Dynamic Materials Corp.", - Symbol: "BOOM", - Precision: 5, - Type: Stock, - AlternateId: "267888105"}, - 220675666282560: &Security{ - SecurityId: 220675666282560, - Name: "DYSL", - Description: "Dynasil Corp. of America", - Symbol: "DYSL", - Precision: 5, - Type: Stock, - AlternateId: "268102100"}, - 220675977151524: &Security{ - SecurityId: 220675977151524, - Name: "DYNT", - Description: "Dynatronics Corp.", - Symbol: "DYNT", - Precision: 5, - Type: Stock, - AlternateId: "268157401"}, - 220675978737828: &Security{ - SecurityId: 220675978737828, - Name: "DVAX", - Description: "Dynavax Technologies Corp.", - Symbol: "DVAX", - Precision: 5, - Type: Stock, - AlternateId: "268158201"}, - 220676130043416: &Security{ - SecurityId: 220676130043416, - Name: "DX", - Description: "Dynex Capital, Inc.", - Symbol: "DX", - Precision: 5, - Type: Stock, - AlternateId: "26817Q506"}, - 220676131536480: &Security{ - SecurityId: 220676131536480, - Name: "DYN", - Description: "Dynegy, Inc.", - Symbol: "DYN", - Precision: 5, - Type: Stock, - AlternateId: "26817R108"}, - 220676131583100: &Security{ - SecurityId: 220676131583100, - Name: "DYN-A", - Description: "Dynegy, Inc., 5.375% Series A Mandatory Convertible Cumulative Preferred Stock", - Symbol: "DYN-A", - Precision: 5, - Type: Stock, - AlternateId: "26817R207"}, - 220678298241156: &Security{ - SecurityId: 220678298241156, - Name: "ECT", - Description: "ECA Marcellus Trust I", - Symbol: "ECT", - Precision: 5, - Type: Stock, - AlternateId: "26827L109"}, - 220680078634044: &Security{ - SecurityId: 220680078634044, - Name: "EDAP", - Description: "EDAP TMS S.A. ADR", - Symbol: "EDAP", - Precision: 5, - Type: Stock, - AlternateId: "268311107"}, - 220682591432784: &Security{ - SecurityId: 220682591432784, - Name: "XCEM", - Description: "EGShares EM Core ex-China ETF", - Symbol: "XCEM", - Precision: 5, - Type: Stock, - AlternateId: "26846L304"}, - 220682557894896: &Security{ - SecurityId: 220682557894896, - Name: "EMCR", - Description: "EGShares Emerging Markets CORE ETF", - Symbol: "EMCR", - Precision: 5, - Type: Stock, - AlternateId: "268461464"}, - 220682557982916: &Security{ - SecurityId: 220682557982916, - Name: "EMDD", - Description: "EGShares Emerging Markets Domestic Demand ETF", - Symbol: "EMDD", - Precision: 5, - Type: Stock, - AlternateId: "268461621"}, - 220682557984500: &Security{ - SecurityId: 220682557984500, - Name: "BBRC", - Description: "EGShares Beyond BRICs ETF", - Symbol: "BBRC", - Precision: 5, - Type: Stock, - AlternateId: "268461639"}, - 220682557986912: &Security{ - SecurityId: 220682557986912, - Name: "HILO", - Description: "EGShares EM Quality Dividend ETF", - Symbol: "HILO", - Precision: 5, - Type: Stock, - AlternateId: "268461654"}, - 220682558034756: &Security{ - SecurityId: 220682558034756, - Name: "INCO", - Description: "EGShares India Consumer ETF", - Symbol: "INCO", - Precision: 5, - Type: Stock, - AlternateId: "268461761"}, - 220682558036340: &Security{ - SecurityId: 220682558036340, - Name: "ECON", - Description: "EGShares Emerging Markets Consumer ETF", - Symbol: "ECON", - Precision: 5, - Type: Stock, - AlternateId: "268461779"}, - 220682558074932: &Security{ - SecurityId: 220682558074932, - Name: "SCIN", - Description: "EGShares India Small Cap ETF", - Symbol: "SCIN", - Precision: 5, - Type: Stock, - AlternateId: "268461811"}, - 220682558078964: &Security{ - SecurityId: 220682558078964, - Name: "INXX", - Description: "EGShares India Infrastructure ETF", - Symbol: "INXX", - Precision: 5, - Type: Stock, - AlternateId: "268461845"}, - 220684544732844: &Security{ - SecurityId: 220684544732844, - Name: "EJ", - Description: "E-House (China) Holdings Ltd ADR", - Symbol: "EJ", - Precision: 5, - Type: Stock, - AlternateId: "26852W103"}, - 220684568247360: &Security{ - SecurityId: 220684568247360, - Name: "EHIC", - Description: "eHi Car Services Ltd.", - Symbol: "EHIC", - Precision: 5, - Type: Stock, - AlternateId: "26853A100"}, - 220686551874108: &Security{ - SecurityId: 220686551874108, - Name: "LOCO", - Description: "El Pollo Loco Holdings, Inc.", - Symbol: "LOCO", - Precision: 5, - Type: Stock, - AlternateId: "268603107"}, - 220686802136712: &Security{ - SecurityId: 220686802136712, - Name: "EMC", - Description: "EMC Corp.", - Symbol: "EMC", - Precision: 5, - Type: Stock, - AlternateId: "268648102"}, - 220686916350852: &Security{ - SecurityId: 220686916350852, - Name: "EMCI", - Description: "EMC Insurance Group, Inc.", - Symbol: "EMCI", - Precision: 5, - Type: Stock, - AlternateId: "268664109"}, - 220689010831968: &Security{ - SecurityId: 220689010831968, - Name: "E", - Description: "ENI SpA. ADR", - Symbol: "E", - Precision: 5, - Type: Stock, - AlternateId: "26874R108"}, - 220689067938660: &Security{ - SecurityId: 220689067938660, - Name: "EOG", - Description: "EOG Resources, Inc.", - Symbol: "EOG", - Precision: 5, - Type: Stock, - AlternateId: "26875P101"}, - 220689215744904: &Security{ - SecurityId: 220689215744904, - Name: "EPE", - Description: "EP Energy Corp.", - Symbol: "EPE", - Precision: 5, - Type: Stock, - AlternateId: "268785102"}, - 220691043167364: &Security{ - SecurityId: 220691043167364, - Name: "EPIQ", - Description: "EPIQ Systems, Inc.", - Symbol: "EPIQ", - Precision: 5, - Type: Stock, - AlternateId: "26882D109"}, - 220691177536644: &Security{ - SecurityId: 220691177536644, - Name: "EQT", - Description: "EQT Corp.", - Symbol: "EQT", - Precision: 5, - Type: Stock, - AlternateId: "26884L109"}, - 220691192653188: &Security{ - SecurityId: 220691192653188, - Name: "EPR", - Description: "EPR Properties", - Symbol: "EPR", - Precision: 5, - Type: Stock, - AlternateId: "26884U109"}, - 220691221206336: &Security{ - SecurityId: 220691221206336, - Name: "EQM", - Description: "EQT Midstream Partners LP", - Symbol: "EQM", - Precision: 5, - Type: Stock, - AlternateId: "26885B100"}, - 220691229604740: &Security{ - SecurityId: 220691229604740, - Name: "ERA", - Description: "Era Group, Inc.", - Symbol: "ERA", - Precision: 5, - Type: Stock, - AlternateId: "26885G109"}, - 220691234643372: &Security{ - SecurityId: 220691234643372, - Name: "EQGP", - Description: "EQT GP Holdings, LP", - Symbol: "EQGP", - Precision: 5, - Type: Stock, - AlternateId: "26885J103"}, - 220693332483864: &Security{ - SecurityId: 220693332483864, - Name: "EGBN", - Description: "Eagle Bancorp, Inc. (MD)", - Symbol: "EGBN", - Precision: 5, - Type: Stock, - AlternateId: "268948106"}, - 220756341691764: &Security{ - SecurityId: 220756341691764, - Name: "ALFA", - Description: "AlphaClone Alternative Alpha ETF", - Symbol: "ALFA", - Precision: 5, - Type: Stock, - AlternateId: "26922A305"}, - 220756341738384: &Security{ - SecurityId: 220756341738384, - Name: "VIDI", - Description: "Vident International Equity Fund ETF", - Symbol: "VIDI", - Precision: 5, - Type: Stock, - AlternateId: "26922A404"}, - 220756341785004: &Security{ - SecurityId: 220756341785004, - Name: "VUSE", - Description: "Vident Core U.S. Equity ETF", - Symbol: "VUSE", - Precision: 5, - Type: Stock, - AlternateId: "26922A503"}, - 220756341831624: &Security{ - SecurityId: 220756341831624, - Name: "VBND", - Description: "Vident Core U.S. Bond Strategy Fund ETF", - Symbol: "VBND", - Precision: 5, - Type: Stock, - AlternateId: "26922A602"}, - 220756341878244: &Security{ - SecurityId: 220756341878244, - Name: "DVP", - Description: "Deep Value ETF", - Symbol: "DVP", - Precision: 5, - Type: Stock, - AlternateId: "26922A701"}, - 220756341924864: &Security{ - SecurityId: 220756341924864, - Name: "FIA", - Description: "Falah Russell-IdealRatings U.S. Large Cap ETF", - Symbol: "FIA", - Precision: 5, - Type: Stock, - AlternateId: "26922A800"}, - 220756341926448: &Security{ - SecurityId: 220756341926448, - Name: "ALFI", - Description: "AlphaClone International ETF", - Symbol: "ALFI", - Precision: 5, - Type: Stock, - AlternateId: "26922A818"}, - 220756341927672: &Security{ - SecurityId: 220756341927672, - Name: "CNCR", - Description: "Loncar Cancer Immunotherapy ETF", - Symbol: "CNCR", - Precision: 5, - Type: Stock, - AlternateId: "26922A826"}, - 220756341928896: &Security{ - SecurityId: 220756341928896, - Name: "SMCP", - Description: "AlphaMark Actively Managed Small Cap ETF", - Symbol: "SMCP", - Precision: 5, - Type: Stock, - AlternateId: "26922A834"}, - 220756341930120: &Security{ - SecurityId: 220756341930120, - Name: "JETS", - Description: "U.S. Global Jets ETF", - Symbol: "JETS", - Precision: 5, - Type: Stock, - AlternateId: "26922A842"}, - 220756341932892: &Security{ - SecurityId: 220756341932892, - Name: "HIPS", - Description: "Master Income ETF", - Symbol: "HIPS", - Precision: 5, - Type: Stock, - AlternateId: "26922A867"}, - 220756341934116: &Security{ - SecurityId: 220756341934116, - Name: "DHVW", - Description: "Diamond Hill Valuation-Weighted 500 ETF", - Symbol: "DHVW", - Precision: 5, - Type: Stock, - AlternateId: "26922A875"}, - 220756341935340: &Security{ - SecurityId: 220756341935340, - Name: "VALX", - Description: "Validea Market Legends ETF", - Symbol: "VALX", - Precision: 5, - Type: Stock, - AlternateId: "26922A883"}, - 220756376870244: &Security{ - SecurityId: 220756376870244, - Name: "PPLT", - Description: "ETFS Physical Platinum Shares", - Symbol: "PPLT", - Precision: 5, - Type: Stock, - AlternateId: "26922V101"}, - 220756378550148: &Security{ - SecurityId: 220756378550148, - Name: "GLTR", - Description: "ETFS Precious Metals Basket Shares", - Symbol: "GLTR", - Precision: 5, - Type: Stock, - AlternateId: "26922W109"}, - 220756380229692: &Security{ - SecurityId: 220756380229692, - Name: "SIVR", - Description: "ETFS Physical Silver Shares", - Symbol: "SIVR", - Precision: 5, - Type: Stock, - AlternateId: "26922X107"}, - 220756381909236: &Security{ - SecurityId: 220756381909236, - Name: "SGOL", - Description: "ETFS Physical Swiss Gold Shares", - Symbol: "SGOL", - Precision: 5, - Type: Stock, - AlternateId: "26922Y105"}, - 220756402064664: &Security{ - SecurityId: 220756402064664, - Name: "PALL", - Description: "ETFS Physical Palladium Shares", - Symbol: "PALL", - Precision: 5, - Type: Stock, - AlternateId: "26923A106"}, - 220756403744208: &Security{ - SecurityId: 220756403744208, - Name: "WITE", - Description: "ETFS White Metals Basket Trust", - Symbol: "WITE", - Precision: 5, - Type: Stock, - AlternateId: "26923B104"}, - 220756412142252: &Security{ - SecurityId: 220756412142252, - Name: "AMZA", - Description: "InfraCap MLP ETF", - Symbol: "AMZA", - Precision: 5, - Type: Stock, - AlternateId: "26923G103"}, - 220756412188872: &Security{ - SecurityId: 220756412188872, - Name: "BBP", - Description: "BioShares Biotechnology Products Fund", - Symbol: "BBP", - Precision: 5, - Type: Stock, - AlternateId: "26923G202"}, - 220756412235492: &Security{ - SecurityId: 220756412235492, - Name: "BBC", - Description: "BioShares Biotechnology Clinical Trials Fund", - Symbol: "BBC", - Precision: 5, - Type: Stock, - AlternateId: "26923G301"}, - 220756412329092: &Security{ - SecurityId: 220756412329092, - Name: "TUTT", - Description: "Tuttle Tactical Management U.S. Core ETF", - Symbol: "TUTT", - Precision: 5, - Type: Stock, - AlternateId: "26923G509"}, - 220756412375712: &Security{ - SecurityId: 220756412375712, - Name: "TUTI", - Description: "Tuttle Tactical Management Multi-Strategy Income ETF", - Symbol: "TUTI", - Precision: 5, - Type: Stock, - AlternateId: "26923G608"}, - 220756412422332: &Security{ - SecurityId: 220756412422332, - Name: "NFLT", - Description: "Virtus Newfleet Multi-Sector Unconstrained Bond ETF", - Symbol: "NFLT", - Precision: 5, - Type: Stock, - AlternateId: "26923G707"}, - 220756412468952: &Security{ - SecurityId: 220756412468952, - Name: "UTES", - Description: "Reaves Utilities ETF", - Symbol: "UTES", - Precision: 5, - Type: Stock, - AlternateId: "26923G806"}, - 220756413821796: &Security{ - SecurityId: 220756413821796, - Name: "RISE", - Description: "Sit Rising Rate ETF", - Symbol: "RISE", - Precision: 5, - Type: Stock, - AlternateId: "26923H101"}, - 220756417181244: &Security{ - SecurityId: 220756417181244, - Name: "ZLRG", - Description: "ETFS Zacks Earnings Large-Cap U.S. Index Fund", - Symbol: "ZLRG", - Precision: 5, - Type: Stock, - AlternateId: "26923J107"}, - 220756417227864: &Security{ - SecurityId: 220756417227864, - Name: "ZSML", - Description: "ETFS Zacks Earnings Small-Cap U.S. Index Fund", - Symbol: "ZSML", - Precision: 5, - Type: Stock, - AlternateId: "26923J206"}, - 220756417274484: &Security{ - SecurityId: 220756417274484, - Name: "SBUS", - Description: "ETFS Diversified-Factor U.S. Large Cap Index Fund", - Symbol: "SBUS", - Precision: 5, - Type: Stock, - AlternateId: "26923J305"}, - 220756417321104: &Security{ - SecurityId: 220756417321104, - Name: "SBEU", - Description: "ETFS Diversified-Factor Developed Europe Index Fund", - Symbol: "SBEU", - Precision: 5, - Type: Stock, - AlternateId: "26923J404"}, - 220756618735164: &Security{ - SecurityId: 220756618735164, - Name: "EVEP", - Description: "EV Energy Partners, L.P.", - Symbol: "EVEP", - Precision: 5, - Type: Stock, - AlternateId: "26926V107"}, - 220756642389576: &Security{ - SecurityId: 220756642389576, - Name: "XCO", - Description: "EXCO Resources, Inc.", - Symbol: "XCO", - Precision: 5, - Type: Stock, - AlternateId: "269279402"}, - 220763249859060: &Security{ - SecurityId: 220763249859060, - Name: "EGIF", - Description: "Eagle Growth and Income Opportunities Fund due 5/14/2027", - Symbol: "EGIF", - Precision: 5, - Type: Stock, - AlternateId: "26958J105"}, - 220765497185376: &Security{ - SecurityId: 220765497185376, - Name: "EXP", - Description: "Eagle Materials, Inc. Cl A", - Symbol: "EXP", - Precision: 5, - Type: Stock, - AlternateId: "26969P108"}, - 220767642055008: &Security{ - SecurityId: 220767642055008, - Name: "EGRX", - Description: "Eagle Pharmaceuticals, Inc.", - Symbol: "EGRX", - Precision: 5, - Type: Stock, - AlternateId: "269796108"}, - 220769278000740: &Security{ - SecurityId: 220769278000740, - Name: "ECC", - Description: "Eagle Point Credit Company, Inc.", - Symbol: "ECC", - Precision: 5, - Type: Stock, - AlternateId: "269808101"}, - 222874355896884: &Security{ - SecurityId: 222874355896884, - Name: "ESTE", - Description: "Earthstone Energy, Inc.", - Symbol: "ESTE", - Precision: 5, - Type: Stock, - AlternateId: "27032D205"}, - 222874449908580: &Security{ - SecurityId: 222874449908580, - Name: "ELNK", - Description: "EarthLink Holdings Corp.", - Symbol: "ELNK", - Precision: 5, - Type: Stock, - AlternateId: "27033X101"}, - 223275330577872: &Security{ - SecurityId: 223275330577872, - Name: "EWBC", - Description: "East West Bancorp, Inc.", - Symbol: "EWBC", - Precision: 5, - Type: Stock, - AlternateId: "27579R104"}, - 223340442571656: &Security{ - SecurityId: 223340442571656, - Name: "EACQ", - Description: "Easterly Acquisition Corp.", - Symbol: "EACQ", - Precision: 5, - Type: Stock, - AlternateId: "27616L102"}, - 223340442618276: &Security{ - SecurityId: 223340442618276, - Name: "EACQU", - Description: "Easterly Acquisition Corp. (Units)", - Symbol: "EACQU", - Precision: 5, - Type: Stock, - AlternateId: "27616L201"}, - 223340449290156: &Security{ - SecurityId: 223340449290156, - Name: "DEA", - Description: "Easterly Government Properties, Inc.", - Symbol: "DEA", - Precision: 5, - Type: Stock, - AlternateId: "27616P103"}, - 223344470290896: &Security{ - SecurityId: 223344470290896, - Name: "EML", - Description: "Eastern Co. (The)", - Symbol: "EML", - Precision: 5, - Type: Stock, - AlternateId: "276317104"}, - 223418962940004: &Security{ - SecurityId: 223418962940004, - Name: "EVBS", - Description: "Eastern Virginia Bankshares, Inc.", - Symbol: "EVBS", - Precision: 5, - Type: Stock, - AlternateId: "277196101"}, - 223421018789988: &Security{ - SecurityId: 223421018789988, - Name: "EGP", - Description: "EastGroup Properties, Inc.", - Symbol: "EGP", - Precision: 5, - Type: Stock, - AlternateId: "277276101"}, - 223425123771456: &Security{ - SecurityId: 223425123771456, - Name: "EMN", - Description: "Eastman Chemical Co.", - Symbol: "EMN", - Precision: 5, - Type: Stock, - AlternateId: "277432100"}, - 223425303630552: &Security{ - SecurityId: 223425303630552, - Name: "KODK", - Description: "Eastman Kodak Company", - Symbol: "KODK", - Precision: 5, - Type: Stock, - AlternateId: "277461406"}, - 223499334245400: &Security{ - SecurityId: 223499334245400, - Name: "EMI", - Description: "Eaton Vance Michigan Municipal Income Trust", - Symbol: "EMI", - Precision: 5, - Type: Stock, - AlternateId: "27826D106"}, - 223499335924944: &Security{ - SecurityId: 223499335924944, - Name: "MMV", - Description: "Eaton Vance Massachusetts Municipal Income Trust", - Symbol: "MMV", - Precision: 5, - Type: Stock, - AlternateId: "27826E104"}, - 223499337604452: &Security{ - SecurityId: 223499337604452, - Name: "CEV", - Description: "Eaton Vance California Municipal Income Trust", - Symbol: "CEV", - Precision: 5, - Type: Stock, - AlternateId: "27826F101"}, - 223499339284356: &Security{ - SecurityId: 223499339284356, - Name: "EVO", - Description: "Eaton Vance Ohio Municipal Income Trust", - Symbol: "EVO", - Precision: 5, - Type: Stock, - AlternateId: "27826G109"}, - 223499359439532: &Security{ - SecurityId: 223499359439532, - Name: "EVF", - Description: "Eaton Vance Senior Income Trust", - Symbol: "EVF", - Precision: 5, - Type: Stock, - AlternateId: "27826S103"}, - 223499361119076: &Security{ - SecurityId: 223499361119076, - Name: "EVP", - Description: "Eaton Vance Pennsylvania Municipal Income Trust", - Symbol: "EVP", - Precision: 5, - Type: Stock, - AlternateId: "27826T101"}, - 223499362798944: &Security{ - SecurityId: 223499362798944, - Name: "EVN", - Description: "Eaton Vance Municipal Income Trust", - Symbol: "EVN", - Precision: 5, - Type: Stock, - AlternateId: "27826U108"}, - 223499364478488: &Security{ - SecurityId: 223499364478488, - Name: "EVJ", - Description: "Eaton Vance New Jersey Municipal Income Trust", - Symbol: "EVJ", - Precision: 5, - Type: Stock, - AlternateId: "27826V106"}, - 223499366158032: &Security{ - SecurityId: 223499366158032, - Name: "EVY", - Description: "Eaton Vance New York Municipal Income Trust", - Symbol: "EVY", - Precision: 5, - Type: Stock, - AlternateId: "27826W104"}, - 223499320808364: &Security{ - SecurityId: 223499320808364, - Name: "EV", - Description: "Eaton Vance Corp.", - Symbol: "EV", - Precision: 5, - Type: Stock, - AlternateId: "278265103"}, - 223499406468996: &Security{ - SecurityId: 223499406468996, - Name: "EIV", - Description: "Eaton Vance Insured Municipal Bond Fund II", - Symbol: "EIV", - Precision: 5, - Type: Stock, - AlternateId: "27827K109"}, - 223499428303716: &Security{ - SecurityId: 223499428303716, - Name: "EIM", - Description: "Eaton Vance Insured Municipal Bond Fund", - Symbol: "EIM", - Precision: 5, - Type: Stock, - AlternateId: "27827X101"}, - 223499429983620: &Security{ - SecurityId: 223499429983620, - Name: "ENX", - Description: "Eaton Vance Insured New York Municipal Bond Fund", - Symbol: "ENX", - Precision: 5, - Type: Stock, - AlternateId: "27827Y109"}, - 223499379594996: &Security{ - SecurityId: 223499379594996, - Name: "EOI", - Description: "Eaton Vance Enhanced Equity Income Fund", - Symbol: "EOI", - Precision: 5, - Type: Stock, - AlternateId: "278274105"}, - 223499384633952: &Security{ - SecurityId: 223499384633952, - Name: "EOS", - Description: "Eaton Vance Enhanced Equity Income Fund II", - Symbol: "EOS", - Precision: 5, - Type: Stock, - AlternateId: "278277108"}, - 223499387993040: &Security{ - SecurityId: 223499387993040, - Name: "EFT", - Description: "Eaton Vance Floating-Rate Income Trust", - Symbol: "EFT", - Precision: 5, - Type: Stock, - AlternateId: "278279104"}, - 223499450138688: &Security{ - SecurityId: 223499450138688, - Name: "EVM", - Description: "Eaton Vance California Municipal Bond Fund", - Symbol: "EVM", - Precision: 5, - Type: Stock, - AlternateId: "27828A100"}, - 223499453498136: &Security{ - SecurityId: 223499453498136, - Name: "EIA", - Description: "Eaton Vance Insured California Municipal Bond Fund II", - Symbol: "EIA", - Precision: 5, - Type: Stock, - AlternateId: "27828C106"}, - 223499460216636: &Security{ - SecurityId: 223499460216636, - Name: "EVT", - Description: "Eaton Vance Tax-Advantaged Dividend Income Fund", - Symbol: "EVT", - Precision: 5, - Type: Stock, - AlternateId: "27828G107"}, - 223499461896180: &Security{ - SecurityId: 223499461896180, - Name: "EVV", - Description: "Eaton Vance Limited Duration Income Fund", - Symbol: "EVV", - Precision: 5, - Type: Stock, - AlternateId: "27828H105"}, - 223499466935136: &Security{ - SecurityId: 223499466935136, - Name: "MAB", - Description: "Eaton Vance Insured Massachusetts Municipal Bond Fund", - Symbol: "MAB", - Precision: 5, - Type: Stock, - AlternateId: "27828K108"}, - 223499468614680: &Security{ - SecurityId: 223499468614680, - Name: "EIO", - Description: "Eaton Vance Insured Ohio Municipal Bond Fund", - Symbol: "EIO", - Precision: 5, - Type: Stock, - AlternateId: "27828L106"}, - 223499470294224: &Security{ - SecurityId: 223499470294224, - Name: "MIW", - Description: "Eaton Vance Insured Michigan Municipal Bond Fund", - Symbol: "MIW", - Precision: 5, - Type: Stock, - AlternateId: "27828M104"}, - 223499471973768: &Security{ - SecurityId: 223499471973768, - Name: "ETY", - Description: "Eaton Vance Tax-Managed Diversified Equity Income Fund", - Symbol: "ETY", - Precision: 5, - Type: Stock, - AlternateId: "27828N102"}, - 223499477012724: &Security{ - SecurityId: 223499477012724, - Name: "EFR", - Description: "Eaton Vance Senior Floating-Rate Fund", - Symbol: "EFR", - Precision: 5, - Type: Stock, - AlternateId: "27828Q105"}, - 223499478692268: &Security{ - SecurityId: 223499478692268, - Name: "EMJ", - Description: "Eaton Vance Insured New Jersey Municipal Bond Fund", - Symbol: "EMJ", - Precision: 5, - Type: Stock, - AlternateId: "27828R103"}, - 223499480371812: &Security{ - SecurityId: 223499480371812, - Name: "ETG", - Description: "Eaton Vance Tax-Advantaged Global Dividend Income Fund", - Symbol: "ETG", - Precision: 5, - Type: Stock, - AlternateId: "27828S101"}, - 223499482051716: &Security{ - SecurityId: 223499482051716, - Name: "NYH", - Description: "Eaton Vance Insured New York Municipal Bond Fund II", - Symbol: "NYH", - Precision: 5, - Type: Stock, - AlternateId: "27828T109"}, - 223499483731224: &Security{ - SecurityId: 223499483731224, - Name: "ETO", - Description: "Eaton Vance Tax-Advantaged Global Dividend Opportunities Fund", - Symbol: "ETO", - Precision: 5, - Type: Stock, - AlternateId: "27828U106"}, - 223499485410768: &Security{ - SecurityId: 223499485410768, - Name: "EVG", - Description: "Eaton Vance Short Duration Diversified Income Fund", - Symbol: "EVG", - Precision: 5, - Type: Stock, - AlternateId: "27828V104"}, - 223499487090312: &Security{ - SecurityId: 223499487090312, - Name: "EIP", - Description: "Eaton Vance Insured Pennsylvania Municipal Bond Fund", - Symbol: "EIP", - Precision: 5, - Type: Stock, - AlternateId: "27828W102"}, - 223499488769856: &Security{ - SecurityId: 223499488769856, - Name: "ETB", - Description: "Eaton Vance Tax-Managed Buy-Write Income Fund", - Symbol: "ETB", - Precision: 5, - Type: Stock, - AlternateId: "27828X100"}, - 223499490449760: &Security{ - SecurityId: 223499490449760, - Name: "ETV", - Description: "Eaton Vance Tax-Managed Buy-Write Opportunities Fund", - Symbol: "ETV", - Precision: 5, - Type: Stock, - AlternateId: "27828Y108"}, - 223499440061136: &Security{ - SecurityId: 223499440061136, - Name: "EFF", - Description: "Eaton Vance Floating-Rate Income Plus Fund", - Symbol: "EFF", - Precision: 5, - Type: Stock, - AlternateId: "278284104"}, - 223499513964276: &Security{ - SecurityId: 223499513964276, - Name: "ETW", - Description: "Eaton Vance Tax-Managed Global Buy-Write Opportunities Fund", - Symbol: "ETW", - Precision: 5, - Type: Stock, - AlternateId: "27829C105"}, - 223499519003232: &Security{ - SecurityId: 223499519003232, - Name: "EXG", - Description: "Eaton Vance Tax-Managed Global Diversified Equity Income Fund", - Symbol: "EXG", - Precision: 5, - Type: Stock, - AlternateId: "27829F108"}, - 223499520682776: &Security{ - SecurityId: 223499520682776, - Name: "ETJ", - Description: "Eaton Vance Risk-Managed Diversified Equity Income Fund", - Symbol: "ETJ", - Precision: 5, - Type: Stock, - AlternateId: "27829G106"}, - 223499529080820: &Security{ - SecurityId: 223499529080820, - Name: "EOT", - Description: "Eaton Vance National Municipal Opportunities Trust", - Symbol: "EOT", - Precision: 5, - Type: Stock, - AlternateId: "27829L105"}, - 223499544197364: &Security{ - SecurityId: 223499544197364, - Name: "ETX", - Description: "Eaton Vance Municipal Income Term Trust", - Symbol: "ETX", - Precision: 5, - Type: Stock, - AlternateId: "27829U105"}, - 223507901966508: &Security{ - SecurityId: 223507901966508, - Name: "EBAY", - Description: "eBay, Inc.", - Symbol: "EBAY", - Precision: 5, - Type: Stock, - AlternateId: "278642103"}, - 223509902435928: &Security{ - SecurityId: 223509902435928, - Name: "EBIX", - Description: "ebix.com, Inc.", - Symbol: "EBIX", - Precision: 5, - Type: Stock, - AlternateId: "278715206"}, - 223510114114092: &Security{ - SecurityId: 223510114114092, - Name: "ELON", - Description: "Echelon Corp.", - Symbol: "ELON", - Precision: 5, - Type: Stock, - AlternateId: "27874N303"}, - 223510184564580: &Security{ - SecurityId: 223510184564580, - Name: "ECHO", - Description: "Echo Global Logistics, Inc.", - Symbol: "ECHO", - Precision: 5, - Type: Stock, - AlternateId: "27875T101"}, - 223512381502272: &Security{ - SecurityId: 223512381502272, - Name: "ECL", - Description: "Ecolab, Inc.", - Symbol: "ECL", - Precision: 5, - Type: Stock, - AlternateId: "278865100"}, - 223512447007404: &Security{ - SecurityId: 223512447007404, - Name: "EEI", - Description: "Ecology and Environment, Inc.", - Symbol: "EEI", - Precision: 5, - Type: Stock, - AlternateId: "278878103"}, - 223512515871588: &Security{ - SecurityId: 223512515871588, - Name: "ESES", - Description: "Eco-Stim Energy Solutions, Inc.", - Symbol: "ESES", - Precision: 5, - Type: Stock, - AlternateId: "27888D101"}, - 223514213963328: &Security{ - SecurityId: 223514213963328, - Name: "ECR", - Description: "Eclipse Resources Corp.", - Symbol: "ECR", - Precision: 5, - Type: Stock, - AlternateId: "27890G100"}, - 223575452763012: &Security{ - SecurityId: 223575452763012, - Name: "EC", - Description: "Ecopetrol S.A. ADR", - Symbol: "EC", - Precision: 5, - Type: Stock, - AlternateId: "279158109"}, - 223590797734788: &Security{ - SecurityId: 223590797734788, - Name: "EDGE", - Description: "Edge Therapeutics, Inc.", - Symbol: "EDGE", - Precision: 5, - Type: Stock, - AlternateId: "279870109"}, - 225695668991112: &Security{ - SecurityId: 225695668991112, - Name: "EPC", - Description: "Edgewell Personal Care Company", - Symbol: "EPC", - Precision: 5, - Type: Stock, - AlternateId: "28035Q102"}, - 225695638758024: &Security{ - SecurityId: 225695638758024, - Name: "EDGW", - Description: "Edgewater Technology, Inc.", - Symbol: "EDGW", - Precision: 5, - Type: Stock, - AlternateId: "280358102"}, - 225767277739836: &Security{ - SecurityId: 225767277739836, - Name: "EIX", - Description: "Edison International", - Symbol: "EIX", - Precision: 5, - Type: Stock, - AlternateId: "281020107"}, - 225776302316532: &Security{ - SecurityId: 225776302316532, - Name: "EDUC", - Description: "Educational Development Corp.", - Symbol: "EDUC", - Precision: 5, - Type: Stock, - AlternateId: "281479105"}, - 225782780595552: &Security{ - SecurityId: 225782780595552, - Name: "EW", - Description: "Edwards Lifesciences Corp.", - Symbol: "EW", - Precision: 5, - Type: Stock, - AlternateId: "28176E108"}, - 225850197349080: &Security{ - SecurityId: 225850197349080, - Name: "EGAN", - Description: "eGain Corp.", - Symbol: "EGAN", - Precision: 5, - Type: Stock, - AlternateId: "28225C806"}, - 225850255808976: &Security{ - SecurityId: 225850255808976, - Name: "EGLT", - Description: "Egalet Corp.", - Symbol: "EGLT", - Precision: 5, - Type: Stock, - AlternateId: "28226B104"}, - 225852577038468: &Security{ - SecurityId: 225852577038468, - Name: "EHTH", - Description: "eHealth, Inc.", - Symbol: "EHTH", - Precision: 5, - Type: Stock, - AlternateId: "28238P109"}, - 225856601398260: &Security{ - SecurityId: 225856601398260, - Name: "CAFD", - Description: "8point3 Energy Partners LP Cl A", - Symbol: "CAFD", - Precision: 5, - Type: Stock, - AlternateId: "282539105"}, - 225865179196992: &Security{ - SecurityId: 225865179196992, - Name: "EGHT", - Description: "8x8, Inc.", - Symbol: "EGHT", - Precision: 5, - Type: Stock, - AlternateId: "282914100"}, - 225937381183200: &Security{ - SecurityId: 225937381183200, - Name: "EE", - Description: "El Paso Electric Co.", - Symbol: "EE", - Precision: 5, - Type: Stock, - AlternateId: "283677854"}, - 225937382576580: &Security{ - SecurityId: 225937382576580, - Name: "EP-C", - Description: "El Paso Energy Capital Trust I, 4 3/4% Trust Convertible Preferred Securities", - Symbol: "EP-C", - Precision: 5, - Type: Stock, - AlternateId: "283678209"}, - 226021843699884: &Security{ - SecurityId: 226021843699884, - Name: "EGO", - Description: "Eldorado Gold Corp.", - Symbol: "EGO", - Precision: 5, - Type: Stock, - AlternateId: "284902103"}, - 226085040931500: &Security{ - SecurityId: 226085040931500, - Name: "ELRC", - Description: "Electro Rent Corp.", - Symbol: "ELRC", - Precision: 5, - Type: Stock, - AlternateId: "285218103"}, - 226085103077184: &Security{ - SecurityId: 226085103077184, - Name: "ESIO", - Description: "Electro Scientific Industries, Inc.", - Symbol: "ESIO", - Precision: 5, - Type: Stock, - AlternateId: "285229100"}, - 226089335709792: &Security{ - SecurityId: 226089335709792, - Name: "ELMD", - Description: "Electromed, Inc.", - Symbol: "ELMD", - Precision: 5, - Type: Stock, - AlternateId: "285409108"}, - 226091561201028: &Security{ - SecurityId: 226091561201028, - Name: "EA", - Description: "Electronic Arts, Inc.", - Symbol: "EA", - Precision: 5, - Type: Stock, - AlternateId: "285512109"}, - 226159464716424: &Security{ - SecurityId: 226159464716424, - Name: "EFII", - Description: "Electronics For Imaging, Inc.", - Symbol: "EFII", - Precision: 5, - Type: Stock, - AlternateId: "286082102"}, - 226163334598452: &Security{ - SecurityId: 226163334598452, - Name: "ETAK", - Description: "Elephant Talk Communications Corp.", - Symbol: "ETAK", - Precision: 5, - Type: Stock, - AlternateId: "286202205"}, - 226163453804568: &Security{ - SecurityId: 226163453804568, - Name: "EBIO", - Description: "Eleven Biotherapeutics, Inc.", - Symbol: "EBIO", - Precision: 5, - Type: Stock, - AlternateId: "286221106"}, - 226172065195800: &Security{ - SecurityId: 226172065195800, - Name: "RDEN", - Description: "Elizabeth Arden, Inc.", - Symbol: "RDEN", - Precision: 5, - Type: Stock, - AlternateId: "28660G106"}, - 226252641414132: &Security{ - SecurityId: 226252641414132, - Name: "CAPX", - Description: "Elkhorn S&P 500 Capital Expenditures Portfolio", - Symbol: "CAPX", - Precision: 5, - Type: Stock, - AlternateId: "287711105"}, - 226252641460752: &Security{ - SecurityId: 226252641460752, - Name: "ELCU", - Description: "Elkhorn FTSE RAFI U.S. Equity Income ETF", - Symbol: "ELCU", - Precision: 5, - Type: Stock, - AlternateId: "287711204"}, - 226324999271232: &Security{ - SecurityId: 226324999271232, - Name: "ELLI", - Description: "Ellie Mae, Inc.", - Symbol: "ELLI", - Precision: 5, - Type: Stock, - AlternateId: "28849P100"}, - 226326714252588: &Security{ - SecurityId: 226326714252588, - Name: "EFC", - Description: "Ellington Financial LLC", - Symbol: "EFC", - Precision: 5, - Type: Stock, - AlternateId: "288522303"}, - 226327026567996: &Security{ - SecurityId: 226327026567996, - Name: "EARN", - Description: "Ellington Residential Mortgage REIT", - Symbol: "EARN", - Precision: 5, - Type: Stock, - AlternateId: "288578107"}, - 226333427584464: &Security{ - SecurityId: 226333427584464, - Name: "PERY", - Description: "Perry Ellis Intl, Inc.", - Symbol: "PERY", - Precision: 5, - Type: Stock, - AlternateId: "288853104"}, - 226394500101912: &Security{ - SecurityId: 226394500101912, - Name: "ECF", - Description: "Ellsworth Growth and Income Fund Ltd.", - Symbol: "ECF", - Precision: 5, - Type: Stock, - AlternateId: "289074106"}, - 226407493611144: &Security{ - SecurityId: 226407493611144, - Name: "ESBK", - Description: "Elmira Savings Bank FSB (The)", - Symbol: "ESBK", - Precision: 5, - Type: Stock, - AlternateId: "289660102"}, - 228512274215220: &Security{ - SecurityId: 228512274215220, - Name: "LONG", - Description: "eLong, Inc. ADR", - Symbol: "LONG", - Precision: 5, - Type: Stock, - AlternateId: "290138205"}, - 228525541502040: &Security{ - SecurityId: 228525541502040, - Name: "EMAN", - Description: "eMagin Corp.", - Symbol: "EMAN", - Precision: 5, - Type: Stock, - AlternateId: "29076N206"}, - 228527419312656: &Security{ - SecurityId: 228527419312656, - Name: "AKO.A", - Description: "Embotelladora Andina S.A. Cl A ADR", - Symbol: "AKO.A", - Precision: 5, - Type: Stock, - AlternateId: "29081P204"}, - 228527419359276: &Security{ - SecurityId: 228527419359276, - Name: "AKO.B", - Description: "Embotelladora Andina S.A. Cl B ADR", - Symbol: "AKO.B", - Precision: 5, - Type: Stock, - AlternateId: "29081P303"}, - 228527454538044: &Security{ - SecurityId: 228527454538044, - Name: "ERJ", - Description: "Embraer S.A. ADR", - Symbol: "ERJ", - Precision: 5, - Type: Stock, - AlternateId: "29082A107"}, - 228527451178632: &Security{ - SecurityId: 228527451178632, - Name: "EMCF", - Description: "Emclaire Financial Corp.", - Symbol: "EMCF", - Precision: 5, - Type: Stock, - AlternateId: "290828102"}, - 228527602344000: &Security{ - SecurityId: 228527602344000, - Name: "EME", - Description: "EMCOR Group, Inc.", - Symbol: "EME", - Precision: 5, - Type: Stock, - AlternateId: "29084Q100"}, - 228527568798444: &Security{ - SecurityId: 228527568798444, - Name: "EMKR", - Description: "EMCORE Corp.", - Symbol: "EMKR", - Precision: 5, - Type: Stock, - AlternateId: "290846203"}, - 228527904675060: &Security{ - SecurityId: 228527904675060, - Name: "EBS", - Description: "Emergent BioSolutions, Inc.", - Symbol: "EBS", - Precision: 5, - Type: Stock, - AlternateId: "29089Q105"}, - 228588328860624: &Security{ - SecurityId: 228588328860624, - Name: "EMR", - Description: "Emerson Electric Co.", - Symbol: "EMR", - Precision: 5, - Type: Stock, - AlternateId: "291011104"}, - 228588416200800: &Security{ - SecurityId: 228588416200800, - Name: "EMES", - Description: "Emerge Energy Services L.P.", - Symbol: "EMES", - Precision: 5, - Type: Stock, - AlternateId: "29102H108"}, - 228588426278388: &Security{ - SecurityId: 228588426278388, - Name: "EMG", - Description: "Emergent Capital, Inc.", - Symbol: "EMG", - Precision: 5, - Type: Stock, - AlternateId: "29102N105"}, - 228588762248172: &Security{ - SecurityId: 228588762248172, - Name: "MSN", - Description: "Emerson Radio Corp.", - Symbol: "MSN", - Precision: 5, - Type: Stock, - AlternateId: "291087203"}, - 228599279956908: &Security{ - SecurityId: 228599279956908, - Name: "EMMS", - Description: "Emmis Communications Corp.", - Symbol: "EMMS", - Precision: 5, - Type: Stock, - AlternateId: "291525103"}, - 228599280003528: &Security{ - SecurityId: 228599280003528, - Name: "EMMSP", - Description: "Emmis Communications Corp., 6.25% Series A Cumul Convertible Preferred Stock", - Symbol: "EMMSP", - Precision: 5, - Type: Stock, - AlternateId: "291525202"}, - 228601570953312: &Security{ - SecurityId: 228601570953312, - Name: "EDE", - Description: "Empire District Electric Co. (The)", - Symbol: "EDE", - Precision: 5, - Type: Stock, - AlternateId: "291641108"}, - 228666936662388: &Security{ - SecurityId: 228666936662388, - Name: "NYNY", - Description: "Empire Resorts, Inc.", - Symbol: "NYNY", - Precision: 5, - Type: Stock, - AlternateId: "292052305"}, - 228667017190464: &Security{ - SecurityId: 228667017190464, - Name: "ERS", - Description: "Empire Resources, Inc.", - Symbol: "ERS", - Precision: 5, - Type: Stock, - AlternateId: "29206E100"}, - 228668811020352: &Security{ - SecurityId: 228668811020352, - Name: "ESBA", - Description: "Empire State Realty OP, L.P., Series ES, Operating Partnership Units Rep", - Symbol: "ESBA", - Precision: 5, - Type: Stock, - AlternateId: "292102100"}, - 228668811067332: &Security{ - SecurityId: 228668811067332, - Name: "OGCP", - Description: "Empire State Realty OP, L.P., Series 60, Operating Partnership Units Rep", - Symbol: "OGCP", - Precision: 5, - Type: Stock, - AlternateId: "292102209"}, - 228668811113952: &Security{ - SecurityId: 228668811113952, - Name: "FISK", - Description: "Empire State Realty OP, L.P., Series 250, Operating Partnership Units Rep", - Symbol: "FISK", - Precision: 5, - Type: Stock, - AlternateId: "292102308"}, - 228668814379800: &Security{ - SecurityId: 228668814379800, - Name: "ESRT", - Description: "Empire State Realty Trust, Inc.", - Symbol: "ESRT", - Precision: 5, - Type: Stock, - AlternateId: "292104106"}, - 228671058346704: &Security{ - SecurityId: 228671058346704, - Name: "EIG", - Description: "Employers Holdings, Inc.", - Symbol: "EIG", - Precision: 5, - Type: Stock, - AlternateId: "292218104"}, - 228675596669064: &Security{ - SecurityId: 228675596669064, - Name: "EDN", - Description: "Empresa Distribuidora y Comercializadora Norte S.A. EDENOR", - Symbol: "EDN", - Precision: 5, - Type: Stock, - AlternateId: "29244A102"}, - 228675628581732: &Security{ - SecurityId: 228675628581732, - Name: "EOC", - Description: "Empresa Nacional de Electricidad", - Symbol: "EOC", - Precision: 5, - Type: Stock, - AlternateId: "29244T101"}, - 228675593356632: &Security{ - SecurityId: 228675593356632, - Name: "ICA", - Description: "ICA Corp ADR", - Symbol: "ICA", - Precision: 5, - Type: Stock, - AlternateId: "292448206"}, - 228675821737536: &Security{ - SecurityId: 228675821737536, - Name: "ENBL", - Description: "Enable Midstream Partners, LP", - Symbol: "ENBL", - Precision: 5, - Type: Stock, - AlternateId: "292480100"}, - 228677553421812: &Security{ - SecurityId: 228677553421812, - Name: "ENB", - Description: "Enbridge, Inc.", - Symbol: "ENB", - Precision: 5, - Type: Stock, - AlternateId: "29250N105"}, - 228677560140312: &Security{ - SecurityId: 228677560140312, - Name: "EEP", - Description: "Enbridge Energy Partners, L.P.", - Symbol: "EEP", - Precision: 5, - Type: Stock, - AlternateId: "29250R106"}, - 228677570217900: &Security{ - SecurityId: 228677570217900, - Name: "EEQ", - Description: "Enbridge Energy Management, LLC", - Symbol: "EEQ", - Precision: 5, - Type: Stock, - AlternateId: "29250X103"}, - 228677523188688: &Security{ - SecurityId: 228677523188688, - Name: "ECA", - Description: "EnCana Corp.", - Symbol: "ECA", - Precision: 5, - Type: Stock, - AlternateId: "292505104"}, - 228677612208408: &Security{ - SecurityId: 228677612208408, - Name: "ENTA", - Description: "Enanta Pharmaceuticals, Inc.", - Symbol: "ENTA", - Precision: 5, - Type: Stock, - AlternateId: "29251M106"}, - 228677880946932: &Security{ - SecurityId: 228677880946932, - Name: "WIRE", - Description: "Encore Wire Corp.", - Symbol: "WIRE", - Precision: 5, - Type: Stock, - AlternateId: "292562105"}, - 228678055626924: &Security{ - SecurityId: 228678055626924, - Name: "EXK", - Description: "Endeavour Silver Corp.", - Symbol: "EXK", - Precision: 5, - Type: Stock, - AlternateId: "29258Y103"}, - 228680032535136: &Security{ - SecurityId: 228680032535136, - Name: "EGN", - Description: "Energen Corp.", - Symbol: "EGN", - Precision: 5, - Type: Stock, - AlternateId: "29265N108"}, - 228680101399320: &Security{ - SecurityId: 228680101399320, - Name: "ELGX", - Description: "Endologix, Inc.", - Symbol: "ELGX", - Precision: 5, - Type: Stock, - AlternateId: "29266S106"}, - 228680116795872: &Security{ - SecurityId: 228680116795872, - Name: "UUUU", - Description: "Energy Fuels, Inc.", - Symbol: "UUUU", - Precision: 5, - Type: Stock, - AlternateId: "292671708"}, - 228680252564616: &Security{ - SecurityId: 228680252564616, - Name: "ECYT", - Description: "Endocyte, Inc.", - Symbol: "ECYT", - Precision: 5, - Type: Stock, - AlternateId: "29269A102"}, - 228680269360704: &Security{ - SecurityId: 228680269360704, - Name: "NDRO", - Description: "Enduro Royalty Trust", - Symbol: "NDRO", - Precision: 5, - Type: Stock, - AlternateId: "29269K100"}, - 228681900267840: &Security{ - SecurityId: 228681900267840, - Name: "ERII", - Description: "Energy Recovery, Inc.", - Symbol: "ERII", - Precision: 5, - Type: Stock, - AlternateId: "29270J100"}, - 228682007763444: &Security{ - SecurityId: 228682007763444, - Name: "EIGI", - Description: "Endurance International Group Holdings, Inc.", - Symbol: "EIGI", - Precision: 5, - Type: Stock, - AlternateId: "29272B105"}, - 228682009442988: &Security{ - SecurityId: 228682009442988, - Name: "WATT", - Description: "Energous Corp.", - Symbol: "WATT", - Precision: 5, - Type: Stock, - AlternateId: "29272C103"}, - 228682039676076: &Security{ - SecurityId: 228682039676076, - Name: "GI", - Description: "EndoChoice Holdings, Inc.", - Symbol: "GI", - Precision: 5, - Type: Stock, - AlternateId: "29272U103"}, - 228682043035524: &Security{ - SecurityId: 228682043035524, - Name: "ENR", - Description: "Energizer Holdings, Inc.", - Symbol: "ENR", - Precision: 5, - Type: Stock, - AlternateId: "29272W109"}, - 228682095103620: &Security{ - SecurityId: 228682095103620, - Name: "ETE", - Description: "Energy Transfer Equity, L.P.", - Symbol: "ETE", - Precision: 5, - Type: Stock, - AlternateId: "29273R109"}, - 228682227793032: &Security{ - SecurityId: 228682227793032, - Name: "ENS", - Description: "EnerSys", - Symbol: "ENS", - Precision: 5, - Type: Stock, - AlternateId: "29275Y102"}, - 228682237870908: &Security{ - SecurityId: 228682237870908, - Name: "ENOC", - Description: "EnerNOC, Inc.", - Symbol: "ENOC", - Precision: 5, - Type: Stock, - AlternateId: "292764107"}, - 228751936895808: &Security{ - SecurityId: 228751936895808, - Name: "ENLC", - Description: "Enlink Midstream, LLC", - Symbol: "ENLC", - Precision: 5, - Type: Stock, - AlternateId: "29336T100"}, - 228752024235912: &Security{ - SecurityId: 228752024235912, - Name: "EBF", - Description: "Ennis, Inc.", - Symbol: "EBF", - Precision: 5, - Type: Stock, - AlternateId: "293389102"}, - 228756198081852: &Security{ - SecurityId: 228756198081852, - Name: "ENPH", - Description: "Enphase Energy, Inc.", - Symbol: "ENPH", - Precision: 5, - Type: Stock, - AlternateId: "29355A107"}, - 228756236713020: &Security{ - SecurityId: 228756236713020, - Name: "NPO", - Description: "EnPro Industries, Inc.", - Symbol: "NPO", - Precision: 5, - Type: Stock, - AlternateId: "29355X107"}, - 228756335810220: &Security{ - SecurityId: 228756335810220, - Name: "ENVA", - Description: "Enova International, Inc.", - Symbol: "ENVA", - Precision: 5, - Type: Stock, - AlternateId: "29357K103"}, - 228756404674404: &Security{ - SecurityId: 228756404674404, - Name: "ENSG", - Description: "Ensign Group, Inc. (The)", - Symbol: "ENSG", - Precision: 5, - Type: Stock, - AlternateId: "29358P101"}, - 228756471859080: &Security{ - SecurityId: 228756471859080, - Name: "ESNC", - Description: "EnSync, Inc.", - Symbol: "ESNC", - Precision: 5, - Type: Stock, - AlternateId: "29359T102"}, - 228758227057872: &Security{ - SecurityId: 228758227057872, - Name: "ENTG", - Description: "Entegris, Inc.", - Symbol: "ENTG", - Precision: 5, - Type: Stock, - AlternateId: "29362U104"}, - 228758269048416: &Security{ - SecurityId: 228758269048416, - Name: "ENFC", - Description: "Entegra Financial Corp.", - Symbol: "ENFC", - Precision: 5, - Type: Stock, - AlternateId: "29363J108"}, - 228758270727924: &Security{ - SecurityId: 228758270727924, - Name: "ENTL", - Description: "Entellus Medical, Inc.", - Symbol: "ENTL", - Precision: 5, - Type: Stock, - AlternateId: "29363K105"}, - 228758252251968: &Security{ - SecurityId: 228758252251968, - Name: "ETM", - Description: "Entercom Communications Corp.", - Symbol: "ETM", - Precision: 5, - Type: Stock, - AlternateId: "293639100"}, - 228758324475564: &Security{ - SecurityId: 228758324475564, - Name: "ETR", - Description: "Entergy Corp.", - Symbol: "ETR", - Precision: 5, - Type: Stock, - AlternateId: "29364G103"}, - 228758431971204: &Security{ - SecurityId: 228758431971204, - Name: "EBTC", - Description: "Enterprise Bancorp, Inc.", - Symbol: "EBTC", - Precision: 5, - Type: Stock, - AlternateId: "293668109"}, - 228760296344820: &Security{ - SecurityId: 228760296344820, - Name: "EFSC", - Description: "Enterprise Financial Services Corp.", - Symbol: "EFSC", - Precision: 5, - Type: Stock, - AlternateId: "293712105"}, - 228760780074300: &Security{ - SecurityId: 228760780074300, - Name: "EPD", - Description: "Enterprise Products Partners, L.P.", - Symbol: "EPD", - Precision: 5, - Type: Stock, - AlternateId: "293792107"}, - 228762575583804: &Security{ - SecurityId: 228762575583804, - Name: "EVC", - Description: "Entravision Communications Corp.", - Symbol: "EVC", - Precision: 5, - Type: Stock, - AlternateId: "29382R107"}, - 228762617573952: &Security{ - SecurityId: 228762617573952, - Name: "EGI", - Description: "Entree Gold, Inc.", - Symbol: "EGI", - Precision: 5, - Type: Stock, - AlternateId: "29383G100"}, - 228762642861684: &Security{ - SecurityId: 228762642861684, - Name: "EGT", - Description: "Entertainment Gaming Asia, Inc.", - Symbol: "EGT", - Precision: 5, - Type: Stock, - AlternateId: "29383V305"}, - 228764592802656: &Security{ - SecurityId: 228764592802656, - Name: "ENZN", - Description: "Enzon Pharmaceuticals, Inc.", - Symbol: "ENZN", - Precision: 5, - Type: Stock, - AlternateId: "293904108"}, - 228823634664216: &Security{ - SecurityId: 228823634664216, - Name: "ENV", - Description: "Envestnet, Inc.", - Symbol: "ENV", - Precision: 5, - Type: Stock, - AlternateId: "29404K106"}, - 228825535989384: &Security{ - SecurityId: 228825535989384, - Name: "ENZ", - Description: "Enzo Biochem, Inc.", - Symbol: "ENZ", - Precision: 5, - Type: Stock, - AlternateId: "294100102"}, - 228825767776428: &Security{ - SecurityId: 228825767776428, - Name: "EVHC", - Description: "Envision Healthcare Holdings, Inc.", - Symbol: "EVHC", - Precision: 5, - Type: Stock, - AlternateId: "29413U103"}, - 228825796329936: &Security{ - SecurityId: 228825796329936, - Name: "EPAM", - Description: "EPAM Systems, Inc.", - Symbol: "EPAM", - Precision: 5, - Type: Stock, - AlternateId: "29414B104"}, - 228825809766972: &Security{ - SecurityId: 228825809766972, - Name: "EVA", - Description: "Enviva Partners, LP", - Symbol: "EVA", - Precision: 5, - Type: Stock, - AlternateId: "29414J107"}, - 228828089005884: &Security{ - SecurityId: 228828089005884, - Name: "PLUS", - Description: "ePlus, Inc.", - Symbol: "PLUS", - Precision: 5, - Type: Stock, - AlternateId: "294268107"}, - 228828238491708: &Security{ - SecurityId: 228828238491708, - Name: "EPRS", - Description: "EPIRUS Biopharmaceuticals, Inc.", - Symbol: "EPRS", - Precision: 5, - Type: Stock, - AlternateId: "29428P107"}, - 228828248569296: &Security{ - SecurityId: 228828248569296, - Name: "EPZM", - Description: "Epizyme, Inc.", - Symbol: "EPZM", - Precision: 5, - Type: Stock, - AlternateId: "29428V104"}, - 228832202385396: &Security{ - SecurityId: 228832202385396, - Name: "EFX", - Description: "Equifax, Inc.", - Symbol: "EFX", - Precision: 5, - Type: Stock, - AlternateId: "294429105"}, - 228832358869440: &Security{ - SecurityId: 228832358869440, - Name: "EQIX", - Description: "Equinix, Inc.", - Symbol: "EQIX", - Precision: 5, - Type: Stock, - AlternateId: "29444U700"}, - 228832598774772: &Security{ - SecurityId: 228832598774772, - Name: "EQFN", - Description: "Equitable Financial Corp.", - Symbol: "EQFN", - Precision: 5, - Type: Stock, - AlternateId: "29448T105"}, - 228836475328644: &Security{ - SecurityId: 228836475328644, - Name: "EQBK", - Description: "Equity BancShares, Inc. Cl A", - Symbol: "EQBK", - Precision: 5, - Type: Stock, - AlternateId: "29460X109"}, - 228836554316964: &Security{ - SecurityId: 228836554316964, - Name: "EQC-D", - Description: "Equity Commonwealth, 6 1/2% Series D Cumulative Convertible Preferred Shares", - Symbol: "EQC-D", - Precision: 5, - Type: Stock, - AlternateId: "294628201"}, - 228836554410564: &Security{ - SecurityId: 228836554410564, - Name: "EQC-E", - Description: "Equity Commonwealth, 7 1/4% Series E Cumulative Redeemable Preferred Shares", - Symbol: "EQC-E", - Precision: 5, - Type: Stock, - AlternateId: "294628409"}, - 228838762965600: &Security{ - SecurityId: 228838762965600, - Name: "ELS", - Description: "Equity Lifestyle Properties, Inc.", - Symbol: "ELS", - Precision: 5, - Type: Stock, - AlternateId: "29472R108"}, - 228838902373440: &Security{ - SecurityId: 228838902373440, - Name: "EQY", - Description: "Equity One, Inc.", - Symbol: "EQY", - Precision: 5, - Type: Stock, - AlternateId: "294752100"}, - 228838994752572: &Security{ - SecurityId: 228838994752572, - Name: "EQR", - Description: "Equity Residential", - Symbol: "EQR", - Precision: 5, - Type: Stock, - AlternateId: "29476L107"}, - 228838969558080: &Security{ - SecurityId: 228838969558080, - Name: "EQS", - Description: "Equus Total Return, Inc.", - Symbol: "EQS", - Precision: 5, - Type: Stock, - AlternateId: "294766100"}, - 228840936388416: &Security{ - SecurityId: 228840936388416, - Name: "EAC", - Description: "Erickson Air-Crane, Inc.", - Symbol: "EAC", - Precision: 5, - Type: Stock, - AlternateId: "29482P100"}, - 228840896311200: &Security{ - SecurityId: 228840896311200, - Name: "ERIC", - Description: "Ericsson ADR", - Symbol: "ERIC", - Precision: 5, - Type: Stock, - AlternateId: "294821608"}, - 228908295708552: &Security{ - SecurityId: 228908295708552, - Name: "ERIE", - Description: "Erie Indemnity Co.", - Symbol: "ERIE", - Precision: 5, - Type: Stock, - AlternateId: "29530P102"}, - 228914913395772: &Security{ - SecurityId: 228914913395772, - Name: "ERN", - Description: "Erin Energy Corp.", - Symbol: "ERN", - Precision: 5, - Type: Stock, - AlternateId: "295625107"}, - 228980399943888: &Security{ - SecurityId: 228980399943888, - Name: "ESCA", - Description: "Escalade, Inc.", - Symbol: "ESCA", - Precision: 5, - Type: Stock, - AlternateId: "296056104"}, - 228980517610356: &Security{ - SecurityId: 228980517610356, - Name: "ESMC", - Description: "Escalon Medical Corp.", - Symbol: "ESMC", - Precision: 5, - Type: Stock, - AlternateId: "296074305"}, - 228986686746576: &Security{ - SecurityId: 228986686746576, - Name: "ESE", - Description: "ESCO Technologies, Inc.", - Symbol: "ESE", - Precision: 5, - Type: Stock, - AlternateId: "296315104"}, - 228993450560208: &Security{ - SecurityId: 228993450560208, - Name: "ESP", - Description: "Espey Mfg. & Electronics Corp.", - Symbol: "ESP", - Precision: 5, - Type: Stock, - AlternateId: "296650104"}, - 228993660512208: &Security{ - SecurityId: 228993660512208, - Name: "EPIX", - Description: "ESSA Pharma, Inc.", - Symbol: "EPIX", - Precision: 5, - Type: Stock, - AlternateId: "29668H104"}, - 228993647075208: &Security{ - SecurityId: 228993647075208, - Name: "ESND", - Description: "Essendant, Inc.", - Symbol: "ESND", - Precision: 5, - Type: Stock, - AlternateId: "296689102"}, - 229061065181940: &Security{ - SecurityId: 229061065181940, - Name: "ESS", - Description: "Essex Property Trust, Inc.", - Symbol: "ESS", - Precision: 5, - Type: Stock, - AlternateId: "297178105"}, - 229061123968536: &Security{ - SecurityId: 229061123968536, - Name: "ESSX", - Description: "Essex Rental Corp.", - Symbol: "ESSX", - Precision: 5, - Type: Stock, - AlternateId: "297187106"}, - 229067288159040: &Security{ - SecurityId: 229067288159040, - Name: "ESL", - Description: "Esterline Technologies Corp.", - Symbol: "ESL", - Precision: 5, - Type: Stock, - AlternateId: "297425100"}, - 229069933554276: &Security{ - SecurityId: 229069933554276, - Name: "DEG", - Description: "Delhaize Group SA ADR", - Symbol: "DEG", - Precision: 5, - Type: Stock, - AlternateId: "29759W101"}, - 229071515752656: &Security{ - SecurityId: 229071515752656, - Name: "ETH", - Description: "Ethan Allen Interiors, Inc.", - Symbol: "ETH", - Precision: 5, - Type: Stock, - AlternateId: "297602104"}, - 229076245551384: &Security{ - SecurityId: 229076245551384, - Name: "ETSY", - Description: "Etsy, Inc.", - Symbol: "ETSY", - Precision: 5, - Type: Stock, - AlternateId: "29786A106"}, - 229145749740864: &Security{ - SecurityId: 229145749740864, - Name: "EMXX", - Description: "Eurasian Minerals, Inc.", - Symbol: "EMXX", - Precision: 5, - Type: Stock, - AlternateId: "29843R100"}, - 229152244816260: &Security{ - SecurityId: 229152244816260, - Name: "EEFT", - Description: "Euronet Services, Inc.", - Symbol: "EEFT", - Precision: 5, - Type: Stock, - AlternateId: "298736109"}, - 229152429573768: &Security{ - SecurityId: 229152429573768, - Name: "EEA", - Description: "European Equity Fund, Inc.", - Symbol: "EEA", - Precision: 5, - Type: Stock, - AlternateId: "298768102"}, - 229217460992928: &Security{ - SecurityId: 229217460992928, - Name: "EVBN", - Description: "Evans Bancorp, Inc.", - Symbol: "EVBN", - Precision: 5, - Type: Stock, - AlternateId: "29911Q208"}, - 229230790425360: &Security{ - SecurityId: 229230790425360, - Name: "EVK", - Description: "Ever-Glory International Group, Inc.", - Symbol: "EVK", - Precision: 5, - Type: Stock, - AlternateId: "299766204"}, - 229230867640968: &Security{ - SecurityId: 229230867640968, - Name: "EVER", - Description: "EverBank Financial Corp.", - Symbol: "EVER", - Precision: 5, - Type: Stock, - AlternateId: "29977G102"}, - 304686690972588: &Security{ - SecurityId: 304686690972588, - Name: "EVRI", - Description: "Everi Holdings, Inc.", - Symbol: "EVRI", - Precision: 5, - Type: Stock, - AlternateId: "30034T103"}, - 304688619171756: &Security{ - SecurityId: 304688619171756, - Name: "EVTC", - Description: "Evertec, Inc.", - Symbol: "EVTC", - Precision: 5, - Type: Stock, - AlternateId: "30040P103"}, - 304688630929248: &Security{ - SecurityId: 304688630929248, - Name: "ES", - Description: "Eversource Energy", - Symbol: "ES", - Precision: 5, - Type: Stock, - AlternateId: "30040W108"}, - 304688646045720: &Security{ - SecurityId: 304688646045720, - Name: "EVDY", - Description: "Everyday Health, Inc.", - Symbol: "EVDY", - Precision: 5, - Type: Stock, - AlternateId: "300415106"}, - 304689138173244: &Security{ - SecurityId: 304689138173244, - Name: "EPM", - Description: "Evolution Petroleum Corp.", - Symbol: "EPM", - Precision: 5, - Type: Stock, - AlternateId: "30049A107"}, - 304689148250832: &Security{ - SecurityId: 304689148250832, - Name: "EVOK", - Description: "Evoke Pharma, Inc.", - Symbol: "EVOK", - Precision: 5, - Type: Stock, - AlternateId: "30049G104"}, - 304690772439396: &Security{ - SecurityId: 304690772439396, - Name: "EVH", - Description: "Evolent Health, Inc. Cl A", - Symbol: "EVH", - Precision: 5, - Type: Stock, - AlternateId: "30050B101"}, - 304692998117184: &Security{ - SecurityId: 304692998117184, - Name: "EXA", - Description: "EXA Corporation", - Symbol: "EXA", - Precision: 5, - Type: Stock, - AlternateId: "300614500"}, - 304693154135028: &Security{ - SecurityId: 304693154135028, - Name: "EXAS", - Description: "EXACT Sciences Corp.", - Symbol: "EXAS", - Precision: 5, - Type: Stock, - AlternateId: "30063P105"}, - 304693196125572: &Security{ - SecurityId: 304693196125572, - Name: "EXAC", - Description: "Exactech, Inc.", - Symbol: "EXAC", - Precision: 5, - Type: Stock, - AlternateId: "30064E109"}, - 304693181008992: &Security{ - SecurityId: 304693181008992, - Name: "EXAR", - Description: "Exar Corp.", - Symbol: "EXAR", - Precision: 5, - Type: Stock, - AlternateId: "300645108"}, - 304693310339316: &Security{ - SecurityId: 304693310339316, - Name: "EXAM", - Description: "ExamWorks Group, Inc.", - Symbol: "EXAM", - Precision: 5, - Type: Stock, - AlternateId: "30066A105"}, - 304769126525868: &Security{ - SecurityId: 304769126525868, - Name: "YMLP", - Description: "Yorkville High Income MLP ETF", - Symbol: "YMLP", - Precision: 5, - Type: Stock, - AlternateId: "301505103"}, - 304769126665728: &Security{ - SecurityId: 304769126665728, - Name: "FLAG", - Description: "WeatherStorm Forensic Accounting Long-Short ETF", - Symbol: "FLAG", - Precision: 5, - Type: Stock, - AlternateId: "301505400"}, - 304769126712708: &Security{ - SecurityId: 304769126712708, - Name: "YMLI", - Description: "Yorkville High Income Infrastructure MLP ETF", - Symbol: "YMLI", - Precision: 5, - Type: Stock, - AlternateId: "301505509"}, - 304769126759328: &Security{ - SecurityId: 304769126759328, - Name: "ERW", - Description: "Janus Equal Risk Weighted Large Cap ETF", - Symbol: "ERW", - Precision: 5, - Type: Stock, - AlternateId: "301505608"}, - 304769126805948: &Security{ - SecurityId: 304769126805948, - Name: "ROBO", - Description: "Robo-Stox Global Robotics and Automation Index ETF", - Symbol: "ROBO", - Precision: 5, - Type: Stock, - AlternateId: "301505707"}, - 304769126863044: &Security{ - SecurityId: 304769126863044, - Name: "EMQQ", - Description: "Emerging Markets Internet and Ecommerce ETF", - Symbol: "EMQQ", - Precision: 5, - Type: Stock, - AlternateId: "301505889"}, - 304769202108588: &Security{ - SecurityId: 304769202108588, - Name: "HSPX", - Description: "Horizons S&P 500 Covered Call ETF", - Symbol: "HSPX", - Precision: 5, - Type: Stock, - AlternateId: "30151E103"}, - 304769202295428: &Security{ - SecurityId: 304769202295428, - Name: "KLEM", - Description: "Gavekal Knowledge Leaders Emerging Markets ETF", - Symbol: "KLEM", - Precision: 5, - Type: Stock, - AlternateId: "30151E509"}, - 304769202342048: &Security{ - SecurityId: 304769202342048, - Name: "KLDW", - Description: "Gavekal Knowledge Leaders Developed World ETF", - Symbol: "KLDW", - Precision: 5, - Type: Stock, - AlternateId: "30151E608"}, - 304771394007396: &Security{ - SecurityId: 304771394007396, - Name: "EXC", - Description: "Exelon Corp.", - Symbol: "EXC", - Precision: 5, - Type: Stock, - AlternateId: "30161N101"}, - 304771394010204: &Security{ - SecurityId: 304771394010204, - Name: "EXCU", - Description: "Exelon Corp., 6.50% Equity Units", - Symbol: "EXCU", - Precision: 5, - Type: Stock, - AlternateId: "30161N127"}, - 304771399046352: &Security{ - SecurityId: 304771399046352, - Name: "EXEL", - Description: "Exelixis, Inc.", - Symbol: "EXEL", - Precision: 5, - Type: Stock, - AlternateId: "30161Q104"}, - 304775838271440: &Security{ - SecurityId: 304775838271440, - Name: "XRA", - Description: "Exeter Resource Corp.", - Symbol: "XRA", - Precision: 5, - Type: Stock, - AlternateId: "301835104"}, - 304836850322748: &Security{ - SecurityId: 304836850322748, - Name: "EXFO", - Description: "EXFO, Inc.", - Symbol: "EXFO", - Precision: 5, - Type: Stock, - AlternateId: "302046107"}, - 304838781881040: &Security{ - SecurityId: 304838781881040, - Name: "XONE", - Description: "ExOne Co.", - Symbol: "XONE", - Precision: 5, - Type: Stock, - AlternateId: "302104104"}, - 304838938178604: &Security{ - SecurityId: 304838938178604, - Name: "EXPE", - Description: "Expedia, Inc.", - Symbol: "EXPE", - Precision: 5, - Type: Stock, - AlternateId: "30212P303"}, - 304838956561284: &Security{ - SecurityId: 304838956561284, - Name: "EXPD", - Description: "Expeditors Intl of Washington, Inc.", - Symbol: "EXPD", - Precision: 5, - Type: Stock, - AlternateId: "302130109"}, - 304839067415688: &Security{ - SecurityId: 304839067415688, - Name: "EXPO", - Description: "Exponent, Inc.", - Symbol: "EXPO", - Precision: 5, - Type: Stock, - AlternateId: "30214U102"}, - 304839342872748: &Security{ - SecurityId: 304839342872748, - Name: "EXPR", - Description: "Express, Inc.", - Symbol: "EXPR", - Precision: 5, - Type: Stock, - AlternateId: "30219E103"}, - 304839346232160: &Security{ - SecurityId: 304839346232160, - Name: "ESRX", - Description: "Express Scripts Holding Co.", - Symbol: "ESRX", - Precision: 5, - Type: Stock, - AlternateId: "30219G108"}, - 304841235846528: &Security{ - SecurityId: 304841235846528, - Name: "STAY", - Description: "Extended Stay America, Inc.", - Symbol: "STAY", - Precision: 5, - Type: Stock, - AlternateId: "30224P200"}, - 304841336577048: &Security{ - SecurityId: 304841336577048, - Name: "EXTR", - Description: "Extreme Networks, Inc.", - Symbol: "EXTR", - Precision: 5, - Type: Stock, - AlternateId: "30226D106"}, - 304841403761688: &Security{ - SecurityId: 304841403761688, - Name: "EXTN", - Description: "Exterran Corp.", - Symbol: "EXTN", - Precision: 5, - Type: Stock, - AlternateId: "30227H106"}, - 304843130406936: &Security{ - SecurityId: 304843130406936, - Name: "EZPW", - Description: "EZCORP, Inc.", - Symbol: "EZPW", - Precision: 5, - Type: Stock, - AlternateId: "302301106"}, - 304843216067208: &Security{ - SecurityId: 304843216067208, - Name: "XOM", - Description: "Exxon Mobil Corp.", - Symbol: "XOM", - Precision: 5, - Type: Stock, - AlternateId: "30231G102"}, - 304843347077436: &Security{ - SecurityId: 304843347077436, - Name: "EYEG", - Description: "Eyegate Pharmaceuticals, Inc.", - Symbol: "EYEG", - Precision: 5, - Type: Stock, - AlternateId: "30233M107"}, - 304843698117144: &Security{ - SecurityId: 304843698117144, - Name: "FFG", - Description: "FBL Financial Group, Inc.", - Symbol: "FFG", - Precision: 5, - Type: Stock, - AlternateId: "30239F106"}, - 304845401247876: &Security{ - SecurityId: 304845401247876, - Name: "FEIC", - Description: "FEI Co.", - Symbol: "FEIC", - Precision: 5, - Type: Stock, - AlternateId: "30241L109"}, - 304845555772260: &Security{ - SecurityId: 304845555772260, - Name: "FLIR", - Description: "FLIR Systems, Inc.", - Symbol: "FLIR", - Precision: 5, - Type: Stock, - AlternateId: "302445101"}, - 304845900093540: &Security{ - SecurityId: 304845900093540, - Name: "FTI", - Description: "FMC Technologies, Inc.", - Symbol: "FTI", - Precision: 5, - Type: Stock, - AlternateId: "30249U101"}, - 304845851478060: &Security{ - SecurityId: 304845851478060, - Name: "FMC", - Description: "FMC Corp.", - Symbol: "FMC", - Precision: 5, - Type: Stock, - AlternateId: "302491303"}, - 304847603224164: &Security{ - SecurityId: 304847603224164, - Name: "FNB", - Description: "F.N.B. Corp.", - Symbol: "FNB", - Precision: 5, - Type: Stock, - AlternateId: "302520101"}, - 304847811496620: &Security{ - SecurityId: 304847811496620, - Name: "FCB", - Description: "FCB Financial Holdings, Inc.", - Symbol: "FCB", - Precision: 5, - Type: Stock, - AlternateId: "30255G103"}, - 304849897579728: &Security{ - SecurityId: 304849897579728, - Name: "FSBW", - Description: "FS Bancorp, Inc.", - Symbol: "FSBW", - Precision: 5, - Type: Stock, - AlternateId: "30263Y104"}, - 304849848870972: &Security{ - SecurityId: 304849848870972, - Name: "FSIC", - Description: "FS Investment Corp.", - Symbol: "FSIC", - Precision: 5, - Type: Stock, - AlternateId: "302635107"}, - 304850208355380: &Security{ - SecurityId: 304850208355380, - Name: "FXCM", - Description: "FXCM, Inc.", - Symbol: "FXCM", - Precision: 5, - Type: Stock, - AlternateId: "302693205"}, - 304850211667812: &Security{ - SecurityId: 304850211667812, - Name: "FXEN", - Description: "FX Energy, Inc.", - Symbol: "FXEN", - Precision: 5, - Type: Stock, - AlternateId: "302695101"}, - 304850211761412: &Security{ - SecurityId: 304850211761412, - Name: "FXENP", - Description: "FX Energy, 9.25% Series B Cumulative Convertible Preferred Stock", - Symbol: "FXENP", - Precision: 5, - Type: Stock, - AlternateId: "302695309"}, - 304854125173344: &Security{ - SecurityId: 304854125173344, - Name: "FTD", - Description: "FTD Companies, Inc.", - Symbol: "FTD", - Precision: 5, - Type: Stock, - AlternateId: "30281V108"}, - 304856345625660: &Security{ - SecurityId: 304856345625660, - Name: "FRPH", - Description: "FRP Holdings, Inc.", - Symbol: "FRPH", - Precision: 5, - Type: Stock, - AlternateId: "30292L107"}, - 304856432965764: &Security{ - SecurityId: 304856432965764, - Name: "FCN", - Description: "FTI Consulting, Inc.", - Symbol: "FCN", - Precision: 5, - Type: Stock, - AlternateId: "302941109"}, - 304915180894344: &Security{ - SecurityId: 304915180894344, - Name: "FB", - Description: "Facebook, Inc.", - Symbol: "FB", - Precision: 5, - Type: Stock, - AlternateId: "30303M102"}, - 304915249852128: &Security{ - SecurityId: 304915249852128, - Name: "SILJ", - Description: "PureFunds ISE Junior Silver (Small Cap Miners/Explorers) ETF", - Symbol: "SILJ", - Precision: 5, - Type: Stock, - AlternateId: "30304R308"}, - 304915249898748: &Security{ - SecurityId: 304915249898748, - Name: "HACK", - Description: "PureFunds ISE Cyber Security ETF", - Symbol: "HACK", - Precision: 5, - Type: Stock, - AlternateId: "30304R407"}, - 304915249945368: &Security{ - SecurityId: 304915249945368, - Name: "BDAT", - Description: "PureFunds ISE Big Data ETF", - Symbol: "BDAT", - Precision: 5, - Type: Stock, - AlternateId: "30304R506"}, - 304915249991988: &Security{ - SecurityId: 304915249991988, - Name: "IPAY", - Description: "PureFunds ISE Mobile Payments ETF", - Symbol: "IPAY", - Precision: 5, - Type: Stock, - AlternateId: "30304R605"}, - 304915250038608: &Security{ - SecurityId: 304915250038608, - Name: "LARE", - Description: "Tierra XP Latin America Real Estate ETF", - Symbol: "LARE", - Precision: 5, - Type: Stock, - AlternateId: "30304R704"}, - 304915250085228: &Security{ - SecurityId: 304915250085228, - Name: "BITE", - Description: "The Restaurant ETF", - Symbol: "BITE", - Precision: 5, - Type: Stock, - AlternateId: "30304R803"}, - 304915250094480: &Security{ - SecurityId: 304915250094480, - Name: "ETHO", - Description: "Etho Climate Leadership U.S. ETF", - Symbol: "ETHO", - Precision: 5, - Type: Stock, - AlternateId: "30304R878"}, - 304915250095704: &Security{ - SecurityId: 304915250095704, - Name: "ITEQ", - Description: "BlueStar TA-BIGITech Israel Technology ETF", - Symbol: "ITEQ", - Precision: 5, - Type: Stock, - AlternateId: "30304R886"}, - 304915394205684: &Security{ - SecurityId: 304915394205684, - Name: "FDS", - Description: "FactSet Research Systems, Inc.", - Symbol: "FDS", - Precision: 5, - Type: Stock, - AlternateId: "303075105"}, - 304919618439888: &Security{ - SecurityId: 304919618439888, - Name: "FICO", - Description: "Fair Isaac Corp.", - Symbol: "FICO", - Precision: 5, - Type: Stock, - AlternateId: "303250104"}, - 304930331030700: &Security{ - SecurityId: 304930331030700, - Name: "FCS", - Description: "Fairchild Semiconductor Intl, Inc.", - Symbol: "FCS", - Precision: 5, - Type: Stock, - AlternateId: "303726103"}, - 305082920785248: &Security{ - SecurityId: 305082920785248, - Name: "FMSA", - Description: "Fairmount Santrol Holdings Inc.", - Symbol: "FMSA", - Precision: 5, - Type: Stock, - AlternateId: "30555Q108"}, - 305082937674504: &Security{ - SecurityId: 305082937674504, - Name: "FRP", - Description: "FairPoint Communications, Inc", - Symbol: "FRP", - Precision: 5, - Type: Stock, - AlternateId: "305560302"}, - 305150258270340: &Security{ - SecurityId: 305150258270340, - Name: "FWM", - Description: "Fairway Group Holdings Corp.", - Symbol: "FWM", - Precision: 5, - Type: Stock, - AlternateId: "30603D109"}, - 305152424974656: &Security{ - SecurityId: 305152424974656, - Name: "FALC", - Description: "FalconStor Software, Inc.", - Symbol: "FALC", - Precision: 5, - Type: Stock, - AlternateId: "306137100"}, - 305228795434776: &Security{ - SecurityId: 305228795434776, - Name: "DAVE", - Description: "Famous Dave's of America, Inc.", - Symbol: "DAVE", - Precision: 5, - Type: Stock, - AlternateId: "307068106"}, - 305241911556192: &Security{ - SecurityId: 305241911556192, - Name: "FARM", - Description: "Farmer Brothers Co.", - Symbol: "FARM", - Precision: 5, - Type: Stock, - AlternateId: "307675108"}, - 305396397596952: &Security{ - SecurityId: 305396397596952, - Name: "FFKT", - Description: "Farmers Capital Bank Corp.", - Symbol: "FFKT", - Precision: 5, - Type: Stock, - AlternateId: "309562106"}, - 305398340912700: &Security{ - SecurityId: 305398340912700, - Name: "FMNB", - Description: "Farmers National Banc Corp.", - Symbol: "FMNB", - Precision: 5, - Type: Stock, - AlternateId: "309627107"}, - 307590515249796: &Security{ - SecurityId: 307590515249796, - Name: "FPI", - Description: "Farmland Partners, Inc.", - Symbol: "FPI", - Precision: 5, - Type: Stock, - AlternateId: "31154R109"}, - 307592650041480: &Security{ - SecurityId: 307592650041480, - Name: "FARO", - Description: "FARO Technologies, Inc.", - Symbol: "FARO", - Precision: 5, - Type: Stock, - AlternateId: "311642102"}, - 307597344568200: &Security{ - SecurityId: 307597344568200, - Name: "FATE", - Description: "Fate Therapeutics, Inc.", - Symbol: "FATE", - Precision: 5, - Type: Stock, - AlternateId: "31189P102"}, - 307598935164624: &Security{ - SecurityId: 307598935164624, - Name: "FAST", - Description: "Fastenal Co.", - Symbol: "FAST", - Precision: 5, - Type: Stock, - AlternateId: "311900104"}, - 307658025735264: &Security{ - SecurityId: 307658025735264, - Name: "FBSS", - Description: "Fauquier Bankshares, Inc.", - Symbol: "FBSS", - Precision: 5, - Type: Stock, - AlternateId: "312059108"}, - 307738504535904: &Security{ - SecurityId: 307738504535904, - Name: "AGM.A", - Description: "Federal Agricultural Mortgage Corp. Cl A", - Symbol: "AGM.A", - Precision: 5, - Type: Stock, - AlternateId: "313148108"}, - 307738504629144: &Security{ - SecurityId: 307738504629144, - Name: "AGM", - Description: "Federal Agricultural Mortgage Corp. Cl C", - Symbol: "AGM", - Precision: 5, - Type: Stock, - AlternateId: "313148306"}, - 307747213484688: &Security{ - SecurityId: 307747213484688, - Name: "FDML", - Description: "Federal-Mogul Corp. Class A", - Symbol: "FDML", - Precision: 5, - Type: Stock, - AlternateId: "313549404"}, - 307751563596888: &Security{ - SecurityId: 307751563596888, - Name: "FRT", - Description: "Federal Realty Investment Trust", - Symbol: "FRT", - Precision: 5, - Type: Stock, - AlternateId: "313747206"}, - 307753797439584: &Security{ - SecurityId: 307753797439584, - Name: "FSS", - Description: "Federal Signal Corp.", - Symbol: "FSS", - Precision: 5, - Type: Stock, - AlternateId: "313855108"}, - 307818959821668: &Security{ - SecurityId: 307818959821668, - Name: "FNHC", - Description: "Federated National Holding Co.", - Symbol: "FNHC", - Precision: 5, - Type: Stock, - AlternateId: "31422T101"}, - 307819008530676: &Security{ - SecurityId: 307819008530676, - Name: "FPT", - Description: "Federated Premier Intermediate Municipal Income Fund", - Symbol: "FPT", - Precision: 5, - Type: Stock, - AlternateId: "31423M105"}, - 307819013569632: &Security{ - SecurityId: 307819013569632, - Name: "FMN", - Description: "Federated Premier Municipal Income Fund", - Symbol: "FMN", - Precision: 5, - Type: Stock, - AlternateId: "31423P108"}, - 307819329337368: &Security{ - SecurityId: 307819329337368, - Name: "FDX", - Description: "FedEx Corp.", - Symbol: "FDX", - Precision: 5, - Type: Stock, - AlternateId: "31428X106"}, - 307820992157028: &Security{ - SecurityId: 307820992157028, - Name: "FCH", - Description: "FelCor Lodging Trust, Inc.", - Symbol: "FCH", - Precision: 5, - Type: Stock, - AlternateId: "31430F101"}, - 307820992203648: &Security{ - SecurityId: 307820992203648, - Name: "FCH-A", - Description: "FelCor Lodging Trust, $1.95 Series A Cumul Convertible Preferred Stock", - Symbol: "FCH-A", - Precision: 5, - Type: Stock, - AlternateId: "31430F200"}, - 307823541814080: &Security{ - SecurityId: 307823541814080, - Name: "FENX", - Description: "Fenix Parts, Inc.", - Symbol: "FENX", - Precision: 5, - Type: Stock, - AlternateId: "31446L100"}, - 307823509901448: &Security{ - SecurityId: 307823509901448, - Name: "FHCO", - Description: "Female Health Co. (The)", - Symbol: "FHCO", - Precision: 5, - Type: Stock, - AlternateId: "314462102"}, - 307897703578944: &Security{ - SecurityId: 307897703578944, - Name: "FGP", - Description: "Ferrellgas Partners, L.P.", - Symbol: "FGP", - Precision: 5, - Type: Stock, - AlternateId: "315293100"}, - 307901516307264: &Security{ - SecurityId: 307901516307264, - Name: "FOE", - Description: "Ferro Corp.", - Symbol: "FOE", - Precision: 5, - Type: Stock, - AlternateId: "315405100"}, - 307905932017800: &Security{ - SecurityId: 307905932017800, - Name: "FFIV", - Description: "F5 Networks, Inc.", - Symbol: "FFIV", - Precision: 5, - Type: Stock, - AlternateId: "315616102"}, - 307908203185440: &Security{ - SecurityId: 307908203185440, - Name: "FGEN", - Description: "FibroGen, Inc.", - Symbol: "FGEN", - Precision: 5, - Type: Stock, - AlternateId: "31572Q808"}, - 307908236451204: &Security{ - SecurityId: 307908236451204, - Name: "FBR", - Description: "Fibria Celulosa S.A. ADR", - Symbol: "FBR", - Precision: 5, - Type: Stock, - AlternateId: "31573A109"}, - 307908530383860: &Security{ - SecurityId: 307908530383860, - Name: "FGL", - Description: "Fidelity & Guaranty Life", - Symbol: "FGL", - Precision: 5, - Type: Stock, - AlternateId: "315785105"}, - 307912455973152: &Security{ - SecurityId: 307912455973152, - Name: "ONEQ", - Description: "Fidelity Nasdaq Composite Index Tracking Stock", - Symbol: "ONEQ", - Precision: 5, - Type: Stock, - AlternateId: "315912808"}, - 307971712545552: &Security{ - SecurityId: 307971712545552, - Name: "FDIS", - Description: "Fidelity MSCI Consumer Discretionary Index ETF", - Symbol: "FDIS", - Precision: 5, - Type: Stock, - AlternateId: "316092204"}, - 307971712592172: &Security{ - SecurityId: 307971712592172, - Name: "FSTA", - Description: "Fidelity MSCI Consumer Staples Index ETF", - Symbol: "FSTA", - Precision: 5, - Type: Stock, - AlternateId: "316092303"}, - 307971712638792: &Security{ - SecurityId: 307971712638792, - Name: "FENY", - Description: "Fidelity MSCI Energy Index ETF", - Symbol: "FENY", - Precision: 5, - Type: Stock, - AlternateId: "316092402"}, - 307971712685412: &Security{ - SecurityId: 307971712685412, - Name: "FNCL", - Description: "Fidelity MSCI Financials Index ETF", - Symbol: "FNCL", - Precision: 5, - Type: Stock, - AlternateId: "316092501"}, - 307971712732032: &Security{ - SecurityId: 307971712732032, - Name: "FHLC", - Description: "Fidelity MSCI Health Care Index ETF", - Symbol: "FHLC", - Precision: 5, - Type: Stock, - AlternateId: "316092600"}, - 307971712779012: &Security{ - SecurityId: 307971712779012, - Name: "FIDU", - Description: "Fidelity MSCI Industrials Index ETF", - Symbol: "FIDU", - Precision: 5, - Type: Stock, - AlternateId: "316092709"}, - 307971712825632: &Security{ - SecurityId: 307971712825632, - Name: "FTEC", - Description: "Fidelity MSCI Information Technology Index ETF", - Symbol: "FTEC", - Precision: 5, - Type: Stock, - AlternateId: "316092808"}, - 307971712832076: &Security{ - SecurityId: 307971712832076, - Name: "FREL", - Description: "Fidelity MSCI Real Estate Index ETF", - Symbol: "FREL", - Precision: 5, - Type: Stock, - AlternateId: "316092857"}, - 307971712833300: &Security{ - SecurityId: 307971712833300, - Name: "FUTY", - Description: "Fidelity MSCI Utilities Index ETF", - Symbol: "FUTY", - Precision: 5, - Type: Stock, - AlternateId: "316092865"}, - 307971712834524: &Security{ - SecurityId: 307971712834524, - Name: "FCOM", - Description: "Fidelity MSCI Telecommunication Services Index ETF", - Symbol: "FCOM", - Precision: 5, - Type: Stock, - AlternateId: "316092873"}, - 307971712835748: &Security{ - SecurityId: 307971712835748, - Name: "FMAT", - Description: "Fidelity MSCI Materials Index ETF", - Symbol: "FMAT", - Precision: 5, - Type: Stock, - AlternateId: "316092881"}, - 307973838892644: &Security{ - SecurityId: 307973838892644, - Name: "FCOR", - Description: "Fidelity Corporate Bond ETF", - Symbol: "FCOR", - Precision: 5, - Type: Stock, - AlternateId: "316188101"}, - 307973838939264: &Security{ - SecurityId: 307973838939264, - Name: "FLTB", - Description: "Fidelity Limited Term Bond ETF", - Symbol: "FLTB", - Precision: 5, - Type: Stock, - AlternateId: "316188200"}, - 307973838986244: &Security{ - SecurityId: 307973838986244, - Name: "FBND", - Description: "Fidelity Total Bond ETF", - Symbol: "FBND", - Precision: 5, - Type: Stock, - AlternateId: "316188309"}, - 307975555460376: &Security{ - SecurityId: 307975555460376, - Name: "FIS", - Description: "Fidelity National Information Services, Inc.", - Symbol: "FIS", - Precision: 5, - Type: Stock, - AlternateId: "31620M106"}, - 307978246205172: &Security{ - SecurityId: 307978246205172, - Name: "LION", - Description: "Fidelity Southern Corp.", - Symbol: "LION", - Precision: 5, - Type: Stock, - AlternateId: "316394105"}, - 307980339006744: &Security{ - SecurityId: 307980339006744, - Name: "FMO", - Description: "Fiduciary/Claymore MLP Opportunity Fund", - Symbol: "FMO", - Precision: 5, - Type: Stock, - AlternateId: "31647Q106"}, - 307982048855868: &Security{ - SecurityId: 307982048855868, - Name: "FDUS", - Description: "Fidus Investment Corporation", - Symbol: "FDUS", - Precision: 5, - Type: Stock, - AlternateId: "316500107"}, - 307982472118848: &Security{ - SecurityId: 307982472118848, - Name: "FPP", - Description: "FieldPoint Petroleum Corp.", - Symbol: "FPP", - Precision: 5, - Type: Stock, - AlternateId: "316570100"}, - 307984244113764: &Security{ - SecurityId: 307984244113764, - Name: "FRGI", - Description: "Fiesta Restaurant Group, Inc.", - Symbol: "FRGI", - Precision: 5, - Type: Stock, - AlternateId: "31660B101"}, - 307986830722368: &Security{ - SecurityId: 307986830722368, - Name: "FITB", - Description: "Fifth Third Bancorp", - Symbol: "FITB", - Precision: 5, - Type: Stock, - AlternateId: "316773100"}, - 307986902945964: &Security{ - SecurityId: 307986902945964, - Name: "FSC", - Description: "Fifth Street Finance Corp.", - Symbol: "FSC", - Precision: 5, - Type: Stock, - AlternateId: "31678A103"}, - 307986971810148: &Security{ - SecurityId: 307986971810148, - Name: "FSFR", - Description: "Fifth Street Senior Floating Rate Corp.", - Symbol: "FSFR", - Precision: 5, - Type: Stock, - AlternateId: "31679F101"}, - 307986988606596: &Security{ - SecurityId: 307986988606596, - Name: "FSAM", - Description: "Fifth Street Asset Management, Inc. Cl A", - Symbol: "FSAM", - Precision: 5, - Type: Stock, - AlternateId: "31679P109"}, - 307988622872784: &Security{ - SecurityId: 307988622872784, - Name: "WUBA", - Description: "58.com, Inc.", - Symbol: "WUBA", - Precision: 5, - Type: Stock, - AlternateId: "31680Q104"}, - 307988711892432: &Security{ - SecurityId: 307988711892432, - Name: "JOBS", - Description: "51Job, Inc. ADR", - Symbol: "JOBS", - Precision: 5, - Type: Stock, - AlternateId: "316827104"}, - 308058728364864: &Security{ - SecurityId: 308058728364864, - Name: "FNGN", - Description: "Financial Engines, Inc.", - Symbol: "FNGN", - Precision: 5, - Type: Stock, - AlternateId: "317485100"}, - 308060905287312: &Security{ - SecurityId: 308060905287312, - Name: "FIISO", - Description: "Financial Institutions Inc., 8.48% Preferred Stock, Series B-1", - Symbol: "FIISO", - Precision: 5, - Type: Stock, - AlternateId: "317585404"}, - 308067383612988: &Security{ - SecurityId: 308067383612988, - Name: "FNSR", - Description: "Finisar Corp.", - Symbol: "FNSR", - Precision: 5, - Type: Stock, - AlternateId: "31787A507"}, - 308069246120256: &Security{ - SecurityId: 308069246120256, - Name: "FINL", - Description: "Finish Line, Inc. (The)", - Symbol: "FINL", - Precision: 5, - Type: Stock, - AlternateId: "317923100"}, - 308128466068164: &Security{ - SecurityId: 308128466068164, - Name: "FNTCU", - Description: "FinTech Acquisition Corp. (Units)", - Symbol: "FNTCU", - Precision: 5, - Type: Stock, - AlternateId: "31809H209"}, - 308130476521572: &Security{ - SecurityId: 308130476521572, - Name: "FEYE", - Description: "FireEye, Inc.", - Symbol: "FEYE", - Precision: 5, - Type: Stock, - AlternateId: "31816Q101"}, - 308136914489952: &Security{ - SecurityId: 308136914489952, - Name: "FAC", - Description: "First Acceptance Corp.", - Symbol: "FAC", - Precision: 5, - Type: Stock, - AlternateId: "318457108"}, - 308141358753672: &Security{ - SecurityId: 308141358753672, - Name: "FNLC", - Description: "First Bancorp, Inc.", - Symbol: "FNLC", - Precision: 5, - Type: Stock, - AlternateId: "31866P102"}, - 308147544779544: &Security{ - SecurityId: 308147544779544, - Name: "FBNC", - Description: "First Bancorp (NC)", - Symbol: "FBNC", - Precision: 5, - Type: Stock, - AlternateId: "318910106"}, - 308212898637960: &Security{ - SecurityId: 308212898637960, - Name: "FRBA", - Description: "First Bank (NJ)", - Symbol: "FRBA", - Precision: 5, - Type: Stock, - AlternateId: "31931U102"}, - 308213276598288: &Security{ - SecurityId: 308213276598288, - Name: "BUSE", - Description: "First Busey Corp.", - Symbol: "BUSE", - Precision: 5, - Type: Stock, - AlternateId: "319383204"}, - 308213331978816: &Security{ - SecurityId: 308213331978816, - Name: "FBIZ", - Description: "First Business Financial Services, Inc.", - Symbol: "FBIZ", - Precision: 5, - Type: Stock, - AlternateId: "319390100"}, - 308215107333180: &Security{ - SecurityId: 308215107333180, - Name: "FCFS", - Description: "First Cash Financial Services, Inc.", - Symbol: "FCFS", - Precision: 5, - Type: Stock, - AlternateId: "31942D107"}, - 308215132527312: &Security{ - SecurityId: 308215132527312, - Name: "FCAP", - Description: "First Capital, Inc.", - Symbol: "FCAP", - Precision: 5, - Type: Stock, - AlternateId: "31942S104"}, - 308215159401276: &Security{ - SecurityId: 308215159401276, - Name: "FCVA", - Description: "First Capital Bancorp, Inc. (VA)", - Symbol: "FCVA", - Precision: 5, - Type: Stock, - AlternateId: "319438107"}, - 308215364314284: &Security{ - SecurityId: 308215364314284, - Name: "FCNCA", - Description: "First Citizens BancShares, Inc. Cl A", - Symbol: "FCNCA", - Precision: 5, - Type: Stock, - AlternateId: "31946M103"}, - 308223807744060: &Security{ - SecurityId: 308223807744060, - Name: "FCF", - Description: "First Commonwealth Financial Corp.", - Symbol: "FCF", - Precision: 5, - Type: Stock, - AlternateId: "319829107"}, - 308223869889708: &Security{ - SecurityId: 308223869889708, - Name: "FCBC", - Description: "First Community Bancshares, Inc. (WV)", - Symbol: "FCBC", - Precision: 5, - Type: Stock, - AlternateId: "31983A103"}, - 308223861491664: &Security{ - SecurityId: 308223861491664, - Name: "FCCO", - Description: "First Community Corp. (SC)", - Symbol: "FCCO", - Precision: 5, - Type: Stock, - AlternateId: "319835104"}, - 308224017696024: &Security{ - SecurityId: 308224017696024, - Name: "FCFP", - Description: "First Community Financial Partners, Inc.", - Symbol: "FCFP", - Precision: 5, - Type: Stock, - AlternateId: "31985Q106"}, - 308223974025900: &Security{ - SecurityId: 308223974025900, - Name: "FBNK", - Description: "First Connecticut Bancorp, Inc.", - Symbol: "FBNK", - Precision: 5, - Type: Stock, - AlternateId: "319850103"}, - 308224073123208: &Security{ - SecurityId: 308224073123208, - Name: "FCCY", - Description: "1st Constitution Bancorp", - Symbol: "FCCY", - Precision: 5, - Type: Stock, - AlternateId: "31986N102"}, - 310322506411800: &Security{ - SecurityId: 310322506411800, - Name: "FDEF", - Description: "First Defiance Financial Corp.", - Symbol: "FDEF", - Precision: 5, - Type: Stock, - AlternateId: "32006W106"}, - 310326488781444: &Security{ - SecurityId: 310326488781444, - Name: "FFIN", - Description: "First Financial Bankshares, Inc.", - Symbol: "FFIN", - Precision: 5, - Type: Stock, - AlternateId: "32020R109"}, - 310326458548356: &Security{ - SecurityId: 310326458548356, - Name: "FFBC", - Description: "First Financial Bancorp (OH)", - Symbol: "FFBC", - Precision: 5, - Type: Stock, - AlternateId: "320209109"}, - 310326559325172: &Security{ - SecurityId: 310326559325172, - Name: "FFNM", - Description: "First Federal of Northern Michigan Bancorp, Inc.", - Symbol: "FFNM", - Precision: 5, - Type: Stock, - AlternateId: "32021X105"}, - 310326517334592: &Security{ - SecurityId: 310326517334592, - Name: "THFF", - Description: "First Financial Corp. (IN)", - Symbol: "THFF", - Precision: 5, - Type: Stock, - AlternateId: "320218100"}, - 310326858296784: &Security{ - SecurityId: 310326858296784, - Name: "FFWM", - Description: "First Foundation, Inc.", - Symbol: "FFWM", - Precision: 5, - Type: Stock, - AlternateId: "32026V104"}, - 310331020385304: &Security{ - SecurityId: 310331020385304, - Name: "FGBI", - Description: "First Guaranty Bancshares, Inc.", - Symbol: "FGBI", - Precision: 5, - Type: Stock, - AlternateId: "32043P106"}, - 310333046002164: &Security{ - SecurityId: 310333046002164, - Name: "FHN", - Description: "First Horizon National Corp.", - Symbol: "FHN", - Precision: 5, - Type: Stock, - AlternateId: "320517105"}, - 310333249235628: &Security{ - SecurityId: 310333249235628, - Name: "FR", - Description: "First Industrial Realty Trust, Inc.", - Symbol: "FR", - Precision: 5, - Type: Stock, - AlternateId: "32054K103"}, - 310333333263012: &Security{ - SecurityId: 310333333263012, - Name: "FIBK", - Description: "First Interstate BancSystem Inc.,", - Symbol: "FIBK", - Precision: 5, - Type: Stock, - AlternateId: "32055Y201"}, - 310333287866724: &Security{ - SecurityId: 310333287866724, - Name: "INBK", - Description: "First Internet Bancorp (IN)", - Symbol: "INBK", - Precision: 5, - Type: Stock, - AlternateId: "320557101"}, - 310337515460376: &Security{ - SecurityId: 310337515460376, - Name: "FLIC", - Description: "First of Long Island Corp. (The)", - Symbol: "FLIC", - Precision: 5, - Type: Stock, - AlternateId: "320734106"}, - 310337742208428: &Security{ - SecurityId: 310337742208428, - Name: "AG", - Description: "First Majestic Silver Corp.", - Symbol: "AG", - Precision: 5, - Type: Stock, - AlternateId: "32076V103"}, - 310339576349316: &Security{ - SecurityId: 310339576349316, - Name: "FRME", - Description: "First Merchants Corp.", - Symbol: "FRME", - Precision: 5, - Type: Stock, - AlternateId: "320817109"}, - 310339877000472: &Security{ - SecurityId: 310339877000472, - Name: "FMBH", - Description: "First Mid-Illinois Bancshares, Inc.", - Symbol: "FMBH", - Precision: 5, - Type: Stock, - AlternateId: "320866106"}, - 310339878680016: &Security{ - SecurityId: 310339878680016, - Name: "FMBI", - Description: "First Midwest Bancorp, Inc.", - Symbol: "FMBI", - Precision: 5, - Type: Stock, - AlternateId: "320867104"}, - 310402954979352: &Security{ - SecurityId: 310402954979352, - Name: "FNBC", - Description: "First NBC Bank Holding Co.", - Symbol: "FNBC", - Precision: 5, - Type: Stock, - AlternateId: "32115D106"}, - 313552607854176: &Security{ - SecurityId: 313552607854176, - Name: "FNFG", - Description: "First Niagara Financial Group, Inc.", - Symbol: "FNFG", - Precision: 5, - Type: Stock, - AlternateId: "33582V108"}, - 313552622970684: &Security{ - SecurityId: 313552622970684, - Name: "FNWB", - Description: "First Northwest Bancorp", - Symbol: "FNWB", - Precision: 5, - Type: Stock, - AlternateId: "335834107"}, - 313615586735748: &Security{ - SecurityId: 313615586735748, - Name: "FPO", - Description: "First Potomac Realty Trust", - Symbol: "FPO", - Precision: 5, - Type: Stock, - AlternateId: "33610F109"}, - 313622278325820: &Security{ - SecurityId: 313622278325820, - Name: "FSLR", - Description: "First Solar, Inc.", - Symbol: "FSLR", - Precision: 5, - Type: Stock, - AlternateId: "336433107"}, - 313622508432960: &Security{ - SecurityId: 313622508432960, - Name: "FSBK", - Description: "First South Bancorp, Inc. (NC)", - Symbol: "FSBK", - Precision: 5, - Type: Stock, - AlternateId: "33646W100"}, - 313632977479596: &Security{ - SecurityId: 313632977479596, - Name: "SRCE", - Description: "1st Source Corp.", - Symbol: "SRCE", - Precision: 5, - Type: Stock, - AlternateId: "336901103"}, - 313633048023684: &Security{ - SecurityId: 313633048023684, - Name: "FDL", - Description: "First Trust Morningstar Dividend Leaders Index Fund", - Symbol: "FDL", - Precision: 5, - Type: Stock, - AlternateId: "336917109"}, - 313633096732332: &Security{ - SecurityId: 313633096732332, - Name: "FPX", - Description: "First Trust IPOX-100 Index Fund", - Symbol: "FPX", - Precision: 5, - Type: Stock, - AlternateId: "336920103"}, - 313694446386420: &Security{ - SecurityId: 313694446386420, - Name: "FDM", - Description: "First Trust Dow Jones Select MicroCap Index Fund", - Symbol: "FDM", - Precision: 5, - Type: Stock, - AlternateId: "33718M105"}, - 313694463182508: &Security{ - SecurityId: 313694463182508, - Name: "FPF", - Description: "First Trust Intermediate Duration Preferred & Income Fund", - Symbol: "FPF", - Precision: 5, - Type: Stock, - AlternateId: "33718W103"}, - 313698373328520: &Security{ - SecurityId: 313698373328520, - Name: "FEO", - Description: "First Trust/Aberdeen Emerging Opportunity Fund", - Symbol: "FEO", - Precision: 5, - Type: Stock, - AlternateId: "33731K102"}, - 313698375008064: &Security{ - SecurityId: 313698375008064, - Name: "FAV", - Description: "First Trust Dividend and Income Fund", - Symbol: "FAV", - Precision: 5, - Type: Stock, - AlternateId: "33731L100"}, - 313698353173380: &Security{ - SecurityId: 313698353173380, - Name: "FFA", - Description: "First Trust Enhanced Equity Income Fund", - Symbol: "FFA", - Precision: 5, - Type: Stock, - AlternateId: "337318109"}, - 313698354852924: &Security{ - SecurityId: 313698354852924, - Name: "FAM", - Description: "First Trust/Aberdeen Global Opportunity Income Fund", - Symbol: "FAM", - Precision: 5, - Type: Stock, - AlternateId: "337319107"}, - 313698477464712: &Security{ - SecurityId: 313698477464712, - Name: "FNI", - Description: "First Trust ISE Chindia Index Fund", - Symbol: "FNI", - Precision: 5, - Type: Stock, - AlternateId: "33733A102"}, - 313698479144256: &Security{ - SecurityId: 313698479144256, - Name: "FIW", - Description: "First Trust ISE Water Index Fund", - Symbol: "FIW", - Precision: 5, - Type: Stock, - AlternateId: "33733B100"}, - 313698480824160: &Security{ - SecurityId: 313698480824160, - Name: "FAB", - Description: "First Trust Multi Cap Value AlphaDEX Fund", - Symbol: "FAB", - Precision: 5, - Type: Stock, - AlternateId: "33733C108"}, - 313698484183248: &Security{ - SecurityId: 313698484183248, - Name: "FTCS", - Description: "First Trust Capital Strength ETF", - Symbol: "FTCS", - Precision: 5, - Type: Stock, - AlternateId: "33733E104"}, - 313698484229868: &Security{ - SecurityId: 313698484229868, - Name: "FBT", - Description: "First Trust NYSE Arca Biotechnology Index Fund", - Symbol: "FBT", - Precision: 5, - Type: Stock, - AlternateId: "33733E203"}, - 313698484276488: &Security{ - SecurityId: 313698484276488, - Name: "FDN", - Description: "First Trust Dow Jones Internet Index Fund", - Symbol: "FDN", - Precision: 5, - Type: Stock, - AlternateId: "33733E302"}, - 313698484323108: &Security{ - SecurityId: 313698484323108, - Name: "QQXT", - Description: "First Trust Nasdaq-100 Ex-Tech Sector Index Fund", - Symbol: "QQXT", - Precision: 5, - Type: Stock, - AlternateId: "33733E401"}, - 313698484369728: &Security{ - SecurityId: 313698484369728, - Name: "QCLN", - Description: "First Trust NASDAQ Clean Edge Green Energy Index Fund", - Symbol: "QCLN", - Precision: 5, - Type: Stock, - AlternateId: "33733E500"}, - 313698484416708: &Security{ - SecurityId: 313698484416708, - Name: "VIXH", - Description: "First Trust CBOE S&P 500 VIX Tail Hedge Fund ETF", - Symbol: "VIXH", - Precision: 5, - Type: Stock, - AlternateId: "33733E609"}, - 313698484463328: &Security{ - SecurityId: 313698484463328, - Name: "TUSA", - Description: "First Trust Total US Market AlphaDEX ETF", - Symbol: "TUSA", - Precision: 5, - Type: Stock, - AlternateId: "33733E708"}, - 313698485862756: &Security{ - SecurityId: 313698485862756, - Name: "FAD", - Description: "First Trust Multi Cap Growth AlphaDEX Fund", - Symbol: "FAD", - Precision: 5, - Type: Stock, - AlternateId: "33733F101"}, - 313698487542660: &Security{ - SecurityId: 313698487542660, - Name: "FGB", - Description: "First Trust/Gallatin Specialty Finance and Financial Opportunities Fund", - Symbol: "FGB", - Precision: 5, - Type: Stock, - AlternateId: "33733G109"}, - 313698489222204: &Security{ - SecurityId: 313698489222204, - Name: "BICK", - Description: "First Trust BICK Index Fund ETF", - Symbol: "BICK", - Precision: 5, - Type: Stock, - AlternateId: "33733H107"}, - 313698511057248: &Security{ - SecurityId: 313698511057248, - Name: "FCT", - Description: "First Trust Senior Floating Rate Income Fund II", - Symbol: "FCT", - Precision: 5, - Type: Stock, - AlternateId: "33733U108"}, - 313698544649388: &Security{ - SecurityId: 313698544649388, - Name: "FMY", - Description: "First Trust Mortgage Income Fund", - Symbol: "FMY", - Precision: 5, - Type: Stock, - AlternateId: "33734E103"}, - 313698548008800: &Security{ - SecurityId: 313698548008800, - Name: "FRI", - Description: "First Trust S&P REIT Index Fund", - Symbol: "FRI", - Precision: 5, - Type: Stock, - AlternateId: "33734G108"}, - 313698549688344: &Security{ - SecurityId: 313698549688344, - Name: "FVD", - Description: "First Trust Value Line Dividend Index Fund", - Symbol: "FVD", - Precision: 5, - Type: Stock, - AlternateId: "33734H106"}, - 313698553047432: &Security{ - SecurityId: 313698553047432, - Name: "FCG", - Description: "First Trust ISE-Revere Natural Gas Index Fund", - Symbol: "FCG", - Precision: 5, - Type: Stock, - AlternateId: "33734J102"}, - 313698554727300: &Security{ - SecurityId: 313698554727300, - Name: "FEX", - Description: "First Trust Large Cap Core AlphaDEX Fund", - Symbol: "FEX", - Precision: 5, - Type: Stock, - AlternateId: "33734K109"}, - 313698576562020: &Security{ - SecurityId: 313698576562020, - Name: "FXD", - Description: "First Trust Consumer Discretionary AlphaDEX Fund", - Symbol: "FXD", - Precision: 5, - Type: Stock, - AlternateId: "33734X101"}, - 313698576563604: &Security{ - SecurityId: 313698576563604, - Name: "FXG", - Description: "First Trust Consumer Staples AlphaDEX Fund", - Symbol: "FXG", - Precision: 5, - Type: Stock, - AlternateId: "33734X119"}, - 313698576564828: &Security{ - SecurityId: 313698576564828, - Name: "FXN", - Description: "First Trust Energy AlphaDEX Fund", - Symbol: "FXN", - Precision: 5, - Type: Stock, - AlternateId: "33734X127"}, - 313698576566052: &Security{ - SecurityId: 313698576566052, - Name: "FXO", - Description: "First Trust Financials AlphaDEX Fund", - Symbol: "FXO", - Precision: 5, - Type: Stock, - AlternateId: "33734X135"}, - 313698576567276: &Security{ - SecurityId: 313698576567276, - Name: "FXH", - Description: "First Trust Health Care AlphaDEX Fund", - Symbol: "FXH", - Precision: 5, - Type: Stock, - AlternateId: "33734X143"}, - 313698576568464: &Security{ - SecurityId: 313698576568464, - Name: "FXR", - Description: "First Trust Industrials/Producer Durables AlphaDEX Fund", - Symbol: "FXR", - Precision: 5, - Type: Stock, - AlternateId: "33734X150"}, - 313698576570048: &Security{ - SecurityId: 313698576570048, - Name: "FXZ", - Description: "First Trust Materials AlphaDEX Fund", - Symbol: "FXZ", - Precision: 5, - Type: Stock, - AlternateId: "33734X168"}, - 313698576571272: &Security{ - SecurityId: 313698576571272, - Name: "FXL", - Description: "First Trust Technology AlphaDEX Fund", - Symbol: "FXL", - Precision: 5, - Type: Stock, - AlternateId: "33734X176"}, - 313698576572496: &Security{ - SecurityId: 313698576572496, - Name: "FXU", - Description: "First Trust Utilities AlphaDEX Fund", - Symbol: "FXU", - Precision: 5, - Type: Stock, - AlternateId: "33734X184"}, - 313698576573720: &Security{ - SecurityId: 313698576573720, - Name: "SKYY", - Description: "First Trust ISE Cloud Computing Index Fund", - Symbol: "SKYY", - Precision: 5, - Type: Stock, - AlternateId: "33734X192"}, - 313698576608640: &Security{ - SecurityId: 313698576608640, - Name: "FGD", - Description: "First Trust Dow Jones Global Select Dividend Index Fund", - Symbol: "FGD", - Precision: 5, - Type: Stock, - AlternateId: "33734X200"}, - 313698576655620: &Security{ - SecurityId: 313698576655620, - Name: "CARZ", - Description: "First Trust NASDAQ Global Auto Index Fund", - Symbol: "CARZ", - Precision: 5, - Type: Stock, - AlternateId: "33734X309"}, - 313698576891168: &Security{ - SecurityId: 313698576891168, - Name: "FTAG", - Description: "First Trust Indxx Global Agriculture ETF", - Symbol: "FTAG", - Precision: 5, - Type: Stock, - AlternateId: "33734X820"}, - 313698576892752: &Security{ - SecurityId: 313698576892752, - Name: "FTRI", - Description: "First Trust Indxx Global Natural Resources Income ETF", - Symbol: "FTRI", - Precision: 5, - Type: Stock, - AlternateId: "33734X838"}, - 313698576893976: &Security{ - SecurityId: 313698576893976, - Name: "CIBR", - Description: "First Trust NASDAQ CEA Cybersecurity ETF", - Symbol: "CIBR", - Precision: 5, - Type: Stock, - AlternateId: "33734X846"}, - 313698576895164: &Security{ - SecurityId: 313698576895164, - Name: "FPXI", - Description: "First Trust International IPO ETF", - Symbol: "FPXI", - Precision: 5, - Type: Stock, - AlternateId: "33734X853"}, - 313698578241924: &Security{ - SecurityId: 313698578241924, - Name: "FYX", - Description: "First Trust Small Cap Core AlphaDEX Fund", - Symbol: "FYX", - Precision: 5, - Type: Stock, - AlternateId: "33734Y109"}, - 313698527853300: &Security{ - SecurityId: 313698527853300, - Name: "QQEW", - Description: "First Trust Nasdaq-100 Equal Weighted Index Fund", - Symbol: "QQEW", - Precision: 5, - Type: Stock, - AlternateId: "337344105"}, - 313698529532808: &Security{ - SecurityId: 313698529532808, - Name: "QTEC", - Description: "First Trust Nasdaq-100-Technology Sector Index Fund", - Symbol: "QTEC", - Precision: 5, - Type: Stock, - AlternateId: "337345102"}, - 313698600076896: &Security{ - SecurityId: 313698600076896, - Name: "FNX", - Description: "First Trust Mid Cap Core AlphaDEX Fund", - Symbol: "FNX", - Precision: 5, - Type: Stock, - AlternateId: "33735B108"}, - 313698613513572: &Security{ - SecurityId: 313698613513572, - Name: "FTA", - Description: "First Trust Large Cap Value Opportunities AlphaDEX Fund", - Symbol: "FTA", - Precision: 5, - Type: Stock, - AlternateId: "33735J101"}, - 313698615193440: &Security{ - SecurityId: 313698615193440, - Name: "FTC", - Description: "First Trust Large Cap Growth Opportunities AlphaDEX Fund", - Symbol: "FTC", - Precision: 5, - Type: Stock, - AlternateId: "33735K108"}, - 313698630310020: &Security{ - SecurityId: 313698630310020, - Name: "FDD", - Description: "First Trust DJ STOXX Select Dividend 30 Index Fund", - Symbol: "FDD", - Precision: 5, - Type: Stock, - AlternateId: "33735T109"}, - 313698668941080: &Security{ - SecurityId: 313698668941080, - Name: "FAN", - Description: "First Trust ISE Global Wind Energy Index Fund", - Symbol: "FAN", - Precision: 5, - Type: Stock, - AlternateId: "33736G106"}, - 313698679018668: &Security{ - SecurityId: 313698679018668, - Name: "FLM", - Description: "First Trust ISE Global Engineering and Construction Index Fund", - Symbol: "FLM", - Precision: 5, - Type: Stock, - AlternateId: "33736M103"}, - 313698680698212: &Security{ - SecurityId: 313698680698212, - Name: "FFR", - Description: "First Trust FTSE EPRA/NAREIT Developed Markets Real Estate Index Fund", - Symbol: "FFR", - Precision: 5, - Type: Stock, - AlternateId: "33736N101"}, - 313698685737168: &Security{ - SecurityId: 313698685737168, - Name: "QABA", - Description: "First Trust Nasdaq ABA Community Bank Index Fund", - Symbol: "QABA", - Precision: 5, - Type: Stock, - AlternateId: "33736Q104"}, - 313698719329632: &Security{ - SecurityId: 313698719329632, - Name: "GRID", - Description: "First Trust NASDAQ Clean Edge Smart Grid Infrastructure Index Fund ETF", - Symbol: "GRID", - Precision: 5, - Type: Stock, - AlternateId: "33737A108"}, - 313698734446212: &Security{ - SecurityId: 313698734446212, - Name: "FPA", - Description: "First Trust Asia Pacific ex-Japan AlphaDEX Fund", - Symbol: "FPA", - Precision: 5, - Type: Stock, - AlternateId: "33737J109"}, - 313698734447436: &Security{ - SecurityId: 313698734447436, - Name: "FEP", - Description: "First Trust Europe AlphaDEX Fund", - Symbol: "FEP", - Precision: 5, - Type: Stock, - AlternateId: "33737J117"}, - 313698734448660: &Security{ - SecurityId: 313698734448660, - Name: "FLN", - Description: "First Trust Latin America AlphaDEX Fund", - Symbol: "FLN", - Precision: 5, - Type: Stock, - AlternateId: "33737J125"}, - 313698734449884: &Security{ - SecurityId: 313698734449884, - Name: "FBZ", - Description: "First Trust Brazil AlphaDEX Fund", - Symbol: "FBZ", - Precision: 5, - Type: Stock, - AlternateId: "33737J133"}, - 313698734451108: &Security{ - SecurityId: 313698734451108, - Name: "FCA", - Description: "First Trust China AlphaDEX Fund", - Symbol: "FCA", - Precision: 5, - Type: Stock, - AlternateId: "33737J141"}, - 313698734452656: &Security{ - SecurityId: 313698734452656, - Name: "FJP", - Description: "First Trust Japan AlphaDEX Fund", - Symbol: "FJP", - Precision: 5, - Type: Stock, - AlternateId: "33737J158"}, - 313698734453880: &Security{ - SecurityId: 313698734453880, - Name: "FKO", - Description: "First Trust South Korea AlphaDEX Fund", - Symbol: "FKO", - Precision: 5, - Type: Stock, - AlternateId: "33737J166"}, - 313698734455104: &Security{ - SecurityId: 313698734455104, - Name: "FDT", - Description: "First Trust Developed Markets ex-US AlphaDEX Fund", - Symbol: "FDT", - Precision: 5, - Type: Stock, - AlternateId: "33737J174"}, - 313698734456328: &Security{ - SecurityId: 313698734456328, - Name: "FEM", - Description: "First Trust Emerging Markets AlphaDEX Fund", - Symbol: "FEM", - Precision: 5, - Type: Stock, - AlternateId: "33737J182"}, - 313698734457552: &Security{ - SecurityId: 313698734457552, - Name: "FGM", - Description: "First Trust Germany AlphaDEX Fund ETF", - Symbol: "FGM", - Precision: 5, - Type: Stock, - AlternateId: "33737J190"}, - 313698734492832: &Security{ - SecurityId: 313698734492832, - Name: "FCAN", - Description: "First Trust Canada AlphaDEX Fund ETF", - Symbol: "FCAN", - Precision: 5, - Type: Stock, - AlternateId: "33737J208"}, - 313698734494056: &Security{ - SecurityId: 313698734494056, - Name: "FAUS", - Description: "First Trust Australia AlphaDEX Fund ETF", - Symbol: "FAUS", - Precision: 5, - Type: Stock, - AlternateId: "33737J216"}, - 313698734495280: &Security{ - SecurityId: 313698734495280, - Name: "FKU", - Description: "First Trust United Kingdom AlphaDEX Fund ETF", - Symbol: "FKU", - Precision: 5, - Type: Stock, - AlternateId: "33737J224"}, - 313698734496504: &Security{ - SecurityId: 313698734496504, - Name: "FSZ", - Description: "First Trust Switzerland AlphaDEX Fund ETF", - Symbol: "FSZ", - Precision: 5, - Type: Stock, - AlternateId: "33737J232"}, - 313698734497728: &Security{ - SecurityId: 313698734497728, - Name: "FHK", - Description: "First Trust Hong Kong AlphaDEX Fund ETF", - Symbol: "FHK", - Precision: 5, - Type: Stock, - AlternateId: "33737J240"}, - 313698734499276: &Security{ - SecurityId: 313698734499276, - Name: "FTW", - Description: "First Trust Taiwan AlphaDEX Fund ETF", - Symbol: "FTW", - Precision: 5, - Type: Stock, - AlternateId: "33737J257"}, - 313698734539452: &Security{ - SecurityId: 313698734539452, - Name: "FEMS", - Description: "First Trust Emerging Markets Small Cap AlphaDEX Fund", - Symbol: "FEMS", - Precision: 5, - Type: Stock, - AlternateId: "33737J307"}, - 313698734586072: &Security{ - SecurityId: 313698734586072, - Name: "FDTS", - Description: "First Trust Developed Markets ex-US Small Cap AlphaDEX Fund", - Symbol: "FDTS", - Precision: 5, - Type: Stock, - AlternateId: "33737J406"}, - 313698734632692: &Security{ - SecurityId: 313698734632692, - Name: "FEUZ", - Description: "First Trust Eurozone AlphaDEX ETF", - Symbol: "FEUZ", - Precision: 5, - Type: Stock, - AlternateId: "33737J505"}, - 313698736125720: &Security{ - SecurityId: 313698736125720, - Name: "FONE", - Description: "First Trust Nasdaq Smartphone Index Fund", - Symbol: "FONE", - Precision: 5, - Type: Stock, - AlternateId: "33737K106"}, - 313698739484808: &Security{ - SecurityId: 313698739484808, - Name: "FNY", - Description: "First Trust Mid Cap Growth AlphaDEX Fund", - Symbol: "FNY", - Precision: 5, - Type: Stock, - AlternateId: "33737M102"}, - 313698739531428: &Security{ - SecurityId: 313698739531428, - Name: "FNK", - Description: "First Trust Mid Cap Value AlphaDEX Fund", - Symbol: "FNK", - Precision: 5, - Type: Stock, - AlternateId: "33737M201"}, - 313698739578048: &Security{ - SecurityId: 313698739578048, - Name: "FYC", - Description: "First Trust Small Cap Growth AlphaDEX Fund", - Symbol: "FYC", - Precision: 5, - Type: Stock, - AlternateId: "33737M300"}, - 313698739625028: &Security{ - SecurityId: 313698739625028, - Name: "FYT", - Description: "First Trust Small Cap Value AlphaDEX Fund", - Symbol: "FYT", - Precision: 5, - Type: Stock, - AlternateId: "33737M409"}, - 313698739671648: &Security{ - SecurityId: 313698739671648, - Name: "FMK", - Description: "First Trust Mega Cap AlphaDEX Fund", - Symbol: "FMK", - Precision: 5, - Type: Stock, - AlternateId: "33737M508"}, - 313698783154860: &Security{ - SecurityId: 313698783154860, - Name: "FIF", - Description: "First Trust Energy Infrastructure Fund", - Symbol: "FIF", - Precision: 5, - Type: Stock, - AlternateId: "33738C103"}, - 313698784834404: &Security{ - SecurityId: 313698784834404, - Name: "EMLP", - Description: "First Trust North American Energy Infrastructure Fund ETF", - Symbol: "EMLP", - Precision: 5, - Type: Stock, - AlternateId: "33738D101"}, - 313698784928004: &Security{ - SecurityId: 313698784928004, - Name: "FTSL", - Description: "First Trust Senior Loan Fund ETF", - Symbol: "FTSL", - Precision: 5, - Type: Stock, - AlternateId: "33738D309"}, - 313698784974624: &Security{ - SecurityId: 313698784974624, - Name: "HYLS", - Description: "First Trust Tactical High Yield ETF", - Symbol: "HYLS", - Precision: 5, - Type: Stock, - AlternateId: "33738D408"}, - 313698786514308: &Security{ - SecurityId: 313698786514308, - Name: "FSD", - Description: "First Trust High Income Long/Short Fund", - Symbol: "FSD", - Precision: 5, - Type: Stock, - AlternateId: "33738E109"}, - 313698789873360: &Security{ - SecurityId: 313698789873360, - Name: "FEN", - Description: "First Trust Energy Income and Growth Fund", - Symbol: "FEN", - Precision: 5, - Type: Stock, - AlternateId: "33738G104"}, - 313698808348992: &Security{ - SecurityId: 313698808348992, - Name: "MDIV", - Description: "First Trust Multi-Asset Diversified Income Index Fund", - Symbol: "MDIV", - Precision: 5, - Type: Stock, - AlternateId: "33738R100"}, - 313698808350576: &Security{ - SecurityId: 313698808350576, - Name: "TDIV", - Description: "First Trust NASDAQ Technology Dividend Index Fund", - Symbol: "TDIV", - Precision: 5, - Type: Stock, - AlternateId: "33738R118"}, - 313698808395972: &Security{ - SecurityId: 313698808395972, - Name: "YDIV", - Description: "International Multi - Asset Diversified Income Index Fund", - Symbol: "YDIV", - Precision: 5, - Type: Stock, - AlternateId: "33738R209"}, - 313698808442592: &Security{ - SecurityId: 313698808442592, - Name: "FTHI", - Description: "First Trust High Income ETF", - Symbol: "FTHI", - Precision: 5, - Type: Stock, - AlternateId: "33738R308"}, - 313698808489212: &Security{ - SecurityId: 313698808489212, - Name: "FTLB", - Description: "First Trust Low Beta Income ETF", - Symbol: "FTLB", - Precision: 5, - Type: Stock, - AlternateId: "33738R407"}, - 313698808535832: &Security{ - SecurityId: 313698808535832, - Name: "RDVY", - Description: "First Trust NASDAQ Rising Dividend Achievers ETF", - Symbol: "RDVY", - Precision: 5, - Type: Stock, - AlternateId: "33738R506"}, - 313698808582452: &Security{ - SecurityId: 313698808582452, - Name: "FV", - Description: "First Trust Dorsey Wright Focus 5 ETF", - Symbol: "FV", - Precision: 5, - Type: Stock, - AlternateId: "33738R605"}, - 313698808629072: &Security{ - SecurityId: 313698808629072, - Name: "AIRR", - Description: "First Trust RBA American Industrial Renaissance ETF", - Symbol: "AIRR", - Precision: 5, - Type: Stock, - AlternateId: "33738R704"}, - 313698808675692: &Security{ - SecurityId: 313698808675692, - Name: "QINC", - Description: "First Trust RBA Quality Income ETF", - Symbol: "QINC", - Precision: 5, - Type: Stock, - AlternateId: "33738R803"}, - 313698808686168: &Security{ - SecurityId: 313698808686168, - Name: "IFV", - Description: "First Trust Dorsey Wright International Focus 5 ETF", - Symbol: "IFV", - Precision: 5, - Type: Stock, - AlternateId: "33738R886"}, - 313698841941456: &Security{ - SecurityId: 313698841941456, - Name: "FEI", - Description: "First Trust MLP and Energy Fund", - Symbol: "FEI", - Precision: 5, - Type: Stock, - AlternateId: "33739B104"}, - 313698846980448: &Security{ - SecurityId: 313698846980448, - Name: "FPE", - Description: "First Trust Preferred Securities and Income ETF", - Symbol: "FPE", - Precision: 5, - Type: Stock, - AlternateId: "33739E108"}, - 313698850339500: &Security{ - SecurityId: 313698850339500, - Name: "FMF", - Description: "First Trust Morningstar Managed Futures Strategy Fund", - Symbol: "FMF", - Precision: 5, - Type: Stock, - AlternateId: "33739G103"}, - 313698852019044: &Security{ - SecurityId: 313698852019044, - Name: "FTGC", - Description: "First Trust Global Tactical Commodity Strategy Fund", - Symbol: "FTGC", - Precision: 5, - Type: Stock, - AlternateId: "33739H101"}, - 313698860417088: &Security{ - SecurityId: 313698860417088, - Name: "FPL", - Description: "First Trust New Opportunities MLP & Energy Fund", - Symbol: "FPL", - Precision: 5, - Type: Stock, - AlternateId: "33739M100"}, - 313698862096992: &Security{ - SecurityId: 313698862096992, - Name: "FMB", - Description: "First Trust Managed Municipal ETF", - Symbol: "FMB", - Precision: 5, - Type: Stock, - AlternateId: "33739N108"}, - 313698865456044: &Security{ - SecurityId: 313698865456044, - Name: "FTLS", - Description: "First Trust Long/Short Equity ETF", - Symbol: "FTLS", - Precision: 5, - Type: Stock, - AlternateId: "33739P103"}, - 313698865502664: &Security{ - SecurityId: 313698865502664, - Name: "FEMB", - Description: "First Trust Emerging Markets Local Currency Bond ETF", - Symbol: "FEMB", - Precision: 5, - Type: Stock, - AlternateId: "33739P202"}, - 313698867182208: &Security{ - SecurityId: 313698867182208, - Name: "LMBS", - Description: "First Trust Low Duration Mortgage Opportunities ETF", - Symbol: "LMBS", - Precision: 5, - Type: Stock, - AlternateId: "33739Q200"}, - 313698867229188: &Security{ - SecurityId: 313698867229188, - Name: "FDIV", - Description: "First Trust Strategic Income ETF", - Symbol: "FDIV", - Precision: 5, - Type: Stock, - AlternateId: "33739Q309"}, - 313698867275808: &Security{ - SecurityId: 313698867275808, - Name: "FTSM", - Description: "First Trust Enhanced Short Maturity ETF", - Symbol: "FTSM", - Precision: 5, - Type: Stock, - AlternateId: "33739Q408"}, - 313698867322428: &Security{ - SecurityId: 313698867322428, - Name: "FCVT", - Description: "First Trust SSI Strategic Convertible Securities ETF", - Symbol: "FCVT", - Precision: 5, - Type: Stock, - AlternateId: "33739Q507"}, - 313698867369048: &Security{ - SecurityId: 313698867369048, - Name: "PRME", - Description: "First Trust Heitman Global Prime Real Estate ETF", - Symbol: "PRME", - Precision: 5, - Type: Stock, - AlternateId: "33739Q606"}, - 313700477887548: &Security{ - SecurityId: 313700477887548, - Name: "FDEU", - Description: "First Trust Dynamic Europe Equity Income Fund", - Symbol: "FDEU", - Precision: 5, - Type: Stock, - AlternateId: "33740D107"}, - 313700545072188: &Security{ - SecurityId: 313700545072188, - Name: "FUNC", - Description: "First United Corp.", - Symbol: "FUNC", - Precision: 5, - Type: Stock, - AlternateId: "33741H107"}, - 313701005286720: &Security{ - SecurityId: 313701005286720, - Name: "FWV", - Description: "First West Virginia Bancorp, Inc.", - Symbol: "FWV", - Precision: 5, - Type: Stock, - AlternateId: "337493100"}, - 313705229520960: &Security{ - SecurityId: 313705229520960, - Name: "SVVC", - Description: "Firsthand Technology Value Fund, Inc.", - Symbol: "SVVC", - Precision: 5, - Type: Stock, - AlternateId: "33766Y100"}, - 313705256394924: &Security{ - SecurityId: 313705256394924, - Name: "FSV", - Description: "FirstService Corp.", - Symbol: "FSV", - Precision: 5, - Type: Stock, - AlternateId: "33767E103"}, - 313707181235040: &Security{ - SecurityId: 313707181235040, - Name: "FISV", - Description: "Fiserv, Inc.", - Symbol: "FISV", - Precision: 5, - Type: Stock, - AlternateId: "337738108"}, - 313711408828296: &Security{ - SecurityId: 313711408828296, - Name: "FMER", - Description: "FirstMerit Corp.", - Symbol: "FMER", - Precision: 5, - Type: Stock, - AlternateId: "337915102"}, - 313711524721980: &Security{ - SecurityId: 313711524721980, - Name: "FE", - Description: "FirstEnergy Corp.", - Symbol: "FE", - Precision: 5, - Type: Stock, - AlternateId: "337932107"}, - 313772446073736: &Security{ - SecurityId: 313772446073736, - Name: "FIT", - Description: "Fitbit, Inc. Cl A", - Symbol: "FIT", - Precision: 5, - Type: Stock, - AlternateId: "33812L102"}, - 313775047798884: &Security{ - SecurityId: 313775047798884, - Name: "FIVE", - Description: "Five Below, Inc.", - Symbol: "FIVE", - Precision: 5, - Type: Stock, - AlternateId: "33829M101"}, - 313775056196928: &Security{ - SecurityId: 313775056196928, - Name: "WBAI", - Description: "500.com Limited", - Symbol: "WBAI", - Precision: 5, - Type: Stock, - AlternateId: "33829R100"}, - 313776697181976: &Security{ - SecurityId: 313776697181976, - Name: "OAKS", - Description: "Five Oaks Investment Corp.", - Symbol: "OAKS", - Precision: 5, - Type: Stock, - AlternateId: "33830W106"}, - 313776698861520: &Security{ - SecurityId: 313776698861520, - Name: "FPRX", - Description: "Five Prime Therapeutics, Inc.", - Symbol: "FPRX", - Precision: 5, - Type: Stock, - AlternateId: "33830X104"}, - 313776655191396: &Security{ - SecurityId: 313776655191396, - Name: "FIVN", - Description: "Five9, Inc.", - Symbol: "FIVN", - Precision: 5, - Type: Stock, - AlternateId: "338307101"}, - 313776786201624: &Security{ - SecurityId: 313776786201624, - Name: "FVE", - Description: "Five Star Quality Care, Inc.", - Symbol: "FVE", - Precision: 5, - Type: Stock, - AlternateId: "33832D106"}, - 313779256916544: &Security{ - SecurityId: 313779256916544, - Name: "FFC", - Description: "Flaherty & Crumrine Preferred Securities Income Fund", - Symbol: "FFC", - Precision: 5, - Type: Stock, - AlternateId: "338478100"}, - 313779258596448: &Security{ - SecurityId: 313779258596448, - Name: "FLC", - Description: "Flaherty & Crumrine Total Return Fund", - Symbol: "FLC", - Precision: 5, - Type: Stock, - AlternateId: "338479108"}, - 313779327460632: &Security{ - SecurityId: 313779327460632, - Name: "PFO", - Description: "Flaherty & Crumrine Preferred Income Opportunity Fund, Inc.", - Symbol: "PFO", - Precision: 5, - Type: Stock, - AlternateId: "33848E106"}, - 313779357693720: &Security{ - SecurityId: 313779357693720, - Name: "DFP", - Description: "Flaherty & Crumrine Dynamic Preferred and Income Fund, Inc.", - Symbol: "DFP", - Precision: 5, - Type: Stock, - AlternateId: "33848W106"}, - 313779303946008: &Security{ - SecurityId: 313779303946008, - Name: "PFD", - Description: "Flaherty & Crumrine Preferred Income Fund, Inc.", - Symbol: "PFD", - Precision: 5, - Type: Stock, - AlternateId: "338480106"}, - 313779317383044: &Security{ - SecurityId: 313779317383044, - Name: "FLML", - Description: "Flamel Technologies S.A. ADR", - Symbol: "FLML", - Precision: 5, - Type: Stock, - AlternateId: "338488109"}, - 313781069222388: &Security{ - SecurityId: 313781069222388, - Name: "BDL", - Description: "Flanigan's Enterprises, Inc.", - Symbol: "BDL", - Precision: 5, - Type: Stock, - AlternateId: "338517105"}, - 313848720795636: &Security{ - SecurityId: 313848720795636, - Name: "FLT", - Description: "FleetCor Technologies, Inc.", - Symbol: "FLT", - Precision: 5, - Type: Stock, - AlternateId: "339041105"}, - 313855508123892: &Security{ - SecurityId: 313855508123892, - Name: "FLKS", - Description: "Flex Pharma, Inc.", - Symbol: "FLKS", - Precision: 5, - Type: Stock, - AlternateId: "33938A105"}, - 313855523240472: &Security{ - SecurityId: 313855523240472, - Name: "FLXN", - Description: "Flexion Therapeutics, Inc.", - Symbol: "FLXN", - Precision: 5, - Type: Stock, - AlternateId: "33938J106"}, - 313855540036560: &Security{ - SecurityId: 313855540036560, - Name: "FSI", - Description: "Flexible Solutions Intl, Inc.", - Symbol: "FSI", - Precision: 5, - Type: Stock, - AlternateId: "33938T104"}, - 313855494686892: &Security{ - SecurityId: 313855494686892, - Name: "FLXS", - Description: "Flexsteel Industries, Inc.", - Symbol: "FLXS", - Precision: 5, - Type: Stock, - AlternateId: "339382103"}, - 313855587065664: &Security{ - SecurityId: 313855587065664, - Name: "TILT", - Description: "FlexShares Morningstar US Market Factors Tilt Index Fund", - Symbol: "TILT", - Precision: 5, - Type: Stock, - AlternateId: "33939L100"}, - 313855587159264: &Security{ - SecurityId: 313855587159264, - Name: "TLTE", - Description: "FlexShares Morningstar Emerging Markets Factor Tilt Index Fund", - Symbol: "TLTE", - Precision: 5, - Type: Stock, - AlternateId: "33939L308"}, - 313855587205884: &Security{ - SecurityId: 313855587205884, - Name: "GUNR", - Description: "FlexShares Global Upstream Natural Resources Index Fund", - Symbol: "GUNR", - Precision: 5, - Type: Stock, - AlternateId: "33939L407"}, - 313855587252504: &Security{ - SecurityId: 313855587252504, - Name: "TDTT", - Description: "FlexShares iBoxx 3-Year Target Duration TIPS Index Fund", - Symbol: "TDTT", - Precision: 5, - Type: Stock, - AlternateId: "33939L506"}, - 313855587299124: &Security{ - SecurityId: 313855587299124, - Name: "TDTF", - Description: "FlexShares iBoxx 5-Year Target Duration TIPS Index Fund", - Symbol: "TDTF", - Precision: 5, - Type: Stock, - AlternateId: "33939L605"}, - 313855587348192: &Security{ - SecurityId: 313855587348192, - Name: "TLDH", - Description: "FlexShares Currency Hedged Morningstar DM ex-US Factor Tilt Index Fund", - Symbol: "TLDH", - Precision: 5, - Type: Stock, - AlternateId: "33939L720"}, - 313855587349776: &Security{ - SecurityId: 313855587349776, - Name: "ASET", - Description: "FlexShares Real Assets Allocation Index Fund", - Symbol: "ASET", - Precision: 5, - Type: Stock, - AlternateId: "33939L738"}, - 313855587351000: &Security{ - SecurityId: 313855587351000, - Name: "QLC", - Description: "FlexShares US Quality Large Cap Index Fund", - Symbol: "QLC", - Precision: 5, - Type: Stock, - AlternateId: "33939L746"}, - 313855587352188: &Security{ - SecurityId: 313855587352188, - Name: "LKOR", - Description: "FlexShares Credit-Scored US Long Corporate Bond Index Fund", - Symbol: "LKOR", - Precision: 5, - Type: Stock, - AlternateId: "33939L753"}, - 313855587353412: &Security{ - SecurityId: 313855587353412, - Name: "SKOR", - Description: "FlexShares Credit-Scored US Corporate Bond Index Fund", - Symbol: "SKOR", - Precision: 5, - Type: Stock, - AlternateId: "33939L761"}, - 313855587354996: &Security{ - SecurityId: 313855587354996, - Name: "MBSD", - Description: "FlexShares Disciplined Duration MBS Index Fund", - Symbol: "MBSD", - Precision: 5, - Type: Stock, - AlternateId: "33939L779"}, - 313855587356220: &Security{ - SecurityId: 313855587356220, - Name: "GQRE", - Description: "FlexShares Global Quality Real Estate Index Fund", - Symbol: "GQRE", - Precision: 5, - Type: Stock, - AlternateId: "33939L787"}, - 313855587357444: &Security{ - SecurityId: 313855587357444, - Name: "NFRA", - Description: "FlexShares STOXX Global Broad Infrastructure Index Fund", - Symbol: "NFRA", - Precision: 5, - Type: Stock, - AlternateId: "33939L795"}, - 313855587392364: &Security{ - SecurityId: 313855587392364, - Name: "TLTD", - Description: "FlexShares Morningstar Developed Markets ex-US Factor Tilt Index Fund", - Symbol: "TLTD", - Precision: 5, - Type: Stock, - AlternateId: "33939L803"}, - 313855587393588: &Security{ - SecurityId: 313855587393588, - Name: "IQDE", - Description: "FlexShares International Quality Dividend Defensive Index Fund", - Symbol: "IQDE", - Precision: 5, - Type: Stock, - AlternateId: "33939L811"}, - 313855587395172: &Security{ - SecurityId: 313855587395172, - Name: "IQDY", - Description: "FlexShares International Quality Dividend Dynamic Index Fund", - Symbol: "IQDY", - Precision: 5, - Type: Stock, - AlternateId: "33939L829"}, - 313855587396396: &Security{ - SecurityId: 313855587396396, - Name: "IQDF", - Description: "FlexShares International Quality Dividend Index Fund", - Symbol: "IQDF", - Precision: 5, - Type: Stock, - AlternateId: "33939L837"}, - 313855587397620: &Security{ - SecurityId: 313855587397620, - Name: "QDEF", - Description: "FlexShares Quality Dividend Defensive Index Fund ETF", - Symbol: "QDEF", - Precision: 5, - Type: Stock, - AlternateId: "33939L845"}, - 313855587398808: &Security{ - SecurityId: 313855587398808, - Name: "QDYN", - Description: "FlexShares Quality Dividend Dynamic Index Fund ETF", - Symbol: "QDYN", - Precision: 5, - Type: Stock, - AlternateId: "33939L852"}, - 313855587400032: &Security{ - SecurityId: 313855587400032, - Name: "QDF", - Description: "FlexShares Quality Dividend Index Fund ETF", - Symbol: "QDF", - Precision: 5, - Type: Stock, - AlternateId: "33939L860"}, - 313855587402840: &Security{ - SecurityId: 313855587402840, - Name: "RAVI", - Description: "FlexShares Ready Access Variable Income Fund", - Symbol: "RAVI", - Precision: 5, - Type: Stock, - AlternateId: "33939L886"}, - 316206431367048: &Security{ - SecurityId: 316206431367048, - Name: "FTK", - Description: "Flotek Industries, Inc.", - Symbol: "FTK", - Precision: 5, - Type: Stock, - AlternateId: "343389102"}, - 316208173128840: &Security{ - SecurityId: 316208173128840, - Name: "FLR", - Description: "Fluor Corp.", - Symbol: "FLR", - Precision: 5, - Type: Stock, - AlternateId: "343412102"}, - 316208666935908: &Security{ - SecurityId: 316208666935908, - Name: "FLO", - Description: "Flowers Foods, Inc.", - Symbol: "FLO", - Precision: 5, - Type: Stock, - AlternateId: "343498101"}, - 316210569940980: &Security{ - SecurityId: 316210569940980, - Name: "FLS", - Description: "Flowserve Corp.", - Symbol: "FLS", - Precision: 5, - Type: Stock, - AlternateId: "34354P105"}, - 316217160754272: &Security{ - SecurityId: 316217160754272, - Name: "FLDM", - Description: "Fluidigm Corp.", - Symbol: "FLDM", - Precision: 5, - Type: Stock, - AlternateId: "34385P108"}, - 316217244734964: &Security{ - SecurityId: 316217244734964, - Name: "FFIC", - Description: "Flushing Financial Corp.", - Symbol: "FFIC", - Precision: 5, - Type: Stock, - AlternateId: "343873105"}, - 316278211436676: &Security{ - SecurityId: 316278211436676, - Name: "FLY", - Description: "Air Leasing Ltd", - Symbol: "FLY", - Precision: 5, - Type: Stock, - AlternateId: "34407D109"}, - 316280378140992: &Security{ - SecurityId: 316280378140992, - Name: "FOGO", - Description: "Fogo de Chao, Inc.", - Symbol: "FOGO", - Precision: 5, - Type: Stock, - AlternateId: "344177100"}, - 316286549050392: &Security{ - SecurityId: 316286549050392, - Name: "FMX", - Description: "Fomento Economico Mexicano S.A.B. de C.V. ADR", - Symbol: "FMX", - Precision: 5, - Type: Stock, - AlternateId: "344419106"}, - 316286666763444: &Security{ - SecurityId: 316286666763444, - Name: "FONR", - Description: "FONAR Corp.", - Symbol: "FONR", - Precision: 5, - Type: Stock, - AlternateId: "344437405"}, - 316295437578192: &Security{ - SecurityId: 316295437578192, - Name: "FL", - Description: "Foot Locker, Inc.", - Symbol: "FL", - Precision: 5, - Type: Stock, - AlternateId: "344849104"}, - 316358554188132: &Security{ - SecurityId: 316358554188132, - Name: "FES", - Description: "Forbes Energy Services Ltd", - Symbol: "FES", - Precision: 5, - Type: Stock, - AlternateId: "345143101"}, - 316363084446816: &Security{ - SecurityId: 316363084446816, - Name: "F", - Description: "Ford Motor Co.", - Symbol: "F", - Precision: 5, - Type: Stock, - AlternateId: "345370860"}, - 316367185734864: &Security{ - SecurityId: 316367185734864, - Name: "FELP", - Description: "Foresight Energy LP", - Symbol: "FELP", - Precision: 5, - Type: Stock, - AlternateId: "34552U104"}, - 316367316745020: &Security{ - SecurityId: 316367316745020, - Name: "FCE.A", - Description: "Forest City Enterprises, Inc. Cl A", - Symbol: "FCE.A", - Precision: 5, - Type: Stock, - AlternateId: "345550107"}, - 316367316838260: &Security{ - SecurityId: 316367316838260, - Name: "FCE.B", - Description: "Forest City Enterprises, Inc. Cl B Conv", - Symbol: "FCE.B", - Precision: 5, - Type: Stock, - AlternateId: "345550305"}, - 316439034668676: &Security{ - SecurityId: 316439034668676, - Name: "FOR", - Description: "Forestar Group, Inc.", - Symbol: "FOR", - Precision: 5, - Type: Stock, - AlternateId: "346233109"}, - 316441456674912: &Security{ - SecurityId: 316441456674912, - Name: "FORM", - Description: "FormFactor, Inc.", - Symbol: "FORM", - Precision: 5, - Type: Stock, - AlternateId: "346375108"}, - 316443268980468: &Security{ - SecurityId: 316443268980468, - Name: "FORTY", - Description: "Formula Systems Ltd ADR", - Symbol: "FORTY", - Precision: 5, - Type: Stock, - AlternateId: "346414105"}, - 316445746414212: &Security{ - SecurityId: 316445746414212, - Name: "FORR", - Description: "Forrester Research, Inc.", - Symbol: "FORR", - Precision: 5, - Type: Stock, - AlternateId: "346563109"}, - 316517212395324: &Security{ - SecurityId: 316517212395324, - Name: "FDI", - Description: "Fort Dearborn Income Securities, Inc.", - Symbol: "FDI", - Precision: 5, - Type: Stock, - AlternateId: "347200107"}, - 316680973275672: &Security{ - SecurityId: 316680973275672, - Name: "FIG", - Description: "Fortress Investment Group LLC", - Symbol: "FIG", - Precision: 5, - Type: Stock, - AlternateId: "34958B106"}, - 316681038780804: &Security{ - SecurityId: 316681038780804, - Name: "FTNT", - Description: "Fortinet, Inc.", - Symbol: "FTNT", - Precision: 5, - Type: Stock, - AlternateId: "34959E109"}, - 316682689843044: &Security{ - SecurityId: 316682689843044, - Name: "FTAI", - Description: "Fortress Transportation & Infrastructure Investors LLC", - Symbol: "FTAI", - Precision: 5, - Type: Stock, - AlternateId: "34960P101"}, - 316682691522948: &Security{ - SecurityId: 316682691522948, - Name: "FBIO", - Description: "Fortress Biotech, Inc.", - Symbol: "FBIO", - Precision: 5, - Type: Stock, - AlternateId: "34960Q109"}, - 316682909872920: &Security{ - SecurityId: 316682909872920, - Name: "FBHS", - Description: "Fortune Brands Home & Security, Inc.", - Symbol: "FBHS", - Precision: 5, - Type: Stock, - AlternateId: "34964C106"}, - 316687295350080: &Security{ - SecurityId: 316687295350080, - Name: "FET", - Description: "Forum Energy Technologies, Inc.", - Symbol: "FET", - Precision: 5, - Type: Stock, - AlternateId: "34984V100"}, - 316687308787044: &Security{ - SecurityId: 316687308787044, - Name: "FWRD", - Description: "Forward Air Corp.", - Symbol: "FWRD", - Precision: 5, - Type: Stock, - AlternateId: "349853101"}, - 316687396127220: &Security{ - SecurityId: 316687396127220, - Name: "FWP", - Description: "Forward Pharma A/S", - Symbol: "FWP", - Precision: 5, - Type: Stock, - AlternateId: "34986J105"}, - 316687367666880: &Security{ - SecurityId: 316687367666880, - Name: "FORD", - Description: "Forward Industries, Inc.", - Symbol: "FORD", - Precision: 5, - Type: Stock, - AlternateId: "349862300"}, - 316689247064160: &Security{ - SecurityId: 316689247064160, - Name: "FSM", - Description: "Fortuna Silver Mines, Inc.", - Symbol: "FSM", - Precision: 5, - Type: Stock, - AlternateId: "349915108"}, - 318785782386564: &Security{ - SecurityId: 318785782386564, - Name: "FSTR", - Description: "L.B. Foster Co.", - Symbol: "FSTR", - Precision: 5, - Type: Stock, - AlternateId: "350060109"}, - 318794497913664: &Security{ - SecurityId: 318794497913664, - Name: "FMI", - Description: "Foundation Medicine, Inc.", - Symbol: "FMI", - Precision: 5, - Type: Stock, - AlternateId: "350465100"}, - 318803245354116: &Security{ - SecurityId: 318803245354116, - Name: "FCPT", - Description: "Four Corners Property Trust, Inc.", - Symbol: "FCPT", - Precision: 5, - Type: Stock, - AlternateId: "35086T109"}, - 318870786072672: &Security{ - SecurityId: 318870786072672, - Name: "FXCB", - Description: "Fox Chase Bancorp, Inc.", - Symbol: "FXCB", - Precision: 5, - Type: Stock, - AlternateId: "35137T108"}, - 318870849897864: &Security{ - SecurityId: 318870849897864, - Name: "FOXF", - Description: "Fox Factory Holding Corp.", - Symbol: "FOXF", - Precision: 5, - Type: Stock, - AlternateId: "35138V102"}, - 318877328176812: &Security{ - SecurityId: 318877328176812, - Name: "MOM", - Description: "QuantShares U.S. Market Neutral Momentum Fund", - Symbol: "MOM", - Precision: 5, - Type: Stock, - AlternateId: "351680103"}, - 318877328223432: &Security{ - SecurityId: 318877328223432, - Name: "CHEP", - Description: "QuantShares U.S. Market Neutral Value Fund", - Symbol: "CHEP", - Precision: 5, - Type: Stock, - AlternateId: "351680202"}, - 318877328316672: &Security{ - SecurityId: 318877328316672, - Name: "SIZ", - Description: "QuantShares U.S. Market Neutral Size Fund", - Symbol: "SIZ", - Precision: 5, - Type: Stock, - AlternateId: "351680400"}, - 318877328456892: &Security{ - SecurityId: 318877328456892, - Name: "BTAL", - Description: "QuantShares U.S. Market Neutral Anti-Beta Fund", - Symbol: "BTAL", - Precision: 5, - Type: Stock, - AlternateId: "351680707"}, - 318877328503512: &Security{ - SecurityId: 318877328503512, - Name: "DIVA", - Description: "QuantShares Hedged Dividend Income Fund", - Symbol: "DIVA", - Precision: 5, - Type: Stock, - AlternateId: "351680806"}, - 318877328504736: &Security{ - SecurityId: 318877328504736, - Name: "OAPH", - Description: "O'Shares FTSE Asia Pacific Quality Dividend Hedged ETF", - Symbol: "OAPH", - Precision: 5, - Type: Stock, - AlternateId: "351680814"}, - 318877328505960: &Security{ - SecurityId: 318877328505960, - Name: "OASI", - Description: "O'Shares FTSE Asia Pacific Quality Dividend ETF", - Symbol: "OASI", - Precision: 5, - Type: Stock, - AlternateId: "351680822"}, - 318877328507184: &Security{ - SecurityId: 318877328507184, - Name: "OEUH", - Description: "O'Shares FTSE Europe Quality Dividend Hedged ETF", - Symbol: "OEUH", - Precision: 5, - Type: Stock, - AlternateId: "351680830"}, - 318877328508768: &Security{ - SecurityId: 318877328508768, - Name: "OEUR", - Description: "O'Shares FTSE Europe Quality Dividend ETF", - Symbol: "OEUR", - Precision: 5, - Type: Stock, - AlternateId: "351680848"}, - 318877328509956: &Security{ - SecurityId: 318877328509956, - Name: "OUSA", - Description: "O'Shares FTSE U.S. Quality Dividend ETF", - Symbol: "OUSA", - Precision: 5, - Type: Stock, - AlternateId: "351680855"}, - 318879570464208: &Security{ - SecurityId: 318879570464208, - Name: "FRAN", - Description: "Francesca's Holdings Crop.", - Symbol: "FRAN", - Precision: 5, - Type: Stock, - AlternateId: "351793104"}, - 318881513779956: &Security{ - SecurityId: 318881513779956, - Name: "FNV", - Description: "Franco-Nevada Corp.", - Symbol: "FNV", - Precision: 5, - Type: Stock, - AlternateId: "351858105"}, - 319029597124740: &Security{ - SecurityId: 319029597124740, - Name: "FC", - Description: "Franklin Covey Co.", - Symbol: "FC", - Precision: 5, - Type: Stock, - AlternateId: "353469109"}, - 319031406071136: &Security{ - SecurityId: 319031406071136, - Name: "FTSD", - Description: "Franklin Short Duration U.S. Government ETF", - Symbol: "FTSD", - Precision: 5, - Type: Stock, - AlternateId: "353506108"}, - 319031463177864: &Security{ - SecurityId: 319031463177864, - Name: "FELE", - Description: "Franklin Electric Co., Inc.", - Symbol: "FELE", - Precision: 5, - Type: Stock, - AlternateId: "353514102"}, - 319031558916048: &Security{ - SecurityId: 319031558916048, - Name: "FSB", - Description: "Franklin Financial Network, Inc.", - Symbol: "FSB", - Precision: 5, - Type: Stock, - AlternateId: "35352P104"}, - 319112002444644: &Security{ - SecurityId: 319112002444644, - Name: "BEN", - Description: "Franklin Resources, Inc.", - Symbol: "BEN", - Precision: 5, - Type: Stock, - AlternateId: "354613101"}, - 319114219537944: &Security{ - SecurityId: 319114219537944, - Name: "FSP", - Description: "Franklin Street Properties Corp.", - Symbol: "FSP", - Precision: 5, - Type: Stock, - AlternateId: "35471R106"}, - 319114283363172: &Security{ - SecurityId: 319114283363172, - Name: "FTF", - Description: "Franklin Limited Duration Income Trust", - Symbol: "FTF", - Precision: 5, - Type: Stock, - AlternateId: "35472T101"}, - 319179667454892: &Security{ - SecurityId: 319179667454892, - Name: "FT", - Description: "Franklin Universal Trust", - Symbol: "FT", - Precision: 5, - Type: Stock, - AlternateId: "355145103"}, - 319257794793024: &Security{ - SecurityId: 319257794793024, - Name: "FRED", - Description: "Fred's, Inc.", - Symbol: "FRED", - Precision: 5, - Type: Stock, - AlternateId: "356108100"}, - 319270924684620: &Security{ - SecurityId: 319270924684620, - Name: "FCX", - Description: "Freeport-McMoRan, Inc. Cl B", - Symbol: "FCX", - Precision: 5, - Type: Stock, - AlternateId: "35671D857"}, - 319334094709056: &Security{ - SecurityId: 319334094709056, - Name: "RAIL", - Description: "FreightCar America, Inc.", - Symbol: "RAIL", - Precision: 5, - Type: Stock, - AlternateId: "357023100"}, - 319412393368344: &Security{ - SecurityId: 319412393368344, - Name: "FEIM", - Description: "Frequency Electronics, Inc.", - Symbol: "FEIM", - Precision: 5, - Type: Stock, - AlternateId: "358010106"}, - 319412529417204: &Security{ - SecurityId: 319412529417204, - Name: "FRPT", - Description: "Freshpet, Inc.", - Symbol: "FRPT", - Precision: 5, - Type: Stock, - AlternateId: "358039105"}, - 319412603320344: &Security{ - SecurityId: 319412603320344, - Name: "TFM", - Description: "Fresh Market, Inc. (The)", - Symbol: "TFM", - Precision: 5, - Type: Stock, - AlternateId: "35804H106"}, - 319421229828084: &Security{ - SecurityId: 319421229828084, - Name: "FRD", - Description: "Friedman Industries, Inc.", - Symbol: "FRD", - Precision: 5, - Type: Stock, - AlternateId: "358435105"}, - 319491076659552: &Security{ - SecurityId: 319491076659552, - Name: "FTR", - Description: "Frontier Communications Corp.", - Symbol: "FTR", - Precision: 5, - Type: Stock, - AlternateId: "35906A108"}, - 319491076706172: &Security{ - SecurityId: 319491076706172, - Name: "FTRPR", - Description: "Frontier Communications, 11.125% Mandatory Convertible Preferred Stock, Series A", - Symbol: "FTRPR", - Precision: 5, - Type: Stock, - AlternateId: "35906A207"}, - 319501730650248: &Security{ - SecurityId: 319501730650248, - Name: "FCEL", - Description: "FuelCell Energy, Inc.", - Symbol: "FCEL", - Precision: 5, - Type: Stock, - AlternateId: "35952H502"}, - 319501706949180: &Security{ - SecurityId: 319501706949180, - Name: "FTEK", - Description: "Fuel Tech, Inc.", - Symbol: "FTEK", - Precision: 5, - Type: Stock, - AlternateId: "359523107"}, - 319504182703056: &Security{ - SecurityId: 319504182703056, - Name: "FULL", - Description: "Full Circle Capital Corp.", - Symbol: "FULL", - Precision: 5, - Type: Stock, - AlternateId: "359671104"}, - 319504194460548: &Security{ - SecurityId: 319504194460548, - Name: "FLL", - Description: "Full House Resorts, Inc.", - Symbol: "FLL", - Precision: 5, - Type: Stock, - AlternateId: "359678109"}, - 319504308674328: &Security{ - SecurityId: 319504308674328, - Name: "FUL", - Description: "H.B. Fuller Co.", - Symbol: "FUL", - Precision: 5, - Type: Stock, - AlternateId: "359694106"}, - 321611308004160: &Security{ - SecurityId: 321611308004160, - Name: "FULT", - Description: "Fulton Financial Corp.", - Symbol: "FULT", - Precision: 5, - Type: Stock, - AlternateId: "360271100"}, - 321685387467876: &Security{ - SecurityId: 321685387467876, - Name: "FRM", - Description: "Furmanite Corp.", - Symbol: "FRM", - Precision: 5, - Type: Stock, - AlternateId: "361086101"}, - 321687270457344: &Security{ - SecurityId: 321687270457344, - Name: "FSNN", - Description: "Fusion Telecommunications International, Inc.", - Symbol: "FSNN", - Precision: 5, - Type: Stock, - AlternateId: "36113B400"}, - 321687470191896: &Security{ - SecurityId: 321687470191896, - Name: "FF", - Description: "FutureFuel Corp.", - Symbol: "FF", - Precision: 5, - Type: Stock, - AlternateId: "36116M106"}, - 321689623459572: &Security{ - SecurityId: 321689623459572, - Name: "GK", - Description: "G&K Services, Inc.", - Symbol: "GK", - Precision: 5, - Type: Stock, - AlternateId: "361268105"}, - 321693795625680: &Security{ - SecurityId: 321693795625680, - Name: "GBL", - Description: "Gamco Investors, Inc.", - Symbol: "GBL", - Precision: 5, - Type: Stock, - AlternateId: "361438104"}, - 321693856091820: &Security{ - SecurityId: 321693856091820, - Name: "GMT", - Description: "GATX Corp.", - Symbol: "GMT", - Precision: 5, - Type: Stock, - AlternateId: "361448103"}, - 321696200835792: &Security{ - SecurityId: 321696200835792, - Name: "GDL", - Description: "GDL Fund (The)", - Symbol: "GDL", - Precision: 5, - Type: Stock, - AlternateId: "361570104"}, - 321704572042044: &Security{ - SecurityId: 321704572042044, - Name: "GNC", - Description: "GNC Holdings, Inc.", - Symbol: "GNC", - Precision: 5, - Type: Stock, - AlternateId: "36191G107"}, - 321704577080676: &Security{ - SecurityId: 321704577080676, - Name: "GSVC", - Description: "GSV Capital Corp.", - Symbol: "GSVC", - Precision: 5, - Type: Stock, - AlternateId: "36191J101"}, - 321704622430596: &Security{ - SecurityId: 321704622430596, - Name: "GWGH", - Description: "GWG Holdings, Inc", - Symbol: "GWGH", - Precision: 5, - Type: Stock, - AlternateId: "36192A109"}, - 321704956673964: &Security{ - SecurityId: 321704956673964, - Name: "GWPH", - Description: "GW Pharmaceuticals PLC ADR", - Symbol: "GWPH", - Precision: 5, - Type: Stock, - AlternateId: "36197T103"}, - 321767965788624: &Security{ - SecurityId: 321767965788624, - Name: "GPX", - Description: "GP Strategies Corp.", - Symbol: "GPX", - Precision: 5, - Type: Stock, - AlternateId: "36225V104"}, - 321768068245272: &Security{ - SecurityId: 321768068245272, - Name: "GVP", - Description: "GSE Systems, Inc.", - Symbol: "GVP", - Precision: 5, - Type: Stock, - AlternateId: "36227K106"}, - 321768039691728: &Security{ - SecurityId: 321768039691728, - Name: "GCE", - Description: "Goldman Sachs Claymore CEF Index-Linked GS Connect ETN due 12/10/2037", - Symbol: "GCE", - Precision: 5, - Type: Stock, - AlternateId: "362273104"}, - 321770239988580: &Security{ - SecurityId: 321770239988580, - Name: "GIII", - Description: "G-III Apparel Group Ltd", - Symbol: "GIII", - Precision: 5, - Type: Stock, - AlternateId: "36237H101"}, - 321770376037764: &Security{ - SecurityId: 321770376037764, - Name: "GGT", - Description: "Gabelli Multimedia Trust, Inc. (The)", - Symbol: "GGT", - Precision: 5, - Type: Stock, - AlternateId: "36239Q109"}, - 321770344124772: &Security{ - SecurityId: 321770344124772, - Name: "GAB", - Description: "Gabelli Equity Trust, Inc. (The)", - Symbol: "GAB", - Precision: 5, - Type: Stock, - AlternateId: "362397101"}, - 321771981750372: &Security{ - SecurityId: 321771981750372, - Name: "GUT", - Description: "Gabelli Utility Trust, Inc. (The)", - Symbol: "GUT", - Precision: 5, - Type: Stock, - AlternateId: "36240A101"}, - 321771983430276: &Security{ - SecurityId: 321771983430276, - Name: "GCV", - Description: "Gabelli Convertible and Income Securities Fund, Inc. (The)", - Symbol: "GCV", - Precision: 5, - Type: Stock, - AlternateId: "36240B109"}, - 321772114440144: &Security{ - SecurityId: 321772114440144, - Name: "GDV", - Description: "Gabelli Dividend & Income Trust (The)", - Symbol: "GDV", - Precision: 5, - Type: Stock, - AlternateId: "36242H104"}, - 321772121158644: &Security{ - SecurityId: 321772121158644, - Name: "GLU", - Description: "Gabelli Global Utility & Income Trust", - Symbol: "GLU", - Precision: 5, - Type: Stock, - AlternateId: "36242L105"}, - 321772361343660: &Security{ - SecurityId: 321772361343660, - Name: "GRX", - Description: "Gabelli Healthcare & WellnessRx Trust", - Symbol: "GRX", - Precision: 5, - Type: Stock, - AlternateId: "36246K103"}, - 321772562897616: &Security{ - SecurityId: 321772562897616, - Name: "GGZ", - Description: "Gabelli Global Small and Mid Cap Value Trust (The)", - Symbol: "GGZ", - Precision: 5, - Type: Stock, - AlternateId: "36249W104"}, - 321776845918380: &Security{ - SecurityId: 321776845918380, - Name: "GAIA", - Description: "Gaiam, Inc.", - Symbol: "GAIA", - Precision: 5, - Type: Stock, - AlternateId: "36268Q103"}, - 321776855995968: &Security{ - SecurityId: 321776855995968, - Name: "GCAP", - Description: "GAIN Capital Holdings, Inc.", - Symbol: "GCAP", - Precision: 5, - Type: Stock, - AlternateId: "36268W100"}, - 321846104977380: &Security{ - SecurityId: 321846104977380, - Name: "GALTU", - Description: "Galectin Therapeutics Inc. Units", - Symbol: "GALTU", - Precision: 5, - Type: Stock, - AlternateId: "363225301"}, - 321846287962464: &Security{ - SecurityId: 321846287962464, - Name: "GALE", - Description: "Galena Biopharma, Inc.", - Symbol: "GALE", - Precision: 5, - Type: Stock, - AlternateId: "363256108"}, - 321852939241860: &Security{ - SecurityId: 321852939241860, - Name: "AJG", - Description: "Arthur J. Gallagher & Co., Inc.", - Symbol: "AJG", - Precision: 5, - Type: Stock, - AlternateId: "363576109"}, - 321933365974404: &Security{ - SecurityId: 321933365974404, - Name: "GGN", - Description: "GAMCO Global Gold, Natural Resources & Income Trust", - Symbol: "GGN", - Precision: 5, - Type: Stock, - AlternateId: "36465A109"}, - 321933502023264: &Security{ - SecurityId: 321933502023264, - Name: "GLPI", - Description: "Gaming and Leisure Properties, Inc.", - Symbol: "GLPI", - Precision: 5, - Type: Stock, - AlternateId: "36467J108"}, - 321933523858308: &Security{ - SecurityId: 321933523858308, - Name: "GME", - Description: "GameStop Corp.", - Symbol: "GME", - Precision: 5, - Type: Stock, - AlternateId: "36467W109"}, - 321935586426720: &Security{ - SecurityId: 321935586426720, - Name: "GPS", - Description: "Gap, Inc. (The)", - Symbol: "GPS", - Precision: 5, - Type: Stock, - AlternateId: "364760108"}, - 322087907442348: &Security{ - SecurityId: 322087907442348, - Name: "GARS", - Description: "Garrison Capital, Inc.", - Symbol: "GARS", - Precision: 5, - Type: Stock, - AlternateId: "366554103"}, - 322090079185980: &Security{ - SecurityId: 322090079185980, - Name: "IT", - Description: "Gartner, Inc.", - Symbol: "IT", - Precision: 5, - Type: Stock, - AlternateId: "366651107"}, - 322159438928592: &Security{ - SecurityId: 322159438928592, - Name: "EGAS", - Description: "Gas Natural, Inc.", - Symbol: "EGAS", - Precision: 5, - Type: Stock, - AlternateId: "367204104"}, - 322248871762128: &Security{ - SecurityId: 322248871762128, - Name: "GNRC", - Description: "Generac Holdings, Inc.", - Symbol: "GNRC", - Precision: 5, - Type: Stock, - AlternateId: "368736104"}, - 322250860427472: &Security{ - SecurityId: 322250860427472, - Name: "GAM", - Description: "General American Investors Co., Inc.", - Symbol: "GAM", - Precision: 5, - Type: Stock, - AlternateId: "368802104"}, - 322318337320800: &Security{ - SecurityId: 322318337320800, - Name: "BGC", - Description: "General Cable Corp.", - Symbol: "BGC", - Precision: 5, - Type: Stock, - AlternateId: "369300108"}, - 322318829448324: &Security{ - SecurityId: 322318829448324, - Name: "GNCMA", - Description: "General Communication, Inc. Cl A", - Symbol: "GNCMA", - Precision: 5, - Type: Stock, - AlternateId: "369385109"}, - 322322993216352: &Security{ - SecurityId: 322322993216352, - Name: "GD", - Description: "General Dynamics Corp.", - Symbol: "GD", - Precision: 5, - Type: Stock, - AlternateId: "369550108"}, - 322324874386092: &Security{ - SecurityId: 322324874386092, - Name: "GE", - Description: "General Electric Co.", - Symbol: "GE", - Precision: 5, - Type: Stock, - AlternateId: "369604103"}, - 322327225848600: &Security{ - SecurityId: 322327225848600, - Name: "JOB", - Description: "General Employment Enterprises, Inc.", - Symbol: "JOB", - Precision: 5, - Type: Stock, - AlternateId: "369730106"}, - 322329345523812: &Security{ - SecurityId: 322329345523812, - Name: "GFN", - Description: "General Finance Corp.", - Symbol: "GFN", - Precision: 5, - Type: Stock, - AlternateId: "369822101"}, - 324427765375404: &Security{ - SecurityId: 324427765375404, - Name: "GGP", - Description: "General Growth Properties, Inc.", - Symbol: "GGP", - Precision: 5, - Type: Stock, - AlternateId: "370023103"}, - 324434357868240: &Security{ - SecurityId: 324434357868240, - Name: "GIS", - Description: "General Mills, Inc.", - Symbol: "GIS", - Precision: 5, - Type: Stock, - AlternateId: "370334104"}, - 324436700932416: &Security{ - SecurityId: 324436700932416, - Name: "GM", - Description: "General Motors Co.", - Symbol: "GM", - Precision: 5, - Type: Stock, - AlternateId: "37045V100"}, - 324445361079240: &Security{ - SecurityId: 324445361079240, - Name: "GSI", - Description: "General Steel Holdings, Inc.", - Symbol: "GSI", - Precision: 5, - Type: Stock, - AlternateId: "370853202"}, - 324517072237704: &Security{ - SecurityId: 324517072237704, - Name: "GCO", - Description: "Genesco, Inc.", - Symbol: "GCO", - Precision: 5, - Type: Stock, - AlternateId: "371532102"}, - 324517204927476: &Security{ - SecurityId: 324517204927476, - Name: "GWR", - Description: "Genesee & Wyoming, Inc.", - Symbol: "GWR", - Precision: 5, - Type: Stock, - AlternateId: "371559105"}, - 324523765554336: &Security{ - SecurityId: 324523765554336, - Name: "GENE", - Description: "Genetic Technologies Ltd ADR", - Symbol: "GENE", - Precision: 5, - Type: Stock, - AlternateId: "37185R208"}, - 324523775585304: &Security{ - SecurityId: 324523775585304, - Name: "GEN", - Description: "Genesis Healthcare, Inc.", - Symbol: "GEN", - Precision: 5, - Type: Stock, - AlternateId: "37185X106"}, - 324525596289156: &Security{ - SecurityId: 324525596289156, - Name: "GNTX", - Description: "Gentex Corp.", - Symbol: "GNTX", - Precision: 5, - Type: Stock, - AlternateId: "371901109"}, - 324525727299024: &Security{ - SecurityId: 324525727299024, - Name: "GEL", - Description: "Genesis Energy, L.P.", - Symbol: "GEL", - Precision: 5, - Type: Stock, - AlternateId: "371927104"}, - 324589211791776: &Security{ - SecurityId: 324589211791776, - Name: "GNE", - Description: "Genie Energy Ltd", - Symbol: "GNE", - Precision: 5, - Type: Stock, - AlternateId: "372284208"}, - 324590913195984: &Security{ - SecurityId: 324590913195984, - Name: "GNMK", - Description: "Genmark Diagnostics, Inc.", - Symbol: "GNMK", - Precision: 5, - Type: Stock, - AlternateId: "372309104"}, - 324593207551440: &Security{ - SecurityId: 324593207551440, - Name: "GNCA", - Description: "Genocea Biosciences, Inc.", - Symbol: "GNCA", - Precision: 5, - Type: Stock, - AlternateId: "372427104"}, - 324593457907644: &Security{ - SecurityId: 324593457907644, - Name: "GNVC", - Description: "GenVec, Inc.", - Symbol: "GNVC", - Precision: 5, - Type: Stock, - AlternateId: "37246C307"}, - 324593437658868: &Security{ - SecurityId: 324593437658868, - Name: "GPC", - Description: "Genuine Parts Co.", - Symbol: "GPC", - Precision: 5, - Type: Stock, - AlternateId: "372460105"}, - 324593519960088: &Security{ - SecurityId: 324593519960088, - Name: "GNW", - Description: "Genworth Financial, Inc.", - Symbol: "GNW", - Precision: 5, - Type: Stock, - AlternateId: "37247D106"}, - 324595449838764: &Security{ - SecurityId: 324595449838764, - Name: "THRM", - Description: "Gentherm, Inc.", - Symbol: "THRM", - Precision: 5, - Type: Stock, - AlternateId: "37253A103"}, - 324595797519420: &Security{ - SecurityId: 324595797519420, - Name: "GTWN", - Description: "Georgetown Bancorp, Inc.", - Symbol: "GTWN", - Precision: 5, - Type: Stock, - AlternateId: "372591107"}, - 324676089882756: &Security{ - SecurityId: 324676089882756, - Name: "GEOS", - Description: "Geospace Technologies Corp.", - Symbol: "GEOS", - Precision: 5, - Type: Stock, - AlternateId: "37364X109"}, - 324678162528756: &Security{ - SecurityId: 324678162528756, - Name: "GGB", - Description: "Gerdau S.A. ADR", - Symbol: "GGB", - Precision: 5, - Type: Stock, - AlternateId: "373737105"}, - 324680517350352: &Security{ - SecurityId: 324680517350352, - Name: "GABC", - Description: "German American Bancorp", - Symbol: "GABC", - Precision: 5, - Type: Stock, - AlternateId: "373865104"}, - 324743640678828: &Security{ - SecurityId: 324743640678828, - Name: "GERN", - Description: "Geron Corp.", - Symbol: "GERN", - Precision: 5, - Type: Stock, - AlternateId: "374163103"}, - 324746005578372: &Security{ - SecurityId: 324746005578372, - Name: "GTY", - Description: "Getty Realty Corp.", - Symbol: "GTY", - Precision: 5, - Type: Stock, - AlternateId: "374297109"}, - 324748180727712: &Security{ - SecurityId: 324748180727712, - Name: "GEVO", - Description: "Gevo, Inc.", - Symbol: "GEVO", - Precision: 5, - Type: Stock, - AlternateId: "374396208"}, - 324754655600700: &Security{ - SecurityId: 324754655600700, - Name: "ROCK", - Description: "Gibraltar Industries, Inc.", - Symbol: "ROCK", - Precision: 5, - Type: Stock, - AlternateId: "374689107"}, - 324822117377196: &Security{ - SecurityId: 324822117377196, - Name: "GIG", - Description: "GigOptix, Inc.", - Symbol: "GIG", - Precision: 5, - Type: Stock, - AlternateId: "37517Y103"}, - 324822068668440: &Security{ - SecurityId: 324822068668440, - Name: "GIGA", - Description: "Giga-tronics, Inc.", - Symbol: "GIGA", - Precision: 5, - Type: Stock, - AlternateId: "375175106"}, - 324822139212168: &Security{ - SecurityId: 324822139212168, - Name: "GIMO", - Description: "Gigamon, Inc.", - Symbol: "GIMO", - Precision: 5, - Type: Stock, - AlternateId: "37518B102"}, - 324830659904172: &Security{ - SecurityId: 324830659904172, - Name: "GILD", - Description: "Gilead Sciences, Inc.", - Symbol: "GILD", - Precision: 5, - Type: Stock, - AlternateId: "375558103"}, - 324839121809580: &Security{ - SecurityId: 324839121809580, - Name: "GIL", - Description: "Gildan Activewear, Inc.", - Symbol: "GIL", - Precision: 5, - Type: Stock, - AlternateId: "375916103"}, - 324904821669108: &Security{ - SecurityId: 324904821669108, - Name: "GBCI", - Description: "Glacier Bancorp, Inc.", - Symbol: "GBCI", - Precision: 5, - Type: Stock, - AlternateId: "37637Q105"}, - 324908898096960: &Security{ - SecurityId: 324908898096960, - Name: "GLAD", - Description: "Gladstone Capital Corp.", - Symbol: "GLAD", - Precision: 5, - Type: Stock, - AlternateId: "376535100"}, - 324908899776864: &Security{ - SecurityId: 324908899776864, - Name: "GOOD", - Description: "Gladstone Commercial Corp.", - Symbol: "GOOD", - Precision: 5, - Type: Stock, - AlternateId: "376536108"}, - 324908960243004: &Security{ - SecurityId: 324908960243004, - Name: "GAIN", - Description: "Gladstone Investment Corp.", - Symbol: "GAIN", - Precision: 5, - Type: Stock, - AlternateId: "376546107"}, - 324982789443792: &Security{ - SecurityId: 324982789443792, - Name: "GLT", - Description: "P.H. Glatfelter Co.", - Symbol: "GLT", - Precision: 5, - Type: Stock, - AlternateId: "377316104"}, - 324982843191432: &Security{ - SecurityId: 324982843191432, - Name: "GKOS", - Description: "Glaukos Corp.", - Symbol: "GKOS", - Precision: 5, - Type: Stock, - AlternateId: "377322102"}, - 324982954046196: &Security{ - SecurityId: 324982954046196, - Name: "GSK", - Description: "GlaxoSmithKline plc ADR", - Symbol: "GSK", - Precision: 5, - Type: Stock, - AlternateId: "37733W105"}, - 324984907439460: &Security{ - SecurityId: 324984907439460, - Name: "GLBZ", - Description: "Glen Burnie Bancorp", - Symbol: "GLBZ", - Precision: 5, - Type: Stock, - AlternateId: "377407101"}, - 325074194146656: &Security{ - SecurityId: 325074194146656, - Name: "GBT", - Description: "Global Blood Therapeutics, Inc.", - Symbol: "GBT", - Precision: 5, - Type: Stock, - AlternateId: "37890U108"}, - 325074572200224: &Security{ - SecurityId: 325074572200224, - Name: "GSAT", - Description: "Globalstar, Inc.", - Symbol: "GSAT", - Precision: 5, - Type: Stock, - AlternateId: "378973408"}, - 325139655500640: &Security{ - SecurityId: 325139655500640, - Name: "GHI", - Description: "Global High Income Fund, Inc.", - Symbol: "GHI", - Precision: 5, - Type: Stock, - AlternateId: "37933G108"}, - 325141650884484: &Security{ - SecurityId: 325141650884484, - Name: "GSB", - Description: "GlobalSCAPE, Inc.", - Symbol: "GSB", - Precision: 5, - Type: Stock, - AlternateId: "37940G109"}, - 325141679437704: &Security{ - SecurityId: 325141679437704, - Name: "GPN", - Description: "Global Payments, Inc.", - Symbol: "GPN", - Precision: 5, - Type: Stock, - AlternateId: "37940X102"}, - 325141726560408: &Security{ - SecurityId: 325141726560408, - Name: "GLPW", - Description: "Global Power Equipment Group, Inc.", - Symbol: "GLPW", - Precision: 5, - Type: Stock, - AlternateId: "37941P306"}, - 325142032157316: &Security{ - SecurityId: 325142032157316, - Name: "GLP", - Description: "Global Partners, L.P.", - Symbol: "GLP", - Precision: 5, - Type: Stock, - AlternateId: "37946R109"}, - 325143824307300: &Security{ - SecurityId: 325143824307300, - Name: "GXF", - Description: "Global X FTSE Nordic Region ETF", - Symbol: "GXF", - Precision: 5, - Type: Stock, - AlternateId: "37950E101"}, - 325143824308884: &Security{ - SecurityId: 325143824308884, - Name: "SDEM", - Description: "Global X SuperDividend Emerging Markets ETF", - Symbol: "SDEM", - Precision: 5, - Type: Stock, - AlternateId: "37950E119"}, - 325143824310108: &Security{ - SecurityId: 325143824310108, - Name: "SRET", - Description: "Global X SuperDividend REIT ETF", - Symbol: "SRET", - Precision: 5, - Type: Stock, - AlternateId: "37950E127"}, - 325143824311332: &Security{ - SecurityId: 325143824311332, - Name: "SCTO", - Description: "Global X JPMorgan US Sector Rotator Index ETF", - Symbol: "SCTO", - Precision: 5, - Type: Stock, - AlternateId: "37950E135"}, - 325143824312556: &Security{ - SecurityId: 325143824312556, - Name: "EFFE", - Description: "Global X JPMorgan Efficiente Index ETF", - Symbol: "EFFE", - Precision: 5, - Type: Stock, - AlternateId: "37950E143"}, - 325143824313744: &Security{ - SecurityId: 325143824313744, - Name: "CHNB", - Description: "Global X GF China Bond ETF", - Symbol: "CHNB", - Precision: 5, - Type: Stock, - AlternateId: "37950E150"}, - 325143824316552: &Security{ - SecurityId: 325143824316552, - Name: "GURI", - Description: "Global X Guru International Index ETF", - Symbol: "GURI", - Precision: 5, - Type: Stock, - AlternateId: "37950E176"}, - 325143824319000: &Security{ - SecurityId: 325143824319000, - Name: "PGAL", - Description: "Global X FTSE Portugal 20 ETF", - Symbol: "PGAL", - Precision: 5, - Type: Stock, - AlternateId: "37950E192"}, - 325143824353920: &Security{ - SecurityId: 325143824353920, - Name: "GXG", - Description: "Global X MSCI Colombia ETF", - Symbol: "GXG", - Precision: 5, - Type: Stock, - AlternateId: "37950E200"}, - 325143824355504: &Security{ - SecurityId: 325143824355504, - Name: "EMFM", - Description: "Global X Next Emerging & Frontier ETF", - Symbol: "EMFM", - Precision: 5, - Type: Stock, - AlternateId: "37950E218"}, - 325143824356728: &Security{ - SecurityId: 325143824356728, - Name: "MLPX", - Description: "Global X MLP & Energy Infrastructure ETF", - Symbol: "MLPX", - Precision: 5, - Type: Stock, - AlternateId: "37950E226"}, - 325143824359176: &Security{ - SecurityId: 325143824359176, - Name: "CHIM", - Description: "Global X China Materials ETF", - Symbol: "CHIM", - Precision: 5, - Type: Stock, - AlternateId: "37950E242"}, - 325143824360724: &Security{ - SecurityId: 325143824360724, - Name: "ARGT", - Description: "Global X MSCI Argentina ETF", - Symbol: "ARGT", - Precision: 5, - Type: Stock, - AlternateId: "37950E259"}, - 325143824363172: &Security{ - SecurityId: 325143824363172, - Name: "URA", - Description: "Global X Uranium ETF", - Symbol: "URA", - Precision: 5, - Type: Stock, - AlternateId: "37950E275"}, - 325143824364396: &Security{ - SecurityId: 325143824364396, - Name: "GLDX", - Description: "Global X Gold Explorers ETF", - Symbol: "GLDX", - Precision: 5, - Type: Stock, - AlternateId: "37950E283"}, - 325143824365620: &Security{ - SecurityId: 325143824365620, - Name: "DIV", - Description: "Global X SuperDividend U.S. ETF", - Symbol: "DIV", - Precision: 5, - Type: Stock, - AlternateId: "37950E291"}, - 325143824403348: &Security{ - SecurityId: 325143824403348, - Name: "MLPJ", - Description: "Global X Junior MLP ETF", - Symbol: "MLPJ", - Precision: 5, - Type: Stock, - AlternateId: "37950E325"}, - 325143824404572: &Security{ - SecurityId: 325143824404572, - Name: "SPFF", - Description: "Global X SuperIncome Preferred ETF", - Symbol: "SPFF", - Precision: 5, - Type: Stock, - AlternateId: "37950E333"}, - 325143824405796: &Security{ - SecurityId: 325143824405796, - Name: "GURU", - Description: "Global X Guru Index ETF", - Symbol: "GURU", - Precision: 5, - Type: Stock, - AlternateId: "37950E341"}, - 325143824407344: &Security{ - SecurityId: 325143824407344, - Name: "PERM", - Description: "Global X Permanent ETF", - Symbol: "PERM", - Precision: 5, - Type: Stock, - AlternateId: "37950E358"}, - 325143824408568: &Security{ - SecurityId: 325143824408568, - Name: "GREK", - Description: "Global X FTSE Greece 20 ETF", - Symbol: "GREK", - Precision: 5, - Type: Stock, - AlternateId: "37950E366"}, - 325143824447520: &Security{ - SecurityId: 325143824447520, - Name: "CHIQ", - Description: "Global X China Consumer ETF", - Symbol: "CHIQ", - Precision: 5, - Type: Stock, - AlternateId: "37950E408"}, - 325143824448744: &Security{ - SecurityId: 325143824448744, - Name: "SOCL", - Description: "Global X Social Media Index ETF", - Symbol: "SOCL", - Precision: 5, - Type: Stock, - AlternateId: "37950E416"}, - 325143824449968: &Security{ - SecurityId: 325143824449968, - Name: "NGE", - Description: "Global X MSCI Nigeria ETF", - Symbol: "NGE", - Precision: 5, - Type: Stock, - AlternateId: "37950E424"}, - 325143824456412: &Security{ - SecurityId: 325143824456412, - Name: "MLPA", - Description: "Global X MLP ETF", - Symbol: "MLPA", - Precision: 5, - Type: Stock, - AlternateId: "37950E473"}, - 325143824459220: &Security{ - SecurityId: 325143824459220, - Name: "SOIL", - Description: "Global X Fertilizers/Potash ETF", - Symbol: "SOIL", - Precision: 5, - Type: Stock, - AlternateId: "37950E499"}, - 325143824494140: &Security{ - SecurityId: 325143824494140, - Name: "CHIE", - Description: "Global X China Energy ETF", - Symbol: "CHIE", - Precision: 5, - Type: Stock, - AlternateId: "37950E507"}, - 325143824499396: &Security{ - SecurityId: 325143824499396, - Name: "SDIV", - Description: "Global X SuperDividend ETF", - Symbol: "SDIV", - Precision: 5, - Type: Stock, - AlternateId: "37950E549"}, - 325143824540760: &Security{ - SecurityId: 325143824540760, - Name: "CHIX", - Description: "Global X China Financials ETF", - Symbol: "CHIX", - Precision: 5, - Type: Stock, - AlternateId: "37950E606"}, - 325143824546016: &Security{ - SecurityId: 325143824546016, - Name: "ASEA", - Description: "Global X Southeast Asia ETF", - Symbol: "ASEA", - Precision: 5, - Type: Stock, - AlternateId: "37950E648"}, - 325143824547204: &Security{ - SecurityId: 325143824547204, - Name: "AND", - Description: "Global X FTSE Andean 40 ETF", - Symbol: "AND", - Precision: 5, - Type: Stock, - AlternateId: "37950E655"}, - 325143824551236: &Security{ - SecurityId: 325143824551236, - Name: "PAK", - Description: "Global X MSCI Pakistan ETF", - Symbol: "PAK", - Precision: 5, - Type: Stock, - AlternateId: "37950E689"}, - 325143824587380: &Security{ - SecurityId: 325143824587380, - Name: "CHII", - Description: "Global X China Industrials ETF", - Symbol: "CHII", - Precision: 5, - Type: Stock, - AlternateId: "37950E705"}, - 325143824592636: &Security{ - SecurityId: 325143824592636, - Name: "NORW", - Description: "Global X MSCI Norway ETF", - Symbol: "NORW", - Precision: 5, - Type: Stock, - AlternateId: "37950E747"}, - 325143824595048: &Security{ - SecurityId: 325143824595048, - Name: "LIT", - Description: "Global X Lithium ETF", - Symbol: "LIT", - Precision: 5, - Type: Stock, - AlternateId: "37950E762"}, - 325143824597856: &Security{ - SecurityId: 325143824597856, - Name: "BRAZ", - Description: "Global X Brazil Mid Cap ETF", - Symbol: "BRAZ", - Precision: 5, - Type: Stock, - AlternateId: "37950E788"}, - 325143824634000: &Security{ - SecurityId: 325143824634000, - Name: "QQQC", - Description: "Global X China Technology ETF", - Symbol: "QQQC", - Precision: 5, - Type: Stock, - AlternateId: "37950E804"}, - 325143824639256: &Security{ - SecurityId: 325143824639256, - Name: "BRAQ", - Description: "Global X Brazil Consumer ETF", - Symbol: "BRAQ", - Precision: 5, - Type: Stock, - AlternateId: "37950E846"}, - 325143824640444: &Security{ - SecurityId: 325143824640444, - Name: "SIL", - Description: "Global X Silver Miners ETF", - Symbol: "SIL", - Precision: 5, - Type: Stock, - AlternateId: "37950E853"}, - 325143824641668: &Security{ - SecurityId: 325143824641668, - Name: "COPX", - Description: "Global X Copper Miners ETF", - Symbol: "COPX", - Precision: 5, - Type: Stock, - AlternateId: "37950E861"}, - 325143883093896: &Security{ - SecurityId: 325143883093896, - Name: "ENT", - Description: "Global Eagle Entertainment, Inc.", - Symbol: "ENT", - Precision: 5, - Type: Stock, - AlternateId: "37951D102"}, - 325144009065132: &Security{ - SecurityId: 325144009065132, - Name: "BRSS", - Description: "Global Brass and Copper Holdings, Inc.", - Symbol: "BRSS", - Precision: 5, - Type: Stock, - AlternateId: "37953G103"}, - 325144020822624: &Security{ - SecurityId: 325144020822624, - Name: "GDEF", - Description: "Global Defense & National Security Systems, Inc.", - Symbol: "GDEF", - Precision: 5, - Type: Stock, - AlternateId: "37953N108"}, - 325144098131472: &Security{ - SecurityId: 325144098131472, - Name: "GPACU", - Description: "Global Partner Acquisition Corp. (Units)", - Symbol: "GPACU", - Precision: 5, - Type: Stock, - AlternateId: "37954X204"}, - 325144099764396: &Security{ - SecurityId: 325144099764396, - Name: "SCIU", - Description: "Global X Scientific Beta US ETF", - Symbol: "SCIU", - Precision: 5, - Type: Stock, - AlternateId: "37954Y103"}, - 325144099857636: &Security{ - SecurityId: 325144099857636, - Name: "SCID", - Description: "Global X Scientific Beta Europe ETF", - Symbol: "SCID", - Precision: 5, - Type: Stock, - AlternateId: "37954Y301"}, - 325144099904256: &Security{ - SecurityId: 325144099904256, - Name: "SCIX", - Description: "Global X Scientific Beta Asia ex-Japan ETF", - Symbol: "SCIX", - Precision: 5, - Type: Stock, - AlternateId: "37954Y400"}, - 325144099951236: &Security{ - SecurityId: 325144099951236, - Name: "SCIJ", - Description: "Global X Scientific Beta Japan ETF", - Symbol: "SCIJ", - Precision: 5, - Type: Stock, - AlternateId: "37954Y509"}, - 325144099997856: &Security{ - SecurityId: 325144099997856, - Name: "ACTX", - Description: "Global X Guru Activist ETF", - Symbol: "ACTX", - Precision: 5, - Type: Stock, - AlternateId: "37954Y608"}, - 325144100044476: &Security{ - SecurityId: 325144100044476, - Name: "YLCO", - Description: "Global X Yieldco Index ETF", - Symbol: "YLCO", - Precision: 5, - Type: Stock, - AlternateId: "37954Y707"}, - 325144100091096: &Security{ - SecurityId: 325144100091096, - Name: "ALTY", - Description: "Global X SuperDividend Alternatives ETF", - Symbol: "ALTY", - Precision: 5, - Type: Stock, - AlternateId: "37954Y806"}, - 325144242531648: &Security{ - SecurityId: 325144242531648, - Name: "GBIM", - Description: "GlobeImmune, Inc.", - Symbol: "GBIM", - Precision: 5, - Type: Stock, - AlternateId: "37957B100"}, - 325144235860128: &Security{ - SecurityId: 325144235860128, - Name: "GMED", - Description: "Globus Medical, Inc.", - Symbol: "GMED", - Precision: 5, - Type: Stock, - AlternateId: "379577208"}, - 325145987652888: &Security{ - SecurityId: 325145987652888, - Name: "GLRI", - Description: "Glori Energy, Inc.", - Symbol: "GLRI", - Precision: 5, - Type: Stock, - AlternateId: "379606106"}, - 325150826673060: &Security{ - SecurityId: 325150826673060, - Name: "GLOW", - Description: "Glowpoint, Inc.", - Symbol: "GLOW", - Precision: 5, - Type: Stock, - AlternateId: "379887201"}, - 325150875335448: &Security{ - SecurityId: 325150875335448, - Name: "GLUU", - Description: "Glu Mobile, Inc.", - Symbol: "GLUU", - Precision: 5, - Type: Stock, - AlternateId: "379890106"}, - 327248792981640: &Security{ - SecurityId: 327248792981640, - Name: "GLYC", - Description: "GlycoMimetics, Inc.", - Symbol: "GLYC", - Precision: 5, - Type: Stock, - AlternateId: "38000Q102"}, - 327253296032316: &Security{ - SecurityId: 327253296032316, - Name: "GDDY", - Description: "GoDaddy, Inc.", - Symbol: "GDDY", - Precision: 5, - Type: Stock, - AlternateId: "380237107"}, - 327257804121660: &Security{ - SecurityId: 327257804121660, - Name: "GOL", - Description: "GOL Linhas Aereas Inteligentes S.A. ADR", - Symbol: "GOL", - Precision: 5, - Type: Stock, - AlternateId: "38045R107"}, - 327257839393668: &Security{ - SecurityId: 327257839393668, - Name: "GOGO", - Description: "GoGo, Inc.", - Symbol: "GOGO", - Precision: 5, - Type: Stock, - AlternateId: "38046C109"}, - 327260226127896: &Security{ - SecurityId: 327260226127896, - Name: "GFI", - Description: "Gold Fields Ltd ADR", - Symbol: "GFI", - Precision: 5, - Type: Stock, - AlternateId: "38059T106"}, - 327262342444020: &Security{ - SecurityId: 327262342444020, - Name: "GORO", - Description: "Gold Resource Corp.", - Symbol: "GORO", - Precision: 5, - Type: Stock, - AlternateId: "38068T105"}, - 327264181623504: &Security{ - SecurityId: 327264181623504, - Name: "GSV", - Description: "Gold Standard Ventures Corp.", - Symbol: "GSV", - Precision: 5, - Type: Stock, - AlternateId: "380738104"}, - 327268652901444: &Security{ - SecurityId: 327268652901444, - Name: "GG", - Description: "Goldcorp, Inc.", - Symbol: "GG", - Precision: 5, - Type: Stock, - AlternateId: "380956409"}, - 327327173942076: &Security{ - SecurityId: 327327173942076, - Name: "GLDC", - Description: "Golden Enterprises, Inc.", - Symbol: "GLDC", - Precision: 5, - Type: Stock, - AlternateId: "381010107"}, - 327327178980708: &Security{ - SecurityId: 327327178980708, - Name: "GDEN", - Description: "Golden Entertainment, Inc.", - Symbol: "GDEN", - Precision: 5, - Type: Stock, - AlternateId: "381013101"}, - 327334067086068: &Security{ - SecurityId: 327334067086068, - Name: "GV", - Description: "Goldfield Corp. (The)", - Symbol: "GV", - Precision: 5, - Type: Stock, - AlternateId: "381370105"}, - 327335907945168: &Security{ - SecurityId: 327335907945168, - Name: "GS", - Description: "Goldman Sachs Group, Inc. (The)", - Symbol: "GS", - Precision: 5, - Type: Stock, - AlternateId: "38141G104"}, - 327336002003772: &Security{ - SecurityId: 327336002003772, - Name: "GSIE", - Description: "Goldman Sachs ActiveBeta International Equity ETF", - Symbol: "GSIE", - Precision: 5, - Type: Stock, - AlternateId: "381430107"}, - 327336002050392: &Security{ - SecurityId: 327336002050392, - Name: "GEM", - Description: "Goldman Sachs ActiveBeta Emerging Markets Equity ETF", - Symbol: "GEM", - Precision: 5, - Type: Stock, - AlternateId: "381430206"}, - 327336002190252: &Security{ - SecurityId: 327336002190252, - Name: "GSLC", - Description: "Goldman Sachs ActiveBeta U.S. Large Cap Equity ETF", - Symbol: "GSLC", - Precision: 5, - Type: Stock, - AlternateId: "381430503"}, - 327336098074776: &Security{ - SecurityId: 327336098074776, - Name: "GSC", - Description: "GS Connect S&P GSCI Enhanced Community TR Strategy Index ETN due 5/8/2037", - Symbol: "GSC", - Precision: 5, - Type: Stock, - AlternateId: "38144L852"}, - 327336294256956: &Security{ - SecurityId: 327336294256956, - Name: "GSBD", - Description: "Goldman Sachs BDC, Inc.", - Symbol: "GSBD", - Precision: 5, - Type: Stock, - AlternateId: "38147U107"}, - 327336297616044: &Security{ - SecurityId: 327336297616044, - Name: "GMZ", - Description: "Goldman Sachs MLP Income Opportunities Fund", - Symbol: "GMZ", - Precision: 5, - Type: Stock, - AlternateId: "38147W103"}, - 327336331208508: &Security{ - SecurityId: 327336331208508, - Name: "GER", - Description: "Goldman Sachs MLP and Energy Renaissance Fund", - Symbol: "GER", - Precision: 5, - Type: Stock, - AlternateId: "38148G107"}, - 327342569302152: &Security{ - SecurityId: 327342569302152, - Name: "GBDC", - Description: "Golub Capital BDC, Inc.", - Symbol: "GBDC", - Precision: 5, - Type: Stock, - AlternateId: "38173M102"}, - 327414245375412: &Security{ - SecurityId: 327414245375412, - Name: "GDPM", - Description: "Goodrich Petroleum Corp.", - Symbol: "GDPM", - Precision: 5, - Type: Stock, - AlternateId: "382410405"}, - 327416663882340: &Security{ - SecurityId: 327416663882340, - Name: "GT", - Description: "Goodyear Tire & Rubber Co. (The)", - Symbol: "GT", - Precision: 5, - Type: Stock, - AlternateId: "382550101"}, - 327419070772140: &Security{ - SecurityId: 327419070772140, - Name: "GPRO", - Description: "GoPro, Inc.", - Symbol: "GPRO", - Precision: 5, - Type: Stock, - AlternateId: "38268T103"}, - 327419124519744: &Security{ - SecurityId: 327419124519744, - Name: "GMAN", - Description: "Gordmans Stores, Inc.", - Symbol: "GMAN", - Precision: 5, - Type: Stock, - AlternateId: "38269P100"}, - 327423264819840: &Security{ - SecurityId: 327423264819840, - Name: "GRSHU", - Description: "Gores Holdings, Inc. (Units)", - Symbol: "GRSHU", - Precision: 5, - Type: Stock, - AlternateId: "382866200"}, - 327484328892624: &Security{ - SecurityId: 327484328892624, - Name: "GRC", - Description: "Gorman-Rupp Co. (The)", - Symbol: "GRC", - Precision: 5, - Type: Stock, - AlternateId: "383082104"}, - 327499458873516: &Security{ - SecurityId: 327499458873516, - Name: "GOV", - Description: "Government Properties Income Trust", - Symbol: "GOV", - Precision: 5, - Type: Stock, - AlternateId: "38376A103"}, - 327501764986464: &Security{ - SecurityId: 327501764986464, - Name: "GRA", - Description: "W.R. Grace & Co.", - Symbol: "GRA", - Precision: 5, - Type: Stock, - AlternateId: "38388F108"}, - 327564397866960: &Security{ - SecurityId: 327564397866960, - Name: "GGG", - Description: "Graco, Inc.", - Symbol: "GGG", - Precision: 5, - Type: Stock, - AlternateId: "384109104"}, - 327573402288408: &Security{ - SecurityId: 327573402288408, - Name: "GHM", - Description: "Graham Corp.", - Symbol: "GHM", - Precision: 5, - Type: Stock, - AlternateId: "384556106"}, - 327575459817936: &Security{ - SecurityId: 327575459817936, - Name: "GHC", - Description: "Graham Holdings Co.", - Symbol: "GHC", - Precision: 5, - Type: Stock, - AlternateId: "384637104"}, - 327579623586000: &Security{ - SecurityId: 327579623586000, - Name: "GWW", - Description: "W.W. Grainger, Inc.", - Symbol: "GWW", - Precision: 5, - Type: Stock, - AlternateId: "384802104"}, - 327640612169376: &Security{ - SecurityId: 327640612169376, - Name: "GRAM", - Description: "Graña y Montero S.A.A.", - Symbol: "GRAM", - Precision: 5, - Type: Stock, - AlternateId: "38500P208"}, - 327640618840932: &Security{ - SecurityId: 327640618840932, - Name: "GTE", - Description: "Gran Tierra Energy, Inc.", - Symbol: "GTE", - Precision: 5, - Type: Stock, - AlternateId: "38500T101"}, - 327640573491264: &Security{ - SecurityId: 327640573491264, - Name: "GPT", - Description: "Gramercy Property Trust", - Symbol: "GPT", - Precision: 5, - Type: Stock, - AlternateId: "385002100"}, - 327645323445528: &Security{ - SecurityId: 327645323445528, - Name: "LOPE", - Description: "Grand Canyon Education, Inc.", - Symbol: "LOPE", - Precision: 5, - Type: Stock, - AlternateId: "38526M106"}, - 327803963176764: &Security{ - SecurityId: 327803963176764, - Name: "GVA", - Description: "Granite Construction, Inc.", - Symbol: "GVA", - Precision: 5, - Type: Stock, - AlternateId: "387328107"}, - 327806198746848: &Security{ - SecurityId: 327806198746848, - Name: "GRP.U", - Description: "Granite REIT, Inc.", - Symbol: "GRP.U", - Precision: 5, - Type: Stock, - AlternateId: "387437114"}, - 327889222164324: &Security{ - SecurityId: 327889222164324, - Name: "GPK", - Description: "Graphic Packaging Holding Co.", - Symbol: "GPK", - Precision: 5, - Type: Stock, - AlternateId: "388689101"}, - 327956302714968: &Security{ - SecurityId: 327956302714968, - Name: "GRVY", - Description: "Gravity Co. Ltd ADR", - Symbol: "GRVY", - Precision: 5, - Type: Stock, - AlternateId: "38911N206"}, - 327960988796952: &Security{ - SecurityId: 327960988796952, - Name: "GTN", - Description: "Gray Television, Inc.", - Symbol: "GTN", - Precision: 5, - Type: Stock, - AlternateId: "389375106"}, - 327960988843572: &Security{ - SecurityId: 327960988843572, - Name: "GTN.A", - Description: "Gray Television, Inc. Cl A", - Symbol: "GTN.A", - Precision: 5, - Type: Stock, - AlternateId: "389375205"}, - 327971644373952: &Security{ - SecurityId: 327971644373952, - Name: "AJX", - Description: "Great Ajax Corp.", - Symbol: "AJX", - Precision: 5, - Type: Stock, - AlternateId: "38983D300"}, - 330072252811884: &Security{ - SecurityId: 330072252811884, - Name: "GBSN", - Description: "Great Basin Scientific, Inc.", - Symbol: "GBSN", - Precision: 5, - Type: Stock, - AlternateId: "39013L403"}, - 330082931670660: &Security{ - SecurityId: 330082931670660, - Name: "GLDD", - Description: "Great Lakes Dredge & Dock Corp.", - Symbol: "GLDD", - Precision: 5, - Type: Stock, - AlternateId: "390607109"}, - 330089458658364: &Security{ - SecurityId: 330089458658364, - Name: "GSBC", - Description: "Great Southern Bancorp, Inc.", - Symbol: "GSBC", - Precision: 5, - Type: Stock, - AlternateId: "390905107"}, - 330150754564452: &Security{ - SecurityId: 330150754564452, - Name: "GPL", - Description: "Great Panther Silver Ltd", - Symbol: "GPL", - Precision: 5, - Type: Stock, - AlternateId: "39115V101"}, - 330150769680960: &Security{ - SecurityId: 330150769680960, - Name: "GXP", - Description: "Great Plains Energy, Inc.", - Symbol: "GXP", - Precision: 5, - Type: Stock, - AlternateId: "391164100"}, - 330157001056464: &Security{ - SecurityId: 330157001056464, - Name: "GWB", - Description: "Great Western Bancorp, Inc.", - Symbol: "GWB", - Precision: 5, - Type: Stock, - AlternateId: "391416104"}, - 330159323965464: &Security{ - SecurityId: 330159323965464, - Name: "GB", - Description: "Greatbatch, Inc.", - Symbol: "GB", - Precision: 5, - Type: Stock, - AlternateId: "39153L106"}, - 330239703668544: &Security{ - SecurityId: 330239703668544, - Name: "GNBC", - Description: "Green Bancorp, Inc.", - Symbol: "GNBC", - Precision: 5, - Type: Stock, - AlternateId: "39260X100"}, - 330241840140132: &Security{ - SecurityId: 330241840140132, - Name: "GRBK", - Description: "Green Brick Partners, Inc.", - Symbol: "GRBK", - Precision: 5, - Type: Stock, - AlternateId: "392709101"}, - 330305215411080: &Security{ - SecurityId: 330305215411080, - Name: "GDOT", - Description: "Green Dot Corp.", - Symbol: "GDOT", - Precision: 5, - Type: Stock, - AlternateId: "39304D102"}, - 330309427888152: &Security{ - SecurityId: 330309427888152, - Name: "GPP", - Description: "Green Plains Partners LP", - Symbol: "GPP", - Precision: 5, - Type: Stock, - AlternateId: "393221106"}, - 330309429567696: &Security{ - SecurityId: 330309429567696, - Name: "GPRE", - Description: "Green Plains, Inc.", - Symbol: "GPRE", - Precision: 5, - Type: Stock, - AlternateId: "393222104"}, - 330318326493540: &Security{ - SecurityId: 330318326493540, - Name: "GBX", - Description: "Greenbrier Companies, Inc. (The)", - Symbol: "GBX", - Precision: 5, - Type: Stock, - AlternateId: "393657101"}, - 330390160310844: &Security{ - SecurityId: 330390160310844, - Name: "GCBC", - Description: "Greene County Bancorp, Inc.", - Symbol: "GCBC", - Precision: 5, - Type: Stock, - AlternateId: "394357107"}, - 330466351051728: &Security{ - SecurityId: 330466351051728, - Name: "GHL", - Description: "Greenhill & Co., Inc.", - Symbol: "GHL", - Precision: 5, - Type: Stock, - AlternateId: "395259104"}, - 330468227182800: &Security{ - SecurityId: 330468227182800, - Name: "GRH", - Description: "GreenHunter Resources, Inc.", - Symbol: "GRH", - Precision: 5, - Type: Stock, - AlternateId: "39530A104"}, - 330631596712764: &Security{ - SecurityId: 330631596712764, - Name: "GEF", - Description: "Greif, Inc.", - Symbol: "GEF", - Precision: 5, - Type: Stock, - AlternateId: "397624107"}, - 330631596759384: &Security{ - SecurityId: 330631596759384, - Name: "GEF.B", - Description: "Greif, Inc. Cl B", - Symbol: "GEF.B", - Precision: 5, - Type: Stock, - AlternateId: "397624206"}, - 330701309174592: &Security{ - SecurityId: 330701309174592, - Name: "GRIF", - Description: "Griffin Land & Nurseries, Inc.", - Symbol: "GRIF", - Precision: 5, - Type: Stock, - AlternateId: "398231100"}, - 330705666098568: &Security{ - SecurityId: 330705666098568, - Name: "GFF", - Description: "Griffon Corp.", - Symbol: "GFF", - Precision: 5, - Type: Stock, - AlternateId: "398433102"}, - 330716371971204: &Security{ - SecurityId: 330716371971204, - Name: "GPI", - Description: "Group 1 Automotive, Inc.", - Symbol: "GPI", - Precision: 5, - Type: Stock, - AlternateId: "398905109"}, - 330784166311812: &Security{ - SecurityId: 330784166311812, - Name: "GIB", - Description: "CGI Group, Inc.", - Symbol: "GIB", - Precision: 5, - Type: Stock, - AlternateId: "39945C109"}, - 330784272127548: &Security{ - SecurityId: 330784272127548, - Name: "GRPN", - Description: "Groupon, Inc.", - Symbol: "GRPN", - Precision: 5, - Type: Stock, - AlternateId: "399473107"}, - 330794742853440: &Security{ - SecurityId: 330794742853440, - Name: "GGAL", - Description: "Grupo Financiero Galicia S.A. ADS", - Symbol: "GGAL", - Precision: 5, - Type: Stock, - AlternateId: "399909100"}, - 406242063968904: &Security{ - SecurityId: 406242063968904, - Name: "GRUB", - Description: "GrubHub, Inc.", - Symbol: "GRUB", - Precision: 5, - Type: Stock, - AlternateId: "400110102"}, - 406249110004824: &Security{ - SecurityId: 406249110004824, - Name: "TV", - Description: "Grupo Televisa S.A.B. ADR", - Symbol: "TV", - Precision: 5, - Type: Stock, - AlternateId: "40049J206"}, - 406249079725080: &Security{ - SecurityId: 406249079725080, - Name: "SIM", - Description: "Grupo Simec S.A. de C.V. ADR", - Symbol: "SIM", - Precision: 5, - Type: Stock, - AlternateId: "400491106"}, - 406250720709732: &Security{ - SecurityId: 406250720709732, - Name: "PAC", - Description: "Grupo Aeroportuario del Pacifico, S.A.B. de C.V.", - Symbol: "PAC", - Precision: 5, - Type: Stock, - AlternateId: "400506101"}, - 406250794659528: &Security{ - SecurityId: 406250794659528, - Name: "ASR", - Description: "Grupo Aeroportuario del Sureste S.A. de C.V. ADR (Pacific Airport Group)", - Symbol: "ASR", - Precision: 5, - Type: Stock, - AlternateId: "40051E202"}, - 406250945778276: &Security{ - SecurityId: 406250945778276, - Name: "AVAL", - Description: "Grupo Aval Acciones y Valores S.A.", - Symbol: "AVAL", - Precision: 5, - Type: Stock, - AlternateId: "40053W101"}, - 406253243493180: &Security{ - SecurityId: 406253243493180, - Name: "GSH", - Description: "Guangshen Railway Co. Ltd ADR", - Symbol: "GSH", - Precision: 5, - Type: Stock, - AlternateId: "40065W107"}, - 406318716604260: &Security{ - SecurityId: 406318716604260, - Name: "GFED", - Description: "Guaranty Federal Bancshares, Inc.", - Symbol: "GFED", - Precision: 5, - Type: Stock, - AlternateId: "40108P101"}, - 406331323802100: &Security{ - SecurityId: 406331323802100, - Name: "GES", - Description: "Guess, Inc.", - Symbol: "GES", - Precision: 5, - Type: Stock, - AlternateId: "401617105"}, - 406331621094204: &Security{ - SecurityId: 406331621094204, - Name: "GBAB", - Description: "Guggenheim Build America Bonds Managed Duration Trust", - Symbol: "GBAB", - Precision: 5, - Type: Stock, - AlternateId: "401664107"}, - 406331693317440: &Security{ - SecurityId: 406331693317440, - Name: "GPM", - Description: "Guggenheim Enhanced Equity Income Fund", - Symbol: "GPM", - Precision: 5, - Type: Stock, - AlternateId: "40167B100"}, - 406331700035940: &Security{ - SecurityId: 406331700035940, - Name: "GOF", - Description: "Guggenheim Strategic Opportunities Fund", - Symbol: "GOF", - Precision: 5, - Type: Stock, - AlternateId: "40167F101"}, - 406331708433984: &Security{ - SecurityId: 406331708433984, - Name: "GGE", - Description: "Guggenheim Enhanced Equity Strategy Fund", - Symbol: "GGE", - Precision: 5, - Type: Stock, - AlternateId: "40167K100"}, - 406331711793432: &Security{ - SecurityId: 406331711793432, - Name: "GEQ", - Description: "Guggenheim Equal Weight Enhanced Equity Income Fund", - Symbol: "GEQ", - Precision: 5, - Type: Stock, - AlternateId: "40167M106"}, - 406331762181984: &Security{ - SecurityId: 406331762181984, - Name: "GGM", - Description: "Guggenheim Credit Allocation Fund", - Symbol: "GGM", - Precision: 5, - Type: Stock, - AlternateId: "40168G108"}, - 406333540895040: &Security{ - SecurityId: 406333540895040, - Name: "GWRE", - Description: "Guidewire Software, Inc.", - Symbol: "GWRE", - Precision: 5, - Type: Stock, - AlternateId: "40171V100"}, - 406401078254544: &Security{ - SecurityId: 406401078254544, - Name: "GULTU", - Description: "Gulf Coast Ultra Deep Royalty Trust (Units)", - Symbol: "GULTU", - Precision: 5, - Type: Stock, - AlternateId: "40222T104"}, - 406403097152904: &Security{ - SecurityId: 406403097152904, - Name: "GIFI", - Description: "Gulf Island Fabrication, Inc.", - Symbol: "GIFI", - Precision: 5, - Type: Stock, - AlternateId: "402307102"}, - 406407553267716: &Security{ - SecurityId: 406407553267716, - Name: "GURE", - Description: "Gulf Resources, Inc.", - Symbol: "GURE", - Precision: 5, - Type: Stock, - AlternateId: "40251W309"}, - 406409751838368: &Security{ - SecurityId: 406409751838368, - Name: "GLF", - Description: "GulfMark Offshore, Inc.", - Symbol: "GLF", - Precision: 5, - Type: Stock, - AlternateId: "402629208"}, - 406409805632592: &Security{ - SecurityId: 406409805632592, - Name: "GPOR", - Description: "Gulfport Energy Corp.", - Symbol: "GPOR", - Precision: 5, - Type: Stock, - AlternateId: "402635304"}, - 406555601246820: &Security{ - SecurityId: 406555601246820, - Name: "HCA", - Description: "HCA Holdings, Inc.", - Symbol: "HCA", - Precision: 5, - Type: Stock, - AlternateId: "40412C101"}, - 406555737296004: &Security{ - SecurityId: 406555737296004, - Name: "HCP", - Description: "HCP, Inc.", - Symbol: "HCP", - Precision: 5, - Type: Stock, - AlternateId: "40414L109"}, - 406555787684196: &Security{ - SecurityId: 406555787684196, - Name: "HDB", - Description: "HDFC Bank Ltd ADR", - Symbol: "HDB", - Precision: 5, - Type: Stock, - AlternateId: "40415F101"}, - 406555859907828: &Security{ - SecurityId: 406555859907828, - Name: "HDS", - Description: "HD Supply Holdings, Inc.", - Symbol: "HDS", - Precision: 5, - Type: Stock, - AlternateId: "40416M105"}, - 406555886781792: &Security{ - SecurityId: 406555886781792, - Name: "HFFC", - Description: "HF Financial Corp.", - Symbol: "HFFC", - Precision: 5, - Type: Stock, - AlternateId: "404172108"}, - 406555969082976: &Security{ - SecurityId: 406555969082976, - Name: "HF", - Description: "HFF, Inc.", - Symbol: "HF", - Precision: 5, - Type: Stock, - AlternateId: "40418F108"}, - 406558525691592: &Security{ - SecurityId: 406558525691592, - Name: "LSC", - Description: "HSBC ELEMENTS Linked to the S&P Commodity Trends Indicator - TR due on 6/16/2023", - Symbol: "LSC", - Precision: 5, - Type: Stock, - AlternateId: "4042EP602"}, - 406557821699136: &Security{ - SecurityId: 406557821699136, - Name: "HMG", - Description: "HMG/Courtland Properties, Inc.", - Symbol: "HMG", - Precision: 5, - Type: Stock, - AlternateId: "404232100"}, - 406557905680224: &Security{ - SecurityId: 406557905680224, - Name: "HMNF", - Description: "HMN Financial, Inc.", - Symbol: "HMNF", - Precision: 5, - Type: Stock, - AlternateId: "40424G108"}, - 406557971184996: &Security{ - SecurityId: 406557971184996, - Name: "HMSY", - Description: "HMS Holdings Corp.", - Symbol: "HMSY", - Precision: 5, - Type: Stock, - AlternateId: "40425J101"}, - 406557940951872: &Security{ - SecurityId: 406557940951872, - Name: "HNI", - Description: "HNI Corp.", - Symbol: "HNI", - Precision: 5, - Type: Stock, - AlternateId: "404251100"}, - 406558120810968: &Security{ - SecurityId: 406558120810968, - Name: "HSBC", - Description: "HSBC Holdings plc ADR", - Symbol: "HSBC", - Precision: 5, - Type: Stock, - AlternateId: "404280406"}, - 406558120904208: &Security{ - SecurityId: 406558120904208, - Name: "HSBC-A", - Description: "HSBC Holdings plc, 6.20% Dep Shares, Non-Cumul Preference Shares, Series A ADR", - Symbol: "HSBC-A", - Precision: 5, - Type: Stock, - AlternateId: "404280604"}, - 406560084142032: &Security{ - SecurityId: 406560084142032, - Name: "HTGM", - Description: "HTG Molecular Diagnostics, Inc.", - Symbol: "HTGM", - Precision: 5, - Type: Stock, - AlternateId: "40434H104"}, - 406560090860532: &Security{ - SecurityId: 406560090860532, - Name: "HPQ", - Description: "HP, Inc.", - Symbol: "HPQ", - Precision: 5, - Type: Stock, - AlternateId: "40434L105"}, - 406562566614444: &Security{ - SecurityId: 406562566614444, - Name: "HABT", - Description: "Habit Restaurants, Inc.", - Symbol: "HABT", - Precision: 5, - Type: Stock, - AlternateId: "40449J103"}, - 406566359187588: &Security{ - SecurityId: 406566359187588, - Name: "HCKT", - Description: "Hackett Group, Inc. (The)", - Symbol: "HCKT", - Precision: 5, - Type: Stock, - AlternateId: "404609109"}, - 406631775191616: &Security{ - SecurityId: 406631775191616, - Name: "HAE", - Description: "Haemonetics Corp.", - Symbol: "HAE", - Precision: 5, - Type: Stock, - AlternateId: "405024100"}, - 406636073328960: &Security{ - SecurityId: 406636073328960, - Name: "HAIN", - Description: "Hain Celestial Group, Inc.", - Symbol: "HAIN", - Precision: 5, - Type: Stock, - AlternateId: "405217100"}, - 406636157310048: &Security{ - SecurityId: 406636157310048, - Name: "HLG", - Description: "Hailiang Education Group, Inc.", - Symbol: "HLG", - Precision: 5, - Type: Stock, - AlternateId: "40522L108"}, - 406714435813476: &Security{ - SecurityId: 406714435813476, - Name: "HAL", - Description: "Halliburton Co.", - Symbol: "HAL", - Precision: 5, - Type: Stock, - AlternateId: "406216101"}, - 406714650851052: &Security{ - SecurityId: 406714650851052, - Name: "HALL", - Description: "Hallmark Financial Services, Inc.", - Symbol: "HALL", - Precision: 5, - Type: Stock, - AlternateId: "40624Q203"}, - 406716993868932: &Security{ - SecurityId: 406716993868932, - Name: "HALO", - Description: "Halozyme Therapeutics, Inc.", - Symbol: "HALO", - Precision: 5, - Type: Stock, - AlternateId: "40637H109"}, - 406720947684672: &Security{ - SecurityId: 406720947684672, - Name: "HYH", - Description: "Halyard Health, Inc.", - Symbol: "HYH", - Precision: 5, - Type: Stock, - AlternateId: "40650V100"}, - 406788444733464: &Security{ - SecurityId: 406788444733464, - Name: "HBK", - Description: "Hamilton Bancorp, Inc. FLA", - Symbol: "HBK", - Precision: 5, - Type: Stock, - AlternateId: "407015106"}, - 406960531517016: &Security{ - SecurityId: 406960531517016, - Name: "BTO", - Description: "John Hancock Financial Opportunity Fund", - Symbol: "BTO", - Precision: 5, - Type: Stock, - AlternateId: "409735206"}, - 409063234342788: &Security{ - SecurityId: 409063234342788, - Name: "HBHC", - Description: "Hancock Holding Co.", - Symbol: "HBHC", - Precision: 5, - Type: Stock, - AlternateId: "410120109"}, - 409063239381420: &Security{ - SecurityId: 409063239381420, - Name: "JHS", - Description: "John Hancock Income Securities Trust", - Symbol: "JHS", - Precision: 5, - Type: Stock, - AlternateId: "410123103"}, - 409063337084484: &Security{ - SecurityId: 409063337084484, - Name: "HTY", - Description: "John Hancock Tax-Advantaged Global Shareholder Yield Fund", - Symbol: "HTY", - Precision: 5, - Type: Stock, - AlternateId: "41013P749"}, - 409063343517684: &Security{ - SecurityId: 409063343517684, - Name: "PDT", - Description: "John Hancock Premium Dividend Fund", - Symbol: "PDT", - Precision: 5, - Type: Stock, - AlternateId: "41013T105"}, - 409063346876736: &Security{ - SecurityId: 409063346876736, - Name: "HTD", - Description: "John Hancock Tax-Advantaged Dividend Income Fund", - Symbol: "HTD", - Precision: 5, - Type: Stock, - AlternateId: "41013V100"}, - 409063348556640: &Security{ - SecurityId: 409063348556640, - Name: "HPI", - Description: "John Hancock Preferred Income Fund", - Symbol: "HPI", - Precision: 5, - Type: Stock, - AlternateId: "41013W108"}, - 409063350236184: &Security{ - SecurityId: 409063350236184, - Name: "HPF", - Description: "John Hancock Preferred Income Fund II", - Symbol: "HPF", - Precision: 5, - Type: Stock, - AlternateId: "41013X106"}, - 409063358634156: &Security{ - SecurityId: 409063358634156, - Name: "JHI", - Description: "John Hancock Investors Trust", - Symbol: "JHI", - Precision: 5, - Type: Stock, - AlternateId: "410142103"}, - 409065392649132: &Security{ - SecurityId: 409065392649132, - Name: "HPS", - Description: "John Hancock Preferred Income Fund III", - Symbol: "HPS", - Precision: 5, - Type: Stock, - AlternateId: "41021P103"}, - 409067717237640: &Security{ - SecurityId: 409067717237640, - Name: "HBI", - Description: "Hanesbrands, Inc.", - Symbol: "HBI", - Precision: 5, - Type: Stock, - AlternateId: "410345102"}, - 409069850396832: &Security{ - SecurityId: 409069850396832, - Name: "HGR", - Description: "Hanger, Inc.", - Symbol: "HGR", - Precision: 5, - Type: Stock, - AlternateId: "41043F208"}, - 409070196397584: &Security{ - SecurityId: 409070196397584, - Name: "HAFC", - Description: "Hanmi Financial Corp.", - Symbol: "HAFC", - Precision: 5, - Type: Stock, - AlternateId: "410495204"}, - 409074536478528: &Security{ - SecurityId: 409074536478528, - Name: "HASI", - Description: "Hannon Armstrong Sustainable Infrastructure Capital, Inc.", - Symbol: "HASI", - Precision: 5, - Type: Stock, - AlternateId: "41068X100"}, - 409078725441012: &Security{ - SecurityId: 409078725441012, - Name: "THG", - Description: "Hanover Insurance Group, Inc. (The)", - Symbol: "THG", - Precision: 5, - Type: Stock, - AlternateId: "410867105"}, - 409145842942848: &Security{ - SecurityId: 409145842942848, - Name: "HNSN", - Description: "Hansen Medical, Inc.", - Symbol: "HNSN", - Precision: 5, - Type: Stock, - AlternateId: "411307200"}, - 409146185631204: &Security{ - SecurityId: 409146185631204, - Name: "HQCL", - Description: "Hanwha Q CELLS Co., Ltd.", - Symbol: "HQCL", - Precision: 5, - Type: Stock, - AlternateId: "41135V301"}, - 409224323047212: &Security{ - SecurityId: 409224323047212, - Name: "HDNG", - Description: "Hardinge, Inc.", - Symbol: "HDNG", - Precision: 5, - Type: Stock, - AlternateId: "412324303"}, - 409235203506528: &Security{ - SecurityId: 409235203506528, - Name: "HOG", - Description: "Harley-Davidson, Inc.", - Symbol: "HOG", - Precision: 5, - Type: Stock, - AlternateId: "412822108"}, - 409296522927492: &Security{ - SecurityId: 409296522927492, - Name: "HAR", - Description: "Harman Intl Industries, Inc.", - Symbol: "HAR", - Precision: 5, - Type: Stock, - AlternateId: "413086109"}, - 409298568699528: &Security{ - SecurityId: 409298568699528, - Name: "HLIT", - Description: "Harmonic, Inc.", - Symbol: "HLIT", - Precision: 5, - Type: Stock, - AlternateId: "413160102"}, - 409300453321920: &Security{ - SecurityId: 409300453321920, - Name: "HMY", - Description: "Harmony Gold Mining Co. Ltd", - Symbol: "HMY", - Precision: 5, - Type: Stock, - AlternateId: "413216300"}, - 409300636353624: &Security{ - SecurityId: 409300636353624, - Name: "HRMNU", - Description: "Harmony Merger Corp. (Units)", - Symbol: "HRMNU", - Precision: 5, - Type: Stock, - AlternateId: "413247206"}, - 409313629816272: &Security{ - SecurityId: 409313629816272, - Name: "TINY", - Description: "Harris & Harris Group, Inc.", - Symbol: "TINY", - Precision: 5, - Type: Stock, - AlternateId: "413833104"}, - 409313875040244: &Security{ - SecurityId: 409313875040244, - Name: "HRS", - Description: "Harris Corp.", - Symbol: "HRS", - Precision: 5, - Type: Stock, - AlternateId: "413875105"}, - 409470541222716: &Security{ - SecurityId: 409470541222716, - Name: "HSC", - Description: "Harsco Corp.", - Symbol: "HSC", - Precision: 5, - Type: Stock, - AlternateId: "415864107"}, - 409533852668076: &Security{ - SecurityId: 409533852668076, - Name: "HHS", - Description: "Harte-Hanks, Inc.", - Symbol: "HHS", - Precision: 5, - Type: Stock, - AlternateId: "416196103"}, - 409542074388432: &Security{ - SecurityId: 409542074388432, - Name: "HIG", - Description: "Hartford Financial Services Group, Inc. (The)", - Symbol: "HIG", - Precision: 5, - Type: Stock, - AlternateId: "416515104"}, - 409550729449752: &Security{ - SecurityId: 409550729449752, - Name: "HART", - Description: "Harvard Apparatus Regenerative Technology, Inc.", - Symbol: "HART", - Precision: 5, - Type: Stock, - AlternateId: "41690A106"}, - 409550722731252: &Security{ - SecurityId: 409550722731252, - Name: "HBIO", - Description: "Harvard Bioscience, Inc.", - Symbol: "HBIO", - Precision: 5, - Type: Stock, - AlternateId: "416906105"}, - 409620576281220: &Security{ - SecurityId: 409620576281220, - Name: "HCAP", - Description: "Harvest Capital Credit Corp.", - Symbol: "HCAP", - Precision: 5, - Type: Stock, - AlternateId: "41753F109"}, - 409620663621036: &Security{ - SecurityId: 409620663621036, - Name: "HNR", - Description: "Harvest Natural Resources, Inc.", - Symbol: "HNR", - Precision: 5, - Type: Stock, - AlternateId: "41754V103"}, - 409688162349372: &Security{ - SecurityId: 409688162349372, - Name: "HAS", - Description: "Hasbro, Inc.", - Symbol: "HAS", - Precision: 5, - Type: Stock, - AlternateId: "418056107"}, - 409766380386732: &Security{ - SecurityId: 409766380386732, - Name: "HTS", - Description: "Hatteras Financial Corp.", - Symbol: "HTS", - Precision: 5, - Type: Stock, - AlternateId: "41902R103"}, - 409777652336256: &Security{ - SecurityId: 409777652336256, - Name: "HVT", - Description: "Haverty Furniture Cos., Inc.", - Symbol: "HVT", - Precision: 5, - Type: Stock, - AlternateId: "419596200"}, - 409784051626560: &Security{ - SecurityId: 409784051626560, - Name: "HE", - Description: "Hawaiian Electric Industries, Inc.", - Symbol: "HE", - Precision: 5, - Type: Stock, - AlternateId: "419870100"}, - 409784066743140: &Security{ - SecurityId: 409784066743140, - Name: "HA", - Description: "Hawaiian Holdings, Inc.", - Symbol: "HA", - Precision: 5, - Type: Stock, - AlternateId: "419879101"}, - 411882229613592: &Security{ - SecurityId: 411882229613592, - Name: "HCOM", - Description: "Hawaiian Telcom Holdco, Inc.", - Symbol: "HCOM", - Precision: 5, - Type: Stock, - AlternateId: "420031106"}, - 411886764576900: &Security{ - SecurityId: 411886764576900, - Name: "HWKN", - Description: "Hawkins, Inc.", - Symbol: "HWKN", - Precision: 5, - Type: Stock, - AlternateId: "420261109"}, - 411891187005612: &Security{ - SecurityId: 411891187005612, - Name: "HWBK", - Description: "Hawthorne Bancshares, Inc.", - Symbol: "HWBK", - Precision: 5, - Type: Stock, - AlternateId: "420476103"}, - 411980011818336: &Security{ - SecurityId: 411980011818336, - Name: "HCSG", - Description: "Healthcare Services Group, Inc.", - Symbol: "HCSG", - Precision: 5, - Type: Stock, - AlternateId: "421906108"}, - 411980129484804: &Security{ - SecurityId: 411980129484804, - Name: "HLS", - Description: "HealthSouth Corp.", - Symbol: "HLS", - Precision: 5, - Type: Stock, - AlternateId: "421924309"}, - 411980253682896: &Security{ - SecurityId: 411980253682896, - Name: "HR", - Description: "Healthcare Realty Trust, Inc.", - Symbol: "HR", - Precision: 5, - Type: Stock, - AlternateId: "421946104"}, - 412040993636232: &Security{ - SecurityId: 412040993636232, - Name: "HW", - Description: "Headwaters, Inc.", - Symbol: "HW", - Precision: 5, - Type: Stock, - AlternateId: "42210P102"}, - 412043276234592: &Security{ - SecurityId: 412043276234592, - Name: "HNT", - Description: "Health Net, Inc.", - Symbol: "HNT", - Precision: 5, - Type: Stock, - AlternateId: "42222G108"}, - 412043287991724: &Security{ - SecurityId: 412043287991724, - Name: "HSTM", - Description: "HealthStream, Inc.", - Symbol: "HSTM", - Precision: 5, - Type: Stock, - AlternateId: "42222N103"}, - 412043378690880: &Security{ - SecurityId: 412043378690880, - Name: "HWAY", - Description: "Healthways, Inc", - Symbol: "HWAY", - Precision: 5, - Type: Stock, - AlternateId: "422245100"}, - 412043464351512: &Security{ - SecurityId: 412043464351512, - Name: "HIIQ", - Description: "Health Insurance Innovations, Inc.", - Symbol: "HIIQ", - Precision: 5, - Type: Stock, - AlternateId: "42225K106"}, - 412043508021564: &Security{ - SecurityId: 412043508021564, - Name: "HQY", - Description: "HealthEquity, Inc.", - Symbol: "HQY", - Precision: 5, - Type: Stock, - AlternateId: "42226A107"}, - 412045590745224: &Security{ - SecurityId: 412045590745224, - Name: "HTLF", - Description: "Heartland Financial USA, Inc.", - Symbol: "HTLF", - Precision: 5, - Type: Stock, - AlternateId: "42234Q102"}, - 412045558832592: &Security{ - SecurityId: 412045558832592, - Name: "HTLD", - Description: "Heartland Express, Inc.", - Symbol: "HTLD", - Precision: 5, - Type: Stock, - AlternateId: "422347104"}, - 412045646172768: &Security{ - SecurityId: 412045646172768, - Name: "HPY", - Description: "Heartland Payment Systems, Inc.", - Symbol: "HPY", - Precision: 5, - Type: Stock, - AlternateId: "42235N108"}, - 412045762066056: &Security{ - SecurityId: 412045762066056, - Name: "HTBX", - Description: "Heat Biologics, Inc.", - Symbol: "HTBX", - Precision: 5, - Type: Stock, - AlternateId: "42237K102"}, - 412054019058456: &Security{ - SecurityId: 412054019058456, - Name: "HL", - Description: "Hecla Mining Co.", - Symbol: "HL", - Precision: 5, - Type: Stock, - AlternateId: "422704106"}, - 412054019105076: &Security{ - SecurityId: 412054019105076, - Name: "HL-B", - Description: "Hecla Mining Co., $3.50 Series B Cumulative Convertible Preferred Stock", - Symbol: "HL-B", - Precision: 5, - Type: Stock, - AlternateId: "422704205"}, - 412056199200132: &Security{ - SecurityId: 412056199200132, - Name: "HEI", - Description: "HEICO Corp.", - Symbol: "HEI", - Precision: 5, - Type: Stock, - AlternateId: "422806109"}, - 412056199246752: &Security{ - SecurityId: 412056199246752, - Name: "HEI.A", - Description: "HEICO Corp. Cl A", - Symbol: "HEI.A", - Precision: 5, - Type: Stock, - AlternateId: "422806208"}, - 412056264704904: &Security{ - SecurityId: 412056264704904, - Name: "HSII", - Description: "Heidrick & Struggles Intl, Inc.", - Symbol: "HSII", - Precision: 5, - Type: Stock, - AlternateId: "422819102"}, - 412123711365180: &Security{ - SecurityId: 412123711365180, - Name: "HLX", - Description: "Helix Energy Solutions Group, Inc.", - Symbol: "HLX", - Precision: 5, - Type: Stock, - AlternateId: "42330P107"}, - 412126151847012: &Security{ - SecurityId: 412126151847012, - Name: "HP", - Description: "Helmerich & Payne, Inc.", - Symbol: "HP", - Precision: 5, - Type: Stock, - AlternateId: "423452101"}, - 412130545722540: &Security{ - SecurityId: 412130545722540, - Name: "HMTV", - Description: "Hemisphere Media Group, Inc.", - Symbol: "HMTV", - Precision: 5, - Type: Stock, - AlternateId: "42365Q103"}, - 412130582674092: &Security{ - SecurityId: 412130582674092, - Name: "HEB", - Description: "Hemispherx Biopharma, Inc.", - Symbol: "HEB", - Precision: 5, - Type: Stock, - AlternateId: "42366C103"}, - 412291797256512: &Security{ - SecurityId: 412291797256512, - Name: "HCACU", - Description: "Hennessy Capital Acquisition Corp. II (Units)", - Symbol: "HCACU", - Precision: 5, - Type: Stock, - AlternateId: "42588J100"}, - 412291773741888: &Security{ - SecurityId: 412291773741888, - Name: "HNNA", - Description: "Hennessy Advisors, Inc.", - Symbol: "HNNA", - Precision: 5, - Type: Stock, - AlternateId: "425885100"}, - 412357070493540: &Security{ - SecurityId: 412357070493540, - Name: "JKHY", - Description: "Jack Henry & Associates, Inc.", - Symbol: "JKHY", - Precision: 5, - Type: Stock, - AlternateId: "426281101"}, - 412371955250820: &Security{ - SecurityId: 412371955250820, - Name: "HTBK", - Description: "Heritage Commerce Corp.", - Symbol: "HTBK", - Precision: 5, - Type: Stock, - AlternateId: "426927109"}, - 412431145011900: &Security{ - SecurityId: 412431145011900, - Name: "HERO", - Description: "Hercules Offshore, Inc.", - Symbol: "HERO", - Precision: 5, - Type: Stock, - AlternateId: "427093307"}, - 412431150144096: &Security{ - SecurityId: 412431150144096, - Name: "HTGC", - Description: "Hercules Technology Growth Capital, Inc.", - Symbol: "HTGC", - Precision: 5, - Type: Stock, - AlternateId: "427096508"}, - 412435125608472: &Security{ - SecurityId: 412435125608472, - Name: "HFWA", - Description: "Heritage Financial Corp.", - Symbol: "HFWA", - Precision: 5, - Type: Stock, - AlternateId: "42722X106"}, - 412435236463164: &Security{ - SecurityId: 412435236463164, - Name: "HEOP", - Description: "Heritage Oaks Bancorp", - Symbol: "HEOP", - Precision: 5, - Type: Stock, - AlternateId: "42724R107"}, - 412435348997400: &Security{ - SecurityId: 412435348997400, - Name: "HCCI", - Description: "Heritage-Crystal Clean, Inc.", - Symbol: "HCCI", - Precision: 5, - Type: Stock, - AlternateId: "42726M106"}, - 412435404424584: &Security{ - SecurityId: 412435404424584, - Name: "HRTG", - Description: "Heritage Insurance Holdings, Inc.", - Symbol: "HRTG", - Precision: 5, - Type: Stock, - AlternateId: "42727J102"}, - 412448382817632: &Security{ - SecurityId: 412448382817632, - Name: "HSY", - Description: "Hershey Co.", - Symbol: "HSY", - Precision: 5, - Type: Stock, - AlternateId: "427866108"}, - 412509310887924: &Security{ - SecurityId: 412509310887924, - Name: "HTZ", - Description: "Hertz Global Holdings, Inc.", - Symbol: "HTZ", - Precision: 5, - Type: Stock, - AlternateId: "42805T105"}, - 412509532597308: &Security{ - SecurityId: 412509532597308, - Name: "HES", - Description: "Hess Corp.", - Symbol: "HES", - Precision: 5, - Type: Stock, - AlternateId: "42809H107"}, - 412513575433092: &Security{ - SecurityId: 412513575433092, - Name: "HPE", - Description: "Hewlett Packard Enterprise Co.", - Symbol: "HPE", - Precision: 5, - Type: Stock, - AlternateId: "42824C109"}, - 412513859288160: &Security{ - SecurityId: 412513859288160, - Name: "HXL", - Description: "Hexcel Corp.", - Symbol: "HXL", - Precision: 5, - Type: Stock, - AlternateId: "428291108"}, - 412515706865760: &Security{ - SecurityId: 412515706865760, - Name: "HGG", - Description: "hhgregg, Inc.", - Symbol: "HGG", - Precision: 5, - Type: Stock, - AlternateId: "42833L108"}, - 412515683351172: &Security{ - SecurityId: 412515683351172, - Name: "HCLP", - Description: "Hi-Crush Partners L.P.", - Symbol: "HCLP", - Precision: 5, - Type: Stock, - AlternateId: "428337109"}, - 412520218314084: &Security{ - SecurityId: 412520218314084, - Name: "HIBB", - Description: "Hibbett Sporting Goods, Inc.", - Symbol: "HIBB", - Precision: 5, - Type: Stock, - AlternateId: "428567101"}, - 412604941504464: &Security{ - SecurityId: 412604941504464, - Name: "ONE", - Description: "Higher One Holdings, Inc.", - Symbol: "ONE", - Precision: 5, - Type: Stock, - AlternateId: "42983D104"}, - 414705335149620: &Security{ - SecurityId: 414705335149620, - Name: "HHDG", - Description: "Highland HFR Equity Hedge ETF", - Symbol: "HHDG", - Precision: 5, - Type: Stock, - AlternateId: "430101691"}, - 414705335187348: &Security{ - SecurityId: 414705335187348, - Name: "DRVN", - Description: "Highland HFR Event-Driven ETF", - Symbol: "DRVN", - Precision: 5, - Type: Stock, - AlternateId: "430101725"}, - 414705335188572: &Security{ - SecurityId: 414705335188572, - Name: "HHFR", - Description: "Highland HFR Global ETF", - Symbol: "HHFR", - Precision: 5, - Type: Stock, - AlternateId: "430101733"}, - 414705335193792: &Security{ - SecurityId: 414705335193792, - Name: "SNLN", - Description: "Highland iBoxx Senior Loan ETF", - Symbol: "SNLN", - Precision: 5, - Type: Stock, - AlternateId: "430101774"}, - 414783934215012: &Security{ - SecurityId: 414783934215012, - Name: "HPJ", - Description: "Hong Kong Highpower Technology, Inc.", - Symbol: "HPJ", - Precision: 5, - Type: Stock, - AlternateId: "43113X101"}, - 414786364619616: &Security{ - SecurityId: 414786364619616, - Name: "HIW", - Description: "Highwoods Properties, Inc.", - Symbol: "HIW", - Precision: 5, - Type: Stock, - AlternateId: "431284108"}, - 414790600610916: &Security{ - SecurityId: 414790600610916, - Name: "HIL", - Description: "Hill Intl, Inc.", - Symbol: "HIL", - Precision: 5, - Type: Stock, - AlternateId: "431466101"}, - 414790659397512: &Security{ - SecurityId: 414790659397512, - Name: "HRC", - Description: "Hill-Rom Holdings, Inc.", - Symbol: "HRC", - Precision: 5, - Type: Stock, - AlternateId: "431475102"}, - 414792829461600: &Security{ - SecurityId: 414792829461600, - Name: "HI", - Description: "Hillenbrand, Inc.", - Symbol: "HI", - Precision: 5, - Type: Stock, - AlternateId: "431571108"}, - 414875377548900: &Security{ - SecurityId: 414875377548900, - Name: "HTH", - Description: "Hilltop Holdings, Inc.", - Symbol: "HTH", - Precision: 5, - Type: Stock, - AlternateId: "432748101"}, - 414877885215768: &Security{ - SecurityId: 414877885215768, - Name: "HIMX", - Description: "Himax Technologies, Inc.", - Symbol: "HIMX", - Precision: 5, - Type: Stock, - AlternateId: "43289P106"}, - 414938265731280: &Security{ - SecurityId: 414938265731280, - Name: "HLT", - Description: "Hilton Worldwide Holdings, Inc.", - Symbol: "HLT", - Precision: 5, - Type: Stock, - AlternateId: "43300A104"}, - 414944905253256: &Security{ - SecurityId: 414944905253256, - Name: "HIFS", - Description: "Hingham Institution for Savings", - Symbol: "HIFS", - Precision: 5, - Type: Stock, - AlternateId: "433323102"}, - 414949668644484: &Security{ - SecurityId: 414949668644484, - Name: "HSGX", - Description: "Histogenics Corp.", - Symbol: "HSGX", - Precision: 5, - Type: Stock, - AlternateId: "43358V109"}, - 415110582575676: &Security{ - SecurityId: 415110582575676, - Name: "HEP", - Description: "Holly Energy Partners, L.P.", - Symbol: "HEP", - Precision: 5, - Type: Stock, - AlternateId: "435763107"}, - 415175528287584: &Security{ - SecurityId: 415175528287584, - Name: "HFC", - Description: "HollyFrontier Corp.", - Symbol: "HFC", - Precision: 5, - Type: Stock, - AlternateId: "436106108"}, - 415182290421348: &Security{ - SecurityId: 415182290421348, - Name: "HOLX", - Description: "Hologic, Inc.", - Symbol: "HOLX", - Precision: 5, - Type: Stock, - AlternateId: "436440101"}, - 415191323396412: &Security{ - SecurityId: 415191323396412, - Name: "HBCP", - Description: "Home Bancorp, Inc.", - Symbol: "HBCP", - Precision: 5, - Type: Stock, - AlternateId: "43689E107"}, - 415252138932360: &Security{ - SecurityId: 415252138932360, - Name: "HD", - Description: "Home Depot, Inc. (The)", - Symbol: "HD", - Precision: 5, - Type: Stock, - AlternateId: "437076102"}, - 415260557167752: &Security{ - SecurityId: 415260557167752, - Name: "HMIN", - Description: "Homeinns Hotel Group", - Symbol: "HMIN", - Precision: 5, - Type: Stock, - AlternateId: "43742E102"}, - 415269474249096: &Security{ - SecurityId: 415269474249096, - Name: "HMST", - Description: "HomeStreet, Inc.", - Symbol: "HMST", - Precision: 5, - Type: Stock, - AlternateId: "43785V102"}, - 415269546472656: &Security{ - SecurityId: 415269546472656, - Name: "HTBI", - Description: "Hometrust Bancshares, Inc.", - Symbol: "HTBI", - Precision: 5, - Type: Stock, - AlternateId: "437872104"}, - 415332381000672: &Security{ - SecurityId: 415332381000672, - Name: "HMC", - Description: "Honda Motor Co. Ltd ADR", - Symbol: "HMC", - Precision: 5, - Type: Stock, - AlternateId: "438128308"}, - 415341024211224: &Security{ - SecurityId: 415341024211224, - Name: "HON", - Description: "Honeywell Intl, Inc.", - Symbol: "HON", - Precision: 5, - Type: Stock, - AlternateId: "438516106"}, - 415341447474564: &Security{ - SecurityId: 415341447474564, - Name: "CETC", - Description: "Hongli Clean Energy Technologies Corp.", - Symbol: "CETC", - Precision: 5, - Type: Stock, - AlternateId: "438586109"}, - 415408628755008: &Security{ - SecurityId: 415408628755008, - Name: "HOFT", - Description: "Hooker Furniture Corp.", - Symbol: "HOFT", - Precision: 5, - Type: Stock, - AlternateId: "439038100"}, - 415410617420352: &Security{ - SecurityId: 415410617420352, - Name: "HH", - Description: "Hooper Holmes, Inc.", - Symbol: "HH", - Precision: 5, - Type: Stock, - AlternateId: "439104100"}, - 415423859513040: &Security{ - SecurityId: 415423859513040, - Name: "HFBC", - Description: "HopFed Bancorp, Inc.", - Symbol: "HFBC", - Precision: 5, - Type: Stock, - AlternateId: "439734104"}, - 417530929386960: &Security{ - SecurityId: 417530929386960, - Name: "HMN", - Description: "Horace Mann Educators Corp.", - Symbol: "HMN", - Precision: 5, - Type: Stock, - AlternateId: "440327104"}, - 417532985236944: &Security{ - SecurityId: 417532985236944, - Name: "HBNC", - Description: "Horizon Bancorp", - Symbol: "HBNC", - Precision: 5, - Type: Stock, - AlternateId: "440407104"}, - 417533292606600: &Security{ - SecurityId: 417533292606600, - Name: "HRZN", - Description: "Horizon Technology Finance Corp.", - Symbol: "HRZN", - Precision: 5, - Type: Stock, - AlternateId: "44045A102"}, - 417533279169600: &Security{ - SecurityId: 417533279169600, - Name: "HRL", - Description: "Hormel Foods Corp.", - Symbol: "HRL", - Precision: 5, - Type: Stock, - AlternateId: "440452100"}, - 417535291349856: &Security{ - SecurityId: 417535291349856, - Name: "HKOR", - Description: "Horizons Korea KOSPI 200 ETF", - Symbol: "HKOR", - Precision: 5, - Type: Stock, - AlternateId: "44052C108"}, - 417535324942032: &Security{ - SecurityId: 417535324942032, - Name: "HZN", - Description: "Horizon Global Corp.", - Symbol: "HZN", - Precision: 5, - Type: Stock, - AlternateId: "44052W104"}, - 417535397165592: &Security{ - SecurityId: 417535397165592, - Name: "HOS", - Description: "Hornbeck Offshore Services, Inc.", - Symbol: "HOS", - Precision: 5, - Type: Stock, - AlternateId: "440543106"}, - 417542231522988: &Security{ - SecurityId: 417542231522988, - Name: "HDP", - Description: "Hortonworks, Inc.", - Symbol: "HDP", - Precision: 5, - Type: Stock, - AlternateId: "440894103"}, - 417603030262920: &Security{ - SecurityId: 417603030262920, - Name: "HPT", - Description: "Hospitality Properties Trust", - Symbol: "HPT", - Precision: 5, - Type: Stock, - AlternateId: "44106M102"}, - 417603095768016: &Security{ - SecurityId: 417603095768016, - Name: "HST", - Description: "Host Hotels & Resorts, Inc.", - Symbol: "HST", - Precision: 5, - Type: Stock, - AlternateId: "44107P104"}, - 417613983039108: &Security{ - SecurityId: 417613983039108, - Name: "HMHC", - Description: "Houghton Mifflin Harcourt Co.", - Symbol: "HMHC", - Precision: 5, - Type: Stock, - AlternateId: "44157R109"}, - 417614063660352: &Security{ - SecurityId: 417614063660352, - Name: "HLI", - Description: "Houlihan Lokey, Inc. Cl A", - Symbol: "HLI", - Precision: 5, - Type: Stock, - AlternateId: "441593100"}, - 417620276559936: &Security{ - SecurityId: 417620276559936, - Name: "HUSA", - Description: "Houston American Energy Corp.", - Symbol: "HUSA", - Precision: 5, - Type: Stock, - AlternateId: "44183U100"}, - 417690197341164: &Security{ - SecurityId: 417690197341164, - Name: "HOV", - Description: "Hovnanian Enterprises, Inc., Cl A", - Symbol: "HOV", - Precision: 5, - Type: Stock, - AlternateId: "442487203"}, - 417690256081140: &Security{ - SecurityId: 417690256081140, - Name: "HBMD", - Description: "Howard Bancorp, Inc.", - Symbol: "HBMD", - Precision: 5, - Type: Stock, - AlternateId: "442496105"}, - 417694500470844: &Security{ - SecurityId: 417694500470844, - Name: "HHC", - Description: "Howard Hughes Corp.", - Symbol: "HHC", - Precision: 5, - Type: Stock, - AlternateId: "44267D107"}, - 417765895907904: &Security{ - SecurityId: 417765895907904, - Name: "HNP", - Description: "Huaneng Power Intl, Inc. ADR", - Symbol: "HNP", - Precision: 5, - Type: Stock, - AlternateId: "443304100"}, - 417766010122008: &Security{ - SecurityId: 417766010122008, - Name: "HUBG", - Description: "Hub Group, Inc.", - Symbol: "HUBG", - Precision: 5, - Type: Stock, - AlternateId: "443320106"}, - 417770303266980: &Security{ - SecurityId: 417770303266980, - Name: "HUBB", - Description: "Hubbell, Inc.", - Symbol: "HUBB", - Precision: 5, - Type: Stock, - AlternateId: "443510201"}, - 417770671056192: &Security{ - SecurityId: 417770671056192, - Name: "HUBS", - Description: "HubSpot, Inc.", - Symbol: "HUBS", - Precision: 5, - Type: Stock, - AlternateId: "443573100"}, - 417772553905800: &Security{ - SecurityId: 417772553905800, - Name: "HBM", - Description: "HudBay Minerals, Inc.", - Symbol: "HBM", - Precision: 5, - Type: Stock, - AlternateId: "443628102"}, - 417775091805720: &Security{ - SecurityId: 417775091805720, - Name: "HSON", - Description: "Hudson Global, Inc.", - Symbol: "HSON", - Precision: 5, - Type: Stock, - AlternateId: "443787106"}, - 417838278959748: &Security{ - SecurityId: 417838278959748, - Name: "HPP", - Description: "Hudson Pacific Properties, Inc.", - Symbol: "HPP", - Precision: 5, - Type: Stock, - AlternateId: "444097109"}, - 417840148372356: &Security{ - SecurityId: 417840148372356, - Name: "HDSN", - Description: "Hudson Technologies, Inc.", - Symbol: "HDSN", - Precision: 5, - Type: Stock, - AlternateId: "444144109"}, - 417853032706440: &Security{ - SecurityId: 417853032706440, - Name: "HGT", - Description: "Hugoton Royalty Trust", - Symbol: "HGT", - Precision: 5, - Type: Stock, - AlternateId: "444717102"}, - 417855454712712: &Security{ - SecurityId: 417855454712712, - Name: "HUM", - Description: "Humana, Inc.", - Symbol: "HUM", - Precision: 5, - Type: Stock, - AlternateId: "444859102"}, - 417929463632700: &Security{ - SecurityId: 417929463632700, - Name: "JBHT", - Description: "J.B. Hunt Transport Services, Inc.", - Symbol: "JBHT", - Precision: 5, - Type: Stock, - AlternateId: "445658107"}, - 417996930448080: &Security{ - SecurityId: 417996930448080, - Name: "HBAN", - Description: "Huntington Bancshares, Inc.", - Symbol: "HBAN", - Precision: 5, - Type: Stock, - AlternateId: "446150104"}, - 417996930587940: &Security{ - SecurityId: 417996930587940, - Name: "HBANP", - Description: "Huntington Bancshares, 8.50% Series A Non-Cumul Perpetual Conv Preferred Stock", - Symbol: "HBANP", - Precision: 5, - Type: Stock, - AlternateId: "446150401"}, - 418003223969304: &Security{ - SecurityId: 418003223969304, - Name: "HII", - Description: "Huntington Ingalls Industries, Inc.", - Symbol: "HII", - Precision: 5, - Type: Stock, - AlternateId: "446413106"}, - 418008069661320: &Security{ - SecurityId: 418008069661320, - Name: "HUSE", - Description: "Huntington US Equity Rotation Strategy ETF", - Symbol: "HUSE", - Precision: 5, - Type: Stock, - AlternateId: "446698102"}, - 418008069707940: &Security{ - SecurityId: 418008069707940, - Name: "HECO", - Description: "Huntington EcoLogical Strategy ETF", - Symbol: "HECO", - Precision: 5, - Type: Stock, - AlternateId: "446698201"}, - 418072877644860: &Security{ - SecurityId: 418072877644860, - Name: "HUN", - Description: "Huntsman Corp.", - Symbol: "HUN", - Precision: 5, - Type: Stock, - AlternateId: "447011107"}, - 418079473496784: &Security{ - SecurityId: 418079473496784, - Name: "HURC", - Description: "Hurco Companies, Inc.", - Symbol: "HURC", - Precision: 5, - Type: Stock, - AlternateId: "447324104"}, - 418081888784520: &Security{ - SecurityId: 418081888784520, - Name: "HURN", - Description: "Huron Consulting Group, Inc.", - Symbol: "HURN", - Precision: 5, - Type: Stock, - AlternateId: "447462102"}, - 418159898549784: &Security{ - SecurityId: 418159898549784, - Name: "HTCH", - Description: "Hutchinson Technology, Inc.", - Symbol: "HTCH", - Precision: 5, - Type: Stock, - AlternateId: "448407106"}, - 418160190802896: &Security{ - SecurityId: 418160190802896, - Name: "HBP", - Description: "Huttig Building Products, Inc.", - Symbol: "HBP", - Precision: 5, - Type: Stock, - AlternateId: "448451104"}, - 418162501954440: &Security{ - SecurityId: 418162501954440, - Name: "H", - Description: "Hyatt Hotels Corp.", - Symbol: "H", - Precision: 5, - Type: Stock, - AlternateId: "448579102"}, - 418166659003968: &Security{ - SecurityId: 418166659003968, - Name: "HDRA", - Description: "Hydra Industries Acquisition Corp.", - Symbol: "HDRA", - Precision: 5, - Type: Stock, - AlternateId: "448740100"}, - 418166659050948: &Security{ - SecurityId: 418166659050948, - Name: "HDRAU", - Description: "Hydra Industries Acquisition Corp.", - Symbol: "HDRAU", - Precision: 5, - Type: Stock, - AlternateId: "448740209"}, - 418169082736764: &Security{ - SecurityId: 418169082736764, - Name: "HYGS", - Description: "Hydrogenics Corp.", - Symbol: "HYGS", - Precision: 5, - Type: Stock, - AlternateId: "448883207"}, - 418232147231988: &Security{ - SecurityId: 418232147231988, - Name: "HY", - Description: "Hyster-Yale Materials Handling, Inc.", - Symbol: "HY", - Precision: 5, - Type: Stock, - AlternateId: "449172105"}, - 418232306982240: &Security{ - SecurityId: 418232306982240, - Name: "IACI", - Description: "IAC/InterActiveCorp", - Symbol: "IACI", - Precision: 5, - Type: Stock, - AlternateId: "44919P508"}, - 418236101048124: &Security{ - SecurityId: 418236101048124, - Name: "ICUI", - Description: "ICU Medical, Inc.", - Symbol: "ICUI", - Precision: 5, - Type: Stock, - AlternateId: "44930G107"}, - 418236593175648: &Security{ - SecurityId: 418236593175648, - Name: "IDI", - Description: "IDI, Inc.", - Symbol: "IDI", - Precision: 5, - Type: Stock, - AlternateId: "44938L108"}, - 418238749802412: &Security{ - SecurityId: 418238749802412, - Name: "IDSY", - Description: "I.D. Systems, Inc.", - Symbol: "IDSY", - Precision: 5, - Type: Stock, - AlternateId: "449489103"}, - 418238830424052: &Security{ - SecurityId: 418238830424052, - Name: "IEC", - Description: "IEC Electronics Corp.", - Symbol: "IEC", - Precision: 5, - Type: Stock, - AlternateId: "44949L105"}, - 418240520117748: &Security{ - SecurityId: 418240520117748, - Name: "IROQ", - Description: "IF Bancorp, Inc.", - Symbol: "IROQ", - Precision: 5, - Type: Stock, - AlternateId: "44951J105"}, - 418244799779460: &Security{ - SecurityId: 418244799779460, - Name: "IMS", - Description: "IMS Health Holdings, Inc.", - Symbol: "IMS", - Precision: 5, - Type: Stock, - AlternateId: "44970B109"}, - 420345629926416: &Security{ - SecurityId: 420345629926416, - Name: "IRS", - Description: "IRSA Inversiones y Representaciones S.A. ADR", - Symbol: "IRS", - Precision: 5, - Type: Stock, - AlternateId: "450047204"}, - 420352017459300: &Security{ - SecurityId: 420352017459300, - Name: "STAR", - Description: "iStar, Inc.", - Symbol: "STAR", - Precision: 5, - Type: Stock, - AlternateId: "45031U101"}, - 420352061129352: &Security{ - SecurityId: 420352061129352, - Name: "CMDT", - Description: "iShares Commodity Optimized Trust", - Symbol: "CMDT", - Precision: 5, - Type: Stock, - AlternateId: "45032K102"}, - 420358939157124: &Security{ - SecurityId: 420358939157124, - Name: "ESI", - Description: "ITT Educational Services, Inc.", - Symbol: "ESI", - Precision: 5, - Type: Stock, - AlternateId: "45068B109"}, - 420359033262060: &Security{ - SecurityId: 420359033262060, - Name: "ITUS", - Description: "Itus Corp.", - Symbol: "ITUS", - Precision: 5, - Type: Stock, - AlternateId: "45069V203"}, - 420360719550084: &Security{ - SecurityId: 420360719550084, - Name: "XXIA", - Description: "Ixia", - Symbol: "XXIA", - Precision: 5, - Type: Stock, - AlternateId: "45071R109"}, - 420362924885856: &Security{ - SecurityId: 420362924885856, - Name: "IBKC", - Description: "IBERIABANK Corp.", - Symbol: "IBKC", - Precision: 5, - Type: Stock, - AlternateId: "450828108"}, - 420365029491108: &Security{ - SecurityId: 420365029491108, - Name: "ITT", - Description: "ITT Corp.", - Symbol: "ITT", - Precision: 5, - Type: Stock, - AlternateId: "450911201"}, - 420365032803936: &Security{ - SecurityId: 420365032803936, - Name: "IAG", - Description: "IAMGOLD Corp.", - Symbol: "IAG", - Precision: 5, - Type: Stock, - AlternateId: "450913108"}, - 420424051150908: &Security{ - SecurityId: 420424051150908, - Name: "ICON", - Description: "Iconix Brand Group, Inc.", - Symbol: "ICON", - Precision: 5, - Type: Stock, - AlternateId: "451055107"}, - 420425928961560: &Security{ - SecurityId: 420425928961560, - Name: "IDA", - Description: "IDACORP, Inc.", - Symbol: "IDA", - Precision: 5, - Type: Stock, - AlternateId: "451107106"}, - 420437269728720: &Security{ - SecurityId: 420437269728720, - Name: "IEX", - Description: "IDEX Corp.", - Symbol: "IEX", - Precision: 5, - Type: Stock, - AlternateId: "45167R104"}, - 420437306680272: &Security{ - SecurityId: 420437306680272, - Name: "IDXX", - Description: "IDEXX Laboratories, Inc.", - Symbol: "IDXX", - Precision: 5, - Type: Stock, - AlternateId: "45168D104"}, - 420437318530968: &Security{ - SecurityId: 420437318530968, - Name: "IDRA", - Description: "Idera Pharmaceuticals, Inc.", - Symbol: "IDRA", - Precision: 5, - Type: Stock, - AlternateId: "45168K306"}, - 420439033372212: &Security{ - SecurityId: 420439033372212, - Name: "INVE", - Description: "Identiv, Inc.", - Symbol: "INVE", - Precision: 5, - Type: Stock, - AlternateId: "45170X205"}, - 420439192888932: &Security{ - SecurityId: 420439192888932, - Name: "DSKY", - Description: "iDreamSky Technology Ltd", - Symbol: "DSKY", - Precision: 5, - Type: Stock, - AlternateId: "45173K101"}, - 420439159296756: &Security{ - SecurityId: 420439159296756, - Name: "IRG", - Description: "Ignite Restaurant Group, Inc.", - Symbol: "IRG", - Precision: 5, - Type: Stock, - AlternateId: "451730105"}, - 420439166015292: &Security{ - SecurityId: 420439166015292, - Name: "IHS", - Description: "IHS, Inc.", - Symbol: "IHS", - Precision: 5, - Type: Stock, - AlternateId: "451734107"}, - 420439255034976: &Security{ - SecurityId: 420439255034976, - Name: "KANG", - Description: "iKang Healthcare Group, Inc.", - Symbol: "KANG", - Precision: 5, - Type: Stock, - AlternateId: "45174L108"}, - 420508648370052: &Security{ - SecurityId: 420508648370052, - Name: "ITW", - Description: "Illinois Tool Works, Inc.", - Symbol: "ITW", - Precision: 5, - Type: Stock, - AlternateId: "452308109"}, - 420508767622788: &Security{ - SecurityId: 420508767622788, - Name: "ILMN", - Description: "Illumina, Inc.", - Symbol: "ILMN", - Precision: 5, - Type: Stock, - AlternateId: "452327109"}, - 420511073735376: &Security{ - SecurityId: 420511073735376, - Name: "ISNS", - Description: "Image Sensing Systems, Inc.", - Symbol: "ISNS", - Precision: 5, - Type: Stock, - AlternateId: "45244C104"}, - 420511130842428: &Security{ - SecurityId: 420511130842428, - Name: "IMN", - Description: "Imation Corp.", - Symbol: "IMN", - Precision: 5, - Type: Stock, - AlternateId: "45245A107"}, - 420511137560964: &Security{ - SecurityId: 420511137560964, - Name: "IMAX", - Description: "IMAX Corp.", - Symbol: "IMAX", - Precision: 5, - Type: Stock, - AlternateId: "45245E109"}, - 420513144701868: &Security{ - SecurityId: 420513144701868, - Name: "IMDZ", - Description: "Immune Design Corp.", - Symbol: "IMDZ", - Precision: 5, - Type: Stock, - AlternateId: "45252L103"}, - 420513111109692: &Security{ - SecurityId: 420513111109692, - Name: "IMMR", - Description: "Immersion Corp.", - Symbol: "IMMR", - Precision: 5, - Type: Stock, - AlternateId: "452521107"}, - 420513117921432: &Security{ - SecurityId: 420513117921432, - Name: "ICCC", - Description: "ImmuCell Corp.", - Symbol: "ICCC", - Precision: 5, - Type: Stock, - AlternateId: "452525306"}, - 420513198449508: &Security{ - SecurityId: 420513198449508, - Name: "IMGN", - Description: "ImmunoGen, Inc.", - Symbol: "IMGN", - Precision: 5, - Type: Stock, - AlternateId: "45253H101"}, - 420513179973876: &Security{ - SecurityId: 420513179973876, - Name: "IMUC", - Description: "ImmunoCellular Therapeutics Ltd.", - Symbol: "IMUC", - Precision: 5, - Type: Stock, - AlternateId: "452536105"}, - 420513250517604: &Security{ - SecurityId: 420513250517604, - Name: "IMNP", - Description: "Immune Pharmaceuticals Inc.", - Symbol: "IMNP", - Precision: 5, - Type: Stock, - AlternateId: "45254C101"}, - 420513272539488: &Security{ - SecurityId: 420513272539488, - Name: "IMH", - Description: "Impac Mortgage Holdings, Inc.", - Symbol: "IMH", - Precision: 5, - Type: Stock, - AlternateId: "45254P508"}, - 420513369770340: &Security{ - SecurityId: 420513369770340, - Name: "IPXL", - Description: "Impax Laboratories, Inc.", - Symbol: "IPXL", - Precision: 5, - Type: Stock, - AlternateId: "45256B101"}, - 420521707384416: &Security{ - SecurityId: 420521707384416, - Name: "IMMU", - Description: "Immunomedics, Inc.", - Symbol: "IMMU", - Precision: 5, - Type: Stock, - AlternateId: "452907108"}, - 420521826637152: &Security{ - SecurityId: 420521826637152, - Name: "IOT", - Description: "Income Opportunity Realty Investors, Inc.", - Symbol: "IOT", - Precision: 5, - Type: Stock, - AlternateId: "452926108"}, - 420584918052672: &Security{ - SecurityId: 420584918052672, - Name: "IMPV", - Description: "Imperva, Inc.", - Symbol: "IMPV", - Precision: 5, - Type: Stock, - AlternateId: "45321L100"}, - 420585020555940: &Security{ - SecurityId: 420585020555940, - Name: "IMMY", - Description: "Imprimis Pharmaceuticals, Inc.", - Symbol: "IMMY", - Precision: 5, - Type: Stock, - AlternateId: "45323A201"}, - 420585035625900: &Security{ - SecurityId: 420585035625900, - Name: "IMPR", - Description: "Imprivata, Inc.", - Symbol: "IMPR", - Precision: 5, - Type: Stock, - AlternateId: "45323J103"}, - 420585411860100: &Security{ - SecurityId: 420585411860100, - Name: "INCR", - Description: "INC Research Holdings, Inc. Cl A", - Symbol: "INCR", - Precision: 5, - Type: Stock, - AlternateId: "45329R109"}, - 420587442515592: &Security{ - SecurityId: 420587442515592, - Name: "INCY", - Description: "Incyte Genomics, Inc.", - Symbol: "INCY", - Precision: 5, - Type: Stock, - AlternateId: "45337C102"}, - 420589417837500: &Security{ - SecurityId: 420589417837500, - Name: "IHC", - Description: "Independence Holding Co.", - Symbol: "IHC", - Precision: 5, - Type: Stock, - AlternateId: "453440307"}, - 420596206752024: &Security{ - SecurityId: 420596206752024, - Name: "IRT", - Description: "Independence Realty Trust, Inc.", - Symbol: "IRT", - Precision: 5, - Type: Stock, - AlternateId: "45378A106"}, - 420598078077636: &Security{ - SecurityId: 420598078077636, - Name: "IBCP", - Description: "Independent Bank Corp. (MI)", - Symbol: "IBCP", - Precision: 5, - Type: Stock, - AlternateId: "453838609"}, - 420598143349272: &Security{ - SecurityId: 420598143349272, - Name: "IBTX", - Description: "Independent Bank Group, Inc.", - Symbol: "IBTX", - Precision: 5, - Type: Stock, - AlternateId: "45384B106"}, - 420659372164320: &Security{ - SecurityId: 420659372164320, - Name: "IGC", - Description: "India Globalization Capital, Inc.", - Symbol: "IGC", - Precision: 5, - Type: Stock, - AlternateId: "45408X308"}, - 420659331760044: &Security{ - SecurityId: 420659331760044, - Name: "IFN", - Description: "India Fund, Inc. (The)", - Symbol: "IFN", - Precision: 5, - Type: Stock, - AlternateId: "454089103"}, - 420659395585596: &Security{ - SecurityId: 420659395585596, - Name: "QAI", - Description: "IQ Hedge Multi-Strategy Tracker ETF", - Symbol: "QAI", - Precision: 5, - Type: Stock, - AlternateId: "45409B107"}, - 420659395632216: &Security{ - SecurityId: 420659395632216, - Name: "MCRO", - Description: "IQ Hedge Macro Tracker ETF", - Symbol: "MCRO", - Precision: 5, - Type: Stock, - AlternateId: "45409B206"}, - 420659395678836: &Security{ - SecurityId: 420659395678836, - Name: "QLS", - Description: "IQ Hedge Long/Short Tracker ETF", - Symbol: "QLS", - Precision: 5, - Type: Stock, - AlternateId: "45409B305"}, - 420659395725456: &Security{ - SecurityId: 420659395725456, - Name: "QED", - Description: "IQ Hedge Event-Driven Tracker ETF", - Symbol: "QED", - Precision: 5, - Type: Stock, - AlternateId: "45409B404"}, - 420659395772076: &Security{ - SecurityId: 420659395772076, - Name: "QMN", - Description: "IQ Hedge Market Neutral Tracker ETF", - Symbol: "QMN", - Precision: 5, - Type: Stock, - AlternateId: "45409B503"}, - 420659395773300: &Security{ - SecurityId: 420659395773300, - Name: "QGTA", - Description: "IQ Leaders GTAA Tracker ETF", - Symbol: "QGTA", - Precision: 5, - Type: Stock, - AlternateId: "45409B511"}, - 420659395776108: &Security{ - SecurityId: 420659395776108, - Name: "HFXJ", - Description: "IQ 50 Percent Hedged FTSE Japan ETF", - Symbol: "HFXJ", - Precision: 5, - Type: Stock, - AlternateId: "45409B537"}, - 420659395778520: &Security{ - SecurityId: 420659395778520, - Name: "HFXE", - Description: "IQ 50 Percent Hedged FTSE Europe ETF", - Symbol: "HFXE", - Precision: 5, - Type: Stock, - AlternateId: "45409B552"}, - 420659395779744: &Security{ - SecurityId: 420659395779744, - Name: "HFXI", - Description: "IQ 50 Percent Hedged FTSE International ETF", - Symbol: "HFXI", - Precision: 5, - Type: Stock, - AlternateId: "45409B560"}, - 420659395818696: &Security{ - SecurityId: 420659395818696, - Name: "CPI", - Description: "IQ Real Return ETF", - Symbol: "CPI", - Precision: 5, - Type: Stock, - AlternateId: "45409B602"}, - 420659395821504: &Security{ - SecurityId: 420659395821504, - Name: "ROOF", - Description: "IQ U.S. Real Estate Small Cap ETF", - Symbol: "ROOF", - Precision: 5, - Type: Stock, - AlternateId: "45409B628"}, - 420659395911936: &Security{ - SecurityId: 420659395911936, - Name: "MNA", - Description: "IQ Merger Arbitrage ETF", - Symbol: "MNA", - Precision: 5, - Type: Stock, - AlternateId: "45409B800"}, - 420659395914744: &Security{ - SecurityId: 420659395914744, - Name: "KROO", - Description: "IQ Australia Small Cap ETF", - Symbol: "KROO", - Precision: 5, - Type: Stock, - AlternateId: "45409B826"}, - 420659395915968: &Security{ - SecurityId: 420659395915968, - Name: "CROP", - Description: "IQ Global Agribusiness Small Cap ETF", - Symbol: "CROP", - Precision: 5, - Type: Stock, - AlternateId: "45409B834"}, - 420659395917192: &Security{ - SecurityId: 420659395917192, - Name: "IOIL", - Description: "IQ Global Oil Small Cap ETF", - Symbol: "IOIL", - Precision: 5, - Type: Stock, - AlternateId: "45409B842"}, - 420659395919964: &Security{ - SecurityId: 420659395919964, - Name: "CNDA", - Description: "IQ Canada Small Cap ETF", - Symbol: "CNDA", - Precision: 5, - Type: Stock, - AlternateId: "45409B867"}, - 420659395922412: &Security{ - SecurityId: 420659395922412, - Name: "GRES", - Description: "IQ Global Resources ETF", - Symbol: "GRES", - Precision: 5, - Type: Stock, - AlternateId: "45409B883"}, - 420822158773932: &Security{ - SecurityId: 420822158773932, - Name: "IDSA", - Description: "Industrial Services of America, Inc.", - Symbol: "IDSA", - Precision: 5, - Type: Stock, - AlternateId: "456314103"}, - 420824636207712: &Security{ - SecurityId: 420824636207712, - Name: "IBA", - Description: "Industrias Bachoco S.A.B. de C.V. Unit ADR", - Symbol: "IBA", - Precision: 5, - Type: Stock, - AlternateId: "456463108"}, - 420828951234348: &Security{ - SecurityId: 420828951234348, - Name: "INFI", - Description: "Infinity Pharmaceuticals, Inc.", - Symbol: "INFI", - Precision: 5, - Type: Stock, - AlternateId: "45665G303"}, - 420830948204496: &Security{ - SecurityId: 420830948204496, - Name: "BLOX", - Description: "Infoblox, Inc.", - Symbol: "BLOX", - Precision: 5, - Type: Stock, - AlternateId: "45672H104"}, - 420831158156496: &Security{ - SecurityId: 420831158156496, - Name: "III", - Description: "Information Services Group, Inc.", - Symbol: "III", - Precision: 5, - Type: Stock, - AlternateId: "45675Y104"}, - 420831289166652: &Security{ - SecurityId: 420831289166652, - Name: "IFON", - Description: "InfoSonics Corp.", - Symbol: "IFON", - Precision: 5, - Type: Stock, - AlternateId: "456784107"}, - 420831295885152: &Security{ - SecurityId: 420831295885152, - Name: "INFY", - Description: "Infosys Limited, Inc. ADR", - Symbol: "INFY", - Precision: 5, - Type: Stock, - AlternateId: "456788108"}, - 420833311424136: &Security{ - SecurityId: 420833311424136, - Name: "INFU", - Description: "InfuSystem Holdings, Inc.", - Symbol: "INFU", - Precision: 5, - Type: Stock, - AlternateId: "45685K102"}, - 420833313103680: &Security{ - SecurityId: 420833313103680, - Name: "HIFR", - Description: "InfraREIT, Inc.", - Symbol: "HIFR", - Precision: 5, - Type: Stock, - AlternateId: "45685L100"}, - 420894106804944: &Security{ - SecurityId: 420894106804944, - Name: "IMKTA", - Description: "Ingles Markets, Inc.", - Symbol: "IMKTA", - Precision: 5, - Type: Stock, - AlternateId: "457030104"}, - 420896409558480: &Security{ - SecurityId: 420896409558480, - Name: "IM", - Description: "Ingram Micro, Inc.", - Symbol: "IM", - Precision: 5, - Type: Stock, - AlternateId: "457153104"}, - 420902997058944: &Security{ - SecurityId: 420902997058944, - Name: "IRC", - Description: "Inland Real Estate Corp.", - Symbol: "IRC", - Precision: 5, - Type: Stock, - AlternateId: "457461200"}, - 420902997199164: &Security{ - SecurityId: 420902997199164, - Name: "IRC-B", - Description: "Inland Real Estate Corp., 6.95% Series B Cumulative Redeemable Preferred Stock", - Symbol: "IRC-B", - Precision: 5, - Type: Stock, - AlternateId: "457461507"}, - 420907231371060: &Security{ - SecurityId: 420907231371060, - Name: "INOD", - Description: "Innodata Corp.", - Symbol: "INOD", - Precision: 5, - Type: Stock, - AlternateId: "457642205"}, - 420907338819756: &Security{ - SecurityId: 420907338819756, - Name: "NSIT", - Description: "Insight Enterprises, Inc.", - Symbol: "NSIT", - Precision: 5, - Type: Stock, - AlternateId: "45765U103"}, - 420907345538292: &Security{ - SecurityId: 420907345538292, - Name: "ISIG", - Description: "Insignia Systems, Inc.", - Symbol: "ISIG", - Precision: 5, - Type: Stock, - AlternateId: "45765Y105"}, - 420907364107452: &Security{ - SecurityId: 420907364107452, - Name: "INSM", - Description: "Insmed, Inc.", - Symbol: "INSM", - Precision: 5, - Type: Stock, - AlternateId: "457669307"}, - 420907516859124: &Security{ - SecurityId: 420907516859124, - Name: "IOSP", - Description: "Innospec Inc.", - Symbol: "IOSP", - Precision: 5, - Type: Stock, - AlternateId: "45768S105"}, - 420907568927220: &Security{ - SecurityId: 420907568927220, - Name: "ISSC", - Description: "Innovative Solutions and Support, Inc.", - Symbol: "ISSC", - Precision: 5, - Type: Stock, - AlternateId: "45769N105"}, - 420909309009468: &Security{ - SecurityId: 420909309009468, - Name: "IPHI", - Description: "Inphi Corp.", - Symbol: "IPHI", - Precision: 5, - Type: Stock, - AlternateId: "45772F107"}, - 420909458495328: &Security{ - SecurityId: 420909458495328, - Name: "IIIN", - Description: "Insteel Industries, Inc.", - Symbol: "IIIN", - Precision: 5, - Type: Stock, - AlternateId: "45774W108"}, - 420909690282300: &Security{ - SecurityId: 420909690282300, - Name: "NSP", - Description: "Insperity, Inc.", - Symbol: "NSP", - Precision: 5, - Type: Stock, - AlternateId: "45778Q107"}, - 420909742350396: &Security{ - SecurityId: 420909742350396, - Name: "IFMI", - Description: "Institutional Financial Markets, Inc.", - Symbol: "IFMI", - Precision: 5, - Type: Stock, - AlternateId: "45779L107"}, - 420911374937040: &Security{ - SecurityId: 420911374937040, - Name: "INGN", - Description: "Inogen, Inc.", - Symbol: "INGN", - Precision: 5, - Type: Stock, - AlternateId: "45780L104"}, - 420911383335084: &Security{ - SecurityId: 420911383335084, - Name: "INNL", - Description: "Innocoll AG", - Symbol: "INNL", - Precision: 5, - Type: Stock, - AlternateId: "45780Q103"}, - 420911385014628: &Security{ - SecurityId: 420911385014628, - Name: "IBP", - Description: "Installed Building Products, Inc.", - Symbol: "IBP", - Precision: 5, - Type: Stock, - AlternateId: "45780R101"}, - 420911391733128: &Security{ - SecurityId: 420911391733128, - Name: "ITEK", - Description: "Inotek Pharmaceuticals Corp.", - Symbol: "ITEK", - Precision: 5, - Type: Stock, - AlternateId: "45780V102"}, - 420911421966180: &Security{ - SecurityId: 420911421966180, - Name: "INOV", - Description: "Inovalon Holdings, Inc.", - Symbol: "INOV", - Precision: 5, - Type: Stock, - AlternateId: "45781D101"}, - 420911450519724: &Security{ - SecurityId: 420911450519724, - Name: "INST", - Description: "Instructure, Inc.", - Symbol: "INST", - Precision: 5, - Type: Stock, - AlternateId: "45781U103"}, - 420911623520100: &Security{ - SecurityId: 420911623520100, - Name: "PODD", - Description: "Insulet Corp.", - Symbol: "PODD", - Precision: 5, - Type: Stock, - AlternateId: "45784P101"}, - 420913592030304: &Security{ - SecurityId: 420913592030304, - Name: "IHT", - Description: "InnSuites Hospitality Trust", - Symbol: "IHT", - Precision: 5, - Type: Stock, - AlternateId: "457919108"}, - 420914008621728: &Security{ - SecurityId: 420914008621728, - Name: "IART", - Description: "Integra LifeSciences Holdings Corp.", - Symbol: "IART", - Precision: 5, - Type: Stock, - AlternateId: "457985208"}, - 420974540256024: &Security{ - SecurityId: 420974540256024, - Name: "IDTI", - Description: "Integrated Device Technology, Inc.", - Symbol: "IDTI", - Precision: 5, - Type: Stock, - AlternateId: "458118106"}, - 420974708217408: &Security{ - SecurityId: 420974708217408, - Name: "INTC", - Description: "Intel Corp.", - Symbol: "INTC", - Precision: 5, - Type: Stock, - AlternateId: "458140100"}, - 420974850984768: &Security{ - SecurityId: 420974850984768, - Name: "INS", - Description: "Intelligent Systems Corp.", - Symbol: "INS", - Precision: 5, - Type: Stock, - AlternateId: "45816D100"}, - 420974916536484: &Security{ - SecurityId: 420974916536484, - Name: "IDN", - Description: "Intelli-Check - Mobilisa, Inc.", - Symbol: "IDN", - Precision: 5, - Type: Stock, - AlternateId: "45817G201"}, - 420974894654820: &Security{ - SecurityId: 420974894654820, - Name: "IPCI", - Description: "IntelliPharmaCeutics International, Inc.", - Symbol: "IPCI", - Precision: 5, - Type: Stock, - AlternateId: "458173101"}, - 420976937114820: &Security{ - SecurityId: 420976937114820, - Name: "INSY", - Description: "Insys Therapeutics, Inc.", - Symbol: "INSY", - Precision: 5, - Type: Stock, - AlternateId: "45824V209"}, - 420979008034692: &Security{ - SecurityId: 420979008034692, - Name: "IPAR", - Description: "Inter Parfums, Inc.", - Symbol: "IPAR", - Precision: 5, - Type: Stock, - AlternateId: "458334109"}, - 420981109234308: &Security{ - SecurityId: 420981109234308, - Name: "ININ", - Description: "Interactive Intelligence, Inc.", - Symbol: "ININ", - Precision: 5, - Type: Stock, - AlternateId: "45841V109"}, - 420981341021280: &Security{ - SecurityId: 420981341021280, - Name: "ICPT", - Description: "Intercept Pharmaceuticals, Inc.", - Symbol: "ICPT", - Precision: 5, - Type: Stock, - AlternateId: "45845P108"}, - 420981493912776: &Security{ - SecurityId: 420981493912776, - Name: "ICLD", - Description: "InterCloud Systems, Inc.", - Symbol: "ICLD", - Precision: 5, - Type: Stock, - AlternateId: "458488202"}, - 420985738255824: &Security{ - SecurityId: 420985738255824, - Name: "ICE", - Description: "IntercontinentalExchange Group, Inc.", - Symbol: "ICE", - Precision: 5, - Type: Stock, - AlternateId: "45866F104"}, - 420985800401508: &Security{ - SecurityId: 420985800401508, - Name: "IDCC", - Description: "InterDigital, Inc.", - Symbol: "IDCC", - Precision: 5, - Type: Stock, - AlternateId: "45867G101"}, - 420989846596740: &Security{ - SecurityId: 420989846596740, - Name: "IMI", - Description: "Intermolecular, Inc.", - Symbol: "IMI", - Precision: 5, - Type: Stock, - AlternateId: "45882D109"}, - 420990023049408: &Security{ - SecurityId: 420990023049408, - Name: "INAP", - Description: "Internap Corp.", - Symbol: "INAP", - Precision: 5, - Type: Stock, - AlternateId: "45885A300"}, - 421050902317740: &Security{ - SecurityId: 421050902317740, - Name: "IBOC", - Description: "Intl Bancshares Corp.", - Symbol: "IBOC", - Precision: 5, - Type: Stock, - AlternateId: "459044103"}, - 421055007299172: &Security{ - SecurityId: 421055007299172, - Name: "IBM", - Description: "Intl Business Machines Corp.", - Symbol: "IBM", - Precision: 5, - Type: Stock, - AlternateId: "459200101"}, - 421061547723876: &Security{ - SecurityId: 421061547723876, - Name: "IFF", - Description: "Intl Flavors & Fragrances, Inc.", - Symbol: "IFF", - Precision: 5, - Type: Stock, - AlternateId: "459506101"}, - 423168914889900: &Security{ - SecurityId: 423168914889900, - Name: "IP", - Description: "Intl Paper Co.", - Symbol: "IP", - Precision: 5, - Type: Stock, - AlternateId: "460146103"}, - 423173139170724: &Security{ - SecurityId: 423173139170724, - Name: "ISHC", - Description: "International Shipholding Corp.", - Symbol: "ISHC", - Precision: 5, - Type: Stock, - AlternateId: "460321201"}, - 423173206355364: &Security{ - SecurityId: 423173206355364, - Name: "ISCA", - Description: "Intl Speedway Corp. Cl A", - Symbol: "ISCA", - Precision: 5, - Type: Stock, - AlternateId: "460335201"}, - 423177919311384: &Security{ - SecurityId: 423177919311384, - Name: "INPHQ", - Description: "Interphase Corp.", - Symbol: "INPHQ", - Precision: 5, - Type: Stock, - AlternateId: "460593106"}, - 423179723218932: &Security{ - SecurityId: 423179723218932, - Name: "IDXG", - Description: "Interpace Diagnostics Group, Inc.", - Symbol: "IDXG", - Precision: 5, - Type: Stock, - AlternateId: "46062X105"}, - 423180138084228: &Security{ - SecurityId: 423180138084228, - Name: "ISIL", - Description: "Intersil Corp.", - Symbol: "ISIL", - Precision: 5, - Type: Stock, - AlternateId: "46069S109"}, - 423180091054656: &Security{ - SecurityId: 423180091054656, - Name: "IPG", - Description: "Interpublic Group of Cos., Inc. (The)", - Symbol: "IPG", - Precision: 5, - Type: Stock, - AlternateId: "460690100"}, - 423181809301932: &Security{ - SecurityId: 423181809301932, - Name: "XENT", - Description: "Intersect ENT, Inc.", - Symbol: "XENT", - Precision: 5, - Type: Stock, - AlternateId: "46071F103"}, - 423186110798724: &Security{ - SecurityId: 423186110798724, - Name: "SNOW", - Description: "Intrawest Resorts Holdings, Inc.", - Symbol: "SNOW", - Precision: 5, - Type: Stock, - AlternateId: "46090K109"}, - 423186381216792: &Security{ - SecurityId: 423186381216792, - Name: "IOC", - Description: "InterOil Corp.", - Symbol: "IOC", - Precision: 5, - Type: Stock, - AlternateId: "460951106"}, - 423247280733504: &Security{ - SecurityId: 423247280733504, - Name: "INTT", - Description: "inTEST Corporation", - Symbol: "INTT", - Precision: 5, - Type: Stock, - AlternateId: "461147100"}, - 423247282413408: &Security{ - SecurityId: 423247282413408, - Name: "IVAC", - Description: "Intevac, Inc.", - Symbol: "IVAC", - Precision: 5, - Type: Stock, - AlternateId: "461148108"}, - 423247441976820: &Security{ - SecurityId: 423247441976820, - Name: "INTL", - Description: "INTL Fcstone, Inc.", - Symbol: "INTL", - Precision: 5, - Type: Stock, - AlternateId: "46116V105"}, - 423247445335908: &Security{ - SecurityId: 423247445335908, - Name: "ITCI", - Description: "Intra-Cellular Therapies, Inc.", - Symbol: "ITCI", - Precision: 5, - Type: Stock, - AlternateId: "46116X101"}, - 423247539394512: &Security{ - SecurityId: 423247539394512, - Name: "IL", - Description: "Intralinks Holdings, Inc.", - Symbol: "IL", - Precision: 5, - Type: Stock, - AlternateId: "46118H104"}, - 423249227641800: &Security{ - SecurityId: 423249227641800, - Name: "ISRG", - Description: "Intuitive Surgical, Inc.", - Symbol: "ISRG", - Precision: 5, - Type: Stock, - AlternateId: "46120E602"}, - 423249207253164: &Security{ - SecurityId: 423249207253164, - Name: "INTU", - Description: "Intuit, Inc.", - Symbol: "INTU", - Precision: 5, - Type: Stock, - AlternateId: "461202103"}, - 423249208932708: &Security{ - SecurityId: 423249208932708, - Name: "IVC", - Description: "Invacare Corp.", - Symbol: "IVC", - Precision: 5, - Type: Stock, - AlternateId: "461203101"}, - 423249321467016: &Security{ - SecurityId: 423249321467016, - Name: "IPI", - Description: "Intrepid Potash, Inc.", - Symbol: "IPI", - Precision: 5, - Type: Stock, - AlternateId: "46121Y102"}, - 423249267719304: &Security{ - SecurityId: 423249267719304, - Name: "SNAK", - Description: "Inventure Foods, Inc.", - Symbol: "SNAK", - Precision: 5, - Type: Stock, - AlternateId: "461212102"}, - 423249373535112: &Security{ - SecurityId: 423249373535112, - Name: "XON", - Description: "Intrexon Corp.", - Symbol: "XON", - Precision: 5, - Type: Stock, - AlternateId: "46122T102"}, - 423249378620688: &Security{ - SecurityId: 423249378620688, - Name: "INUV", - Description: "Inuvo, Inc.", - Symbol: "INUV", - Precision: 5, - Type: Stock, - AlternateId: "46122W204"}, - 423249407174196: &Security{ - SecurityId: 423249407174196, - Name: "INVN", - Description: "InvenSense, Inc.", - Symbol: "INVN", - Precision: 5, - Type: Stock, - AlternateId: "46123D205"}, - 423249440859972: &Security{ - SecurityId: 423249440859972, - Name: "INVT", - Description: "Inventergy Global, Inc.", - Symbol: "INVT", - Precision: 5, - Type: Stock, - AlternateId: "46123X409"}, - 423251459618112: &Security{ - SecurityId: 423251459618112, - Name: "IVR", - Description: "Invesco Mortgage Capital, Inc.", - Symbol: "IVR", - Precision: 5, - Type: Stock, - AlternateId: "46131B100"}, - 423251466336612: &Security{ - SecurityId: 423251466336612, - Name: "VLT", - Description: "Invesco High Income Trust II", - Symbol: "VLT", - Precision: 5, - Type: Stock, - AlternateId: "46131F101"}, - 423251469696060: &Security{ - SecurityId: 423251469696060, - Name: "VVR", - Description: "Invesco Senior Income Trust", - Symbol: "VVR", - Precision: 5, - Type: Stock, - AlternateId: "46131H107"}, - 423251473055148: &Security{ - SecurityId: 423251473055148, - Name: "VKQ", - Description: "Invesco Municipal Trust", - Symbol: "VKQ", - Precision: 5, - Type: Stock, - AlternateId: "46131J103"}, - 423251478094104: &Security{ - SecurityId: 423251478094104, - Name: "VGM", - Description: "Invesco Trust for Investment Grade Municipals", - Symbol: "VGM", - Precision: 5, - Type: Stock, - AlternateId: "46131M106"}, - 423251489851236: &Security{ - SecurityId: 423251489851236, - Name: "VTN", - Description: "Invesco Trust for Investment Grade New York Municipals", - Symbol: "VTN", - Precision: 5, - Type: Stock, - AlternateId: "46131T101"}, - 423251521764156: &Security{ - SecurityId: 423251521764156, - Name: "VMO", - Description: "Invesco Municipal Opportunity Trust", - Symbol: "VMO", - Precision: 5, - Type: Stock, - AlternateId: "46132C107"}, - 423251525123244: &Security{ - SecurityId: 423251525123244, - Name: "VKI", - Description: "Invesco Advantage Municipal Income Trust II", - Symbol: "VKI", - Precision: 5, - Type: Stock, - AlternateId: "46132E103"}, - 423251530162200: &Security{ - SecurityId: 423251530162200, - Name: "VCV", - Description: "Invesco California Value Municipal Income Trust", - Symbol: "VCV", - Precision: 5, - Type: Stock, - AlternateId: "46132H106"}, - 423251535201156: &Security{ - SecurityId: 423251535201156, - Name: "VPV", - Description: "Invesco Pennsylvania Value Municipal Income Trust", - Symbol: "VPV", - Precision: 5, - Type: Stock, - AlternateId: "46132K109"}, - 423251536880700: &Security{ - SecurityId: 423251536880700, - Name: "VBF", - Description: "Invesco Bond Fund", - Symbol: "VBF", - Precision: 5, - Type: Stock, - AlternateId: "46132L107"}, - 423251543599200: &Security{ - SecurityId: 423251543599200, - Name: "IIM", - Description: "Invesco Municipal Income Trust", - Symbol: "IIM", - Precision: 5, - Type: Stock, - AlternateId: "46132P108"}, - 423251546958288: &Security{ - SecurityId: 423251546958288, - Name: "VTA", - Description: "Invesco Dynamic Credit Opportunities Fund", - Symbol: "VTA", - Precision: 5, - Type: Stock, - AlternateId: "46132R104"}, - 423251557035876: &Security{ - SecurityId: 423251557035876, - Name: "OIA", - Description: "Invesco Municipal Income Opportunities Trust", - Symbol: "OIA", - Precision: 5, - Type: Stock, - AlternateId: "46132X101"}, - 423251588948796: &Security{ - SecurityId: 423251588948796, - Name: "IQI", - Description: "Invesco Quality Municipal Income Trust", - Symbol: "IQI", - Precision: 5, - Type: Stock, - AlternateId: "46133G107"}, - 423251657812980: &Security{ - SecurityId: 423251657812980, - Name: "ISTR", - Description: "Investar Holding Corp.", - Symbol: "ISTR", - Precision: 5, - Type: Stock, - AlternateId: "46134L105"}, - 423253884983796: &Security{ - SecurityId: 423253884983796, - Name: "ITG", - Description: "Investment Technology Group, Inc.", - Symbol: "ITG", - Precision: 5, - Type: Stock, - AlternateId: "46145F105"}, - 423253955527524: &Security{ - SecurityId: 423253955527524, - Name: "ISBC", - Description: "Investors Bancorp, Inc.", - Symbol: "ISBC", - Precision: 5, - Type: Stock, - AlternateId: "46146L101"}, - 423260269204140: &Security{ - SecurityId: 423260269204140, - Name: "IRET", - Description: "Investors Real Estate Trust", - Symbol: "IRET", - Precision: 5, - Type: Stock, - AlternateId: "461730103"}, - 423262271306520: &Security{ - SecurityId: 423262271306520, - Name: "ITIC", - Description: "Investors Title Co.", - Symbol: "ITIC", - Precision: 5, - Type: Stock, - AlternateId: "461804106"}, - 423262602190764: &Security{ - SecurityId: 423262602190764, - Name: "NVTA", - Description: "Invitae Corp.", - Symbol: "NVTA", - Precision: 5, - Type: Stock, - AlternateId: "46185L103"}, - 423262664383428: &Security{ - SecurityId: 423262664383428, - Name: "NVIV", - Description: "InVivo Therapeutics Holdings Corp.", - Symbol: "NVIV", - Precision: 5, - Type: Stock, - AlternateId: "46186M209"}, - 423323463076704: &Security{ - SecurityId: 423323463076704, - Name: "IO", - Description: "ION Geophysical Corp.", - Symbol: "IO", - Precision: 5, - Type: Stock, - AlternateId: "462044108"}, - 423336654780804: &Security{ - SecurityId: 423336654780804, - Name: "IRMD", - Description: "iRadimed Corp.", - Symbol: "IRMD", - Precision: 5, - Type: Stock, - AlternateId: "46266A109"}, - 423336765635172: &Security{ - SecurityId: 423336765635172, - Name: "IRIX", - Description: "IRIDEX Corp.", - Symbol: "IRIX", - Precision: 5, - Type: Stock, - AlternateId: "462684101"}, - 423336839538312: &Security{ - SecurityId: 423336839538312, - Name: "IRDM", - Description: "Iridium Communications, Inc.", - Symbol: "IRDM", - Precision: 5, - Type: Stock, - AlternateId: "46269C102"}, - 423336839678532: &Security{ - SecurityId: 423336839678532, - Name: "IRDMB", - Description: "Iridium Communications, 6.75% Series B Cumul Perp Convertible Preferred Stock", - Symbol: "IRDMB", - Precision: 5, - Type: Stock, - AlternateId: "46269C409"}, - 423338582979648: &Security{ - SecurityId: 423338582979648, - Name: "IRBT", - Description: "iRobot Corp.", - Symbol: "IRBT", - Precision: 5, - Type: Stock, - AlternateId: "462726100"}, - 423340922684772: &Security{ - SecurityId: 423340922684772, - Name: "IRM", - Description: "Iron Mountain, Inc.", - Symbol: "IRM", - Precision: 5, - Type: Stock, - AlternateId: "46284V101"}, - 423408345830496: &Security{ - SecurityId: 423408345830496, - Name: "IRWD", - Description: "Ironwood Pharmaceuticals, Inc.", - Symbol: "IRWD", - Precision: 5, - Type: Stock, - AlternateId: "46333X108"}, - 423412959735468: &Security{ - SecurityId: 423412959735468, - Name: "IRCP", - Description: "IRSA Propiedades Comerciales S.A.", - Symbol: "IRCP", - Precision: 5, - Type: Stock, - AlternateId: "463588103"}, - 423484823785860: &Security{ - SecurityId: 423484823785860, - Name: "SLV", - Description: "iShares Silver Trust", - Symbol: "SLV", - Precision: 5, - Type: Stock, - AlternateId: "46428Q109"}, - 423484825465404: &Security{ - SecurityId: 423484825465404, - Name: "GSG", - Description: "iShares S&P GSCI Commodity-Indexed Trust", - Symbol: "GSG", - Precision: 5, - Type: Stock, - AlternateId: "46428R107"}, - 423484788513780: &Security{ - SecurityId: 423484788513780, - Name: "IAU", - Description: "iShares Gold Trust", - Symbol: "IAU", - Precision: 5, - Type: Stock, - AlternateId: "464285105"}, - 423484790193324: &Security{ - SecurityId: 423484790193324, - Name: "EWA", - Description: "iShares MSCI Australia ETF", - Symbol: "EWA", - Precision: 5, - Type: Stock, - AlternateId: "464286103"}, - 423484790198580: &Security{ - SecurityId: 423484790198580, - Name: "FM", - Description: "iShares MSCI Frontier 100 ETF", - Symbol: "FM", - Precision: 5, - Type: Stock, - AlternateId: "464286145"}, - 423484790202576: &Security{ - SecurityId: 423484790202576, - Name: "GHYG", - Description: "iShares Global High Yield Corporate Bond ETF", - Symbol: "GHYG", - Precision: 5, - Type: Stock, - AlternateId: "464286178"}, - 423484790239944: &Security{ - SecurityId: 423484790239944, - Name: "EWO", - Description: "iShares MSCI Austria Capped ETF", - Symbol: "EWO", - Precision: 5, - Type: Stock, - AlternateId: "464286202"}, - 423484790241168: &Security{ - SecurityId: 423484790241168, - Name: "HYXU", - Description: "iShares Global ex USD High Yield Corporate Bond ETF", - Symbol: "HYXU", - Precision: 5, - Type: Stock, - AlternateId: "464286210"}, - 423484790246388: &Security{ - SecurityId: 423484790246388, - Name: "CEMB", - Description: "iShares Emerging Markets Corporate Bond ETF", - Symbol: "CEMB", - Precision: 5, - Type: Stock, - AlternateId: "464286251"}, - 423484790250420: &Security{ - SecurityId: 423484790250420, - Name: "EMHY", - Description: "iShares Emerging Markets High Yield Bond ETF", - Symbol: "EMHY", - Precision: 5, - Type: Stock, - AlternateId: "464286285"}, - 423484790251644: &Security{ - SecurityId: 423484790251644, - Name: "DVYA", - Description: "iShares Asia/Pacific Dividend ETF", - Symbol: "DVYA", - Precision: 5, - Type: Stock, - AlternateId: "464286293"}, - 423484790286564: &Security{ - SecurityId: 423484790286564, - Name: "EWK", - Description: "iShares MSCI Belgium Capped ETF", - Symbol: "EWK", - Precision: 5, - Type: Stock, - AlternateId: "464286301"}, - 423484790288148: &Security{ - SecurityId: 423484790288148, - Name: "DVYE", - Description: "iShares Emerging Markets Dividend ETF", - Symbol: "DVYE", - Precision: 5, - Type: Stock, - AlternateId: "464286319"}, - 423484790289372: &Security{ - SecurityId: 423484790289372, - Name: "SLVP", - Description: "iShares MSCI Global Silver Miners ETF", - Symbol: "SLVP", - Precision: 5, - Type: Stock, - AlternateId: "464286327"}, - 423484790290596: &Security{ - SecurityId: 423484790290596, - Name: "RING", - Description: "iShares MSCI Global Gold Miners ETF", - Symbol: "RING", - Precision: 5, - Type: Stock, - AlternateId: "464286335"}, - 423484790291820: &Security{ - SecurityId: 423484790291820, - Name: "FILL", - Description: "iShares MSCI Global Energy Producers ETF", - Symbol: "FILL", - Precision: 5, - Type: Stock, - AlternateId: "464286343"}, - 423484790293008: &Security{ - SecurityId: 423484790293008, - Name: "VEGI", - Description: "iShares MSCI Global Agriculture Producers ETF", - Symbol: "VEGI", - Precision: 5, - Type: Stock, - AlternateId: "464286350"}, - 423484790294592: &Security{ - SecurityId: 423484790294592, - Name: "PICK", - Description: "iShares MSCI Global Metals & Mining Producers ETF", - Symbol: "PICK", - Precision: 5, - Type: Stock, - AlternateId: "464286368"}, - 423484790298264: &Security{ - SecurityId: 423484790298264, - Name: "URTH", - Description: "iShares MSCI World ETF", - Symbol: "URTH", - Precision: 5, - Type: Stock, - AlternateId: "464286392"}, - 423484790333184: &Security{ - SecurityId: 423484790333184, - Name: "EWZ", - Description: "iShares MSCI Brazil Capped ETF", - Symbol: "EWZ", - Precision: 5, - Type: Stock, - AlternateId: "464286400"}, - 423484790335992: &Security{ - SecurityId: 423484790335992, - Name: "EEMA", - Description: "iShares MSCI Emerging Markets Asia ETF", - Symbol: "EEMA", - Precision: 5, - Type: Stock, - AlternateId: "464286426"}, - 423484790342436: &Security{ - SecurityId: 423484790342436, - Name: "EEMS", - Description: "iShares MSCI Emerging Markets Small Cap ETF", - Symbol: "EEMS", - Precision: 5, - Type: Stock, - AlternateId: "464286475"}, - 423484790380164: &Security{ - SecurityId: 423484790380164, - Name: "EWC", - Description: "iShares MSCI Canada ETF", - Symbol: "EWC", - Precision: 5, - Type: Stock, - AlternateId: "464286509"}, - 423484790381388: &Security{ - SecurityId: 423484790381388, - Name: "LEMB", - Description: "iShares Emerging Markets Local Currency Bond ETF", - Symbol: "LEMB", - Precision: 5, - Type: Stock, - AlternateId: "464286517"}, - 423484790382612: &Security{ - SecurityId: 423484790382612, - Name: "ACWV", - Description: "iShares MSCI All Country World Minimum Volatility ETF", - Symbol: "ACWV", - Precision: 5, - Type: Stock, - AlternateId: "464286525"}, - 423484790383836: &Security{ - SecurityId: 423484790383836, - Name: "EEMV", - Description: "iShares MSCI Emerging Markets Minimum Volatility ETF", - Symbol: "EEMV", - Precision: 5, - Type: Stock, - AlternateId: "464286533"}, - 423484790390280: &Security{ - SecurityId: 423484790390280, - Name: "SCJ", - Description: "iShares MSCI Japan Small Cap ETF", - Symbol: "SCJ", - Precision: 5, - Type: Stock, - AlternateId: "464286582"}, - 423484790426784: &Security{ - SecurityId: 423484790426784, - Name: "EZU", - Description: "iShares MSCI Eurozone ETF", - Symbol: "EZU", - Precision: 5, - Type: Stock, - AlternateId: "464286608"}, - 423484790429232: &Security{ - SecurityId: 423484790429232, - Name: "THD", - Description: "iShares MSCI Thailand Capped ETF", - Symbol: "THD", - Precision: 5, - Type: Stock, - AlternateId: "464286624"}, - 423484790430456: &Security{ - SecurityId: 423484790430456, - Name: "EIS", - Description: "iShares MSCI Israel Capped ETF", - Symbol: "EIS", - Precision: 5, - Type: Stock, - AlternateId: "464286632"}, - 423484790431680: &Security{ - SecurityId: 423484790431680, - Name: "ECH", - Description: "iShares MSCI Chile Capped ETF", - Symbol: "ECH", - Precision: 5, - Type: Stock, - AlternateId: "464286640"}, - 423484790433228: &Security{ - SecurityId: 423484790433228, - Name: "BKF", - Description: "iShares MSCI BRIC ETF", - Symbol: "BKF", - Precision: 5, - Type: Stock, - AlternateId: "464286657"}, - 423484790434452: &Security{ - SecurityId: 423484790434452, - Name: "EPP", - Description: "iShares MSCI Pacific ex-Japan ETF", - Symbol: "EPP", - Precision: 5, - Type: Stock, - AlternateId: "464286665"}, - 423484790435676: &Security{ - SecurityId: 423484790435676, - Name: "EWS", - Description: "iShares MSCI Singapore ETF", - Symbol: "EWS", - Precision: 5, - Type: Stock, - AlternateId: "464286673"}, - 423484790436900: &Security{ - SecurityId: 423484790436900, - Name: "EUSA", - Description: "iShares MSCI USA ETF", - Symbol: "EUSA", - Precision: 5, - Type: Stock, - AlternateId: "464286681"}, - 423484790473404: &Security{ - SecurityId: 423484790473404, - Name: "EWQ", - Description: "iShares MSCI France ETF", - Symbol: "EWQ", - Precision: 5, - Type: Stock, - AlternateId: "464286707"}, - 423484790474628: &Security{ - SecurityId: 423484790474628, - Name: "TUR", - Description: "iShares MSCI Turkey ETF", - Symbol: "TUR", - Precision: 5, - Type: Stock, - AlternateId: "464286715"}, - 423484790477076: &Security{ - SecurityId: 423484790477076, - Name: "EWT", - Description: "iShares MSCI Taiwan ETF", - Symbol: "EWT", - Precision: 5, - Type: Stock, - AlternateId: "464286731"}, - 423484790478660: &Security{ - SecurityId: 423484790478660, - Name: "EWL", - Description: "iShares MSCI Switzerland Capped ETF", - Symbol: "EWL", - Precision: 5, - Type: Stock, - AlternateId: "464286749"}, - 423484790479848: &Security{ - SecurityId: 423484790479848, - Name: "EWD", - Description: "iShares MSCI Sweden ETF", - Symbol: "EWD", - Precision: 5, - Type: Stock, - AlternateId: "464286756"}, - 423484790481072: &Security{ - SecurityId: 423484790481072, - Name: "EWP", - Description: "iShares MSCI Spain Capped ETF", - Symbol: "EWP", - Precision: 5, - Type: Stock, - AlternateId: "464286764"}, - 423484790482296: &Security{ - SecurityId: 423484790482296, - Name: "EWY", - Description: "iShares MSCI South Korea Capped ETF", - Symbol: "EWY", - Precision: 5, - Type: Stock, - AlternateId: "464286772"}, - 423484790483520: &Security{ - SecurityId: 423484790483520, - Name: "EZA", - Description: "iShares MSCI South Africa ETF", - Symbol: "EZA", - Precision: 5, - Type: Stock, - AlternateId: "464286780"}, - 423484790520024: &Security{ - SecurityId: 423484790520024, - Name: "EWG", - Description: "iShares MSCI Germany ETF", - Symbol: "EWG", - Precision: 5, - Type: Stock, - AlternateId: "464286806"}, - 423484790521248: &Security{ - SecurityId: 423484790521248, - Name: "EWN", - Description: "iShares MSCI Netherlands ETF", - Symbol: "EWN", - Precision: 5, - Type: Stock, - AlternateId: "464286814"}, - 423484790522472: &Security{ - SecurityId: 423484790522472, - Name: "EWW", - Description: "iShares MSCI Mexico Capped ETF", - Symbol: "EWW", - Precision: 5, - Type: Stock, - AlternateId: "464286822"}, - 423484790523696: &Security{ - SecurityId: 423484790523696, - Name: "EWM", - Description: "iShares MSCI Malaysia ETF", - Symbol: "EWM", - Precision: 5, - Type: Stock, - AlternateId: "464286830"}, - 423484790525280: &Security{ - SecurityId: 423484790525280, - Name: "EWJ", - Description: "iShares MSCI Japan ETF", - Symbol: "EWJ", - Precision: 5, - Type: Stock, - AlternateId: "464286848"}, - 423484790526468: &Security{ - SecurityId: 423484790526468, - Name: "EWI", - Description: "iShares MSCI Italy Capped ETF", - Symbol: "EWI", - Precision: 5, - Type: Stock, - AlternateId: "464286855"}, - 423484790528916: &Security{ - SecurityId: 423484790528916, - Name: "EWH", - Description: "iShares MSCI Hong Kong ETF", - Symbol: "EWH", - Precision: 5, - Type: Stock, - AlternateId: "464286871"}, - 423484791872868: &Security{ - SecurityId: 423484791872868, - Name: "OEF", - Description: "iShares S&P 100 ETF", - Symbol: "OEF", - Precision: 5, - Type: Stock, - AlternateId: "464287101"}, - 423484791874452: &Security{ - SecurityId: 423484791874452, - Name: "JKE", - Description: "iShares Morningstar Large-Cap Growth ETF", - Symbol: "JKE", - Precision: 5, - Type: Stock, - AlternateId: "464287119"}, - 423484791875676: &Security{ - SecurityId: 423484791875676, - Name: "JKD", - Description: "iShares Morningstar Large Cap ETF", - Symbol: "JKD", - Precision: 5, - Type: Stock, - AlternateId: "464287127"}, - 423484791879312: &Security{ - SecurityId: 423484791879312, - Name: "ITOT", - Description: "iShares Core S&P Total U.S. Stock Market ETF", - Symbol: "ITOT", - Precision: 5, - Type: Stock, - AlternateId: "464287150"}, - 423484791880896: &Security{ - SecurityId: 423484791880896, - Name: "DVY", - Description: "iShares Select Dividend ETF", - Symbol: "DVY", - Precision: 5, - Type: Stock, - AlternateId: "464287168"}, - 423484791882120: &Security{ - SecurityId: 423484791882120, - Name: "TIP", - Description: "iShares TIPS Bond ETF", - Symbol: "TIP", - Precision: 5, - Type: Stock, - AlternateId: "464287176"}, - 423484791883344: &Security{ - SecurityId: 423484791883344, - Name: "FXI", - Description: "iShares China Large-Cap ETF", - Symbol: "FXI", - Precision: 5, - Type: Stock, - AlternateId: "464287184"}, - 423484791884568: &Security{ - SecurityId: 423484791884568, - Name: "IYT", - Description: "iShares Transportation Average ETF", - Symbol: "IYT", - Precision: 5, - Type: Stock, - AlternateId: "464287192"}, - 423484791919488: &Security{ - SecurityId: 423484791919488, - Name: "IVV", - Description: "iShares Core S&P 500 ETF", - Symbol: "IVV", - Precision: 5, - Type: Stock, - AlternateId: "464287200"}, - 423484791922296: &Security{ - SecurityId: 423484791922296, - Name: "AGG", - Description: "iShares Core U.S. Aggregate Bond ETF", - Symbol: "AGG", - Precision: 5, - Type: Stock, - AlternateId: "464287226"}, - 423484791923520: &Security{ - SecurityId: 423484791923520, - Name: "EEM", - Description: "iShares MSCI Emerging Markets ETF", - Symbol: "EEM", - Precision: 5, - Type: Stock, - AlternateId: "464287234"}, - 423484791924744: &Security{ - SecurityId: 423484791924744, - Name: "LQD", - Description: "iShares iBoxx $ Investment Grade Corporate Bond ETF", - Symbol: "LQD", - Precision: 5, - Type: Stock, - AlternateId: "464287242"}, - 423484791928740: &Security{ - SecurityId: 423484791928740, - Name: "IXP", - Description: "iShares Global Telecom ETF", - Symbol: "IXP", - Precision: 5, - Type: Stock, - AlternateId: "464287275"}, - 423484791931188: &Security{ - SecurityId: 423484791931188, - Name: "IXN", - Description: "iShares Global Tech ETF", - Symbol: "IXN", - Precision: 5, - Type: Stock, - AlternateId: "464287291"}, - 423484791966468: &Security{ - SecurityId: 423484791966468, - Name: "IVW", - Description: "iShares S&P 500 Growth ETF", - Symbol: "IVW", - Precision: 5, - Type: Stock, - AlternateId: "464287309"}, - 423484791968916: &Security{ - SecurityId: 423484791968916, - Name: "IXJ", - Description: "iShares Global Healthcare ETF", - Symbol: "IXJ", - Precision: 5, - Type: Stock, - AlternateId: "464287325"}, - 423484791970140: &Security{ - SecurityId: 423484791970140, - Name: "IXG", - Description: "iShares Global Financials ETF", - Symbol: "IXG", - Precision: 5, - Type: Stock, - AlternateId: "464287333"}, - 423484791971364: &Security{ - SecurityId: 423484791971364, - Name: "IXC", - Description: "iShares Global Energy ETF", - Symbol: "IXC", - Precision: 5, - Type: Stock, - AlternateId: "464287341"}, - 423484791975360: &Security{ - SecurityId: 423484791975360, - Name: "IGE", - Description: "iShares North American Natural Resources ETF", - Symbol: "IGE", - Precision: 5, - Type: Stock, - AlternateId: "464287374"}, - 423484791976584: &Security{ - SecurityId: 423484791976584, - Name: "JPXN", - Description: "iShares JPX-Nikkei 400 ETF", - Symbol: "JPXN", - Precision: 5, - Type: Stock, - AlternateId: "464287382"}, - 423484791977808: &Security{ - SecurityId: 423484791977808, - Name: "ILF", - Description: "iShares Latin America 40 ETF", - Symbol: "ILF", - Precision: 5, - Type: Stock, - AlternateId: "464287390"}, - 423484792013088: &Security{ - SecurityId: 423484792013088, - Name: "IVE", - Description: "iShares S&P 500 Value ETF", - Symbol: "IVE", - Precision: 5, - Type: Stock, - AlternateId: "464287408"}, - 423484792016760: &Security{ - SecurityId: 423484792016760, - Name: "TLT", - Description: "iShares 20+ Year Treasury Bond ETF", - Symbol: "TLT", - Precision: 5, - Type: Stock, - AlternateId: "464287432"}, - 423484792017984: &Security{ - SecurityId: 423484792017984, - Name: "IEF", - Description: "iShares 7-10 Year Treasury Bond ETF", - Symbol: "IEF", - Precision: 5, - Type: Stock, - AlternateId: "464287440"}, - 423484792019532: &Security{ - SecurityId: 423484792019532, - Name: "SHY", - Description: "iShares 1-3 Year Treasury Bond ETF", - Symbol: "SHY", - Precision: 5, - Type: Stock, - AlternateId: "464287457"}, - 423484792020756: &Security{ - SecurityId: 423484792020756, - Name: "EFA", - Description: "iShares MSCI EAFE ETF", - Symbol: "EFA", - Precision: 5, - Type: Stock, - AlternateId: "464287465"}, - 423484792021980: &Security{ - SecurityId: 423484792021980, - Name: "IWS", - Description: "iShares Russell Mid-Cap Value ETF", - Symbol: "IWS", - Precision: 5, - Type: Stock, - AlternateId: "464287473"}, - 423484792023204: &Security{ - SecurityId: 423484792023204, - Name: "IWP", - Description: "iShares Russell Midcap Growth ETF", - Symbol: "IWP", - Precision: 5, - Type: Stock, - AlternateId: "464287481"}, - 423484792024788: &Security{ - SecurityId: 423484792024788, - Name: "IWR", - Description: "iShares Russell Mid-Cap ETF", - Symbol: "IWR", - Precision: 5, - Type: Stock, - AlternateId: "464287499"}, - 423484792059708: &Security{ - SecurityId: 423484792059708, - Name: "IJH", - Description: "iShares Core S&P MidCap ETF", - Symbol: "IJH", - Precision: 5, - Type: Stock, - AlternateId: "464287507"}, - 423484792060932: &Security{ - SecurityId: 423484792060932, - Name: "IGV", - Description: "iShares North American Tech-Software ETF", - Symbol: "IGV", - Precision: 5, - Type: Stock, - AlternateId: "464287515"}, - 423484792062156: &Security{ - SecurityId: 423484792062156, - Name: "SOXX", - Description: "iShares PHLX Semiconductor ETF", - Symbol: "SOXX", - Precision: 5, - Type: Stock, - AlternateId: "464287523"}, - 423484792063380: &Security{ - SecurityId: 423484792063380, - Name: "IGN", - Description: "iShares North American Tech-Multimedia Networking ETF", - Symbol: "IGN", - Precision: 5, - Type: Stock, - AlternateId: "464287531"}, - 423484792064964: &Security{ - SecurityId: 423484792064964, - Name: "IGM", - Description: "iShares North American Tech ETF", - Symbol: "IGM", - Precision: 5, - Type: Stock, - AlternateId: "464287549"}, - 423484792066152: &Security{ - SecurityId: 423484792066152, - Name: "IBB", - Description: "iShares Nasdaq Biotechnology ETF", - Symbol: "IBB", - Precision: 5, - Type: Stock, - AlternateId: "464287556"}, - 423484792067376: &Security{ - SecurityId: 423484792067376, - Name: "ICF", - Description: "iShares Cohen & Steers REIT ETF", - Symbol: "ICF", - Precision: 5, - Type: Stock, - AlternateId: "464287564"}, - 423484792068600: &Security{ - SecurityId: 423484792068600, - Name: "IOO", - Description: "iShares Global 100 ETF", - Symbol: "IOO", - Precision: 5, - Type: Stock, - AlternateId: "464287572"}, - 423484792069824: &Security{ - SecurityId: 423484792069824, - Name: "IYC", - Description: "iShares U.S. Consumer Services ETF", - Symbol: "IYC", - Precision: 5, - Type: Stock, - AlternateId: "464287580"}, - 423484792071408: &Security{ - SecurityId: 423484792071408, - Name: "IWD", - Description: "iShares Russell 1000 Value ETF", - Symbol: "IWD", - Precision: 5, - Type: Stock, - AlternateId: "464287598"}, - 423484792106328: &Security{ - SecurityId: 423484792106328, - Name: "IJK", - Description: "iShares S&P MidCap 400 Growth ETF", - Symbol: "IJK", - Precision: 5, - Type: Stock, - AlternateId: "464287606"}, - 423484792107552: &Security{ - SecurityId: 423484792107552, - Name: "IWF", - Description: "iShares Russell 1000 Growth ETF", - Symbol: "IWF", - Precision: 5, - Type: Stock, - AlternateId: "464287614"}, - 423484792108776: &Security{ - SecurityId: 423484792108776, - Name: "IWB", - Description: "iShares Russell 1000 ETF", - Symbol: "IWB", - Precision: 5, - Type: Stock, - AlternateId: "464287622"}, - 423484792110000: &Security{ - SecurityId: 423484792110000, - Name: "IWN", - Description: "iShares Russell 2000 Value ETF", - Symbol: "IWN", - Precision: 5, - Type: Stock, - AlternateId: "464287630"}, - 423484792111584: &Security{ - SecurityId: 423484792111584, - Name: "IWO", - Description: "iShares Russell 2000 Growth ETF", - Symbol: "IWO", - Precision: 5, - Type: Stock, - AlternateId: "464287648"}, - */ - 423484792112772: &Security{ - SecurityId: 423484792112772, - Name: "IWM", - Description: "iShares Russell 2000 ETF", - Symbol: "IWM", - Precision: 5, - Type: Stock, - AlternateId: "464287655"}, - /* - 423484792113996: &Security{ - SecurityId: 423484792113996, - Name: "IUSV", - Description: "iShares Russell 3000 Value ETF", - Symbol: "IUSV", - Precision: 5, - Type: Stock, - AlternateId: "464287663"}, - 423484792115220: &Security{ - SecurityId: 423484792115220, - Name: "IUSG", - Description: "iShares Core U.S. Growth ETF", - Symbol: "IUSG", - Precision: 5, - Type: Stock, - AlternateId: "464287671"}, - 423484792116804: &Security{ - SecurityId: 423484792116804, - Name: "IWV", - Description: "iShares Russell 3000 ETF", - Symbol: "IWV", - Precision: 5, - Type: Stock, - AlternateId: "464287689"}, - 423484792118028: &Security{ - SecurityId: 423484792118028, - Name: "IDU", - Description: "iShares U.S. Utilities ETF", - Symbol: "IDU", - Precision: 5, - Type: Stock, - AlternateId: "464287697"}, - 423484792152948: &Security{ - SecurityId: 423484792152948, - Name: "IJJ", - Description: "iShares S&P Mid-Cap 400 Value ETF", - Symbol: "IJJ", - Precision: 5, - Type: Stock, - AlternateId: "464287705"}, - 423484792154172: &Security{ - SecurityId: 423484792154172, - Name: "IYZ", - Description: "iShares U.S. Telecommunications ETF", - Symbol: "IYZ", - Precision: 5, - Type: Stock, - AlternateId: "464287713"}, - 423484792155396: &Security{ - SecurityId: 423484792155396, - Name: "IYW", - Description: "iShares U.S. Technology ETF", - Symbol: "IYW", - Precision: 5, - Type: Stock, - AlternateId: "464287721"}, - 423484792156980: &Security{ - SecurityId: 423484792156980, - Name: "IYR", - Description: "iShares U.S. Real Estate ETF", - Symbol: "IYR", - Precision: 5, - Type: Stock, - AlternateId: "464287739"}, - 423484792159392: &Security{ - SecurityId: 423484792159392, - Name: "IYJ", - Description: "iShares U.S. Industrial ETF", - Symbol: "IYJ", - Precision: 5, - Type: Stock, - AlternateId: "464287754"}, - 423484792160616: &Security{ - SecurityId: 423484792160616, - Name: "IYH", - Description: "iShares U.S. Healthcare ETF", - Symbol: "IYH", - Precision: 5, - Type: Stock, - AlternateId: "464287762"}, - 423484792161840: &Security{ - SecurityId: 423484792161840, - Name: "IYG", - Description: "iShares U.S. Financial Services ETF", - Symbol: "IYG", - Precision: 5, - Type: Stock, - AlternateId: "464287770"}, - 423484792163424: &Security{ - SecurityId: 423484792163424, - Name: "IYF", - Description: "iShares U.S. Financial ETF", - Symbol: "IYF", - Precision: 5, - Type: Stock, - AlternateId: "464287788"}, - 423484792164648: &Security{ - SecurityId: 423484792164648, - Name: "IYE", - Description: "iShares U.S. Energy ETF", - Symbol: "IYE", - Precision: 5, - Type: Stock, - AlternateId: "464287796"}, - 423484792199568: &Security{ - SecurityId: 423484792199568, - Name: "IJR", - Description: "iShares Core S&P Small-Cap ETF", - Symbol: "IJR", - Precision: 5, - Type: Stock, - AlternateId: "464287804"}, - 423484792200792: &Security{ - SecurityId: 423484792200792, - Name: "IYK", - Description: "iShares U.S. Consumer Goods ETF", - Symbol: "IYK", - Precision: 5, - Type: Stock, - AlternateId: "464287812"}, - 423484792203600: &Security{ - SecurityId: 423484792203600, - Name: "IYM", - Description: "iShares U.S. Basic Materials ETF", - Symbol: "IYM", - Precision: 5, - Type: Stock, - AlternateId: "464287838"}, - 423484792204824: &Security{ - SecurityId: 423484792204824, - Name: "IYY", - Description: "iShares Dow Jones U.S. ETF", - Symbol: "IYY", - Precision: 5, - Type: Stock, - AlternateId: "464287846"}, - 423484792207236: &Security{ - SecurityId: 423484792207236, - Name: "IEV", - Description: "iShares Europe 350 ETF", - Symbol: "IEV", - Precision: 5, - Type: Stock, - AlternateId: "464287861"}, - 423484792208820: &Security{ - SecurityId: 423484792208820, - Name: "IJS", - Description: "iShares S&P SmallCap 600 Value ETF", - Symbol: "IJS", - Precision: 5, - Type: Stock, - AlternateId: "464287879"}, - 423484792210044: &Security{ - SecurityId: 423484792210044, - Name: "IJT", - Description: "iShares S&P SmallCap 600 Growth ETF", - Symbol: "IJT", - Precision: 5, - Type: Stock, - AlternateId: "464287887"}, - 423484793552772: &Security{ - SecurityId: 423484793552772, - Name: "JKF", - Description: "iShares Morningstar Large-Cap Value ETF", - Symbol: "JKF", - Precision: 5, - Type: Stock, - AlternateId: "464288109"}, - 423484793553996: &Security{ - SecurityId: 423484793553996, - Name: "IGOV", - Description: "iShares International Treasury Bond ETF", - Symbol: "IGOV", - Precision: 5, - Type: Stock, - AlternateId: "464288117"}, - 423484793555220: &Security{ - SecurityId: 423484793555220, - Name: "ISHG", - Description: "iShares 1-3 Year International Treasury Bond ETF", - Symbol: "ISHG", - Precision: 5, - Type: Stock, - AlternateId: "464288125"}, - 423484793559216: &Security{ - SecurityId: 423484793559216, - Name: "SUB", - Description: "iShares Short-Term National AMT-Free Muni Bond ETF", - Symbol: "SUB", - Precision: 5, - Type: Stock, - AlternateId: "464288158"}, - 423484793560440: &Security{ - SecurityId: 423484793560440, - Name: "AGZ", - Description: "iShares Agency Bond ETF", - Symbol: "AGZ", - Precision: 5, - Type: Stock, - AlternateId: "464288166"}, - 423484793561664: &Security{ - SecurityId: 423484793561664, - Name: "WOOD", - Description: "iShares Global Timber & Forestry ETF", - Symbol: "WOOD", - Precision: 5, - Type: Stock, - AlternateId: "464288174"}, - 423484793562888: &Security{ - SecurityId: 423484793562888, - Name: "AAXJ", - Description: "iShares MSCI All Country Asia ex Japan ETF", - Symbol: "AAXJ", - Precision: 5, - Type: Stock, - AlternateId: "464288182"}, - 423484793599392: &Security{ - SecurityId: 423484793599392, - Name: "JKG", - Description: "iShares Morningstar Mid-Cap ETF", - Symbol: "JKG", - Precision: 5, - Type: Stock, - AlternateId: "464288208"}, - 423484793600616: &Security{ - SecurityId: 423484793600616, - Name: "EMIF", - Description: "iShares Emerging Markets Infrastructure ETF", - Symbol: "EMIF", - Precision: 5, - Type: Stock, - AlternateId: "464288216"}, - 423484793601840: &Security{ - SecurityId: 423484793601840, - Name: "ICLN", - Description: "iShares Global Clean Energy ETF", - Symbol: "ICLN", - Precision: 5, - Type: Stock, - AlternateId: "464288224"}, - 423484793604288: &Security{ - SecurityId: 423484793604288, - Name: "ACWX", - Description: "iShares MSCI ACWI ex U.S. ETF", - Symbol: "ACWX", - Precision: 5, - Type: Stock, - AlternateId: "464288240"}, - 423484793605836: &Security{ - SecurityId: 423484793605836, - Name: "ACWI", - Description: "iShares MSCI ACWI ETF", - Symbol: "ACWI", - Precision: 5, - Type: Stock, - AlternateId: "464288257"}, - 423484793607060: &Security{ - SecurityId: 423484793607060, - Name: "TOK", - Description: "iShares MSCI Kokusai ETF", - Symbol: "TOK", - Precision: 5, - Type: Stock, - AlternateId: "464288265"}, - 423484793608284: &Security{ - SecurityId: 423484793608284, - Name: "SCZ", - Description: "iShares MSCI EAFE Small-Cap ETF", - Symbol: "SCZ", - Precision: 5, - Type: Stock, - AlternateId: "464288273"}, - 423484793609508: &Security{ - SecurityId: 423484793609508, - Name: "EMB", - Description: "iShares J.P.Morgan USD Emerging Markets Bond ETF", - Symbol: "EMB", - Precision: 5, - Type: Stock, - AlternateId: "464288281"}, - 423484793646012: &Security{ - SecurityId: 423484793646012, - Name: "JKH", - Description: "iShares Morningstar Mid-Cap Growth ETF", - Symbol: "JKH", - Precision: 5, - Type: Stock, - AlternateId: "464288307"}, - 423484793648460: &Security{ - SecurityId: 423484793648460, - Name: "NYF", - Description: "iShares New York AMT-Free Muni Bond ETF", - Symbol: "NYF", - Precision: 5, - Type: Stock, - AlternateId: "464288323"}, - 423484793652456: &Security{ - SecurityId: 423484793652456, - Name: "CMF", - Description: "iShares California AMT-Free Muni Bond ETF", - Symbol: "CMF", - Precision: 5, - Type: Stock, - AlternateId: "464288356"}, - 423484793654904: &Security{ - SecurityId: 423484793654904, - Name: "IGF", - Description: "iShares Global Infrastructure ETF", - Symbol: "IGF", - Precision: 5, - Type: Stock, - AlternateId: "464288372"}, - 423484793692632: &Security{ - SecurityId: 423484793692632, - Name: "JKI", - Description: "iShares Morningstar Mid-Cap Value ETF", - Symbol: "JKI", - Precision: 5, - Type: Stock, - AlternateId: "464288406"}, - 423484793693856: &Security{ - SecurityId: 423484793693856, - Name: "MUB", - Description: "iShares National AMT-Free Muni Bond ETF", - Symbol: "MUB", - Precision: 5, - Type: Stock, - AlternateId: "464288414"}, - 423484793695080: &Security{ - SecurityId: 423484793695080, - Name: "WPS", - Description: "iShares International Developed Property ETF", - Symbol: "WPS", - Precision: 5, - Type: Stock, - AlternateId: "464288422"}, - 423484793696304: &Security{ - SecurityId: 423484793696304, - Name: "AIA", - Description: "iShares Asia 50 ETF", - Symbol: "AIA", - Precision: 5, - Type: Stock, - AlternateId: "464288430"}, - 423484793697888: &Security{ - SecurityId: 423484793697888, - Name: "IDV", - Description: "iShares International Select Dividend ETF", - Symbol: "IDV", - Precision: 5, - Type: Stock, - AlternateId: "464288448"}, - 423484793701524: &Security{ - SecurityId: 423484793701524, - Name: "IFEU", - Description: "iShares Europe Developed Real Estate ETF", - Symbol: "IFEU", - Precision: 5, - Type: Stock, - AlternateId: "464288471"}, - 423484793703108: &Security{ - SecurityId: 423484793703108, - Name: "IFGL", - Description: "iShares International Developed Real Estate ETF", - Symbol: "IFGL", - Precision: 5, - Type: Stock, - AlternateId: "464288489"}, - 423484793704332: &Security{ - SecurityId: 423484793704332, - Name: "IEUS", - Description: "iShares MSCI Europe Small-Cap ETF", - Symbol: "IEUS", - Precision: 5, - Type: Stock, - AlternateId: "464288497"}, - 423484793739252: &Security{ - SecurityId: 423484793739252, - Name: "JKJ", - Description: "iShares Morningstar Small-Cap ETF", - Symbol: "JKJ", - Precision: 5, - Type: Stock, - AlternateId: "464288505"}, - 423484793740476: &Security{ - SecurityId: 423484793740476, - Name: "HYG", - Description: "iShares iBoxx $ High Yield Corporate Bond ETF", - Symbol: "HYG", - Precision: 5, - Type: Stock, - AlternateId: "464288513"}, - 423484793741700: &Security{ - SecurityId: 423484793741700, - Name: "FTY", - Description: "iShares Real Estate 50 ETF", - Symbol: "FTY", - Precision: 5, - Type: Stock, - AlternateId: "464288521"}, - 423484793743284: &Security{ - SecurityId: 423484793743284, - Name: "REM", - Description: "iShares Mortgage Real Estate Capped ETF", - Symbol: "REM", - Precision: 5, - Type: Stock, - AlternateId: "464288539"}, - 423484793746920: &Security{ - SecurityId: 423484793746920, - Name: "REZ", - Description: "iShares Residential Real Estate Capped ETF", - Symbol: "REZ", - Precision: 5, - Type: Stock, - AlternateId: "464288562"}, - 423484793748144: &Security{ - SecurityId: 423484793748144, - Name: "DSI", - Description: "iShares MSCI KLD 400 Social ETF", - Symbol: "DSI", - Precision: 5, - Type: Stock, - AlternateId: "464288570"}, - 423484793749728: &Security{ - SecurityId: 423484793749728, - Name: "MBB", - Description: "iShares MBS ETF", - Symbol: "MBB", - Precision: 5, - Type: Stock, - AlternateId: "464288588"}, - 423484793750952: &Security{ - SecurityId: 423484793750952, - Name: "GBF", - Description: "iShares Government/Credit Bond ETF", - Symbol: "GBF", - Precision: 5, - Type: Stock, - AlternateId: "464288596"}, - 423484793785872: &Security{ - SecurityId: 423484793785872, - Name: "JKK", - Description: "iShares Morningstar Small-Cap Growth ETF", - Symbol: "JKK", - Precision: 5, - Type: Stock, - AlternateId: "464288604"}, - 423484793787096: &Security{ - SecurityId: 423484793787096, - Name: "GVI", - Description: "iShares Intermediate Government/Credit Bond ETF", - Symbol: "GVI", - Precision: 5, - Type: Stock, - AlternateId: "464288612"}, - 423484793788320: &Security{ - SecurityId: 423484793788320, - Name: "CRED", - Description: "iShares Core U.S. Credit Bond ETF", - Symbol: "CRED", - Precision: 5, - Type: Stock, - AlternateId: "464288620"}, - 423484793789904: &Security{ - SecurityId: 423484793789904, - Name: "CIU", - Description: "iShares Intermediate Credit Bond ETF", - Symbol: "CIU", - Precision: 5, - Type: Stock, - AlternateId: "464288638"}, - 423484793791128: &Security{ - SecurityId: 423484793791128, - Name: "CSJ", - Description: "iShares 1-3 Year Credit Bond ETF", - Symbol: "CSJ", - Precision: 5, - Type: Stock, - AlternateId: "464288646"}, - 423484793792316: &Security{ - SecurityId: 423484793792316, - Name: "TLH", - Description: "iShares 10-20 Year Treasury Bond ETF", - Symbol: "TLH", - Precision: 5, - Type: Stock, - AlternateId: "464288653"}, - 423484793793540: &Security{ - SecurityId: 423484793793540, - Name: "IEI", - Description: "iShares 3-7 Year Treasury Bond ETF", - Symbol: "IEI", - Precision: 5, - Type: Stock, - AlternateId: "464288661"}, - 423484793795124: &Security{ - SecurityId: 423484793795124, - Name: "SHV", - Description: "iShares Short Treasury Bond ETF", - Symbol: "SHV", - Precision: 5, - Type: Stock, - AlternateId: "464288679"}, - 423484793796348: &Security{ - SecurityId: 423484793796348, - Name: "PFF", - Description: "iShares U.S. Preferred Stock ETF", - Symbol: "PFF", - Precision: 5, - Type: Stock, - AlternateId: "464288687"}, - 423484793797572: &Security{ - SecurityId: 423484793797572, - Name: "MXI", - Description: "iShares Global Materials ETF", - Symbol: "MXI", - Precision: 5, - Type: Stock, - AlternateId: "464288695"}, - 423484793832492: &Security{ - SecurityId: 423484793832492, - Name: "JKL", - Description: "iShares Morningstar Small-Cap Value ETF", - Symbol: "JKL", - Precision: 5, - Type: Stock, - AlternateId: "464288703"}, - 423484793833716: &Security{ - SecurityId: 423484793833716, - Name: "JXI", - Description: "iShares Global Utilities ETF", - Symbol: "JXI", - Precision: 5, - Type: Stock, - AlternateId: "464288711"}, - 423484793835300: &Security{ - SecurityId: 423484793835300, - Name: "EXI", - Description: "iShares Global Industrials ETF", - Symbol: "EXI", - Precision: 5, - Type: Stock, - AlternateId: "464288729"}, - 423484793836524: &Security{ - SecurityId: 423484793836524, - Name: "KXI", - Description: "iShares Global Consumer Staples ETF", - Symbol: "KXI", - Precision: 5, - Type: Stock, - AlternateId: "464288737"}, - 423484793837748: &Security{ - SecurityId: 423484793837748, - Name: "RXI", - Description: "iShares Global Consumer Discretionary ETF", - Symbol: "RXI", - Precision: 5, - Type: Stock, - AlternateId: "464288745"}, - 423484793838936: &Security{ - SecurityId: 423484793838936, - Name: "ITB", - Description: "iShares U.S. Home Construction ETF", - Symbol: "ITB", - Precision: 5, - Type: Stock, - AlternateId: "464288752"}, - 423484793840160: &Security{ - SecurityId: 423484793840160, - Name: "ITA", - Description: "iShares U.S. Aerospace & Defense ETF", - Symbol: "ITA", - Precision: 5, - Type: Stock, - AlternateId: "464288760"}, - 423484793841744: &Security{ - SecurityId: 423484793841744, - Name: "IAT", - Description: "iShares U.S. Regional Banks ETF", - Symbol: "IAT", - Precision: 5, - Type: Stock, - AlternateId: "464288778"}, - 423484793842968: &Security{ - SecurityId: 423484793842968, - Name: "IAK", - Description: "iShares U.S. Insurance ETF", - Symbol: "IAK", - Precision: 5, - Type: Stock, - AlternateId: "464288786"}, - 423484793844192: &Security{ - SecurityId: 423484793844192, - Name: "IAI", - Description: "iShares U.S. Broker-Dealers ETF", - Symbol: "IAI", - Precision: 5, - Type: Stock, - AlternateId: "464288794"}, - 423484793879112: &Security{ - SecurityId: 423484793879112, - Name: "KLD", - Description: "iShares MSCI USA ESG Select ETF", - Symbol: "KLD", - Precision: 5, - Type: Stock, - AlternateId: "464288802"}, - 423484793880336: &Security{ - SecurityId: 423484793880336, - Name: "IHI", - Description: "iShares U.S. Medical Devices ETF", - Symbol: "IHI", - Precision: 5, - Type: Stock, - AlternateId: "464288810"}, - 423484793881920: &Security{ - SecurityId: 423484793881920, - Name: "IHF", - Description: "iShares U.S. Healthcare Providers ETF", - Symbol: "IHF", - Precision: 5, - Type: Stock, - AlternateId: "464288828"}, - 423484793883144: &Security{ - SecurityId: 423484793883144, - Name: "IHE", - Description: "iShares U.S. Pharmaceuticals ETF", - Symbol: "IHE", - Precision: 5, - Type: Stock, - AlternateId: "464288836"}, - 423484793884368: &Security{ - SecurityId: 423484793884368, - Name: "IEZ", - Description: "iShares U.S. Oil Equipment & Services ETF", - Symbol: "IEZ", - Precision: 5, - Type: Stock, - AlternateId: "464288844"}, - 423484793885556: &Security{ - SecurityId: 423484793885556, - Name: "IEO", - Description: "iShares U.S. Oil & Gas Exploration & Production ETF", - Symbol: "IEO", - Precision: 5, - Type: Stock, - AlternateId: "464288851"}, - 423484793887140: &Security{ - SecurityId: 423484793887140, - Name: "IWC", - Description: "iShares Micro-cap ETF", - Symbol: "IWC", - Precision: 5, - Type: Stock, - AlternateId: "464288869"}, - 423484793888364: &Security{ - SecurityId: 423484793888364, - Name: "EFV", - Description: "iShares MSCI EAFE Value ETF", - Symbol: "EFV", - Precision: 5, - Type: Stock, - AlternateId: "464288877"}, - 423484793889588: &Security{ - SecurityId: 423484793889588, - Name: "EFG", - Description: "iShares MSCI EAFE Growth ETF", - Symbol: "EFG", - Precision: 5, - Type: Stock, - AlternateId: "464288885"}, - 423484795234764: &Security{ - SecurityId: 423484795234764, - Name: "ENZL", - Description: "iShares MSCI New Zealand Capped ETF", - Symbol: "ENZL", - Precision: 5, - Type: Stock, - AlternateId: "464289123"}, - 423484795235988: &Security{ - SecurityId: 423484795235988, - Name: "EWZS", - Description: "iShares MSCI Brazil Small-Cap ETF", - Symbol: "EWZS", - Precision: 5, - Type: Stock, - AlternateId: "464289131"}, - 423484795242432: &Security{ - SecurityId: 423484795242432, - Name: "EUFN", - Description: "iShares MSCI Europe Financials ETF", - Symbol: "EUFN", - Precision: 5, - Type: Stock, - AlternateId: "464289180"}, - 423484795287828: &Security{ - SecurityId: 423484795287828, - Name: "IBMF", - Description: "iShares iBonds Sep 2017 AMT-Free Muni Bond ETF", - Symbol: "IBMF", - Precision: 5, - Type: Stock, - AlternateId: "464289271"}, - 423484795326780: &Security{ - SecurityId: 423484795326780, - Name: "IBME", - Description: "iShares iBonds Sep 2016 AMT-Free Muni Bond ETF", - Symbol: "IBME", - Precision: 5, - Type: Stock, - AlternateId: "464289313"}, - 423484795374624: &Security{ - SecurityId: 423484795374624, - Name: "IWX", - Description: "iShares Russell Top 200 Value ETF", - Symbol: "IWX", - Precision: 5, - Type: Stock, - AlternateId: "464289420"}, - 423484795376208: &Security{ - SecurityId: 423484795376208, - Name: "IWY", - Description: "iShares Russell Top 200 Growth ETF", - Symbol: "IWY", - Precision: 5, - Type: Stock, - AlternateId: "464289438"}, - 423484795377432: &Security{ - SecurityId: 423484795377432, - Name: "IWL", - Description: "iShares Russell Top 200 ETF", - Symbol: "IWL", - Precision: 5, - Type: Stock, - AlternateId: "464289446"}, - 423484795381428: &Security{ - SecurityId: 423484795381428, - Name: "ILTB", - Description: "iShares Core 10+ Year USD Bond ETF", - Symbol: "ILTB", - Precision: 5, - Type: Stock, - AlternateId: "464289479"}, - 423484795420020: &Security{ - SecurityId: 423484795420020, - Name: "CLY", - Description: "iShares 10+ Year Credit Bond ETF", - Symbol: "CLY", - Precision: 5, - Type: Stock, - AlternateId: "464289511"}, - 423484795421604: &Security{ - SecurityId: 423484795421604, - Name: "INDY", - Description: "iShares India 50 ETF", - Symbol: "INDY", - Precision: 5, - Type: Stock, - AlternateId: "464289529"}, - 423484795563912: &Security{ - SecurityId: 423484795563912, - Name: "EPU", - Description: "iShares MSCI All Peru Capped ETF", - Symbol: "EPU", - Precision: 5, - Type: Stock, - AlternateId: "464289842"}, - 423484795565460: &Security{ - SecurityId: 423484795565460, - Name: "AOA", - Description: "iShares Core Aggressive Allocation ETF", - Symbol: "AOA", - Precision: 5, - Type: Stock, - AlternateId: "464289859"}, - 423484795566684: &Security{ - SecurityId: 423484795566684, - Name: "AOR", - Description: "iShares Core Growth Allocation ETF", - Symbol: "AOR", - Precision: 5, - Type: Stock, - AlternateId: "464289867"}, - 423484795567908: &Security{ - SecurityId: 423484795567908, - Name: "AOM", - Description: "iShares Core Moderate Allocation ETF", - Symbol: "AOM", - Precision: 5, - Type: Stock, - AlternateId: "464289875"}, - 423484795569132: &Security{ - SecurityId: 423484795569132, - Name: "AOK", - Description: "iShares Core Conservative Allocation ETF", - Symbol: "AOK", - Precision: 5, - Type: Stock, - AlternateId: "464289883"}, - 423484859061540: &Security{ - SecurityId: 423484859061540, - Name: "IPFF", - Description: "iShares International Preferred Stock ETF", - Symbol: "IPFF", - Precision: 5, - Type: Stock, - AlternateId: "46429B135"}, - 423484859104128: &Security{ - SecurityId: 423484859104128, - Name: "ECNS", - Description: "iShares MSCI China Small-Cap ETF", - Symbol: "ECNS", - Precision: 5, - Type: Stock, - AlternateId: "46429B200"}, - 423484859115828: &Security{ - SecurityId: 423484859115828, - Name: "QLTA", - Description: "iShares Aaa - A Rated Corporate Bond ETF", - Symbol: "QLTA", - Precision: 5, - Type: Stock, - AlternateId: "46429B291"}, - 423484859151108: &Security{ - SecurityId: 423484859151108, - Name: "EIDO", - Description: "iShares MSCI Indonesia ETF", - Symbol: "EIDO", - Precision: 5, - Type: Stock, - AlternateId: "46429B309"}, - 423484859154780: &Security{ - SecurityId: 423484859154780, - Name: "GNMA", - Description: "iShares Core GNMA Bond ETF", - Symbol: "GNMA", - Precision: 5, - Type: Stock, - AlternateId: "46429B333"}, - 423484859158776: &Security{ - SecurityId: 423484859158776, - Name: "CMBS", - Description: "iShares CMBS ETF", - Symbol: "CMBS", - Precision: 5, - Type: Stock, - AlternateId: "46429B366"}, - 423484859161224: &Security{ - SecurityId: 423484859161224, - Name: "EEML", - Description: "iShares MSCI Emerging Markets Latin America ETF", - Symbol: "EEML", - Precision: 5, - Type: Stock, - AlternateId: "46429B382"}, - 423484859198952: &Security{ - SecurityId: 423484859198952, - Name: "EWUS", - Description: "iShares MSCI United Kingdom Small Cap ETF", - Symbol: "EWUS", - Precision: 5, - Type: Stock, - AlternateId: "46429B416"}, - 423484859205396: &Security{ - SecurityId: 423484859205396, - Name: "EWGS", - Description: "iShares MSCI Germany Small Cap ETF", - Symbol: "EWGS", - Precision: 5, - Type: Stock, - AlternateId: "46429B465"}, - 423484859209428: &Security{ - SecurityId: 423484859209428, - Name: "ENOR", - Description: "iShares MSCI Norway Capped ETF", - Symbol: "ENOR", - Precision: 5, - Type: Stock, - AlternateId: "46429B499"}, - 423484859244348: &Security{ - SecurityId: 423484859244348, - Name: "EIRL", - Description: "iShares MSCI Ireland Capped ETF", - Symbol: "EIRL", - Precision: 5, - Type: Stock, - AlternateId: "46429B507"}, - 423484859245572: &Security{ - SecurityId: 423484859245572, - Name: "EFNL", - Description: "iShares MSCI Finland Capped ETF", - Symbol: "EFNL", - Precision: 5, - Type: Stock, - AlternateId: "46429B515"}, - 423484859246796: &Security{ - SecurityId: 423484859246796, - Name: "EDEN", - Description: "iShares MSCI Denmark Capped ETF", - Symbol: "EDEN", - Precision: 5, - Type: Stock, - AlternateId: "46429B523"}, - 423484859252016: &Security{ - SecurityId: 423484859252016, - Name: "IBMH", - Description: "iShares iBonds Sep 2019 AMT-Free Muni Bond ETF", - Symbol: "IBMH", - Precision: 5, - Type: Stock, - AlternateId: "46429B564"}, - 423484859254464: &Security{ - SecurityId: 423484859254464, - Name: "IBMG", - Description: "iShares iBonds Sep 2018 AMT-Free Muni Bond ETF", - Symbol: "IBMG", - Precision: 5, - Type: Stock, - AlternateId: "46429B580"}, - 423484859256048: &Security{ - SecurityId: 423484859256048, - Name: "INDA", - Description: "iShares MSCI India ETF", - Symbol: "INDA", - Precision: 5, - Type: Stock, - AlternateId: "46429B598"}, - 423484859290968: &Security{ - SecurityId: 423484859290968, - Name: "EPOL", - Description: "iShares MSCI Poland Capped ETF", - Symbol: "EPOL", - Precision: 5, - Type: Stock, - AlternateId: "46429B606"}, - 423484859292192: &Security{ - SecurityId: 423484859292192, - Name: "SMIN", - Description: "iShares MSCI India Small Cap ETF", - Symbol: "SMIN", - Precision: 5, - Type: Stock, - AlternateId: "46429B614"}, - 423484859297412: &Security{ - SecurityId: 423484859297412, - Name: "FLOT", - Description: "iShares Floating Rate Bond ETF", - Symbol: "FLOT", - Precision: 5, - Type: Stock, - AlternateId: "46429B655"}, - 423484859298636: &Security{ - SecurityId: 423484859298636, - Name: "HDV", - Description: "iShares High Dividend ETF", - Symbol: "HDV", - Precision: 5, - Type: Stock, - AlternateId: "46429B663"}, - 423484859299860: &Security{ - SecurityId: 423484859299860, - Name: "MCHI", - Description: "iShares MSCI China ETF", - Symbol: "MCHI", - Precision: 5, - Type: Stock, - AlternateId: "46429B671"}, - 423484859301444: &Security{ - SecurityId: 423484859301444, - Name: "EFAV", - Description: "iShares MSCI EAFE Minimum Volatility ETF", - Symbol: "EFAV", - Precision: 5, - Type: Stock, - AlternateId: "46429B689"}, - 423484859302668: &Security{ - SecurityId: 423484859302668, - Name: "USMV", - Description: "iShares MSCI USA Minimum Volatility ETF", - Symbol: "USMV", - Precision: 5, - Type: Stock, - AlternateId: "46429B697"}, - 423484859342844: &Security{ - SecurityId: 423484859342844, - Name: "STIP", - Description: "iShares 0-5 Year TIPS Bond ETF", - Symbol: "STIP", - Precision: 5, - Type: Stock, - AlternateId: "46429B747"}, - 423484859346480: &Security{ - SecurityId: 423484859346480, - Name: "ITIP", - Description: "iShares International Inflation-Linked Bond ETF", - Symbol: "ITIP", - Precision: 5, - Type: Stock, - AlternateId: "46429B770"}, - 423484859385432: &Security{ - SecurityId: 423484859385432, - Name: "GTIP", - Description: "iShares Global Inflation-Linked Bond ETF", - Symbol: "GTIP", - Precision: 5, - Type: Stock, - AlternateId: "46429B812"}, - 423486587382372: &Security{ - SecurityId: 423486587382372, - Name: "IELG", - Description: "iShares Enhanced U.S. Large-Cap ETF", - Symbol: "IELG", - Precision: 5, - Type: Stock, - AlternateId: "46431W101"}, - 423486587428992: &Security{ - SecurityId: 423486587428992, - Name: "IESM", - Description: "iShares Enhanced U.S. Small-Cap ETF", - Symbol: "IESM", - Precision: 5, - Type: Stock, - AlternateId: "46431W200"}, - 423486587475972: &Security{ - SecurityId: 423486587475972, - Name: "IEIS", - Description: "iShares Enhanced International Small-Cap ETF", - Symbol: "IEIS", - Precision: 5, - Type: Stock, - AlternateId: "46431W309"}, - 423486587522592: &Security{ - SecurityId: 423486587522592, - Name: "IEIL", - Description: "iShares Enhanced International Large-Cap ETF", - Symbol: "IEIL", - Precision: 5, - Type: Stock, - AlternateId: "46431W408"}, - 423486587569212: &Security{ - SecurityId: 423486587569212, - Name: "NEAR", - Description: "iShares Short Maturity Bond ETF", - Symbol: "NEAR", - Precision: 5, - Type: Stock, - AlternateId: "46431W507"}, - 423486587615832: &Security{ - SecurityId: 423486587615832, - Name: "HYGH", - Description: "iShares Interest Rate Hedged High Yield Bond ETF", - Symbol: "HYGH", - Precision: 5, - Type: Stock, - AlternateId: "46431W606"}, - 423486587662452: &Security{ - SecurityId: 423486587662452, - Name: "LQDH", - Description: "iShares Interest Rate Hedged Corporate Bond ETF", - Symbol: "LQDH", - Precision: 5, - Type: Stock, - AlternateId: "46431W705"}, - 423486587710296: &Security{ - SecurityId: 423486587710296, - Name: "CLYH", - Description: "iShares Interest Rate Hedged 10 Year Credit Bond ETF", - Symbol: "CLYH", - Precision: 5, - Type: Stock, - AlternateId: "46431W812"}, - 423486587711520: &Security{ - SecurityId: 423486587711520, - Name: "EMBH", - Description: "iShares Interest Rate Hedged Emerging Markets Bond ETF", - Symbol: "EMBH", - Precision: 5, - Type: Stock, - AlternateId: "46431W820"}, - 423486587713104: &Security{ - SecurityId: 423486587713104, - Name: "MEAR", - Description: "iShares Short Maturity Municipal Bond ETF", - Symbol: "MEAR", - Precision: 5, - Type: Stock, - AlternateId: "46431W838"}, - 423486587714328: &Security{ - SecurityId: 423486587714328, - Name: "INC", - Description: "iShares U.S. Fixed Income Balanced Risk ETF", - Symbol: "INC", - Precision: 5, - Type: Stock, - AlternateId: "46431W846"}, - 423486587715516: &Security{ - SecurityId: 423486587715516, - Name: "COMT", - Description: "iShares Commodities Select Strategy ETF", - Symbol: "COMT", - Precision: 5, - Type: Stock, - AlternateId: "46431W853"}, - 423486619732116: &Security{ - SecurityId: 423486619732116, - Name: "IBCB", - Description: "iShares iBonds Mar 2016 Corporate ex-Financials Term ETF", - Symbol: "IBCB", - Precision: 5, - Type: Stock, - AlternateId: "46432FAD9"}, - 423486619735752: &Security{ - SecurityId: 423486619735752, - Name: "IBCC", - Description: "iShares iBonds Mar 2018 Corporate ex-Financials Term ETF", - Symbol: "IBCC", - Precision: 5, - Type: Stock, - AlternateId: "46432FAG2"}, - 423486619740972: &Security{ - SecurityId: 423486619740972, - Name: "IBCD", - Description: "iShares iBonds Mar 2020 Corporate ex-Financials Term ETF", - Symbol: "IBCD", - Precision: 5, - Type: Stock, - AlternateId: "46432FAK3"}, - 423486619745004: &Security{ - SecurityId: 423486619745004, - Name: "IBCE", - Description: "iShares iBonds Mar 2023 Corporate ex-Financials Term ETF", - Symbol: "IBCE", - Precision: 5, - Type: Stock, - AlternateId: "46432FAN7"}, - 423486619752672: &Security{ - SecurityId: 423486619752672, - Name: "IBDA", - Description: "iShares iBonds Mar 2016 Corporate ETF", - Symbol: "IBDA", - Precision: 5, - Type: Stock, - AlternateId: "46432FAT4"}, - 423486619756668: &Security{ - SecurityId: 423486619756668, - Name: "IBDB", - Description: "iShares iBonds Mar 2018 Corporate ETF", - Symbol: "IBDB", - Precision: 5, - Type: Stock, - AlternateId: "46432FAW7"}, - 423486619760304: &Security{ - SecurityId: 423486619760304, - Name: "IBDD", - Description: "iShares iBonds Mar 2023 Corporate Term ETF", - Symbol: "IBDD", - Precision: 5, - Type: Stock, - AlternateId: "46432FAZ0"}, - 423486619295292: &Security{ - SecurityId: 423486619295292, - Name: "QLTB", - Description: "iShares Baa-Ba Rated Corporate Bond ETF", - Symbol: "QLTB", - Precision: 5, - Type: Stock, - AlternateId: "46432F107"}, - 423486619392564: &Security{ - SecurityId: 423486619392564, - Name: "QUAL", - Description: "iShares MSCI USA Quality Factor ETF", - Symbol: "QUAL", - Precision: 5, - Type: Stock, - AlternateId: "46432F339"}, - 423486619397424: &Security{ - SecurityId: 423486619397424, - Name: "SIZE", - Description: "iShares MSCI USA Size Factor ETF", - Symbol: "SIZE", - Precision: 5, - Type: Stock, - AlternateId: "46432F370"}, - 423486619399008: &Security{ - SecurityId: 423486619399008, - Name: "VLUE", - Description: "iShares MSCI USA Value Factor ETF", - Symbol: "VLUE", - Precision: 5, - Type: Stock, - AlternateId: "46432F388"}, - 423486619400232: &Security{ - SecurityId: 423486619400232, - Name: "MTUM", - Description: "iShares MSCI USA Momentum Factor ETF", - Symbol: "MTUM", - Precision: 5, - Type: Stock, - AlternateId: "46432F396"}, - 423486619435152: &Security{ - SecurityId: 423486619435152, - Name: "QLTC", - Description: "iShares B-Ca Rated Corporate Bond ETF", - Symbol: "QLTC", - Precision: 5, - Type: Stock, - AlternateId: "46432F404"}, - 423486619625664: &Security{ - SecurityId: 423486619625664, - Name: "IXUS", - Description: "iShares Core MSCI Total International Stock ETF", - Symbol: "IXUS", - Precision: 5, - Type: Stock, - AlternateId: "46432F834"}, - 423486619626888: &Security{ - SecurityId: 423486619626888, - Name: "IEFA", - Description: "iShare Core MSCI EAFE ETF", - Symbol: "IEFA", - Precision: 5, - Type: Stock, - AlternateId: "46432F842"}, - 423486619628436: &Security{ - SecurityId: 423486619628436, - Name: "ISTB", - Description: "iShares Core 1-5 Year USD Bond ETF", - Symbol: "ISTB", - Precision: 5, - Type: Stock, - AlternateId: "46432F859"}, - 423486619630884: &Security{ - SecurityId: 423486619630884, - Name: "IYLD", - Description: "iShares Morningstar Multi-Asset Income ETF", - Symbol: "IYLD", - Precision: 5, - Type: Stock, - AlternateId: "46432F875"}, - 423486654567300: &Security{ - SecurityId: 423486654567300, - Name: "IONS", - Description: "Ionis Pharmaceuticals, Inc.", - Symbol: "IONS", - Precision: 5, - Type: Stock, - AlternateId: "464330109"}, - 423486741907116: &Security{ - SecurityId: 423486741907116, - Name: "IEMG", - Description: "iShares Core MSCI Emerging Markets ETF", - Symbol: "IEMG", - Precision: 5, - Type: Stock, - AlternateId: "46434G103"}, - 423486741953736: &Security{ - SecurityId: 423486741953736, - Name: "ICOL", - Description: "iShares MSCI Colombia Capped ETF", - Symbol: "ICOL", - Precision: 5, - Type: Stock, - AlternateId: "46434G202"}, - 423486742093956: &Security{ - SecurityId: 423486742093956, - Name: "HEEM", - Description: "iShares Currency Hedged MSCI Emerging Markets ETF", - Symbol: "HEEM", - Precision: 5, - Type: Stock, - AlternateId: "46434G509"}, - 423486742140576: &Security{ - SecurityId: 423486742140576, - Name: "EMHZ", - Description: "iShares MSCI Emerging Markets Horizon ETF", - Symbol: "EMHZ", - Precision: 5, - Type: Stock, - AlternateId: "46434G608"}, - 423486742233816: &Security{ - SecurityId: 423486742233816, - Name: "ERUS", - Description: "iShares MSCI Russia Capped ETF", - Symbol: "ERUS", - Precision: 5, - Type: Stock, - AlternateId: "46434G806"}, - 423486742244292: &Security{ - SecurityId: 423486742244292, - Name: "EMGF", - Description: "iShares FactorSelect MSCI Emerging ETF", - Symbol: "EMGF", - Precision: 5, - Type: Stock, - AlternateId: "46434G889"}, - 423486767534400: &Security{ - SecurityId: 423486767534400, - Name: "IBDH", - Description: "iShares iBonds Dec 2018 Corporate Term ETF", - Symbol: "IBDH", - Precision: 5, - Type: Stock, - AlternateId: "46434VAA8"}, - 423486767546100: &Security{ - SecurityId: 423486767546100, - Name: "IBDF", - Description: "iShares iBonds Dec 2016 Corporate ETF", - Symbol: "IBDF", - Precision: 5, - Type: Stock, - AlternateId: "46434VAJ9"}, - 423486767554956: &Security{ - SecurityId: 423486767554956, - Name: "IBDL", - Description: "iShares iBonds Dec 2020 Corporate ETF", - Symbol: "IBDL", - Precision: 5, - Type: Stock, - AlternateId: "46434VAQ3"}, - 423486767556180: &Security{ - SecurityId: 423486767556180, - Name: "IBDJ", - Description: "iShares iBonds Dec 2017 Corporate ETF", - Symbol: "IBDJ", - Precision: 5, - Type: Stock, - AlternateId: "46434VAR1"}, - 423486767560176: &Security{ - SecurityId: 423486767560176, - Name: "IBDK", - Description: "iShares iBonds Dec 2019 Corporate ETF", - Symbol: "IBDK", - Precision: 5, - Type: Stock, - AlternateId: "46434VAU4"}, - 423486767564208: &Security{ - SecurityId: 423486767564208, - Name: "IBDO", - Description: "iShares iBonds Dec 2023 Corporate ETF", - Symbol: "IBDO", - Precision: 5, - Type: Stock, - AlternateId: "46434VAX8"}, - 423486767581020: &Security{ - SecurityId: 423486767581020, - Name: "IBDN", - Description: "iShares iBonds Dec 2022 Corporate ETF", - Symbol: "IBDN", - Precision: 5, - Type: Stock, - AlternateId: "46434VBA7"}, - 423486767584692: &Security{ - SecurityId: 423486767584692, - Name: "IBDQ", - Description: "iShares iBonds Dec 2025 Corporate ETF", - Symbol: "IBDQ", - Precision: 5, - Type: Stock, - AlternateId: "46434VBD1"}, - 423486767588688: &Security{ - SecurityId: 423486767588688, - Name: "IBDP", - Description: "iShares iBonds Dec 2024 Corporate ETF", - Symbol: "IBDP", - Precision: 5, - Type: Stock, - AlternateId: "46434VBG4"}, - 423486767593908: &Security{ - SecurityId: 423486767593908, - Name: "IBDM", - Description: "iShares iBonds Dec 2021 Corporate ETF", - Symbol: "IBDM", - Precision: 5, - Type: Stock, - AlternateId: "46434VBK5"}, - 423486767101248: &Security{ - SecurityId: 423486767101248, - Name: "SLQD", - Description: "iShares 0-5 Year Investment Grade Corporate Bond ETF", - Symbol: "SLQD", - Precision: 5, - Type: Stock, - AlternateId: "46434V100"}, - 423486767155896: &Security{ - SecurityId: 423486767155896, - Name: "ISCF", - Description: "iShares FactorSelect MSCI Intl Small-Cap ETF", - Symbol: "ISCF", - Precision: 5, - Type: Stock, - AlternateId: "46434V266"}, - 423486767157120: &Security{ - SecurityId: 423486767157120, - Name: "INTF", - Description: "iShares FactorSelect MSCI International ETF", - Symbol: "INTF", - Precision: 5, - Type: Stock, - AlternateId: "46434V274"}, - 423486767158344: &Security{ - SecurityId: 423486767158344, - Name: "LRGF", - Description: "iShares FactorSelect MSCI USA ETF", - Symbol: "LRGF", - Precision: 5, - Type: Stock, - AlternateId: "46434V282"}, - 423486767159568: &Security{ - SecurityId: 423486767159568, - Name: "SMLF", - Description: "iShares FactorSelect MSCI USA Small-Cap ETF", - Symbol: "SMLF", - Precision: 5, - Type: Stock, - AlternateId: "46434V290"}, - 423486767196072: &Security{ - SecurityId: 423486767196072, - Name: "ACWF", - Description: "iShares FactorSelect MSCI Global ETF", - Symbol: "ACWF", - Precision: 5, - Type: Stock, - AlternateId: "46434V316"}, - 423486767204964: &Security{ - SecurityId: 423486767204964, - Name: "XT", - Description: "iShares Exponential Technologies ETF", - Symbol: "XT", - Precision: 5, - Type: Stock, - AlternateId: "46434V381"}, - 423486767241468: &Security{ - SecurityId: 423486767241468, - Name: "SHYG", - Description: "iShares 0-5 Year High Yield Corporate Bond ETF", - Symbol: "SHYG", - Precision: 5, - Type: Stock, - AlternateId: "46434V407"}, - 423486767243916: &Security{ - SecurityId: 423486767243916, - Name: "KSA", - Description: "iShares MSCI Saudi Arabia Capped ETF", - Symbol: "KSA", - Precision: 5, - Type: Stock, - AlternateId: "46434V423"}, - 423486767246724: &Security{ - SecurityId: 423486767246724, - Name: "IMTM", - Description: "iShares MSCI International Developed Momentum Factor ETF", - Symbol: "IMTM", - Precision: 5, - Type: Stock, - AlternateId: "46434V449"}, - 423486767247912: &Security{ - SecurityId: 423486767247912, - Name: "IQLT", - Description: "iShares MSCI International Developed Quality Factor ETF", - Symbol: "IQLT", - Precision: 5, - Type: Stock, - AlternateId: "46434V456"}, - 423486767249136: &Security{ - SecurityId: 423486767249136, - Name: "CRBN", - Description: "iShares MSCI ACWI Low Carbon Target ETF", - Symbol: "CRBN", - Precision: 5, - Type: Stock, - AlternateId: "46434V464"}, - 423486767296980: &Security{ - SecurityId: 423486767296980, - Name: "IBMI", - Description: "iShares iBonds Sep 2020 AMT-Free Muni Bond ETF", - Symbol: "IBMI", - Precision: 5, - Type: Stock, - AlternateId: "46434V571"}, - 423486767335932: &Security{ - SecurityId: 423486767335932, - Name: "IUSB", - Description: "iShares Core Total USD Bond Market ETF", - Symbol: "IUSB", - Precision: 5, - Type: Stock, - AlternateId: "46434V613"}, - 423486767337156: &Security{ - SecurityId: 423486767337156, - Name: "DGRO", - Description: "iShares Core Dividend Growth ETF", - Symbol: "DGRO", - Precision: 5, - Type: Stock, - AlternateId: "46434V621"}, - 423486767338740: &Security{ - SecurityId: 423486767338740, - Name: "HEZU", - Description: "iShares Currency Hedged MSCI Eurozone ETF", - Symbol: "HEZU", - Precision: 5, - Type: Stock, - AlternateId: "46434V639"}, - 423486767339964: &Security{ - SecurityId: 423486767339964, - Name: "REET", - Description: "iShares Global REIT ETF", - Symbol: "REET", - Precision: 5, - Type: Stock, - AlternateId: "46434V647"}, - 423486767346408: &Security{ - SecurityId: 423486767346408, - Name: "IPAC", - Description: "iShares Core MSCI Pacific ETF", - Symbol: "IPAC", - Precision: 5, - Type: Stock, - AlternateId: "46434V696"}, - 423486767381328: &Security{ - SecurityId: 423486767381328, - Name: "HEWG", - Description: "iShares Currency Hedged MSCI Germany ETF", - Symbol: "HEWG", - Precision: 5, - Type: Stock, - AlternateId: "46434V704"}, - 423486767382552: &Security{ - SecurityId: 423486767382552, - Name: "JPMV", - Description: "iShares MSCI Japan Minimum Volatility ETF", - Symbol: "JPMV", - Precision: 5, - Type: Stock, - AlternateId: "46434V712"}, - 423486767383776: &Security{ - SecurityId: 423486767383776, - Name: "EUMV", - Description: "iShares MSCI Europe Minimum Volatility ETF", - Symbol: "EUMV", - Precision: 5, - Type: Stock, - AlternateId: "46434V720"}, - 423486767385360: &Security{ - SecurityId: 423486767385360, - Name: "IEUR", - Description: "iShares Core MSCI Europe ETF", - Symbol: "IEUR", - Precision: 5, - Type: Stock, - AlternateId: "46434V738"}, - 423486767386584: &Security{ - SecurityId: 423486767386584, - Name: "AXJV", - Description: "iShares MSCI Asia ex Japan Minimum Volatility ETF", - Symbol: "AXJV", - Precision: 5, - Type: Stock, - AlternateId: "46434V746"}, - 423486767388996: &Security{ - SecurityId: 423486767388996, - Name: "UAE", - Description: "iShares MSCI UAE Capped ETF", - Symbol: "UAE", - Precision: 5, - Type: Stock, - AlternateId: "46434V761"}, - 423486767390580: &Security{ - SecurityId: 423486767390580, - Name: "QAT", - Description: "iShares MSCI Qatar Capped ETF", - Symbol: "QAT", - Precision: 5, - Type: Stock, - AlternateId: "46434V779"}, - 423486767391804: &Security{ - SecurityId: 423486767391804, - Name: "BYLD", - Description: "iShares Yield Optimized Bond ETF", - Symbol: "BYLD", - Precision: 5, - Type: Stock, - AlternateId: "46434V787"}, - 423486767427948: &Security{ - SecurityId: 423486767427948, - Name: "HEFA", - Description: "iShares Currency Hedged MSCI EAFE ETF", - Symbol: "HEFA", - Precision: 5, - Type: Stock, - AlternateId: "46434V803"}, - 423486767435616: &Security{ - SecurityId: 423486767435616, - Name: "TFLO", - Description: "iShares Treasury Floating Rate Bond ETF", - Symbol: "TFLO", - Precision: 5, - Type: Stock, - AlternateId: "46434V860"}, - 423486767437200: &Security{ - SecurityId: 423486767437200, - Name: "ICSH", - Description: "iShares Liquidity Income ETF", - Symbol: "ICSH", - Precision: 5, - Type: Stock, - AlternateId: "46434V878"}, - 423486767438424: &Security{ - SecurityId: 423486767438424, - Name: "HEWJ", - Description: "iShares Currency Hedged MSCI Japan ETF", - Symbol: "HEWJ", - Precision: 5, - Type: Stock, - AlternateId: "46434V886"}, - 423486802513476: &Security{ - SecurityId: 423486802513476, - Name: "IVLU", - Description: "iShares MSCI International Developed Value Factor ETF", - Symbol: "IVLU", - Precision: 5, - Type: Stock, - AlternateId: "46435G409"}, - 423486802560096: &Security{ - SecurityId: 423486802560096, - Name: "ISZE", - Description: "iShares MSCI International Developed Size Factor ETF", - Symbol: "ISZE", - Precision: 5, - Type: Stock, - AlternateId: "46435G508"}, - 423486802606716: &Security{ - SecurityId: 423486802606716, - Name: "HAUD", - Description: "iShares Currency Hedged MSCI Australia ETF", - Symbol: "HAUD", - Precision: 5, - Type: Stock, - AlternateId: "46435G607"}, - 423486802615608: &Security{ - SecurityId: 423486802615608, - Name: "IAGG", - Description: "iShares Core International Aggregate Bond ETF", - Symbol: "IAGG", - Precision: 5, - Type: Stock, - AlternateId: "46435G672"}, - 423486802653336: &Security{ - SecurityId: 423486802653336, - Name: "HEWC", - Description: "iShares Currency Hedged MSCI Canada ETF", - Symbol: "HEWC", - Precision: 5, - Type: Stock, - AlternateId: "46435G706"}, - 423486802655784: &Security{ - SecurityId: 423486802655784, - Name: "HJPX", - Description: "iShares Currency Hedged JPX-Nikkei 400 ETF", - Symbol: "HJPX", - Precision: 5, - Type: Stock, - AlternateId: "46435G722"}, - 423486802659780: &Security{ - SecurityId: 423486802659780, - Name: "IBMK", - Description: "iShares iBonds Dec 2022 AMT- Free Muni Bond ETF", - Symbol: "IBMK", - Precision: 5, - Type: Stock, - AlternateId: "46435G755"}, - 423486802663812: &Security{ - SecurityId: 423486802663812, - Name: "IBMJ", - Description: "iShares iBonds Dec 2021 AMT- Free Muni Bond ETF", - Symbol: "IBMJ", - Precision: 5, - Type: Stock, - AlternateId: "46435G789"}, - 423486802665036: &Security{ - SecurityId: 423486802665036, - Name: "HHYX", - Description: "iShares Currency Hedged International High Yield Bond ETF", - Symbol: "HHYX", - Precision: 5, - Type: Stock, - AlternateId: "46435G797"}, - 423486802699956: &Security{ - SecurityId: 423486802699956, - Name: "HEWW", - Description: "iShares Currency Hedged MSCI Mexico ETF", - Symbol: "HEWW", - Precision: 5, - Type: Stock, - AlternateId: "46435G805"}, - 423486802701180: &Security{ - SecurityId: 423486802701180, - Name: "HEWP", - Description: "iShares Currency Hedged MSCI Spain ETF", - Symbol: "HEWP", - Precision: 5, - Type: Stock, - AlternateId: "46435G813"}, - 423486802702404: &Security{ - SecurityId: 423486802702404, - Name: "HEWI", - Description: "iShares Currency Hedged MSCI Italy ETF", - Symbol: "HEWI", - Precision: 5, - Type: Stock, - AlternateId: "46435G821"}, - 423486802703988: &Security{ - SecurityId: 423486802703988, - Name: "HSCZ", - Description: "iShares Currency Hedged MSCI EAFE Small-Cap ETF", - Symbol: "HSCZ", - Precision: 5, - Type: Stock, - AlternateId: "46435G839"}, - 423486802705212: &Security{ - SecurityId: 423486802705212, - Name: "HAWX", - Description: "iShares Currency Hedged MSCI ACWI ex U.S. ETF", - Symbol: "HAWX", - Precision: 5, - Type: Stock, - AlternateId: "46435G847"}, - 423486802706400: &Security{ - SecurityId: 423486802706400, - Name: "HACW", - Description: "iShares Currency Hedged MSCI ACWI ETF", - Symbol: "HACW", - Precision: 5, - Type: Stock, - AlternateId: "46435G854"}, - 423486802707624: &Security{ - SecurityId: 423486802707624, - Name: "HEWU", - Description: "iShares Currency Hedged MSCI United Kingdom ETF", - Symbol: "HEWU", - Precision: 5, - Type: Stock, - AlternateId: "46435G862"}, - 423486802708848: &Security{ - SecurityId: 423486802708848, - Name: "HEWL", - Description: "iShares Currency Hedged MSCI Switzerland ETF", - Symbol: "HEWL", - Precision: 5, - Type: Stock, - AlternateId: "46435G870"}, - 423486802710432: &Security{ - SecurityId: 423486802710432, - Name: "HEWY", - Description: "iShares Currency Hedged MSCI South Korea ETF", - Symbol: "HEWY", - Precision: 5, - Type: Stock, - AlternateId: "46435G888"}, - 423491374288080: &Security{ - SecurityId: 423491374288080, - Name: "ISLE", - Description: "Isle of Capri Casinos, Inc.", - Symbol: "ISLE", - Precision: 5, - Type: Stock, - AlternateId: "464592104"}, - 423497953343952: &Security{ - SecurityId: 423497953343952, - Name: "ISR", - Description: "IsoRay, Inc.", - Symbol: "ISR", - Precision: 5, - Type: Stock, - AlternateId: "46489V104"}, - 423560727452376: &Security{ - SecurityId: 423560727452376, - Name: "ISRL", - Description: "Isramco, Inc.", - Symbol: "ISRL", - Precision: 5, - Type: Stock, - AlternateId: "465141406"}, - 423562697548560: &Security{ - SecurityId: 423562697548560, - Name: "ISDR", - Description: "Issuer Direct Corp.", - Symbol: "ISDR", - Precision: 5, - Type: Stock, - AlternateId: "46520M204"}, - 423569557053720: &Security{ - SecurityId: 423569557053720, - Name: "ITUB", - Description: "Itau Unibanco Holding S.A..", - Symbol: "ITUB", - Precision: 5, - Type: Stock, - AlternateId: "465562106"}, - 423571658253372: &Security{ - SecurityId: 423571658253372, - Name: "ITI", - Description: "Iteris, Inc.", - Symbol: "ITI", - Precision: 5, - Type: Stock, - AlternateId: "46564T107"}, - 423571859807220: &Security{ - SecurityId: 423571859807220, - Name: "ITC", - Description: "ITC Holdings Corp.", - Symbol: "ITC", - Precision: 5, - Type: Stock, - AlternateId: "465685105"}, - 423573788006424: &Security{ - SecurityId: 423573788006424, - Name: "ITRI", - Description: "Itron, Inc.", - Symbol: "ITRI", - Precision: 5, - Type: Stock, - AlternateId: "465741106"}, - 423576270478836: &Security{ - SecurityId: 423576270478836, - Name: "IVH", - Description: "Ivy High Income Opportunities Fund", - Symbol: "IVH", - Precision: 5, - Type: Stock, - AlternateId: "465893105"}, - 423577926580068: &Security{ - SecurityId: 423577926580068, - Name: "WYIGU", - Description: "JM Global Holding Co.", - Symbol: "WYIGU", - Precision: 5, - Type: Stock, - AlternateId: "46590H101"}, - 423636724897560: &Security{ - SecurityId: 423636724897560, - Name: "IXYS", - Description: "IXYS Corp.", - Symbol: "IXYS", - Precision: 5, - Type: Stock, - AlternateId: "46600W106"}, - 423636855907716: &Security{ - SecurityId: 423636855907716, - Name: "JJSF", - Description: "J & J Snack Foods Corp.", - Symbol: "JJSF", - Precision: 5, - Type: Stock, - AlternateId: "466032109"}, - 423637247258136: &Security{ - SecurityId: 423637247258136, - Name: "JAX", - Description: "J. Alexander’s Holdings, Inc.", - Symbol: "JAX", - Precision: 5, - Type: Stock, - AlternateId: "46609J106"}, - 423641355598656: &Security{ - SecurityId: 423641355598656, - Name: "JPM", - Description: "JPMorgan Chase & Co.", - Symbol: "JPM", - Precision: 5, - Type: Stock, - AlternateId: "46625H100"}, - 423641355699924: &Security{ - SecurityId: 423641355699924, - Name: "AMJ", - Description: "JPMorgan Alerian MLP Index ETN due 5/24/2024", - Symbol: "AMJ", - Precision: 5, - Type: Stock, - AlternateId: "46625H365"}, - 423641619298620: &Security{ - SecurityId: 423641619298620, - Name: "JMP", - Description: "JMP Group, Inc.", - Symbol: "JMP", - Precision: 5, - Type: Stock, - AlternateId: "46629U107"}, - 423643267001772: &Security{ - SecurityId: 423643267001772, - Name: "JBL", - Description: "Jabil Circuit, Inc.", - Symbol: "JBL", - Precision: 5, - Type: Stock, - AlternateId: "466313103"}, - 423643576051332: &Security{ - SecurityId: 423643576051332, - Name: "JACK", - Description: "Jack in the Box, Inc.", - Symbol: "JACK", - Precision: 5, - Type: Stock, - AlternateId: "466367109"}, - 423645482415168: &Security{ - SecurityId: 423645482415168, - Name: "JPGE", - Description: "JPMorgan Diversified Return Global Equity ETF", - Symbol: "JPGE", - Precision: 5, - Type: Stock, - AlternateId: "46641Q100"}, - 423645482462148: &Security{ - SecurityId: 423645482462148, - Name: "JPIN", - Description: "JPMorgan Diversified Return International Equity ETF", - Symbol: "JPIN", - Precision: 5, - Type: Stock, - AlternateId: "46641Q209"}, - 423645482508768: &Security{ - SecurityId: 423645482508768, - Name: "JPEM", - Description: "JPMorgan Diversified Return Emerging Markets Equity ETF", - Symbol: "JPEM", - Precision: 5, - Type: Stock, - AlternateId: "46641Q308"}, - 423645482555388: &Security{ - SecurityId: 423645482555388, - Name: "JPUS", - Description: "JPMorgan Diversified Return U.S. Equity ETF", - Symbol: "JPUS", - Precision: 5, - Type: Stock, - AlternateId: "46641Q407"}, - 423645482648628: &Security{ - SecurityId: 423645482648628, - Name: "JPEU", - Description: "JPMorgan Diversified Return Europe Equity ETF", - Symbol: "JPEU", - Precision: 5, - Type: Stock, - AlternateId: "46641Q605"}, - 423645579833220: &Security{ - SecurityId: 423645579833220, - Name: "JPEP", - Description: "JP Energy Partners LP (Units)", - Symbol: "JPEP", - Precision: 5, - Type: Stock, - AlternateId: "46643C109"}, - 423876404421144: &Security{ - SecurityId: 423876404421144, - Name: "JXSB", - Description: "Jacksonville Bancorp. Inc.", - Symbol: "JXSB", - Precision: 5, - Type: Stock, - AlternateId: "46924R106"}, - 423876374234676: &Security{ - SecurityId: 423876374234676, - Name: "JAXB", - Description: "Jacksonville Bancorp, Inc. (FL)", - Symbol: "JAXB", - Precision: 5, - Type: Stock, - AlternateId: "469249205"}, - 423889245085500: &Security{ - SecurityId: 423889245085500, - Name: "JEC", - Description: "Jacobs Engineering Group, Inc.", - Symbol: "JEC", - Precision: 5, - Type: Stock, - AlternateId: "469814107"}, - 425988115074072: &Security{ - SecurityId: 425988115074072, - Name: "JAGX", - Description: "Jaguar Animal Health, Inc.", - Symbol: "JAGX", - Precision: 5, - Type: Stock, - AlternateId: "47008L106"}, - 425989917302040: &Security{ - SecurityId: 425989917302040, - Name: "JAKK", - Description: "JAKKS Pacific, Inc.", - Symbol: "JAKK", - Precision: 5, - Type: Stock, - AlternateId: "47012E106"}, - 425992147925508: &Security{ - SecurityId: 425992147925508, - Name: "JMBA", - Description: "Jamba, Inc.", - Symbol: "JMBA", - Precision: 5, - Type: Stock, - AlternateId: "47023A309"}, - 425992508949600: &Security{ - SecurityId: 425992508949600, - Name: "BOTJ", - Description: "Bank of the James Financial Group, Inc.", - Symbol: "BOTJ", - Precision: 5, - Type: Stock, - AlternateId: "470299108"}, - 425994163371288: &Security{ - SecurityId: 425994163371288, - Name: "JHX", - Description: "James Hardie Industries plc ADR", - Symbol: "JHX", - Precision: 5, - Type: Stock, - AlternateId: "47030M106"}, - 426066136596468: &Security{ - SecurityId: 426066136596468, - Name: "JNS", - Description: "Janus Capital Group, Inc.", - Symbol: "JNS", - Precision: 5, - Type: Stock, - AlternateId: "47102X105"}, - 426068152135776: &Security{ - SecurityId: 426068152135776, - Name: "JAH", - Description: "Jarden Corp.", - Symbol: "JAH", - Precision: 5, - Type: Stock, - AlternateId: "471109108"}, - 426068563641624: &Security{ - SecurityId: 426068563641624, - Name: "JASN", - Description: "Jason Industries, Inc.", - Symbol: "JASN", - Precision: 5, - Type: Stock, - AlternateId: "471172106"}, - 426144342876624: &Security{ - SecurityId: 426144342876624, - Name: "JMI", - Description: "JAVELIN Mortgage Investment Corp.", - Symbol: "JMI", - Precision: 5, - Type: Stock, - AlternateId: "47200B104"}, - 426146845504536: &Security{ - SecurityId: 426146845504536, - Name: "JD", - Description: "JD.com, Inc.", - Symbol: "JD", - Precision: 5, - Type: Stock, - AlternateId: "47215P106"}, - 426466496584692: &Security{ - SecurityId: 426466496584692, - Name: "JCAP", - Description: "Jernigan Capital, Inc.", - Symbol: "JCAP", - Precision: 5, - Type: Stock, - AlternateId: "476405105"}, - 426538568907108: &Security{ - SecurityId: 426538568907108, - Name: "JBLU", - Description: "JetBlue Airways Corp.", - Symbol: "JBLU", - Precision: 5, - Type: Stock, - AlternateId: "477143101"}, - 426542877169020: &Security{ - SecurityId: 426542877169020, - Name: "JCTCF", - Description: "Jewett-Cameron Trading Co. Ltd", - Symbol: "JCTCF", - Precision: 5, - Type: Stock, - AlternateId: "47733C207"}, - 426543105549960: &Security{ - SecurityId: 426543105549960, - Name: "DATE", - Description: "Jiayuan.com International Ltd ADR", - Symbol: "DATE", - Precision: 5, - Type: Stock, - AlternateId: "477374102"}, - 426547622037312: &Security{ - SecurityId: 426547622037312, - Name: "JKS", - Description: "JinkoSolar Holding Co. Ltd", - Symbol: "JKS", - Precision: 5, - Type: Stock, - AlternateId: "47759T100"}, - 426549222711648: &Security{ - SecurityId: 426549222711648, - Name: "JIVE", - Description: "Jive Software, Inc.", - Symbol: "JIVE", - Precision: 5, - Type: Stock, - AlternateId: "47760A108"}, - 426551844591972: &Security{ - SecurityId: 426551844591972, - Name: "JOEZ", - Description: "Joe's Jeans, Inc.", - Symbol: "JOEZ", - Precision: 5, - Type: Stock, - AlternateId: "47777N101"}, - 426553755995088: &Security{ - SecurityId: 426553755995088, - Name: "JBT", - Description: "John Bean Technologies Corp. (JBT)", - Symbol: "JBT", - Precision: 5, - Type: Stock, - AlternateId: "477839104"}, - 426614783162940: &Security{ - SecurityId: 426614783162940, - Name: "JHML", - Description: "John Hancock Multifactor Large Cap ETF", - Symbol: "JHML", - Precision: 5, - Type: Stock, - AlternateId: "47804J107"}, - 426614783209560: &Security{ - SecurityId: 426614783209560, - Name: "JHMM", - Description: "John Hancock Multifactor Mid Cap ETF", - Symbol: "JHMM", - Precision: 5, - Type: Stock, - AlternateId: "47804J206"}, - 426614783256180: &Security{ - SecurityId: 426614783256180, - Name: "JHMC", - Description: "John Hancock Multifactor Consumer Discretionary ETF", - Symbol: "JHMC", - Precision: 5, - Type: Stock, - AlternateId: "47804J305"}, - 426614783302800: &Security{ - SecurityId: 426614783302800, - Name: "JHMF", - Description: "John Hancock Multifactor Financials ETF", - Symbol: "JHMF", - Precision: 5, - Type: Stock, - AlternateId: "47804J404"}, - 426614783349420: &Security{ - SecurityId: 426614783349420, - Name: "JHMH", - Description: "John Hancock Multifactor Healthcare ETF", - Symbol: "JHMH", - Precision: 5, - Type: Stock, - AlternateId: "47804J503"}, - 426614783396040: &Security{ - SecurityId: 426614783396040, - Name: "JHMT", - Description: "John Hancock Multifactor Technology ETF", - Symbol: "JHMT", - Precision: 5, - Type: Stock, - AlternateId: "47804J602"}, - 426614786521992: &Security{ - SecurityId: 426614786521992, - Name: "HEQ", - Description: "John Hancock Hedged Equity & Income Fund", - Symbol: "HEQ", - Precision: 5, - Type: Stock, - AlternateId: "47804L102"}, - 426617048964816: &Security{ - SecurityId: 426617048964816, - Name: "JNJ", - Description: "Johnson & Johnson", - Symbol: "JNJ", - Precision: 5, - Type: Stock, - AlternateId: "478160104"}, - 426621412607292: &Security{ - SecurityId: 426621412607292, - Name: "JCI", - Description: "Johnson Controls, Inc.", - Symbol: "JCI", - Precision: 5, - Type: Stock, - AlternateId: "478366107"}, - 426695424886368: &Security{ - SecurityId: 426695424886368, - Name: "JOUT", - Description: "Johnson Outdoors, Inc.", - Symbol: "JOUT", - Precision: 5, - Type: Stock, - AlternateId: "479167108"}, - 426708324337032: &Security{ - SecurityId: 426708324337032, - Name: "JYNT", - Description: "Joint Corp. (The)", - Symbol: "JYNT", - Precision: 5, - Type: Stock, - AlternateId: "47973J102"}, - 428811472307808: &Security{ - SecurityId: 428811472307808, - Name: "JONE", - Description: "Jones Energy, Inc.", - Symbol: "JONE", - Precision: 5, - Type: Stock, - AlternateId: "48019R108"}, - 428813103214908: &Security{ - SecurityId: 428813103214908, - Name: "JLL", - Description: "Jones Lang LaSalle, Inc.", - Symbol: "JLL", - Precision: 5, - Type: Stock, - AlternateId: "48020Q107"}, - 428889505587588: &Security{ - SecurityId: 428889505587588, - Name: "JMG", - Description: "Journal Media Group, Inc.", - Symbol: "JMG", - Precision: 5, - Type: Stock, - AlternateId: "48114A109"}, - 428889618121824: &Security{ - SecurityId: 428889618121824, - Name: "JOY", - Description: "Joy Global, Inc.", - Symbol: "JOY", - Precision: 5, - Type: Stock, - AlternateId: "481165108"}, - 428894119492668: &Security{ - SecurityId: 428894119492668, - Name: "JMEI", - Description: "Jumei International Holding Ltd.", - Symbol: "JMEI", - Precision: 5, - Type: Stock, - AlternateId: "48138L107"}, - 428965650978876: &Security{ - SecurityId: 428965650978876, - Name: "JNP", - Description: "Juniper Pharmaceuticals, Inc.", - Symbol: "JNP", - Precision: 5, - Type: Stock, - AlternateId: "48203L107"}, - 428965661056464: &Security{ - SecurityId: 428965661056464, - Name: "JNPR", - Description: "Juniper Networks, Inc.", - Symbol: "JNPR", - Precision: 5, - Type: Stock, - AlternateId: "48203R104"}, - 428965753435524: &Security{ - SecurityId: 428965753435524, - Name: "JUNO", - Description: "Juno Therapeutics, Inc.", - Symbol: "JUNO", - Precision: 5, - Type: Stock, - AlternateId: "48205A109"}, - 428965755115068: &Security{ - SecurityId: 428965755115068, - Name: "JP", - Description: "Jupai Holdings Ltd.", - Symbol: "JP", - Precision: 5, - Type: Stock, - AlternateId: "48205B107"}, - 428967846236772: &Security{ - SecurityId: 428967846236772, - Name: "JE", - Description: "Just Energy Group, Inc.", - Symbol: "JE", - Precision: 5, - Type: Stock, - AlternateId: "48213W101"}, - 428972497093764: &Security{ - SecurityId: 428972497093764, - Name: "KAR", - Description: "KAR Auction Services, Inc.", - Symbol: "KAR", - Precision: 5, - Type: Stock, - AlternateId: "48238T109"}, - 428974218700020: &Security{ - SecurityId: 428974218700020, - Name: "KB", - Description: "KB Financial Group, Inc. ADR", - Symbol: "KB", - Precision: 5, - Type: Stock, - AlternateId: "48241A105"}, - 428974316117784: &Security{ - SecurityId: 428974316117784, - Name: "KBR", - Description: "KBR, Inc.", - Symbol: "KBR", - Precision: 5, - Type: Stock, - AlternateId: "48242W106"}, - 428974401777984: &Security{ - SecurityId: 428974401777984, - Name: "KCG", - Description: "KCG Holdings, Inc.", - Symbol: "KCG", - Precision: 5, - Type: Stock, - AlternateId: "48244B100"}, - 428974662118536: &Security{ - SecurityId: 428974662118536, - Name: "KKR", - Description: "KKR & Co. L.P.", - Symbol: "KKR", - Precision: 5, - Type: Stock, - AlternateId: "48248M102"}, - 428974625166912: &Security{ - SecurityId: 428974625166912, - Name: "KLAC", - Description: "KLA-Tencor Corp.", - Symbol: "KLAC", - Precision: 5, - Type: Stock, - AlternateId: "482480100"}, - 428974734342168: &Security{ - SecurityId: 428974734342168, - Name: "KIO", - Description: "KKR Income Opportunities Fund", - Symbol: "KIO", - Precision: 5, - Type: Stock, - AlternateId: "48249T106"}, - 428976514735020: &Security{ - SecurityId: 428976514735020, - Name: "KLXI", - Description: "KLX, Inc.", - Symbol: "KLXI", - Precision: 5, - Type: Stock, - AlternateId: "482539103"}, - 428976687735396: &Security{ - SecurityId: 428976687735396, - Name: "KMG", - Description: "KMG Chemicals, Inc.", - Symbol: "KMG", - Precision: 5, - Type: Stock, - AlternateId: "482564101"}, - 428979012323940: &Security{ - SecurityId: 428979012323940, - Name: "KT", - Description: "KT Corp. ADR", - Symbol: "KT", - Precision: 5, - Type: Stock, - AlternateId: "48268K101"}, - 428980885095996: &Security{ - SecurityId: 428980885095996, - Name: "KTWO", - Description: "K2M Group Holdings, Inc.", - Symbol: "KTWO", - Precision: 5, - Type: Stock, - AlternateId: "48273J107"}, - 428980903571592: &Security{ - SecurityId: 428980903571592, - Name: "LRN", - Description: "K12, Inc.", - Symbol: "LRN", - Precision: 5, - Type: Stock, - AlternateId: "48273U102"}, - 428980866620004: &Security{ - SecurityId: 428980866620004, - Name: "KVHI", - Description: "KVH Industries, Inc.", - Symbol: "KVHI", - Precision: 5, - Type: Stock, - AlternateId: "482738101"}, - 428983018208208: &Security{ - SecurityId: 428983018208208, - Name: "KAI", - Description: "Kadant, Inc.", - Symbol: "KAI", - Precision: 5, - Type: Stock, - AlternateId: "48282T104"}, - 429043810509648: &Security{ - SecurityId: 429043810509648, - Name: "KALU", - Description: "Kaiser Aluminum Corp.", - Symbol: "KALU", - Precision: 5, - Type: Stock, - AlternateId: "483007704"}, - 429052796222148: &Security{ - SecurityId: 429052796222148, - Name: "KBIOQ", - Description: "KaloBios Pharmaceuticals, Inc.", - Symbol: "KBIOQ", - Precision: 5, - Type: Stock, - AlternateId: "48344T209"}, - 429054937685676: &Security{ - SecurityId: 429054937685676, - Name: "KAMN", - Description: "Kaman Corp.", - Symbol: "KAMN", - Precision: 5, - Type: Stock, - AlternateId: "483548103"}, - 429059051065188: &Security{ - SecurityId: 429059051065188, - Name: "KNDI", - Description: "Kandi Technologies Group, Inc.", - Symbol: "KNDI", - Precision: 5, - Type: Stock, - AlternateId: "483709101"}, - 429139768417920: &Security{ - SecurityId: 429139768417920, - Name: "KCLI", - Description: "Kansas City Life Insurance Co.", - Symbol: "KCLI", - Precision: 5, - Type: Stock, - AlternateId: "484836200"}, - 429203126939400: &Security{ - SecurityId: 429203126939400, - Name: "KSU", - Description: "Kansas City Southern", - Symbol: "KSU", - Precision: 5, - Type: Stock, - AlternateId: "485170302"}, - 429213750417324: &Security{ - SecurityId: 429213750417324, - Name: "KS", - Description: "KapStone Paper and Packaging Corp.", - Symbol: "KS", - Precision: 5, - Type: Stock, - AlternateId: "48562P103"}, - 429216177462552: &Security{ - SecurityId: 429216177462552, - Name: "KPTI", - Description: "Karyopharm Therapeutics, Inc.", - Symbol: "KPTI", - Precision: 5, - Type: Stock, - AlternateId: "48576U106"}, - 429218312254596: &Security{ - SecurityId: 429218312254596, - Name: "KATE", - Description: "Kate Spade & Company", - Symbol: "KATE", - Precision: 5, - Type: Stock, - AlternateId: "485865109"}, - 429291993649104: &Security{ - SecurityId: 429291993649104, - Name: "KYE", - Description: "Kayne Anderson Energy Total Return Fund", - Symbol: "KYE", - Precision: 5, - Type: Stock, - AlternateId: "48660P104"}, - 429291995328648: &Security{ - SecurityId: 429291995328648, - Name: "KED", - Description: "Kayne Anderson Energy Development Co.", - Symbol: "KED", - Precision: 5, - Type: Stock, - AlternateId: "48660Q102"}, - 429291961736472: &Security{ - SecurityId: 429291961736472, - Name: "KYN", - Description: "Kayne Anderson MLP Investment Co.", - Symbol: "KYN", - Precision: 5, - Type: Stock, - AlternateId: "486606106"}, - 429292035639648: &Security{ - SecurityId: 429292035639648, - Name: "KMF", - Description: "Kayne Anderson Midstream/Energy Fund", - Symbol: "KMF", - Precision: 5, - Type: Stock, - AlternateId: "48661E108"}, - 429292348048260: &Security{ - SecurityId: 429292348048260, - Name: "KBH", - Description: "KB Home", - Symbol: "KBH", - Precision: 5, - Type: Stock, - AlternateId: "48666K109"}, - 429374860863840: &Security{ - SecurityId: 429374860863840, - Name: "K", - Description: "Kellogg Co.", - Symbol: "K", - Precision: 5, - Type: Stock, - AlternateId: "487836108"}, - 429438101812128: &Security{ - SecurityId: 429438101812128, - Name: "KELYA", - Description: "Kelly Services, Inc. Cl A", - Symbol: "KELYA", - Precision: 5, - Type: Stock, - AlternateId: "488152208"}, - 429438101858748: &Security{ - SecurityId: 429438101858748, - Name: "KELYB", - Description: "Kelly Services, Inc. Cl B", - Symbol: "KELYB", - Precision: 5, - Type: Stock, - AlternateId: "488152307"}, - 429442512483708: &Security{ - SecurityId: 429442512483708, - Name: "KEM", - Description: "KEMET Corp.", - Symbol: "KEM", - Precision: 5, - Type: Stock, - AlternateId: "488360207"}, - 429444576685116: &Security{ - SecurityId: 429444576685116, - Name: "KMPH", - Description: "KemPharm, Inc.", - Symbol: "KMPH", - Precision: 5, - Type: Stock, - AlternateId: "488445107"}, - 429516583502400: &Security{ - SecurityId: 429516583502400, - Name: "KMT", - Description: "Kennametal, Inc.", - Symbol: "KMT", - Precision: 5, - Type: Stock, - AlternateId: "489170100"}, - 429521071436604: &Security{ - SecurityId: 429521071436604, - Name: "KW", - Description: "Kennedy-Wilson Holdings, Inc.", - Symbol: "KW", - Precision: 5, - Type: Stock, - AlternateId: "489398107"}, - 431713081171296: &Security{ - SecurityId: 431713081171296, - Name: "KFFB", - Description: "Kentucky First Federal Bancorp", - Symbol: "KFFB", - Precision: 5, - Type: Stock, - AlternateId: "491292108"}, - 431797496991588: &Security{ - SecurityId: 431797496991588, - Name: "KERX", - Description: "Keryx Biopharmaceuticals, Inc.", - Symbol: "KERX", - Precision: 5, - Type: Stock, - AlternateId: "492515101"}, - 431801879109696: &Security{ - SecurityId: 431801879109696, - Name: "GMCR", - Description: "Keurig Green Mountain, Inc.", - Symbol: "GMCR", - Precision: 5, - Type: Stock, - AlternateId: "49271M100"}, - 431804267523792: &Security{ - SecurityId: 431804267523792, - Name: "KEQU", - Description: "Kewaunee Scientific Corp.", - Symbol: "KEQU", - Precision: 5, - Type: Stock, - AlternateId: "492854104"}, - 431806202441496: &Security{ - SecurityId: 431806202441496, - Name: "KEG", - Description: "Key Energy Services, Inc.", - Symbol: "KEG", - Precision: 5, - Type: Stock, - AlternateId: "492914106"}, - 431867332065636: &Security{ - SecurityId: 431867332065636, - Name: "KTEC", - Description: "Key Technology, Inc.", - Symbol: "KTEC", - Precision: 5, - Type: Stock, - AlternateId: "493143101"}, - 431867333745540: &Security{ - SecurityId: 431867333745540, - Name: "KTCC", - Description: "Key Tronic Corp.", - Symbol: "KTCC", - Precision: 5, - Type: Stock, - AlternateId: "493144109"}, - 431869636499040: &Security{ - SecurityId: 431869636499040, - Name: "KEY", - Description: "KeyCorp, Inc.", - Symbol: "KEY", - Precision: 5, - Type: Stock, - AlternateId: "493267108"}, - 431869636638900: &Security{ - SecurityId: 431869636638900, - Name: "KEY-G", - Description: "KeyCorp Inc., 7.750% Non-Cumulative Perp Convertible Preferred Stock, Series A", - Symbol: "KEY-G", - Precision: 5, - Type: Stock, - AlternateId: "493267405"}, - 431871957728172: &Security{ - SecurityId: 431871957728172, - Name: "KEYS", - Description: "Keysight Technologies, Inc.", - Symbol: "KEYS", - Precision: 5, - Type: Stock, - AlternateId: "49338L103"}, - 431880271827264: &Security{ - SecurityId: 431880271827264, - Name: "KEYW", - Description: "KEYW Holding Corp. (The)", - Symbol: "KEYW", - Precision: 5, - Type: Stock, - AlternateId: "493723100"}, - 431880330613860: &Security{ - SecurityId: 431880330613860, - Name: "KFRC", - Description: "Kforce, Inc.", - Symbol: "KFRC", - Precision: 5, - Type: Stock, - AlternateId: "493732101"}, - 431948074566240: &Security{ - SecurityId: 431948074566240, - Name: "KRC", - Description: "Kilroy Realty Corp.", - Symbol: "KRC", - Precision: 5, - Type: Stock, - AlternateId: "49427F108"}, - 431948056090284: &Security{ - SecurityId: 431948056090284, - Name: "KBAL", - Description: "Kimball Intl, Inc.", - Symbol: "KBAL", - Precision: 5, - Type: Stock, - AlternateId: "494274103"}, - 431948141750916: &Security{ - SecurityId: 431948141750916, - Name: "KE", - Description: "Kimball Electronics, Inc.", - Symbol: "KE", - Precision: 5, - Type: Stock, - AlternateId: "49428J109"}, - 431950179124908: &Security{ - SecurityId: 431950179124908, - Name: "KMB", - Description: "Kimberly-Clark Corp.", - Symbol: "KMB", - Precision: 5, - Type: Stock, - AlternateId: "494368103"}, - 431952387820164: &Security{ - SecurityId: 431952387820164, - Name: "KIM", - Description: "Kimco Realty Corp.", - Symbol: "KIM", - Precision: 5, - Type: Stock, - AlternateId: "49446R109"}, - 431954537728356: &Security{ - SecurityId: 431954537728356, - Name: "KMI", - Description: "Kinder Morgan, Inc.", - Symbol: "KMI", - Precision: 5, - Type: Stock, - AlternateId: "49456B101"}, - 431954591476356: &Security{ - SecurityId: 431954591476356, - Name: "KIN", - Description: "Kindred Biosciences, Inc.", - Symbol: "KIN", - Precision: 5, - Type: Stock, - AlternateId: "494577109"}, - 431954640185004: &Security{ - SecurityId: 431954640185004, - Name: "KND", - Description: "Kindred Healthcare, Inc.", - Symbol: "KND", - Precision: 5, - Type: Stock, - AlternateId: "494580103"}, - 432037435222800: &Security{ - SecurityId: 432037435222800, - Name: "KGJI", - Description: "Kingold Jewelry, Inc.", - Symbol: "KGJI", - Precision: 5, - Type: Stock, - AlternateId: "49579A204"}, - 432119595412368: &Security{ - SecurityId: 432119595412368, - Name: "KGC", - Description: "Kinross Gold Corp.", - Symbol: "KGC", - Precision: 5, - Type: Stock, - AlternateId: "496902404"}, - 432183091475736: &Security{ - SecurityId: 432183091475736, - Name: "KEX", - Description: "Kirby Corp.", - Symbol: "KEX", - Precision: 5, - Type: Stock, - AlternateId: "497266106"}, - 432187629798132: &Security{ - SecurityId: 432187629798132, - Name: "KIRK", - Description: "Kirkland's, Inc.", - Symbol: "KIRK", - Precision: 5, - Type: Stock, - AlternateId: "497498105"}, - 432256945870980: &Security{ - SecurityId: 432256945870980, - Name: "KITE", - Description: "Kite Pharma, Inc.", - Symbol: "KITE", - Precision: 5, - Type: Stock, - AlternateId: "49803L109"}, - 432256959400896: &Security{ - SecurityId: 432256959400896, - Name: "KRG", - Description: "Kite Realty Group Trust", - Symbol: "KRG", - Precision: 5, - Type: Stock, - AlternateId: "49803T300"}, - 432256962667068: &Security{ - SecurityId: 432256962667068, - Name: "KTOV", - Description: "Kitov Pharamceuticals Holdings Ltd.", - Symbol: "KTOV", - Precision: 5, - Type: Stock, - AlternateId: "49803V107"}, - 432270344167596: &Security{ - SecurityId: 432270344167596, - Name: "KLDX", - Description: "Klondex Mines Ltd.", - Symbol: "KLDX", - Precision: 5, - Type: Stock, - AlternateId: "498696103"}, - 432276327006336: &Security{ - SecurityId: 432276327006336, - Name: "KNL", - Description: "Knoll, Inc.", - Symbol: "KNL", - Precision: 5, - Type: Stock, - AlternateId: "498904200"}, - 432335462879916: &Security{ - SecurityId: 432335462879916, - Name: "KNX", - Description: "Knight Transportation, Inc.", - Symbol: "KNX", - Precision: 5, - Type: Stock, - AlternateId: "499064103"}, - 432339831561348: &Security{ - SecurityId: 432339831561348, - Name: "KN", - Description: "Knowles Corp.", - Symbol: "KN", - Precision: 5, - Type: Stock, - AlternateId: "49926D109"}, - 507804447682512: &Security{ - SecurityId: 507804447682512, - Name: "KSS", - Description: "Kohl's Corp.", - Symbol: "KSS", - Precision: 5, - Type: Stock, - AlternateId: "500255104"}, - 507808942381476: &Security{ - SecurityId: 507808942381476, - Name: "KONA", - Description: "Kona Grill, Inc.", - Symbol: "KONA", - Precision: 5, - Type: Stock, - AlternateId: "50047H201"}, - 507808955771856: &Security{ - SecurityId: 507808955771856, - Name: "KZ", - Description: "KongZhong Corp.", - Symbol: "KZ", - Precision: 5, - Type: Stock, - AlternateId: "50047P104"}, - 507812886073368: &Security{ - SecurityId: 507812886073368, - Name: "KOP", - Description: "Koppers Holdings, Inc.", - Symbol: "KOP", - Precision: 5, - Type: Stock, - AlternateId: "50060P106"}, - 507812844082788: &Security{ - SecurityId: 507812844082788, - Name: "KOPN", - Description: "Kopin Corp.", - Symbol: "KOPN", - Precision: 5, - Type: Stock, - AlternateId: "500600101"}, - 507813043957200: &Security{ - SecurityId: 507813043957200, - Name: "KEF", - Description: "Korea Equity Fund, Inc.", - Symbol: "KEF", - Precision: 5, - Type: Stock, - AlternateId: "50063B104"}, - 507813091032960: &Security{ - SecurityId: 507813091032960, - Name: "KFY", - Description: "Korn/Ferry Intl", - Symbol: "KFY", - Precision: 5, - Type: Stock, - AlternateId: "500643200"}, - 507813391637856: &Security{ - SecurityId: 507813391637856, - Name: "KOSS", - Description: "Koss Corp.", - Symbol: "KOSS", - Precision: 5, - Type: Stock, - AlternateId: "500692108"}, - 507815329914648: &Security{ - SecurityId: 507815329914648, - Name: "KHC", - Description: "Kraft Heinz Company (The)", - Symbol: "KHC", - Precision: 5, - Type: Stock, - AlternateId: "500754106"}, - 507815395466364: &Security{ - SecurityId: 507815395466364, - Name: "KFYP", - Description: "KraneShares CSI New China ETF", - Symbol: "KFYP", - Precision: 5, - Type: Stock, - AlternateId: "500767207"}, - 507815395512984: &Security{ - SecurityId: 507815395512984, - Name: "KWEB", - Description: "KraneShares CSI China Internet ETF", - Symbol: "KWEB", - Precision: 5, - Type: Stock, - AlternateId: "500767306"}, - 507815395559604: &Security{ - SecurityId: 507815395559604, - Name: "KBA", - Description: "KraneShares Bosera MSCI China A ETF", - Symbol: "KBA", - Precision: 5, - Type: Stock, - AlternateId: "500767405"}, - 507815395699464: &Security{ - SecurityId: 507815395699464, - Name: "KCNY", - Description: "KraneShares E Fund China Commercial Paper ETF", - Symbol: "KCNY", - Precision: 5, - Type: Stock, - AlternateId: "500767702"}, - 507815462651004: &Security{ - SecurityId: 507815462651004, - Name: "KTOS", - Description: "Krause Defense & Security Solutions, Inc.", - Symbol: "KTOS", - Precision: 5, - Type: Stock, - AlternateId: "50077B207"}, - 507815464283928: &Security{ - SecurityId: 507815464283928, - Name: "KRA", - Description: "Kraton Performance Polymers, Inc.", - Symbol: "KRA", - Precision: 5, - Type: Stock, - AlternateId: "50077C106"}, - 507878214737616: &Security{ - SecurityId: 507878214737616, - Name: "KKD", - Description: "Krispy Kreme Doughnuts, Inc.", - Symbol: "KKD", - Precision: 5, - Type: Stock, - AlternateId: "501014104"}, - 507878396136036: &Security{ - SecurityId: 507878396136036, - Name: "KR", - Description: "Kroger Co. (The)", - Symbol: "KR", - Precision: 5, - Type: Stock, - AlternateId: "501044101"}, - 507878475078132: &Security{ - SecurityId: 507878475078132, - Name: "KRO", - Description: "Kronos Worldwide, Inc.", - Symbol: "KRO", - Precision: 5, - Type: Stock, - AlternateId: "50105F105"}, - 507882746341476: &Security{ - SecurityId: 507882746341476, - Name: "KLIC", - Description: "Kulicke & Soffa Industries, Inc.", - Symbol: "KLIC", - Precision: 5, - Type: Stock, - AlternateId: "501242101"}, - 507882973089924: &Security{ - SecurityId: 507882973089924, - Name: "KURA", - Description: "Kura Oncology, Inc.", - Symbol: "KURA", - Precision: 5, - Type: Stock, - AlternateId: "50127T109"}, - 507889343919852: &Security{ - SecurityId: 507889343919852, - Name: "KYO", - Description: "Kyocera Corp. ADR", - Symbol: "KYO", - Precision: 5, - Type: Stock, - AlternateId: "501556203"}, - 507895664268096: &Security{ - SecurityId: 507895664268096, - Name: "LCNB", - Description: "LCNB Corp.", - Symbol: "LCNB", - Precision: 5, - Type: Stock, - AlternateId: "50181P100"}, - 507895914531060: &Security{ - SecurityId: 507895914531060, - Name: "LDRH", - Description: "LDR Holding Corp.", - Symbol: "LDRH", - Precision: 5, - Type: Stock, - AlternateId: "50185U105"}, - 507895941405024: &Security{ - SecurityId: 507895941405024, - Name: "LGL", - Description: "LGL Group, Inc. (The)", - Symbol: "LGL", - Precision: 5, - Type: Stock, - AlternateId: "50186A108"}, - 507895976676744: &Security{ - SecurityId: 507895976676744, - Name: "LPL", - Description: "LG Display Co. Ltd ADR", - Symbol: "LPL", - Precision: 5, - Type: Stock, - AlternateId: "50186V102"}, - 507896001871164: &Security{ - SecurityId: 507896001871164, - Name: "LHCG", - Description: "LHC Group", - Symbol: "LHCG", - Precision: 5, - Type: Stock, - AlternateId: "50187A107"}, - 507896016987744: &Security{ - SecurityId: 507896016987744, - Name: "LEJU", - Description: "Leju Holdings Ltd.", - Symbol: "LEJU", - Precision: 5, - Type: Stock, - AlternateId: "50187J108"}, - 507896033783832: &Security{ - SecurityId: 507896033783832, - Name: "LGIH", - Description: "LGI Homes, Inc.", - Symbol: "LGIH", - Precision: 5, - Type: Stock, - AlternateId: "50187T106"}, - 507896060704416: &Security{ - SecurityId: 507896060704416, - Name: "LKQ", - Description: "LKQ Corp.", - Symbol: "LKQ", - Precision: 5, - Type: Stock, - AlternateId: "501889208"}, - 507956941698876: &Security{ - SecurityId: 507956941698876, - Name: "LMFA", - Description: "LM Funding America, Inc.", - Symbol: "LMFA", - Precision: 5, - Type: Stock, - AlternateId: "502074107"}, - 507956950096920: &Security{ - SecurityId: 507956950096920, - Name: "LMIA", - Description: "LMI Aerospace, Inc.", - Symbol: "LMIA", - Precision: 5, - Type: Stock, - AlternateId: "502079106"}, - 507957012242568: &Security{ - SecurityId: 507957012242568, - Name: "SCD", - Description: "LMP Capital and Income Fund, Inc.", - Symbol: "SCD", - Precision: 5, - Type: Stock, - AlternateId: "50208A102"}, - 507957013922112: &Security{ - SecurityId: 507957013922112, - Name: "TLI", - Description: "LMP Corporate Loan Fund", - Symbol: "TLI", - Precision: 5, - Type: Stock, - AlternateId: "50208B100"}, - 507957015602016: &Security{ - SecurityId: 507957015602016, - Name: "RIT", - Description: "LMP Real Estate Income Fund", - Symbol: "RIT", - Precision: 5, - Type: Stock, - AlternateId: "50208C108"}, - 507958861499712: &Security{ - SecurityId: 507958861499712, - Name: "LPLA", - Description: "LPL Financial Holdings Inc.", - Symbol: "LPLA", - Precision: 5, - Type: Stock, - AlternateId: "50212V100"}, - 507958921966212: &Security{ - SecurityId: 507958921966212, - Name: "LRAD", - Description: "LRAD Corp.", - Symbol: "LRAD", - Precision: 5, - Type: Stock, - AlternateId: "50213V109"}, - 507959071452000: &Security{ - SecurityId: 507959071452000, - Name: "LYTS", - Description: "LSI Industries, Inc.", - Symbol: "LYTS", - Precision: 5, - Type: Stock, - AlternateId: "50216C108"}, - 507959051296464: &Security{ - SecurityId: 507959051296464, - Name: "LXU", - Description: "LSB Industries, Inc.", - Symbol: "LXU", - Precision: 5, - Type: Stock, - AlternateId: "502160104"}, - 507959120160648: &Security{ - SecurityId: 507959120160648, - Name: "LTC", - Description: "LTC Properties, Inc.", - Symbol: "LTC", - Precision: 5, - Type: Stock, - AlternateId: "502175102"}, - 507965346497232: &Security{ - SecurityId: 507965346497232, - Name: "LLL", - Description: "L-3 Communications Holdings, Inc.", - Symbol: "LLL", - Precision: 5, - Type: Stock, - AlternateId: "502424104"}, - 508117615445088: &Security{ - SecurityId: 508117615445088, - Name: "LQ", - Description: "La Quinta Holdings, Inc.", - Symbol: "LQ", - Precision: 5, - Type: Stock, - AlternateId: "50420D108"}, - 508198326032700: &Security{ - SecurityId: 508198326032700, - Name: "LZB", - Description: "La-Z-Boy, Inc.", - Symbol: "LZB", - Precision: 5, - Type: Stock, - AlternateId: "505336107"}, - 508200356828484: &Security{ - SecurityId: 508200356828484, - Name: "LH", - Description: "Laboratory Corp. of America Holdings", - Symbol: "LH", - Precision: 5, - Type: Stock, - AlternateId: "50540R409"}, - 508203044073936: &Security{ - SecurityId: 508203044073936, - Name: "LG", - Description: "Laclede Group, Inc. (The)", - Symbol: "LG", - Precision: 5, - Type: Stock, - AlternateId: "505597104"}, - 508207088589264: &Security{ - SecurityId: 508207088589264, - Name: "LADR", - Description: "Ladder Capital Corp.", - Symbol: "LADR", - Precision: 5, - Type: Stock, - AlternateId: "505743104"}, - 508207187686536: &Security{ - SecurityId: 508207187686536, - Name: "LTS", - Description: "Ladenburg Thalmann Financial Services, Inc.", - Symbol: "LTS", - Precision: 5, - Type: Stock, - AlternateId: "50575Q102"}, - 510636265142112: &Security{ - SecurityId: 510636265142112, - Name: "LSG", - Description: "Lake Shore Gold Corp.", - Symbol: "LSG", - Precision: 5, - Type: Stock, - AlternateId: "510728108"}, - 510712511310144: &Security{ - SecurityId: 510712511310144, - Name: "LBAI", - Description: "Lakeland Bancorp, Inc.", - Symbol: "LBAI", - Precision: 5, - Type: Stock, - AlternateId: "511637100"}, - 510712630562880: &Security{ - SecurityId: 510712630562880, - Name: "LKFN", - Description: "Lakeland Financial Corp.", - Symbol: "LKFN", - Precision: 5, - Type: Stock, - AlternateId: "511656100"}, - 510715047530520: &Security{ - SecurityId: 510715047530520, - Name: "LAKE", - Description: "Lakeland Industries, Inc.", - Symbol: "LAKE", - Precision: 5, - Type: Stock, - AlternateId: "511795106"}, - 510795047640672: &Security{ - SecurityId: 510795047640672, - Name: "LRCX", - Description: "Lam Research Corp.", - Symbol: "LRCX", - Precision: 5, - Type: Stock, - AlternateId: "512807108"}, - 510873653669292: &Security{ - SecurityId: 510873653669292, - Name: "LANC", - Description: "Lancaster Colony Corp.", - Symbol: "LANC", - Precision: 5, - Type: Stock, - AlternateId: "513847103"}, - 510949983818412: &Security{ - SecurityId: 510949983818412, - Name: "LDR", - Description: "Landauer, Inc.", - Symbol: "LDR", - Precision: 5, - Type: Stock, - AlternateId: "51476K103"}, - 510949960303824: &Security{ - SecurityId: 510949960303824, - Name: "LNDC", - Description: "Landec Corp.", - Symbol: "LNDC", - Precision: 5, - Type: Stock, - AlternateId: "514766104"}, - 511012991253564: &Security{ - SecurityId: 511012991253564, - Name: "LARK", - Description: "Landmark Bancorp, Inc.", - Symbol: "LARK", - Precision: 5, - Type: Stock, - AlternateId: "51504L107"}, - 511013229759072: &Security{ - SecurityId: 511013229759072, - Name: "LMRK", - Description: "Landmark Infrastructure Partners LP", - Symbol: "LMRK", - Precision: 5, - Type: Stock, - AlternateId: "51508J108"}, - 511013283506676: &Security{ - SecurityId: 511013283506676, - Name: "LE", - Description: "Lands' End, Inc.", - Symbol: "LE", - Precision: 5, - Type: Stock, - AlternateId: "51509F105"}, - 511013271749220: &Security{ - SecurityId: 511013271749220, - Name: "LSTR", - Description: "Landstar System, Inc.", - Symbol: "LSTR", - Precision: 5, - Type: Stock, - AlternateId: "515098101"}, - 511091142106212: &Security{ - SecurityId: 511091142106212, - Name: "LCI", - Description: "Lannett Co., Inc.", - Symbol: "LCI", - Precision: 5, - Type: Stock, - AlternateId: "516012101"}, - 511102210775724: &Security{ - SecurityId: 511102210775724, - Name: "LNTH", - Description: "Lantheus Holdings, Inc.", - Symbol: "LNTH", - Precision: 5, - Type: Stock, - AlternateId: "516544103"}, - 511102217540844: &Security{ - SecurityId: 511102217540844, - Name: "LTRX", - Description: "Lantronix, Inc.", - Symbol: "LTRX", - Precision: 5, - Type: Stock, - AlternateId: "516548203"}, - 511104442985496: &Security{ - SecurityId: 511104442985496, - Name: "LPSB", - Description: "LaPorte Bancorp, Inc.", - Symbol: "LPSB", - Precision: 5, - Type: Stock, - AlternateId: "516651106"}, - 511108502617368: &Security{ - SecurityId: 511108502617368, - Name: "LPI", - Description: "Laredo Petroleum, Inc.", - Symbol: "LPI", - Precision: 5, - Type: Stock, - AlternateId: "516806106"}, - 511187044820796: &Security{ - SecurityId: 511187044820796, - Name: "LVS", - Description: "Las Vegas Sands Corp.", - Symbol: "LVS", - Precision: 5, - Type: Stock, - AlternateId: "517834107"}, - 511189278710112: &Security{ - SecurityId: 511189278710112, - Name: "LHO", - Description: "LaSalle Hotel Properties", - Symbol: "LHO", - Precision: 5, - Type: Stock, - AlternateId: "517942108"}, - 511250452004376: &Security{ - SecurityId: 511250452004376, - Name: "LFL", - Description: "LATAM Airlines Group S.A. ADR", - Symbol: "LFL", - Precision: 5, - Type: Stock, - AlternateId: "51817R106"}, - 511252664058648: &Security{ - SecurityId: 511252664058648, - Name: "LDF", - Description: "Latin American Discovery Fund, Inc. (The)", - Symbol: "LDF", - Precision: 5, - Type: Stock, - AlternateId: "51828C106"}, - 511256582602704: &Security{ - SecurityId: 511256582602704, - Name: "LSCC", - Description: "Lattice Semiconductor Corp.", - Symbol: "LSCC", - Precision: 5, - Type: Stock, - AlternateId: "518415104"}, - 511256584282248: &Security{ - SecurityId: 511256584282248, - Name: "RODM", - Description: "Lattice Developed Markets (ex-US) Strategy ETF", - Symbol: "RODM", - Precision: 5, - Type: Stock, - AlternateId: "518416102"}, - 511256584328868: &Security{ - SecurityId: 511256584328868, - Name: "ROAM", - Description: "Lattice Emerging Markets Strategy ETF", - Symbol: "ROAM", - Precision: 5, - Type: Stock, - AlternateId: "518416201"}, - 511256584422468: &Security{ - SecurityId: 511256584422468, - Name: "ROUS", - Description: "Lattice U.S. Equity Strategy ETF", - Symbol: "ROUS", - Precision: 5, - Type: Stock, - AlternateId: "518416409"}, - 511256584469088: &Security{ - SecurityId: 511256584469088, - Name: "ROGS", - Description: "Lattice Global Small Cap Strategy ETF", - Symbol: "ROGS", - Precision: 5, - Type: Stock, - AlternateId: "518416508"}, - 511256710253520: &Security{ - SecurityId: 511256710253520, - Name: "EL", - Description: "Estee Lauder Companies, Inc. (The)", - Symbol: "EL", - Precision: 5, - Type: Stock, - AlternateId: "518439104"}, - 513457674021108: &Security{ - SecurityId: 513457674021108, - Name: "LAWS", - Description: "Lawson Products, Inc.", - Symbol: "LAWS", - Precision: 5, - Type: Stock, - AlternateId: "520776105"}, - 513520669698768: &Security{ - SecurityId: 513520669698768, - Name: "LAYN", - Description: "Layne Christensen Co.", - Symbol: "LAYN", - Precision: 5, - Type: Stock, - AlternateId: "521050104"}, - 513520783912620: &Security{ - SecurityId: 513520783912620, - Name: "LGI", - Description: "Lazard Global Total Return and Income Fund", - Symbol: "LGI", - Precision: 5, - Type: Stock, - AlternateId: "52106W103"}, - 513520800708996: &Security{ - SecurityId: 513520800708996, - Name: "LOR", - Description: "Lazard World Dividend & Income Fund, Inc.", - Symbol: "LOR", - Precision: 5, - Type: Stock, - AlternateId: "521076109"}, - 513535655279484: &Security{ - SecurityId: 513535655279484, - Name: "LBIX", - Description: "Leading Brands, Inc.", - Symbol: "LBIX", - Precision: 5, - Type: Stock, - AlternateId: "52170U207"}, - 513538183054872: &Security{ - SecurityId: 513538183054872, - Name: "LF", - Description: "LeapFrog Enterprises, Inc.", - Symbol: "LF", - Precision: 5, - Type: Stock, - AlternateId: "52186N106"}, - 513538152868368: &Security{ - SecurityId: 513538152868368, - Name: "LEA", - Description: "Lear Corp.", - Symbol: "LEA", - Precision: 5, - Type: Stock, - AlternateId: "521865204"}, - 513692709406596: &Security{ - SecurityId: 513692709406596, - Name: "LEE", - Description: "Lee Enterprises, Inc.", - Symbol: "LEE", - Precision: 5, - Type: Stock, - AlternateId: "523768109"}, - 513768883351356: &Security{ - SecurityId: 513768883351356, - Name: "LEG", - Description: "Leggett & Platt, Inc.", - Symbol: "LEG", - Precision: 5, - Type: Stock, - AlternateId: "524660107"}, - 513769039555716: &Security{ - SecurityId: 513769039555716, - Name: "DDBI", - Description: "Legg Mason Developed EX-US Diversified Core ETF", - Symbol: "DDBI", - Precision: 5, - Type: Stock, - AlternateId: "52468L109"}, - 513769039602336: &Security{ - SecurityId: 513769039602336, - Name: "EDBI", - Description: "Legg Mason Emerging Markets Diversified Core ETF", - Symbol: "EDBI", - Precision: 5, - Type: Stock, - AlternateId: "52468L208"}, - 513769039648956: &Security{ - SecurityId: 513769039648956, - Name: "UDBI", - Description: "Legg Mason US Diversified Core ETF", - Symbol: "UDBI", - Precision: 5, - Type: Stock, - AlternateId: "52468L307"}, - 513769039695576: &Security{ - SecurityId: 513769039695576, - Name: "LVHD", - Description: "Legg Mason Low Volatility High Dividend ETF", - Symbol: "LVHD", - Precision: 5, - Type: Stock, - AlternateId: "52468L406"}, - 513769083225408: &Security{ - SecurityId: 513769083225408, - Name: "BWG", - Description: "Legg Mason BW Global Income Opportunities Fund, Inc.", - Symbol: "BWG", - Precision: 5, - Type: Stock, - AlternateId: "52469B100"}, - 513770709187152: &Security{ - SecurityId: 513770709187152, - Name: "LGCY", - Description: "Legacy Reserves, L.P.", - Symbol: "LGCY", - Precision: 5, - Type: Stock, - AlternateId: "524707304"}, - 513770814909720: &Security{ - SecurityId: 513770814909720, - Name: "LTXB", - Description: "LegacyTexas Financial Group, Inc.", - Symbol: "LTXB", - Precision: 5, - Type: Stock, - AlternateId: "52471Y106"}, - 513775052580852: &Security{ - SecurityId: 513775052580852, - Name: "LM", - Description: "Legg Mason, Inc.", - Symbol: "LM", - Precision: 5, - Type: Stock, - AlternateId: "524901105"}, - 513840487060872: &Security{ - SecurityId: 513840487060872, - Name: "LDOS", - Description: "Leidos Holdings, Inc.", - Symbol: "LDOS", - Precision: 5, - Type: Stock, - AlternateId: "525327102"}, - 513912386383236: &Security{ - SecurityId: 513912386383236, - Name: "LC", - Description: "LendingClub Corp.", - Symbol: "LC", - Precision: 5, - Type: Stock, - AlternateId: "52603A109"}, - 513912502276560: &Security{ - SecurityId: 513912502276560, - Name: "LEN", - Description: "Lennar Corp. Cl A", - Symbol: "LEN", - Precision: 5, - Type: Stock, - AlternateId: "526057104"}, - 513912502369800: &Security{ - SecurityId: 513912502369800, - Name: "LEN.B", - Description: "Lennar Corp. Cl B", - Symbol: "LEN.B", - Precision: 5, - Type: Stock, - AlternateId: "526057302"}, - 513914376728124: &Security{ - SecurityId: 513914376728124, - Name: "LII", - Description: "Lennox Intl, Inc.", - Symbol: "LII", - Precision: 5, - Type: Stock, - AlternateId: "526107107"}, - 513995403083472: &Security{ - SecurityId: 513995403083472, - Name: "LUK", - Description: "Leucadia National Corp.", - Symbol: "LUK", - Precision: 5, - Type: Stock, - AlternateId: "527288104"}, - 513995488837344: &Security{ - SecurityId: 513995488837344, - Name: "LVLT", - Description: "Level 3 Communications, Inc.", - Symbol: "LVLT", - Precision: 5, - Type: Stock, - AlternateId: "52729N308"}, - 514086757490952: &Security{ - SecurityId: 514086757490952, - Name: "LXRX", - Description: "Lexicon Pharmaceuticals, Inc.", - Symbol: "LXRX", - Precision: 5, - Type: Stock, - AlternateId: "528872302"}, - 514147527584100: &Security{ - SecurityId: 514147527584100, - Name: "LXP", - Description: "Lexington Realty Trust", - Symbol: "LXP", - Precision: 5, - Type: Stock, - AlternateId: "529043101"}, - 514147527677700: &Security{ - SecurityId: 514147527677700, - Name: "LXP-C", - Description: "Lexington Realty Trust, 6.50% Series C Cumul Convertible Preferred Stock", - Symbol: "LXP-C", - Precision: 5, - Type: Stock, - AlternateId: "529043309"}, - 514162943099964: &Security{ - SecurityId: 514162943099964, - Name: "LXK", - Description: "Lexmark International, Inc.", - Symbol: "LXK", - Precision: 5, - Type: Stock, - AlternateId: "529771107"}, - 514165252572000: &Security{ - SecurityId: 514165252572000, - Name: "LBY", - Description: "Libbey, Inc.", - Symbol: "LBY", - Precision: 5, - Type: Stock, - AlternateId: "529898108"}, - 514166871721608: &Security{ - SecurityId: 514166871721608, - Name: "ASG", - Description: "Liberty All-Star Growth Fund, Inc.", - Symbol: "ASG", - Precision: 5, - Type: Stock, - AlternateId: "529900102"}, - 516265446098016: &Security{ - SecurityId: 516265446098016, - Name: "LBMH", - Description: "Liberator Medical Holdings, Inc.", - Symbol: "LBMH", - Precision: 5, - Type: Stock, - AlternateId: "53012L108"}, - 516265605661392: &Security{ - SecurityId: 516265605661392, - Name: "USA", - Description: "Liberty All-Star Equity Fund", - Symbol: "USA", - Precision: 5, - Type: Stock, - AlternateId: "530158104"}, - 516269655308916: &Security{ - SecurityId: 516269655308916, - Name: "LBRDK", - Description: "Liberty Broadband Corp. Cl C", - Symbol: "LBRDK", - Precision: 5, - Type: Stock, - AlternateId: "530307305"}, - 516278448005328: &Security{ - SecurityId: 516278448005328, - Name: "LVNTA", - Description: "Liberty Interactive Corp., Series A Liberty Ventures Common Stock", - Symbol: "LVNTA", - Precision: 5, - Type: Stock, - AlternateId: "53071M104"}, - 516278448342144: &Security{ - SecurityId: 516278448342144, - Name: "QVCA", - Description: "Liberty Interactive Corp. Series A QVC Group", - Symbol: "QVCA", - Precision: 5, - Type: Stock, - AlternateId: "53071M880"}, - 516344080680144: &Security{ - SecurityId: 516344080680144, - Name: "LPT", - Description: "Liberty Property Trust", - Symbol: "LPT", - Precision: 5, - Type: Stock, - AlternateId: "531172104"}, - 516345966982080: &Security{ - SecurityId: 516345966982080, - Name: "LMCK", - Description: "Liberty Media Corp. Series C", - Symbol: "LMCK", - Precision: 5, - Type: Stock, - AlternateId: "531229300"}, - 516350555599752: &Security{ - SecurityId: 516350555599752, - Name: "LTRPA", - Description: "Liberty TripAdvisor Holdings Inc., Series A", - Symbol: "LTRPA", - Precision: 5, - Type: Stock, - AlternateId: "531465102"}, - 516350555646372: &Security{ - SecurityId: 516350555646372, - Name: "LTRPB", - Description: "Liberty TripAdvisor Holdings Inc., Series B", - Symbol: "LTRPB", - Precision: 5, - Type: Stock, - AlternateId: "531465201"}, - 516361135501188: &Security{ - SecurityId: 516361135501188, - Name: "LWAY", - Description: "Lifeway Foods, Inc.", - Symbol: "LWAY", - Precision: 5, - Type: Stock, - AlternateId: "531914109"}, - 516422597689476: &Security{ - SecurityId: 516422597689476, - Name: "LPNT", - Description: "LifePoint Health, Inc.", - Symbol: "LPNT", - Precision: 5, - Type: Stock, - AlternateId: "53219L109"}, - 516424228783056: &Security{ - SecurityId: 516424228783056, - Name: "LGND", - Description: "Ligand Pharmaceuticals, Inc.", - Symbol: "LGND", - Precision: 5, - Type: Stock, - AlternateId: "53220K504"}, - 516424349575476: &Security{ - SecurityId: 516424349575476, - Name: "LFVN", - Description: "Lifevantage Corp.", - Symbol: "LFVN", - Precision: 5, - Type: Stock, - AlternateId: "53222K205"}, - 516424359606444: &Security{ - SecurityId: 516424359606444, - Name: "LCUT", - Description: "Lifetime Brands, Inc.", - Symbol: "LCUT", - Precision: 5, - Type: Stock, - AlternateId: "53222Q103"}, - 516424470461136: &Security{ - SecurityId: 516424470461136, - Name: "LTBR", - Description: "Lightbridge Corp.", - Symbol: "LTBR", - Precision: 5, - Type: Stock, - AlternateId: "53224K104"}, - 516424488936768: &Security{ - SecurityId: 516424488936768, - Name: "LOCK", - Description: "LifeLock, Inc.", - Symbol: "LOCK", - Precision: 5, - Type: Stock, - AlternateId: "53224V100"}, - 516424524208776: &Security{ - SecurityId: 516424524208776, - Name: "LITB", - Description: "LightinTheBox Holding Co., Ltd.", - Symbol: "LITB", - Precision: 5, - Type: Stock, - AlternateId: "53225G102"}, - 516424509418932: &Security{ - SecurityId: 516424509418932, - Name: "LPTH", - Description: "LightPath Technologies, Inc.", - Symbol: "LPTH", - Precision: 5, - Type: Stock, - AlternateId: "532257805"}, - 516428553607560: &Security{ - SecurityId: 516428553607560, - Name: "LLEX", - Description: "Lilis Energy, Inc.", - Symbol: "LLEX", - Precision: 5, - Type: Stock, - AlternateId: "532403102"}, - 516428862657120: &Security{ - SecurityId: 516428862657120, - Name: "LLY", - Description: "Eli Lilly and Co.", - Symbol: "LLY", - Precision: 5, - Type: Stock, - AlternateId: "532457108"}, - 516433013081424: &Security{ - SecurityId: 516433013081424, - Name: "LIME", - Description: "Lime Energy Co.", - Symbol: "LIME", - Precision: 5, - Type: Stock, - AlternateId: "53261U304"}, - 516435330858192: &Security{ - SecurityId: 516435330858192, - Name: "LMNR", - Description: "Limoneira Co.", - Symbol: "LMNR", - Precision: 5, - Type: Stock, - AlternateId: "532746104"}, - 516509279311680: &Security{ - SecurityId: 516509279311680, - Name: "LINC", - Description: "Lincoln Educational Services Corp.", - Symbol: "LINC", - Precision: 5, - Type: Stock, - AlternateId: "533535100"}, - 516517796644632: &Security{ - SecurityId: 516517796644632, - Name: "LECO", - Description: "Lincoln Electric Holdings, Inc.", - Symbol: "LECO", - Precision: 5, - Type: Stock, - AlternateId: "533900106"}, - 516579242036868: &Security{ - SecurityId: 516579242036868, - Name: "LNC", - Description: "Lincoln National Corp.", - Symbol: "LNC", - Precision: 5, - Type: Stock, - AlternateId: "534187109"}, - 516659363079300: &Security{ - SecurityId: 516659363079300, - Name: "LIND", - Description: "Lindblad Expeditions Holdings, Inc.", - Symbol: "LIND", - Precision: 5, - Type: Stock, - AlternateId: "535219109"}, - 516666128572440: &Security{ - SecurityId: 516666128572440, - Name: "LNN", - Description: "Lindsay Corp.", - Symbol: "LNN", - Precision: 5, - Type: Stock, - AlternateId: "535555106"}, - 516668431325976: &Security{ - SecurityId: 516668431325976, - Name: "LLTC", - Description: "Linear Technology Corp.", - Symbol: "LLTC", - Precision: 5, - Type: Stock, - AlternateId: "535678106"}, - 516670671933792: &Security{ - SecurityId: 516670671933792, - Name: "LNKD", - Description: "LinkedIn Corp.", - Symbol: "LNKD", - Precision: 5, - Type: Stock, - AlternateId: "53578A108"}, - 516674600602092: &Security{ - SecurityId: 516674600602092, - Name: "LGF", - Description: "Lions Gate Entertainment Corp.", - Symbol: "LGF", - Precision: 5, - Type: Stock, - AlternateId: "535919203"}, - 516733419028032: &Security{ - SecurityId: 516733419028032, - Name: "LINE", - Description: "Linn Energy LLC", - Symbol: "LINE", - Precision: 5, - Type: Stock, - AlternateId: "536020100"}, - 516736064423304: &Security{ - SecurityId: 516736064423304, - Name: "LBIO", - Description: "Lion Biotechnologies, Inc.", - Symbol: "LBIO", - Precision: 5, - Type: Stock, - AlternateId: "53619R102"}, - 516737957350788: &Security{ - SecurityId: 516737957350788, - Name: "LIOX", - Description: "Lionbridge Technologies, Inc.", - Symbol: "LIOX", - Precision: 5, - Type: Stock, - AlternateId: "536252109"}, - 516739883870160: &Security{ - SecurityId: 516739883870160, - Name: "LPCN", - Description: "Lipocine, Inc.", - Symbol: "LPCN", - Precision: 5, - Type: Stock, - AlternateId: "53630X104"}, - 516739966171272: &Security{ - SecurityId: 516739966171272, - Name: "LIQT", - Description: "LiqTech International, Inc.", - Symbol: "LIQT", - Precision: 5, - Type: Stock, - AlternateId: "53632A102"}, - 516740026637412: &Security{ - SecurityId: 516740026637412, - Name: "LIQD", - Description: "Liquid Holdings Group, Inc.", - Symbol: "LIQD", - Precision: 5, - Type: Stock, - AlternateId: "53633A101"}, - 516749091525036: &Security{ - SecurityId: 516749091525036, - Name: "LAD", - Description: "Lithia Motors, Inc.", - Symbol: "LAD", - Precision: 5, - Type: Stock, - AlternateId: "536797103"}, - 516811675696848: &Security{ - SecurityId: 516811675696848, - Name: "LFUS", - Description: "Littelfuse, Inc.", - Symbol: "LFUS", - Precision: 5, - Type: Stock, - AlternateId: "537008104"}, - 516890263249908: &Security{ - SecurityId: 516890263249908, - Name: "LOB", - Description: "Live Oak Bancshares, Inc.", - Symbol: "LOB", - Precision: 5, - Type: Stock, - AlternateId: "53803X105"}, - 516890214541188: &Security{ - SecurityId: 516890214541188, - Name: "LYV", - Description: "Live Nation Entertainment, Inc.", - Symbol: "LYV", - Precision: 5, - Type: Stock, - AlternateId: "538034109"}, - 516892448430144: &Security{ - SecurityId: 516892448430144, - Name: "LIVE", - Description: "Live Ventures, Inc.", - Symbol: "LIVE", - Precision: 5, - Type: Stock, - AlternateId: "538142100"}, - 516892455148644: &Security{ - SecurityId: 516892455148644, - Name: "LPSN", - Description: "LivePerson, Inc.", - Symbol: "LPSN", - Precision: 5, - Type: Stock, - AlternateId: "538146101"}, - 516977294232708: &Security{ - SecurityId: 516977294232708, - Name: "LYG", - Description: "Lloyds Banking Group plc ADR", - Symbol: "LYG", - Precision: 5, - Type: Stock, - AlternateId: "539439109"}, - 516977401727952: &Security{ - SecurityId: 516977401727952, - Name: "LOJN", - Description: "LoJack Corp.", - Symbol: "LOJN", - Precision: 5, - Type: Stock, - AlternateId: "539451104"}, - 516979739753496: &Security{ - SecurityId: 516979739753496, - Name: "NASH", - Description: "Nashville Area ETF", - Symbol: "NASH", - Precision: 5, - Type: Stock, - AlternateId: "53957P106"}, - 516985986245508: &Security{ - SecurityId: 516985986245508, - Name: "LMT", - Description: "Lockheed Martin Corp.", - Symbol: "LMT", - Precision: 5, - Type: Stock, - AlternateId: "539830109"}, - 519093057799008: &Security{ - SecurityId: 519093057799008, - Name: "L", - Description: "Loews Corp.", - Symbol: "L", - Precision: 5, - Type: Stock, - AlternateId: "540424108"}, - 519561191972340: &Security{ - SecurityId: 519561191972340, - Name: "LPX", - Description: "Louisiana-Pacific Corp.", - Symbol: "LPX", - Precision: 5, - Type: Stock, - AlternateId: "546347105"}, - 519724561502268: &Security{ - SecurityId: 519724561502268, - Name: "LOW", - Description: "Lowe's Companies, Inc.", - Symbol: "LOW", - Precision: 5, - Type: Stock, - AlternateId: "548661107"}, - 519728916746340: &Security{ - SecurityId: 519728916746340, - Name: "LOXO", - Description: "Loxo Oncology, Inc.", - Symbol: "LOXO", - Precision: 5, - Type: Stock, - AlternateId: "548862101"}, - 519730787932056: &Security{ - SecurityId: 519730787932056, - Name: "LPTN", - Description: "Lpath, Inc.", - Symbol: "LPTN", - Precision: 5, - Type: Stock, - AlternateId: "548910306"}, - 519794341148772: &Security{ - SecurityId: 519794341148772, - Name: "LUB", - Description: "Luby's, Inc.", - Symbol: "LUB", - Precision: 5, - Type: Stock, - AlternateId: "549282101"}, - 519796217373120: &Security{ - SecurityId: 519796217373120, - Name: "LEI", - Description: "Lucas Energy, Inc.", - Symbol: "LEI", - Precision: 5, - Type: Stock, - AlternateId: "549333300"}, - 521905455538308: &Security{ - SecurityId: 521905455538308, - Name: "LULU", - Description: "Lululemon Athletica, Inc.", - Symbol: "LULU", - Precision: 5, - Type: Stock, - AlternateId: "550021109"}, - 521905563033660: &Security{ - SecurityId: 521905563033660, - Name: "LL", - Description: "Lumber Liquidators Holding, Inc.", - Symbol: "LL", - Precision: 5, - Type: Stock, - AlternateId: "55003T107"}, - 521909978744196: &Security{ - SecurityId: 521909978744196, - Name: "LITE", - Description: "Lumentum Holdings, Inc.", - Symbol: "LITE", - Precision: 5, - Type: Stock, - AlternateId: "55024U109"}, - 521910133268616: &Security{ - SecurityId: 521910133268616, - Name: "LMNX", - Description: "Luminex Corp.", - Symbol: "LMNX", - Precision: 5, - Type: Stock, - AlternateId: "55027E102"}, - 521910175259124: &Security{ - SecurityId: 521910175259124, - Name: "LMOS", - Description: "Lumos Networks Corp.", - Symbol: "LMOS", - Precision: 5, - Type: Stock, - AlternateId: "550283105"}, - 521918830320408: &Security{ - SecurityId: 521918830320408, - Name: "LXFR", - Description: "Luxfer Holdings plc", - Symbol: "LXFR", - Precision: 5, - Type: Stock, - AlternateId: "550678106"}, - 521922822767640: &Security{ - SecurityId: 521922822767640, - Name: "LDL", - Description: "Lydall, Inc.", - Symbol: "LDL", - Precision: 5, - Type: Stock, - AlternateId: "550819106"}, - 522062491515840: &Security{ - SecurityId: 522062491515840, - Name: "WLH", - Description: "William Lyon Homes", - Symbol: "WLH", - Precision: 5, - Type: Stock, - AlternateId: "552074700"}, - 522075207608784: &Security{ - SecurityId: 522075207608784, - Name: "MTB", - Description: "M&T Bank Corp.", - Symbol: "MTB", - Precision: 5, - Type: Stock, - AlternateId: "55261F104"}, - 522075263035968: &Security{ - SecurityId: 522075263035968, - Name: "MBI", - Description: "MBIA, Inc.", - Symbol: "MBI", - Precision: 5, - Type: Stock, - AlternateId: "55262C100"}, - 522075414201696: &Security{ - SecurityId: 522075414201696, - Name: "MBFI", - Description: "MB Financial, Inc.", - Symbol: "MBFI", - Precision: 5, - Type: Stock, - AlternateId: "55264U108"}, - 522075555289440: &Security{ - SecurityId: 522075555289440, - Name: "MDC", - Description: "M.D.C. Holdings, Inc.", - Symbol: "MDC", - Precision: 5, - Type: Stock, - AlternateId: "552676108"}, - 522075666144132: &Security{ - SecurityId: 522075666144132, - Name: "MDU", - Description: "MDU Resources Group, Inc.", - Symbol: "MDU", - Precision: 5, - Type: Stock, - AlternateId: "552690109"}, - 522075677901264: &Security{ - SecurityId: 522075677901264, - Name: "MDCA", - Description: "MDC Partners, Inc.", - Symbol: "MDCA", - Precision: 5, - Type: Stock, - AlternateId: "552697104"}, - 522077475090312: &Security{ - SecurityId: 522077475090312, - Name: "MFA", - Description: "MFA Financial, Inc.", - Symbol: "MFA", - Precision: 5, - Type: Stock, - AlternateId: "55272X102"}, - 522077421342600: &Security{ - SecurityId: 522077421342600, - Name: "MFRI", - Description: "MFRI, Inc.", - Symbol: "MFRI", - Precision: 5, - Type: Stock, - AlternateId: "552721102"}, - 522077431420548: &Security{ - SecurityId: 522077431420548, - Name: "MCR", - Description: "MFS Charter Income Trust", - Symbol: "MCR", - Precision: 5, - Type: Stock, - AlternateId: "552727109"}, - 522077500284732: &Security{ - SecurityId: 522077500284732, - Name: "MIN", - Description: "MFS Intermediate Income Trust", - Symbol: "MIN", - Precision: 5, - Type: Stock, - AlternateId: "55273C107"}, - 522077491886688: &Security{ - SecurityId: 522077491886688, - Name: "MMT", - Description: "MFS Multimarket Income Trust", - Symbol: "MMT", - Precision: 5, - Type: Stock, - AlternateId: "552737108"}, - 522077493566232: &Security{ - SecurityId: 522077493566232, - Name: "MFM", - Description: "MFS Municipal Income Trust", - Symbol: "MFM", - Precision: 5, - Type: Stock, - AlternateId: "552738106"}, - 522077564109960: &Security{ - SecurityId: 522077564109960, - Name: "MFV", - Description: "MFS Special Value Trust", - Symbol: "MFV", - Precision: 5, - Type: Stock, - AlternateId: "55274E102"}, - 522077686722108: &Security{ - SecurityId: 522077686722108, - Name: "MCFT", - Description: "MCBC Holdings, Inc.", - Symbol: "MCFT", - Precision: 5, - Type: Stock, - AlternateId: "55276F107"}, - 522077674964652: &Security{ - SecurityId: 522077674964652, - Name: "MGCD", - Description: "MGC Diagnostics Corporation", - Symbol: "MGCD", - Precision: 5, - Type: Stock, - AlternateId: "552768103"}, - 522077763984336: &Security{ - SecurityId: 522077763984336, - Name: "MGEE", - Description: "MGE Energy, Inc.", - Symbol: "MGEE", - Precision: 5, - Type: Stock, - AlternateId: "55277P104"}, - 522077831169012: &Security{ - SecurityId: 522077831169012, - Name: "MIL", - Description: "MFC Industrial Ltd", - Symbol: "MIL", - Precision: 5, - Type: Stock, - AlternateId: "55278T105"}, - 522077861448648: &Security{ - SecurityId: 522077861448648, - Name: "MEIP", - Description: "MEI Pharma, Inc.", - Symbol: "MEIP", - Precision: 5, - Type: Stock, - AlternateId: "55279B202"}, - 522079730814636: &Security{ - SecurityId: 522079730814636, - Name: "MTG", - Description: "MGIC Investment Corp.", - Symbol: "MTG", - Precision: 5, - Type: Stock, - AlternateId: "552848103"}, - 522081848810304: &Security{ - SecurityId: 522081848810304, - Name: "MGF", - Description: "MFS Government Markets Income Trust", - Symbol: "MGF", - Precision: 5, - Type: Stock, - AlternateId: "552939100"}, - 522081959664996: &Security{ - SecurityId: 522081959664996, - Name: "MGM", - Description: "MGM Resorts International", - Symbol: "MGM", - Precision: 5, - Type: Stock, - AlternateId: "552953101"}, - 522140588387784: &Security{ - SecurityId: 522140588387784, - Name: "MGT", - Description: "MGT Capital Investments, Inc.", - Symbol: "MGT", - Precision: 5, - Type: Stock, - AlternateId: "55302P202"}, - 522140746224996: &Security{ - SecurityId: 522140746224996, - Name: "MHO", - Description: "M/I Homes, Inc.", - Symbol: "MHO", - Precision: 5, - Type: Stock, - AlternateId: "55305B101"}, - 522140826846672: &Security{ - SecurityId: 522140826846672, - Name: "MKSI", - Description: "MKS Instruments, Inc.", - Symbol: "MKSI", - Precision: 5, - Type: Stock, - AlternateId: "55306N104"}, - 522147370630464: &Security{ - SecurityId: 522147370630464, - Name: "MPLX", - Description: "MPLX L.P.", - Symbol: "MPLX", - Precision: 5, - Type: Stock, - AlternateId: "55336V100"}, - 522149468470956: &Security{ - SecurityId: 522149468470956, - Name: "MRC", - Description: "MRC Global, Inc.", - Symbol: "MRC", - Precision: 5, - Type: Stock, - AlternateId: "55345K103"}, - 522151490728728: &Security{ - SecurityId: 522151490728728, - Name: "MSM", - Description: "MSC Industrial Direct Co., Inc.", - Symbol: "MSM", - Precision: 5, - Type: Stock, - AlternateId: "553530106"}, - 522151578068544: &Security{ - SecurityId: 522151578068544, - Name: "MSCI", - Description: "MSCI, Inc.", - Symbol: "MSCI", - Precision: 5, - Type: Stock, - AlternateId: "55354G100"}, - 522156097915308: &Security{ - SecurityId: 522156097915308, - Name: "MTSC", - Description: "MTS Systems Corp.", - Symbol: "MTSC", - Precision: 5, - Type: Stock, - AlternateId: "553777103"}, - 522157975725960: &Security{ - SecurityId: 522157975725960, - Name: "MVC", - Description: "MVC Capital, Inc.", - Symbol: "MVC", - Precision: 5, - Type: Stock, - AlternateId: "553829102"}, - 522158157124740: &Security{ - SecurityId: 522158157124740, - Name: "MVO", - Description: "MV Oil Trust", - Symbol: "MVO", - Precision: 5, - Type: Stock, - AlternateId: "553859109"}, - 522219145661136: &Security{ - SecurityId: 522219145661136, - Name: "MYRG", - Description: "MYR Group, Inc.", - Symbol: "MYRG", - Precision: 5, - Type: Stock, - AlternateId: "55405W104"}, - 522219149020224: &Security{ - SecurityId: 522219149020224, - Name: "MTSI", - Description: "M/A-COM Technology Solutions Holdings, Inc.", - Symbol: "MTSI", - Precision: 5, - Type: Stock, - AlternateId: "55405Y100"}, - 522223272477576: &Security{ - SecurityId: 522223272477576, - Name: "MCBC", - Description: "Macatawa Bank Corp.", - Symbol: "MCBC", - Precision: 5, - Type: Stock, - AlternateId: "554225102"}, - 522225807018084: &Security{ - SecurityId: 522225807018084, - Name: "MAC", - Description: "Macerich Company (The)", - Symbol: "MAC", - Precision: 5, - Type: Stock, - AlternateId: "554382101"}, - 522227995557840: &Security{ - SecurityId: 522227995557840, - Name: "CLI", - Description: "Mack-Cali Realty Corp.", - Symbol: "CLI", - Precision: 5, - Type: Stock, - AlternateId: "554489104"}, - 522230098437252: &Security{ - SecurityId: 522230098437252, - Name: "MFNC", - Description: "Mackinac Financial Corp.", - Symbol: "MFNC", - Precision: 5, - Type: Stock, - AlternateId: "554571109"}, - 522375994921536: &Security{ - SecurityId: 522375994921536, - Name: "MFD", - Description: "Macquarie/First Trust Global Infrastructure Utilities Dividend & Income Fund", - Symbol: "MFD", - Precision: 5, - Type: Stock, - AlternateId: "55607W100"}, - 522376020115956: &Security{ - SecurityId: 522376020115956, - Name: "MIC", - Description: "Macquarie Infrastructure Co. Trust", - Symbol: "MIC", - Precision: 5, - Type: Stock, - AlternateId: "55608B105"}, - 522376023475044: &Security{ - SecurityId: 522376023475044, - Name: "MGU", - Description: "Macquarie Global Infrastructure Total Return Fund", - Symbol: "MGU", - Precision: 5, - Type: Stock, - AlternateId: "55608D101"}, - 522376077223044: &Security{ - SecurityId: 522376077223044, - Name: "MGNX", - Description: "MacroGenics, Inc.", - Symbol: "MGNX", - Precision: 5, - Type: Stock, - AlternateId: "556099109"}, - 522378099480528: &Security{ - SecurityId: 522378099480528, - Name: "M", - Description: "Macy's, Inc.", - Symbol: "M", - Precision: 5, - Type: Stock, - AlternateId: "55616P104"}, - 522380249389152: &Security{ - SecurityId: 522380249389152, - Name: "SHOO", - Description: "Steven Madden Ltd", - Symbol: "SHOO", - Precision: 5, - Type: Stock, - AlternateId: "556269108"}, - 522391190407488: &Security{ - SecurityId: 522391190407488, - Name: "MCBK", - Description: "Madison County Financial, Inc.", - Symbol: "MCBK", - Precision: 5, - Type: Stock, - AlternateId: "556777100"}, - 522462782359872: &Security{ - SecurityId: 522462782359872, - Name: "MCN", - Description: "Madison Covered Call & Equity Strategy Fund", - Symbol: "MCN", - Precision: 5, - Type: Stock, - AlternateId: "557437100"}, - 522536950843308: &Security{ - SecurityId: 522536950843308, - Name: "MSG", - Description: "Madison Square Garden Co. (The) Cl A", - Symbol: "MSG", - Precision: 5, - Type: Stock, - AlternateId: "55825T103"}, - 522537004590912: &Security{ - SecurityId: 522537004590912, - Name: "MSGN", - Description: "MSG Networks, Inc.", - Symbol: "MSGN", - Precision: 5, - Type: Stock, - AlternateId: "55826P100"}, - 522536976037728: &Security{ - SecurityId: 522536976037728, - Name: "MSP", - Description: "Madison Strategic Sector Premium Fund", - Symbol: "MSP", - Precision: 5, - Type: Stock, - AlternateId: "558268108"}, - 522610835471568: &Security{ - SecurityId: 522610835471568, - Name: "MVG", - Description: "MAG Silver Corp.", - Symbol: "MVG", - Precision: 5, - Type: Stock, - AlternateId: "55903Q104"}, - 522611048829564: &Security{ - SecurityId: 522611048829564, - Name: "MGLN", - Description: "Magellan Health, Inc.", - Symbol: "MGLN", - Precision: 5, - Type: Stock, - AlternateId: "559079207"}, - 522611094132504: &Security{ - SecurityId: 522611094132504, - Name: "MMP", - Description: "Magellan Midstream Partners, L.P.", - Symbol: "MMP", - Precision: 5, - Type: Stock, - AlternateId: "559080106"}, - 522611156511648: &Security{ - SecurityId: 522611156511648, - Name: "MPET", - Description: "Magellan Petroleum Corp.", - Symbol: "MPET", - Precision: 5, - Type: Stock, - AlternateId: "559091608"}, - 522613160060076: &Security{ - SecurityId: 522613160060076, - Name: "MGIC", - Description: "Magic Software Enterprises, Inc.", - Symbol: "MGIC", - Precision: 5, - Type: Stock, - AlternateId: "559166103"}, - 522615088399140: &Security{ - SecurityId: 522615088399140, - Name: "MGA", - Description: "Magna Intl, Inc.", - Symbol: "MGA", - Precision: 5, - Type: Stock, - AlternateId: "559222401"}, - 522617354107884: &Security{ - SecurityId: 522617354107884, - Name: "MX", - Description: "MagnaChip Semiconductor Corp.", - Symbol: "MX", - Precision: 5, - Type: Stock, - AlternateId: "55933J203"}, - 522617720264136: &Security{ - SecurityId: 522617720264136, - Name: "MNGA", - Description: "MagneGas Corporation", - Symbol: "MNGA", - Precision: 5, - Type: Stock, - AlternateId: "55939L202"}, - 522626047753608: &Security{ - SecurityId: 522626047753608, - Name: "MHRCQ", - Description: "Magnum Hunter Resources Corp.", - Symbol: "MHRCQ", - Precision: 5, - Type: Stock, - AlternateId: "55973B102"}, - 524733310783440: &Security{ - SecurityId: 524733310783440, - Name: "MAIN", - Description: "Main Street Capital Corp.", - Symbol: "MAIN", - Precision: 5, - Type: Stock, - AlternateId: "56035L104"}, - 524739681566856: &Security{ - SecurityId: 524739681566856, - Name: "MSFG", - Description: "MainSource Financial Group, Inc.", - Symbol: "MSFG", - Precision: 5, - Type: Stock, - AlternateId: "56062Y102"}, - 524739778984512: &Security{ - SecurityId: 524739778984512, - Name: "MMD", - Description: "MainStay DefinedTerm Municipal Opportunities Fund", - Symbol: "MMD", - Precision: 5, - Type: Stock, - AlternateId: "56064K100"}, - 524740039325064: &Security{ - SecurityId: 524740039325064, - Name: "MJCO", - Description: "Majesco", - Symbol: "MJCO", - Precision: 5, - Type: Stock, - AlternateId: "56068V102"}, - 524740047816636: &Security{ - SecurityId: 524740047816636, - Name: "COOL", - Description: "Majesco Entertainment Co.", - Symbol: "COOL", - Precision: 5, - Type: Stock, - AlternateId: "560690307"}, - 524807438955840: &Security{ - SecurityId: 524807438955840, - Name: "MBUU", - Description: "Malibu Boats, Inc.", - Symbol: "MBUU", - Precision: 5, - Type: Stock, - AlternateId: "56117J100"}, - 524813529243564: &Security{ - SecurityId: 524813529243564, - Name: "MLVF", - Description: "Malvern Bancorp, Inc.", - Symbol: "MLVF", - Precision: 5, - Type: Stock, - AlternateId: "561409103"}, - 524824460184672: &Security{ - SecurityId: 524824460184672, - Name: "HYF", - Description: "Managed High Yield Plus Fund", - Symbol: "HYF", - Precision: 5, - Type: Stock, - AlternateId: "561911108"}, - 524898710969220: &Security{ - SecurityId: 524898710969220, - Name: "MANH", - Description: "Manhattan Associates, Inc.", - Symbol: "MANH", - Precision: 5, - Type: Stock, - AlternateId: "562750109"}, - 524900590459416: &Security{ - SecurityId: 524900590459416, - Name: "LOAN", - Description: "Manhattan Bridge Capital, Inc", - Symbol: "LOAN", - Precision: 5, - Type: Stock, - AlternateId: "562803106"}, - 524970363387744: &Security{ - SecurityId: 524970363387744, - Name: "MNTX", - Description: "Manitex International, Inc.", - Symbol: "MNTX", - Precision: 5, - Type: Stock, - AlternateId: "563420108"}, - 524972844180576: &Security{ - SecurityId: 524972844180576, - Name: "MTW", - Description: "Manitowoc Co., Inc. (The)", - Symbol: "MTW", - Precision: 5, - Type: Stock, - AlternateId: "563571108"}, - 524977197791724: &Security{ - SecurityId: 524977197791724, - Name: "MTEX", - Description: "Mannatech, Inc.", - Symbol: "MTEX", - Precision: 5, - Type: Stock, - AlternateId: "563771203"}, - 524979114186888: &Security{ - SecurityId: 524979114186888, - Name: "MN", - Description: "Manning & Napier, Inc.", - Symbol: "MN", - Precision: 5, - Type: Stock, - AlternateId: "56382Q102"}, - 525042588555072: &Security{ - SecurityId: 525042588555072, - Name: "MAN", - Description: "ManpowerGroup, Inc.", - Symbol: "MAN", - Precision: 5, - Type: Stock, - AlternateId: "56418H100"}, - 525051151237584: &Security{ - SecurityId: 525051151237584, - Name: "MANT", - Description: "ManTech Intl Corp.", - Symbol: "MANT", - Precision: 5, - Type: Stock, - AlternateId: "564563104"}, - 525118369469976: &Security{ - SecurityId: 525118369469976, - Name: "MFC", - Description: "Manulife Financial Corp.", - Symbol: "MFC", - Precision: 5, - Type: Stock, - AlternateId: "56501R106"}, - 525135934894104: &Security{ - SecurityId: 525135934894104, - Name: "MRO", - Description: "Marathon Oil Corp.", - Symbol: "MRO", - Precision: 5, - Type: Stock, - AlternateId: "565849106"}, - 525135997039752: &Security{ - SecurityId: 525135997039752, - Name: "MPC", - Description: "Marathon Petroleum Corp.", - Symbol: "MPC", - Precision: 5, - Type: Stock, - AlternateId: "56585A102"}, - 525203285816196: &Security{ - SecurityId: 525203285816196, - Name: "MMI", - Description: "Marcus & Millichap, Inc.", - Symbol: "MMI", - Precision: 5, - Type: Stock, - AlternateId: "566324109"}, - 525203339563800: &Security{ - SecurityId: 525203339563800, - Name: "MCS", - Description: "Marcus Corp. (The)", - Symbol: "MCS", - Precision: 5, - Type: Stock, - AlternateId: "566330106"}, - 525294596460384: &Security{ - SecurityId: 525294596460384, - Name: "HZO", - Description: "MarineMax, Inc.", - Symbol: "HZO", - Precision: 5, - Type: Stock, - AlternateId: "567908108"}, - 525353646720024: &Security{ - SecurityId: 525353646720024, - Name: "MRIN", - Description: "Marin Software, Inc.", - Symbol: "MRIN", - Precision: 5, - Type: Stock, - AlternateId: "56804T106"}, - 525362189247036: &Security{ - SecurityId: 525362189247036, - Name: "MARPS", - Description: "Marine Petroleum Trust", - Symbol: "MARPS", - Precision: 5, - Type: Stock, - AlternateId: "568423107"}, - 525362195965536: &Security{ - SecurityId: 525362195965536, - Name: "MPX", - Description: "Marine Products Corp.", - Symbol: "MPX", - Precision: 5, - Type: Stock, - AlternateId: "568427108"}, - 525364525592676: &Security{ - SecurityId: 525364525592676, - Name: "MRNS", - Description: "Marinus Pharmaceuticals, Inc.", - Symbol: "MRNS", - Precision: 5, - Type: Stock, - AlternateId: "56854Q101"}, - 527560635270240: &Security{ - SecurityId: 527560635270240, - Name: "MKTX", - Description: "MarketAxess Holdings, Inc.", - Symbol: "MKTX", - Precision: 5, - Type: Stock, - AlternateId: "57060D108"}, - 527560663823424: &Security{ - SecurityId: 527560663823424, - Name: "GDX", - Description: "Market Vectors Gold Miners ETF", - Symbol: "GDX", - Precision: 5, - Type: Stock, - AlternateId: "57060U100"}, - 527560663827456: &Security{ - SecurityId: 527560663827456, - Name: "MOAT", - Description: "Market Vectors Morningstar Wide Moat ETF", - Symbol: "MOAT", - Precision: 5, - Type: Stock, - AlternateId: "57060U134"}, - 527560663830228: &Security{ - SecurityId: 527560663830228, - Name: "FRAK", - Description: "Market Vectors Unconventional Oil & Gas ETF", - Symbol: "FRAK", - Precision: 5, - Type: Stock, - AlternateId: "57060U159"}, - 527560663831452: &Security{ - SecurityId: 527560663831452, - Name: "IDXJ", - Description: "Market Vectors Indonesia Small-Cap ETF", - Symbol: "IDXJ", - Precision: 5, - Type: Stock, - AlternateId: "57060U167"}, - 527560663833900: &Security{ - SecurityId: 527560663833900, - Name: "BBH", - Description: "Market Vectors Biotech ETF", - Symbol: "BBH", - Precision: 5, - Type: Stock, - AlternateId: "57060U183"}, - 527560663835124: &Security{ - SecurityId: 527560663835124, - Name: "OIH", - Description: "Market Vectors Oil Services ETF", - Symbol: "OIH", - Precision: 5, - Type: Stock, - AlternateId: "57060U191"}, - 527560663870404: &Security{ - SecurityId: 527560663870404, - Name: "EVX", - Description: "Market Vectors Environmental Services ETF", - Symbol: "EVX", - Precision: 5, - Type: Stock, - AlternateId: "57060U209"}, - 527560663871628: &Security{ - SecurityId: 527560663871628, - Name: "PPH", - Description: "Market Vectors Pharmaceutical ETF", - Symbol: "PPH", - Precision: 5, - Type: Stock, - AlternateId: "57060U217"}, - 527560663872852: &Security{ - SecurityId: 527560663872852, - Name: "RTH", - Description: "Market Vectors Retail ETF", - Symbol: "RTH", - Precision: 5, - Type: Stock, - AlternateId: "57060U225"}, - 527560663874076: &Security{ - SecurityId: 527560663874076, - Name: "SMH", - Description: "Market Vectors Semiconductor ETF", - Symbol: "SMH", - Precision: 5, - Type: Stock, - AlternateId: "57060U233"}, - 527560663917024: &Security{ - SecurityId: 527560663917024, - Name: "SLX", - Description: "Market Vectors Steel ETF", - Symbol: "SLX", - Precision: 5, - Type: Stock, - AlternateId: "57060U308"}, - 527560663918248: &Security{ - SecurityId: 527560663918248, - Name: "BIZD", - Description: "Market Vectors BDC Income ETF", - Symbol: "BIZD", - Precision: 5, - Type: Stock, - AlternateId: "57060U316"}, - 527560663919472: &Security{ - SecurityId: 527560663919472, - Name: "MORT", - Description: "Market Vectors Mortgage REIT Income ETF", - Symbol: "MORT", - Precision: 5, - Type: Stock, - AlternateId: "57060U324"}, - 527560663920696: &Security{ - SecurityId: 527560663920696, - Name: "XMPT", - Description: "Market Vectors CEF Municipal Income ETF", - Symbol: "XMPT", - Precision: 5, - Type: Stock, - AlternateId: "57060U332"}, - 527560663967316: &Security{ - SecurityId: 527560663967316, - Name: "EMAG", - Description: "Market Vectors Emerging Markets Aggregate Bond ETF", - Symbol: "EMAG", - Precision: 5, - Type: Stock, - AlternateId: "57060U431"}, - 527560664010264: &Security{ - SecurityId: 527560664010264, - Name: "RSX", - Description: "Market Vectors Russia ETF", - Symbol: "RSX", - Precision: 5, - Type: Stock, - AlternateId: "57060U506"}, - 527560664011488: &Security{ - SecurityId: 527560664011488, - Name: "FLTR", - Description: "Market Vectors Investment Grade Floating Rate ETF", - Symbol: "FLTR", - Precision: 5, - Type: Stock, - AlternateId: "57060U514"}, - 527560664012712: &Security{ - SecurityId: 527560664012712, - Name: "EMLC", - Description: "Market Vectors J.P. Morgan EM Local Currency Bond ETF", - Symbol: "EMLC", - Precision: 5, - Type: Stock, - AlternateId: "57060U522"}, - 527560664019156: &Security{ - SecurityId: 527560664019156, - Name: "PLND", - Description: "Market Vectors Poland ETF", - Symbol: "PLND", - Precision: 5, - Type: Stock, - AlternateId: "57060U571"}, - 527560664021964: &Security{ - SecurityId: 527560664021964, - Name: "PEK", - Description: "Market Vectors ChinaAMC A-Share ETF", - Symbol: "PEK", - Precision: 5, - Type: Stock, - AlternateId: "57060U597"}, - 527560664056884: &Security{ - SecurityId: 527560664056884, - Name: "MOO", - Description: "Market Vectors Agribusiness ETF", - Symbol: "MOO", - Precision: 5, - Type: Stock, - AlternateId: "57060U605"}, - 527560664058108: &Security{ - SecurityId: 527560664058108, - Name: "BRF", - Description: "Market Vectors Brazil Small-Cap ETF", - Symbol: "BRF", - Precision: 5, - Type: Stock, - AlternateId: "57060U613"}, - 527560664107536: &Security{ - SecurityId: 527560664107536, - Name: "PRB", - Description: "Market Vectors Pre-Refunded Municipal Index ETF", - Symbol: "PRB", - Precision: 5, - Type: Stock, - AlternateId: "57060U738"}, - 527560664109948: &Security{ - SecurityId: 527560664109948, - Name: "IDX", - Description: "Market Vectors Indonesia Index ETF", - Symbol: "IDX", - Precision: 5, - Type: Stock, - AlternateId: "57060U753"}, - 527560664111172: &Security{ - SecurityId: 527560664111172, - Name: "VNM", - Description: "Market Vectors Vietnam ETF", - Symbol: "VNM", - Precision: 5, - Type: Stock, - AlternateId: "57060U761"}, - 527560664112756: &Security{ - SecurityId: 527560664112756, - Name: "MES", - Description: "Market Vectors Gulf States Index ETF", - Symbol: "MES", - Precision: 5, - Type: Stock, - AlternateId: "57060U779"}, - 527560664113980: &Security{ - SecurityId: 527560664113980, - Name: "AFK", - Description: "Market Vectors Africa Index ETF", - Symbol: "AFK", - Precision: 5, - Type: Stock, - AlternateId: "57060U787"}, - 527560664115204: &Security{ - SecurityId: 527560664115204, - Name: "HAP", - Description: "Market Vectors Natural Resources ETF", - Symbol: "HAP", - Precision: 5, - Type: Stock, - AlternateId: "57060U795"}, - 527560664150124: &Security{ - SecurityId: 527560664150124, - Name: "SMB", - Description: "Market Vectors Short Municipal Index ETF", - Symbol: "SMB", - Precision: 5, - Type: Stock, - AlternateId: "57060U803"}, - 527560664152932: &Security{ - SecurityId: 527560664152932, - Name: "BJK", - Description: "Market Vectors Gaming ETF", - Symbol: "BJK", - Precision: 5, - Type: Stock, - AlternateId: "57060U829"}, - 527560664154156: &Security{ - SecurityId: 527560664154156, - Name: "KOL", - Description: "Market Vectors Coal ETF", - Symbol: "KOL", - Precision: 5, - Type: Stock, - AlternateId: "57060U837"}, - 527560664155380: &Security{ - SecurityId: 527560664155380, - Name: "ITM", - Description: "Market Vectors Intermediate Municipal Index ETF", - Symbol: "ITM", - Precision: 5, - Type: Stock, - AlternateId: "57060U845"}, - 527560664159376: &Security{ - SecurityId: 527560664159376, - Name: "HYD", - Description: "Market Vectors High Yield Municipal Index ETF", - Symbol: "HYD", - Precision: 5, - Type: Stock, - AlternateId: "57060U878"}, - 527560664160600: &Security{ - SecurityId: 527560664160600, - Name: "MLN", - Description: "Market Vectors Long Municipal Index ETF", - Symbol: "MLN", - Precision: 5, - Type: Stock, - AlternateId: "57060U886"}, - 527560719297588: &Security{ - SecurityId: 527560719297588, - Name: "IHY", - Description: "Market Vectors International High Yield Bond ETF", - Symbol: "IHY", - Precision: 5, - Type: Stock, - AlternateId: "57061R205"}, - 527560719309288: &Security{ - SecurityId: 527560719309288, - Name: "CRAK", - Description: "Market Vectors Oil Refiners ETF", - Symbol: "CRAK", - Precision: 5, - Type: Stock, - AlternateId: "57061R296"}, - 527560719344208: &Security{ - SecurityId: 527560719344208, - Name: "ANGL", - Description: "Market Vector Fallen Angel High Yield Bond ETF", - Symbol: "ANGL", - Precision: 5, - Type: Stock, - AlternateId: "57061R304"}, - 527560719345432: &Security{ - SecurityId: 527560719345432, - Name: "MOTI", - Description: "Market Vectors Morningstar International Moat ETF", - Symbol: "MOTI", - Precision: 5, - Type: Stock, - AlternateId: "57061R312"}, - 527560719348240: &Security{ - SecurityId: 527560719348240, - Name: "SPUN", - Description: "Market Vectors Global Spin-Off ETF", - Symbol: "SPUN", - Precision: 5, - Type: Stock, - AlternateId: "57061R338"}, - 527560719350652: &Security{ - SecurityId: 527560719350652, - Name: "CBON", - Description: "Market Vectors ChinaAMC China Bond ETF", - Symbol: "CBON", - Precision: 5, - Type: Stock, - AlternateId: "57061R353"}, - 527560719351876: &Security{ - SecurityId: 527560719351876, - Name: "CNXT", - Description: "Market Vectors ChinaAMC SME-ChiNext ETF", - Symbol: "CNXT", - Precision: 5, - Type: Stock, - AlternateId: "57061R361"}, - 527560719390828: &Security{ - SecurityId: 527560719390828, - Name: "HYEM", - Description: "Market Vectors Emerging Markets High Yield Bond ETF", - Symbol: "HYEM", - Precision: 5, - Type: Stock, - AlternateId: "57061R403"}, - 527560719401304: &Security{ - SecurityId: 527560719401304, - Name: "SHYD", - Description: "Market Vectors Short High - Yield Municipal Index ETF", - Symbol: "SHYD", - Precision: 5, - Type: Stock, - AlternateId: "57061R486"}, - 527560719441480: &Security{ - SecurityId: 527560719441480, - Name: "REMX", - Description: "Market Vectors Rare Earth/Strategic Metals ETF", - Symbol: "REMX", - Precision: 5, - Type: Stock, - AlternateId: "57061R536"}, - 527560719442704: &Security{ - SecurityId: 527560719442704, - Name: "GDXJ", - Description: "Market Vectors Junior Gold Miners ETF", - Symbol: "GDXJ", - Precision: 5, - Type: Stock, - AlternateId: "57061R544"}, - 527560719443892: &Security{ - SecurityId: 527560719443892, - Name: "SCIF", - Description: "Market Vectors India Small-Cap Index ETF", - Symbol: "SCIF", - Precision: 5, - Type: Stock, - AlternateId: "57061R551"}, - 527560719445476: &Security{ - SecurityId: 527560719445476, - Name: "EGPT", - Description: "Market Vectors Egypt Index ETF", - Symbol: "EGPT", - Precision: 5, - Type: Stock, - AlternateId: "57061R569"}, - 527560719446700: &Security{ - SecurityId: 527560719446700, - Name: "NLR", - Description: "Market Vectors Uranium+Nuclear Energy ETF", - Symbol: "NLR", - Precision: 5, - Type: Stock, - AlternateId: "57061R577"}, - 527560719447924: &Security{ - SecurityId: 527560719447924, - Name: "RSXJ", - Description: "Market Vectors Russia Small-Cap ETF", - Symbol: "RSXJ", - Precision: 5, - Type: Stock, - AlternateId: "57061R585"}, - 527560719449148: &Security{ - SecurityId: 527560719449148, - Name: "GEX", - Description: "Market Vectors Global Alternative Energy ETF", - Symbol: "GEX", - Precision: 5, - Type: Stock, - AlternateId: "57061R593"}, - 527560719493320: &Security{ - SecurityId: 527560719493320, - Name: "ISRA", - Description: "Market Vectors Israel ETF", - Symbol: "ISRA", - Precision: 5, - Type: Stock, - AlternateId: "57061R676"}, - 527560719539940: &Security{ - SecurityId: 527560719539940, - Name: "THHY", - Description: "Market Vectors Treasury - Hedged High Yield ETF", - Symbol: "THHY", - Precision: 5, - Type: Stock, - AlternateId: "57061R775"}, - 527560719541164: &Security{ - SecurityId: 527560719541164, - Name: "KWT", - Description: "Market Vectors Solar Energy ETF", - Symbol: "KWT", - Precision: 5, - Type: Stock, - AlternateId: "57061R783"}, - 527560719542388: &Security{ - SecurityId: 527560719542388, - Name: "PFXF", - Description: "Market Vectors Preferred Securities ex Financials ETF", - Symbol: "PFXF", - Precision: 5, - Type: Stock, - AlternateId: "57061R791"}, - 527560830105660: &Security{ - SecurityId: 527560830105660, - Name: "MKTO", - Description: "Marketo, Inc.", - Symbol: "MKTO", - Precision: 5, - Type: Stock, - AlternateId: "57063L107"}, - 527639276570940: &Security{ - SecurityId: 527639276570940, - Name: "VAC", - Description: "Marriott Vacations Worldwide Corp.", - Symbol: "VAC", - Precision: 5, - Type: Stock, - AlternateId: "57164Y107"}, - 527639298405912: &Security{ - SecurityId: 527639298405912, - Name: "MBII", - Description: "Marrone Bio Innovations, Inc.", - Symbol: "MBII", - Precision: 5, - Type: Stock, - AlternateId: "57165B106"}, - 527641409683080: &Security{ - SecurityId: 527641409683080, - Name: "MMC", - Description: "Marsh & McLennan Companies, Inc.", - Symbol: "MMC", - Precision: 5, - Type: Stock, - AlternateId: "571748102"}, - 527645513031624: &Security{ - SecurityId: 527645513031624, - Name: "MAR", - Description: "Marriott Intl, Inc.", - Symbol: "MAR", - Precision: 5, - Type: Stock, - AlternateId: "571903202"}, - 527783076894816: &Security{ - SecurityId: 527783076894816, - Name: "MRTN", - Description: "Marten Transport Ltd", - Symbol: "MRTN", - Precision: 5, - Type: Stock, - AlternateId: "573075108"}, - 527787489245976: &Security{ - SecurityId: 527787489245976, - Name: "MLM", - Description: "Martin Marietta Materials, Inc.", - Symbol: "MLM", - Precision: 5, - Type: Stock, - AlternateId: "573284106"}, - 527789358658548: &Security{ - SecurityId: 527789358658548, - Name: "MMLP", - Description: "Martin Midstream Partners, L.P.", - Symbol: "MMLP", - Precision: 5, - Type: Stock, - AlternateId: "573331105"}, - 527872452621336: &Security{ - SecurityId: 527872452621336, - Name: "MAS", - Description: "Masco Corp.", - Symbol: "MAS", - Precision: 5, - Type: Stock, - AlternateId: "574599106"}, - 527946396036228: &Security{ - SecurityId: 527946396036228, - Name: "DOOR", - Description: "Masonite International Corp.", - Symbol: "DOOR", - Precision: 5, - Type: Stock, - AlternateId: "575385109"}, - 528024394044036: &Security{ - SecurityId: 528024394044036, - Name: "MTZ", - Description: "MasTec, Inc.", - Symbol: "MTZ", - Precision: 5, - Type: Stock, - AlternateId: "576323109"}, - 528024674539728: &Security{ - SecurityId: 528024674539728, - Name: "MA", - Description: "MasterCard, Inc.", - Symbol: "MA", - Precision: 5, - Type: Stock, - AlternateId: "57636Q104"}, - 528026937029172: &Security{ - SecurityId: 528026937029172, - Name: "MTDR", - Description: "Matador Resources Co.", - Symbol: "MTDR", - Precision: 5, - Type: Stock, - AlternateId: "576485205"}, - 528031146100248: &Security{ - SecurityId: 528031146100248, - Name: "MTCH", - Description: "Match Group, Inc.", - Symbol: "MTCH", - Precision: 5, - Type: Stock, - AlternateId: "57665R106"}, - 528031270391616: &Security{ - SecurityId: 528031270391616, - Name: "MTLS", - Description: "Materialise NV", - Symbol: "MTLS", - Precision: 5, - Type: Stock, - AlternateId: "57667T100"}, - 528031342615140: &Security{ - SecurityId: 528031342615140, - Name: "MTRN", - Description: "Materion Corp.", - Symbol: "MTRN", - Precision: 5, - Type: Stock, - AlternateId: "576690101"}, - 528035459354100: &Security{ - SecurityId: 528035459354100, - Name: "MTRX", - Description: "Matrix Service Co.", - Symbol: "MTRX", - Precision: 5, - Type: Stock, - AlternateId: "576853105"}, - 528035541655284: &Security{ - SecurityId: 528035541655284, - Name: "MATX", - Description: "Alexander & Baldwin Holdings, Inc.", - Symbol: "MATX", - Precision: 5, - Type: Stock, - AlternateId: "57686G105"}, - 528096587298696: &Security{ - SecurityId: 528096587298696, - Name: "MAT", - Description: "Mattel, Inc.", - Symbol: "MAT", - Precision: 5, - Type: Stock, - AlternateId: "577081102"}, - 528096657842784: &Security{ - SecurityId: 528096657842784, - Name: "MATR", - Description: "Mattersight Corp.", - Symbol: "MATR", - Precision: 5, - Type: Stock, - AlternateId: "577097108"}, - 528100630134552: &Security{ - SecurityId: 528100630134552, - Name: "MFRM", - Description: "Mattress Firm Holding Corp.", - Symbol: "MFRM", - Precision: 5, - Type: Stock, - AlternateId: "57722W106"}, - 528100581425472: &Security{ - SecurityId: 528100581425472, - Name: "MTSN", - Description: "Mattson Technology, Inc.", - Symbol: "MTSN", - Precision: 5, - Type: Stock, - AlternateId: "577223100"}, - 528102882499428: &Security{ - SecurityId: 528102882499428, - Name: "MLP", - Description: "Maui Land & Pineapple Co., Inc.", - Symbol: "MLP", - Precision: 5, - Type: Stock, - AlternateId: "577345101"}, - 528111493890660: &Security{ - SecurityId: 528111493890660, - Name: "MXIM", - Description: "Maxim Integrated Products, Inc.", - Symbol: "MXIM", - Precision: 5, - Type: Stock, - AlternateId: "57772K101"}, - 528111734075712: &Security{ - SecurityId: 528111734075712, - Name: "MXL", - Description: "MaxLinear, Inc.", - Symbol: "MXL", - Precision: 5, - Type: Stock, - AlternateId: "57776J100"}, - 528111713920536: &Security{ - SecurityId: 528111713920536, - Name: "MXWL", - Description: "Maxwell Technologies, Inc.", - Symbol: "MXWL", - Precision: 5, - Type: Stock, - AlternateId: "577767106"}, - 528111799580808: &Security{ - SecurityId: 528111799580808, - Name: "MXPT", - Description: "MaxPoint Interactive, Inc.", - Symbol: "MXPT", - Precision: 5, - Type: Stock, - AlternateId: "57777M102"}, - 528115879368144: &Security{ - SecurityId: 528115879368144, - Name: "MMS", - Description: "MAXIMUS, Inc.", - Symbol: "MMS", - Precision: 5, - Type: Stock, - AlternateId: "577933104"}, - 528183601485120: &Security{ - SecurityId: 528183601485120, - Name: "MAYS", - Description: "J.W. Mays, Inc.", - Symbol: "MAYS", - Precision: 5, - Type: Stock, - AlternateId: "578473100"}, - 528192285099948: &Security{ - SecurityId: 528192285099948, - Name: "MZOR", - Description: "Mazor Robotics Ltd.", - Symbol: "MZOR", - Precision: 5, - Type: Stock, - AlternateId: "57886P103"}, - 528192315333000: &Security{ - SecurityId: 528192315333000, - Name: "MBTF", - Description: "MBT Financial Corp.", - Symbol: "MBTF", - Precision: 5, - Type: Stock, - AlternateId: "578877102"}, - 528262036193268: &Security{ - SecurityId: 528262036193268, - Name: "MNI", - Description: "McClatchy Co. (The)", - Symbol: "MNI", - Precision: 5, - Type: Stock, - AlternateId: "579489105"}, - 528268551423804: &Security{ - SecurityId: 528268551423804, - Name: "MKC.V", - Description: "McCormick & Co., Inc. Voting Common Stock", - Symbol: "MKC.V", - Precision: 5, - Type: Stock, - AlternateId: "579780107"}, - 528268551470424: &Security{ - SecurityId: 528268551470424, - Name: "MKC", - Description: "McCormick & Co., Inc. Non-voting Common Stock", - Symbol: "MKC", - Precision: 5, - Type: Stock, - AlternateId: "579780206"}, - 530368855804548: &Security{ - SecurityId: 530368855804548, - Name: "MDR", - Description: "McDermott Intl, Inc.", - Symbol: "MDR", - Precision: 5, - Type: Stock, - AlternateId: "580037109"}, - 530371029227364: &Security{ - SecurityId: 530371029227364, - Name: "MCD", - Description: "McDonald's Corp.", - Symbol: "MCD", - Precision: 5, - Type: Stock, - AlternateId: "580135101"}, - 530375779181628: &Security{ - SecurityId: 530375779181628, - Name: "MUX", - Description: "McEwen Mining, Inc.", - Symbol: "MUX", - Precision: 5, - Type: Stock, - AlternateId: "58039P107"}, - 530380045406340: &Security{ - SecurityId: 530380045406340, - Name: "MGRC", - Description: "McGrath RentCorp", - Symbol: "MGRC", - Precision: 5, - Type: Stock, - AlternateId: "580589109"}, - 530381973605508: &Security{ - SecurityId: 530381973605508, - Name: "MHFI", - Description: "McGraw-Hill Financial, Inc.", - Symbol: "MHFI", - Precision: 5, - Type: Stock, - AlternateId: "580645109"}, - 530458256725164: &Security{ - SecurityId: 530458256725164, - Name: "MCK", - Description: "McKesson Corp.", - Symbol: "MCK", - Precision: 5, - Type: Stock, - AlternateId: "58155Q103"}, - 530543001750552: &Security{ - SecurityId: 530543001750552, - Name: "MJN", - Description: "Mead Johnson Nutrition Co.", - Symbol: "MJN", - Precision: 5, - Type: Stock, - AlternateId: "582839106"}, - 530621411264172: &Security{ - SecurityId: 530621411264172, - Name: "MTL", - Description: "Mechel OAO", - Symbol: "MTL", - Precision: 5, - Type: Stock, - AlternateId: "583840103"}, - 530621411451012: &Security{ - SecurityId: 530621411451012, - Name: "MTL-", - Description: "Mechel OAO, Preferred", - Symbol: "MTL-", - Precision: 5, - Type: Stock, - AlternateId: "583840509"}, - 530623480551192: &Security{ - SecurityId: 530623480551192, - Name: "TAXI", - Description: "Medallion Financial Corp.", - Symbol: "TAXI", - Precision: 5, - Type: Stock, - AlternateId: "583928106"}, - 530682369567840: &Security{ - SecurityId: 530682369567840, - Name: "MDAS", - Description: "MedAssets, Inc.", - Symbol: "MDAS", - Precision: 5, - Type: Stock, - AlternateId: "584045108"}, - 530689056165612: &Security{ - SecurityId: 530689056165612, - Name: "MDGN", - Description: "Medgenics, Inc.", - Symbol: "MDGN", - Precision: 5, - Type: Stock, - AlternateId: "58436Q203"}, - 530695393403472: &Security{ - SecurityId: 530695393403472, - Name: "MPW", - Description: "Medical Properties Trust, Inc.", - Symbol: "MPW", - Precision: 5, - Type: Stock, - AlternateId: "58463J304"}, - 530695453776372: &Security{ - SecurityId: 530695453776372, - Name: "MTBC", - Description: "Medical Transcription Billing Corp.", - Symbol: "MTBC", - Precision: 5, - Type: Stock, - AlternateId: "58464J105"}, - 530695677165300: &Security{ - SecurityId: 530695677165300, - Name: "MDCO", - Description: "Medicines Co. (The)", - Symbol: "MDCO", - Precision: 5, - Type: Stock, - AlternateId: "584688105"}, - 530697385334628: &Security{ - SecurityId: 530697385334628, - Name: "MED", - Description: "Medifast, Inc.", - Symbol: "MED", - Precision: 5, - Type: Stock, - AlternateId: "58470H101"}, - 530697434043636: &Security{ - SecurityId: 530697434043636, - Name: "MDSO", - Description: "Medidata Solutions, Inc.", - Symbol: "MDSO", - Precision: 5, - Type: Stock, - AlternateId: "58471A105"}, - 530760582566244: &Security{ - SecurityId: 530760582566244, - Name: "MDVN", - Description: "Medivation, Inc.", - Symbol: "MDVN", - Precision: 5, - Type: Stock, - AlternateId: "58501N101"}, - 530760622877208: &Security{ - SecurityId: 530760622877208, - Name: "MD", - Description: "MEDNAX, Inc", - Symbol: "MD", - Precision: 5, - Type: Stock, - AlternateId: "58502B106"}, - 530760690061848: &Security{ - SecurityId: 530760690061848, - Name: "MCC", - Description: "Medley Capital Corp.", - Symbol: "MCC", - Precision: 5, - Type: Stock, - AlternateId: "58503F106"}, - 530760713576472: &Security{ - SecurityId: 530760713576472, - Name: "MDLY", - Description: "Medley Management, Inc.", - Symbol: "MDLY", - Precision: 5, - Type: Stock, - AlternateId: "58503T106"}, - 530771674750272: &Security{ - SecurityId: 530771674750272, - Name: "MELR", - Description: "Melrose Bancorp, Inc.", - Symbol: "MELR", - Precision: 5, - Type: Stock, - AlternateId: "585553100"}, - 530839102934592: &Security{ - SecurityId: 530839102934592, - Name: "MEMP", - Description: "Memorial Production Partners L.P.", - Symbol: "MEMP", - Precision: 5, - Type: Stock, - AlternateId: "586048100"}, - 530839193634180: &Security{ - SecurityId: 530839193634180, - Name: "MRD", - Description: "Memorial Resource Development Corp.", - Symbol: "MRD", - Precision: 5, - Type: Stock, - AlternateId: "58605Q109"}, - 530919462482496: &Security{ - SecurityId: 530919462482496, - Name: "MW", - Description: "Men's Wearhouse, Inc. (The)", - Symbol: "MW", - Precision: 5, - Type: Stock, - AlternateId: "587118100"}, - 530921565361944: &Security{ - SecurityId: 530921565361944, - Name: "MENT", - Description: "Mentor Graphics Corp.", - Symbol: "MENT", - Precision: 5, - Type: Stock, - AlternateId: "587200106"}, - 530923968892296: &Security{ - SecurityId: 530923968892296, - Name: "MELI", - Description: "MercadoLibre, Inc.", - Symbol: "MELI", - Precision: 5, - Type: Stock, - AlternateId: "58733R102"}, - 530924175485136: &Security{ - SecurityId: 530924175485136, - Name: "MBWM", - Description: "Mercantile Bank Corp.", - Symbol: "MBWM", - Precision: 5, - Type: Stock, - AlternateId: "587376104"}, - 530995888369764: &Security{ - SecurityId: 530995888369764, - Name: "MERC", - Description: "Mercer Intl, Inc.", - Symbol: "MERC", - Precision: 5, - Type: Stock, - AlternateId: "588056101"}, - 531004538392128: &Security{ - SecurityId: 531004538392128, - Name: "MBVT", - Description: "Merchants Bancshares, Inc.", - Symbol: "MBVT", - Precision: 5, - Type: Stock, - AlternateId: "588448100"}, - 531080708977908: &Security{ - SecurityId: 531080708977908, - Name: "MRK", - Description: "Merck & Co., Inc.", - Symbol: "MRK", - Precision: 5, - Type: Stock, - AlternateId: "58933Y105"}, - 531080907172704: &Security{ - SecurityId: 531080907172704, - Name: "MRCY", - Description: "Mercury Systems, Inc.", - Symbol: "MRCY", - Precision: 5, - Type: Stock, - AlternateId: "589378108"}, - 531082647254592: &Security{ - SecurityId: 531082647254592, - Name: "MCY", - Description: "Mercury General Corp.", - Symbol: "MCY", - Precision: 5, - Type: Stock, - AlternateId: "589400100"}, - 531082833692004: &Security{ - SecurityId: 531082833692004, - Name: "MDP", - Description: "Meredith Corp.", - Symbol: "MDP", - Precision: 5, - Type: Stock, - AlternateId: "589433101"}, - 531085358154924: &Security{ - SecurityId: 531085358154924, - Name: "EBSB", - Description: "Meridian Bancorp, Inc.", - Symbol: "EBSB", - Precision: 5, - Type: Stock, - AlternateId: "58958U103"}, - 531085314484836: &Security{ - SecurityId: 531085314484836, - Name: "VIVO", - Description: "Meridian Bioscience, Inc.", - Symbol: "VIVO", - Precision: 5, - Type: Stock, - AlternateId: "589584101"}, - 531091853230032: &Security{ - SecurityId: 531091853230032, - Name: "MMSI", - Description: "Merit Medical Systems, Inc.", - Symbol: "MMSI", - Precision: 5, - Type: Stock, - AlternateId: "589889104"}, - 533189849818248: &Security{ - SecurityId: 533189849818248, - Name: "MTH", - Description: "Meritage Homes Corp.", - Symbol: "MTH", - Precision: 5, - Type: Stock, - AlternateId: "59001A102"}, - 533189866614336: &Security{ - SecurityId: 533189866614336, - Name: "MTOR", - Description: "Meritor, Inc.", - Symbol: "MTOR", - Precision: 5, - Type: Stock, - AlternateId: "59001K100"}, - 533196437272128: &Security{ - SecurityId: 533196437272128, - Name: "MACK", - Description: "Merrimack Pharmaceuticals, Inc.", - Symbol: "MACK", - Precision: 5, - Type: Stock, - AlternateId: "590328100"}, - 533198948298084: &Security{ - SecurityId: 533198948298084, - Name: "MSLI", - Description: "Merus Labs Intl, Inc.", - Symbol: "MSLI", - Precision: 5, - Type: Stock, - AlternateId: "59047R101"}, - 533203120464516: &Security{ - SecurityId: 533203120464516, - Name: "MLAB", - Description: "Mesa Laboratories, Inc.", - Symbol: "MLAB", - Precision: 5, - Type: Stock, - AlternateId: "59064R109"}, - 533203196047128: &Security{ - SecurityId: 533203196047128, - Name: "MTR", - Description: "Mesa Royalty Trust", - Symbol: "MTR", - Precision: 5, - Type: Stock, - AlternateId: "590660106"}, - 533203259872356: &Security{ - SecurityId: 533203259872356, - Name: "MSB", - Description: "Mesabi Trust", - Symbol: "MSB", - Precision: 5, - Type: Stock, - AlternateId: "590672101"}, - 533205082255824: &Security{ - SecurityId: 533205082255824, - Name: "MESO", - Description: "Mesoblast Ltd.", - Symbol: "MESO", - Precision: 5, - Type: Stock, - AlternateId: "590717104"}, - 533268187108704: &Security{ - SecurityId: 533268187108704, - Name: "CASH", - Description: "Meta Financial Group, Inc.", - Symbol: "CASH", - Precision: 5, - Type: Stock, - AlternateId: "59100U108"}, - 533268210960072: &Security{ - SecurityId: 533268210960072, - Name: "MBLX", - Description: "Metabolix, Inc.", - Symbol: "MBLX", - Precision: 5, - Type: Stock, - AlternateId: "591018882"}, - 533270721649212: &Security{ - SecurityId: 533270721649212, - Name: "MPG", - Description: "Metaldyne Performance Group, Inc.", - Symbol: "MPG", - Precision: 5, - Type: Stock, - AlternateId: "59116R107"}, - 533279114690400: &Security{ - SecurityId: 533279114690400, - Name: "MEOH", - Description: "Methanex Corp.", - Symbol: "MEOH", - Precision: 5, - Type: Stock, - AlternateId: "59151K108"}, - 533279092855356: &Security{ - SecurityId: 533279092855356, - Name: "MEIL", - Description: "Methes Energies International Ltd", - Symbol: "MEIL", - Precision: 5, - Type: Stock, - AlternateId: "591517107"}, - 533279141610624: &Security{ - SecurityId: 533279141610624, - Name: "MEI", - Description: "Methode Electronics, Inc.", - Symbol: "MEI", - Precision: 5, - Type: Stock, - AlternateId: "591520200"}, - 533279428778592: &Security{ - SecurityId: 533279428778592, - Name: "MET", - Description: "MetLife, Inc.", - Symbol: "MET", - Precision: 5, - Type: Stock, - AlternateId: "59156R108"}, - 533281303229796: &Security{ - SecurityId: 533281303229796, - Name: "METR", - Description: "Metro Bancorp, Inc.", - Symbol: "METR", - Precision: 5, - Type: Stock, - AlternateId: "59161R101"}, - 533360058744564: &Security{ - SecurityId: 533360058744564, - Name: "MTD", - Description: "Mettler-Toledo Intl, Inc.", - Symbol: "MTD", - Precision: 5, - Type: Stock, - AlternateId: "592688105"}, - 533362161623652: &Security{ - SecurityId: 533362161623652, - Name: "MXC", - Description: "Mexco Energy Corp.", - Symbol: "MXC", - Precision: 5, - Type: Stock, - AlternateId: "592770101"}, - 533364103259892: &Security{ - SecurityId: 533364103259892, - Name: "MXE", - Description: "Mexico Equity and Income Fund, Inc. (The)", - Symbol: "MXE", - Precision: 5, - Type: Stock, - AlternateId: "592834105"}, - 533427545715480: &Security{ - SecurityId: 533427545715480, - Name: "CCA", - Description: "MFS California Municipal Fund", - Symbol: "CCA", - Precision: 5, - Type: Stock, - AlternateId: "59318C106"}, - 533503756611864: &Security{ - SecurityId: 533503756611864, - Name: "MIK", - Description: "Michaels Companies, Inc. (The)", - Symbol: "MIK", - Precision: 5, - Type: Stock, - AlternateId: "59408Q106"}, - 533522894156496: &Security{ - SecurityId: 533522894156496, - Name: "MSFT", - Description: "Microsoft Corp.", - Symbol: "MSFT", - Precision: 5, - Type: Stock, - AlternateId: "594918104"}, - 533523247015968: &Security{ - SecurityId: 533523247015968, - Name: "MSTR", - Description: "MicroStrategy, Inc.", - Symbol: "MSTR", - Precision: 5, - Type: Stock, - AlternateId: "594972408"}, - 533581665599952: &Security{ - SecurityId: 533581665599952, - Name: "MCHP", - Description: "Microchip Technology, Inc.", - Symbol: "MCHP", - Precision: 5, - Type: Stock, - AlternateId: "595017104"}, - 533583833984172: &Security{ - SecurityId: 533583833984172, - Name: "MU", - Description: "Micron Technology, Inc.", - Symbol: "MU", - Precision: 5, - Type: Stock, - AlternateId: "595112103"}, - 533583842382216: &Security{ - SecurityId: 533583842382216, - Name: "MICT", - Description: "Micronet Enertec Technologies, Inc.", - Symbol: "MICT", - Precision: 5, - Type: Stock, - AlternateId: "595117102"}, - 533583963314496: &Security{ - SecurityId: 533583963314496, - Name: "MSCC", - Description: "Microsemi Corp.", - Symbol: "MSCC", - Precision: 5, - Type: Stock, - AlternateId: "595137100"}, - 533586099786156: &Security{ - SecurityId: 533586099786156, - Name: "MAA", - Description: "Mid-America Apartment Communities, Inc.", - Symbol: "MAA", - Precision: 5, - Type: Stock, - AlternateId: "59522J103"}, - 533590327379772: &Security{ - SecurityId: 533590327379772, - Name: "MPB", - Description: "Mid Penn Bancorp, Inc.", - Symbol: "MPB", - Precision: 5, - Type: Stock, - AlternateId: "59540G107"}, - 533594706138756: &Security{ - SecurityId: 533594706138756, - Name: "MCEP", - Description: "Mid-Con Energy Partners L.P.", - Symbol: "MCEP", - Precision: 5, - Type: Stock, - AlternateId: "59560V109"}, - 533594934566316: &Security{ - SecurityId: 533594934566316, - Name: "MEP", - Description: "Midcoast Energy Partners, L.P.", - Symbol: "MEP", - Precision: 5, - Type: Stock, - AlternateId: "59564N103"}, - 533594941284816: &Security{ - SecurityId: 533594941284816, - Name: "MTP", - Description: "Midatech Pharma Plc", - Symbol: "MTP", - Precision: 5, - Type: Stock, - AlternateId: "59564R104"}, - 533660508454536: &Security{ - SecurityId: 533660508454536, - Name: "MBRG", - Description: "Middleburg Financial Corp.", - Symbol: "MBRG", - Precision: 5, - Type: Stock, - AlternateId: "596094102"}, - 533664747805284: &Security{ - SecurityId: 533664747805284, - Name: "MIDD", - Description: "Middleby Corp. (The)", - Symbol: "MIDD", - Precision: 5, - Type: Stock, - AlternateId: "596278101"}, - 533666494652688: &Security{ - SecurityId: 533666494652688, - Name: "MBCN", - Description: "Middlefield Banc Corp.", - Symbol: "MBCN", - Precision: 5, - Type: Stock, - AlternateId: "596304204"}, - 533673501964128: &Security{ - SecurityId: 533673501964128, - Name: "MSEX", - Description: "Middlesex Water Co.", - Symbol: "MSEX", - Precision: 5, - Type: Stock, - AlternateId: "596680108"}, - 533816882383860: &Security{ - SecurityId: 533816882383860, - Name: "MSL", - Description: "MidSouth Bancorp, Inc.", - Symbol: "MSL", - Precision: 5, - Type: Stock, - AlternateId: "598039105"}, - 533816976535776: &Security{ - SecurityId: 533816976535776, - Name: "MPO", - Description: "Midstates Petroleum Co., Inc.", - Symbol: "MPO", - Precision: 5, - Type: Stock, - AlternateId: "59804T308"}, - 533827631926188: &Security{ - SecurityId: 533827631926188, - Name: "MOFG", - Description: "MidwestOne Financial Group, Inc.", - Symbol: "MOFG", - Precision: 5, - Type: Stock, - AlternateId: "598511103"}, - 533831958617112: &Security{ - SecurityId: 533831958617112, - Name: "MCRN", - Description: "Milacron Holdings Corp.", - Symbol: "MCRN", - Precision: 5, - Type: Stock, - AlternateId: "59870L106"}, - 609366708783972: &Security{ - SecurityId: 609366708783972, - Name: "HIE", - Description: "Miller/Howard High Income Equity Fund", - Symbol: "HIE", - Precision: 5, - Type: Stock, - AlternateId: "600379101"}, - 609370872552000: &Security{ - SecurityId: 609370872552000, - Name: "MLHR", - Description: "Herman Miller, Inc.", - Symbol: "MLHR", - Precision: 5, - Type: Stock, - AlternateId: "600544100"}, - 609370928026128: &Security{ - SecurityId: 609370928026128, - Name: "MLR", - Description: "Miller Industries, Inc.", - Symbol: "MLR", - Precision: 5, - Type: Stock, - AlternateId: "600551204"}, - 609525729788004: &Security{ - SecurityId: 609525729788004, - Name: "MDXG", - Description: "MiMedx Group, Inc.", - Symbol: "MDXG", - Precision: 5, - Type: Stock, - AlternateId: "602496101"}, - 609527615997024: &Security{ - SecurityId: 609527615997024, - Name: "MGH", - Description: "Minco Gold Corp.", - Symbol: "MGH", - Precision: 5, - Type: Stock, - AlternateId: "60254D108"}, - 609527708375796: &Security{ - SecurityId: 609527708375796, - Name: "MB", - Description: "MINDBODY, Inc. Cl A", - Symbol: "MB", - Precision: 5, - Type: Stock, - AlternateId: "60255W105"}, - 609529960740672: &Security{ - SecurityId: 609529960740672, - Name: "MR", - Description: "Mindray Medical Intl Ltd", - Symbol: "MR", - Precision: 5, - Type: Stock, - AlternateId: "602675100"}, - 609597325099800: &Security{ - SecurityId: 609597325099800, - Name: "MTX", - Description: "Minerals Technologies, Inc.", - Symbol: "MTX", - Precision: 5, - Type: Stock, - AlternateId: "603158106"}, - 609601846626072: &Security{ - SecurityId: 609601846626072, - Name: "NERV", - Description: "Minerva Neurosciences, Inc.", - Symbol: "NERV", - Precision: 5, - Type: Stock, - AlternateId: "603380106"}, - 609603724436724: &Security{ - SecurityId: 609603724436724, - Name: "MGN", - Description: "Mines Management, Inc.", - Symbol: "MGN", - Precision: 5, - Type: Stock, - AlternateId: "603432105"}, - 609686789846004: &Security{ - SecurityId: 609686789846004, - Name: "MRTX", - Description: "Mirati Therapeutics, Inc.", - Symbol: "MRTX", - Precision: 5, - Type: Stock, - AlternateId: "60468T105"}, - 609688466102700: &Security{ - SecurityId: 609688466102700, - Name: "MIRN", - Description: "Mirna Therapeutics, Inc.", - Symbol: "MIRN", - Precision: 5, - Type: Stock, - AlternateId: "60470J103"}, - 609691035915180: &Security{ - SecurityId: 609691035915180, - Name: "MSON", - Description: "Misonix, Inc.", - Symbol: "MSON", - Precision: 5, - Type: Stock, - AlternateId: "604871103"}, - 609839225075772: &Security{ - SecurityId: 609839225075772, - Name: "MG", - Description: "Mistras Group, Inc.", - Symbol: "MG", - Precision: 5, - Type: Stock, - AlternateId: "60649T107"}, - 609840810633168: &Security{ - SecurityId: 609840810633168, - Name: "MIND", - Description: "Mitcham Industries, Inc.", - Symbol: "MIND", - Precision: 5, - Type: Stock, - AlternateId: "606501104"}, - 609845266654416: &Security{ - SecurityId: 609845266654416, - Name: "MITL", - Description: "Mitel Networks Corp.", - Symbol: "MITL", - Precision: 5, - Type: Stock, - AlternateId: "60671Q104"}, - 609845223030912: &Security{ - SecurityId: 609845223030912, - Name: "MITK", - Description: "Mitek Systems, Inc.", - Symbol: "MITK", - Precision: 5, - Type: Stock, - AlternateId: "606710200"}, - 609847819670916: &Security{ - SecurityId: 609847819670916, - Name: "MFG", - Description: "Mizuho Financial Group, Inc.", - Symbol: "MFG", - Precision: 5, - Type: Stock, - AlternateId: "60687Y109"}, - 609847861661064: &Security{ - SecurityId: 609847861661064, - Name: "MIXT", - Description: "MiX Telematics Ltd", - Symbol: "MIXT", - Precision: 5, - Type: Stock, - AlternateId: "60688N102"}, - 609917021529588: &Security{ - SecurityId: 609917021529588, - Name: "MINI", - Description: "Mobile Mini, Inc.", - Symbol: "MINI", - Precision: 5, - Type: Stock, - AlternateId: "60740F105"}, - 609917011452036: &Security{ - SecurityId: 609917011452036, - Name: "MBT", - Description: "Mobile TeleSystems OJSC ADR", - Symbol: "MBT", - Precision: 5, - Type: Stock, - AlternateId: "607409109"}, - 609917547249252: &Security{ - SecurityId: 609917547249252, - Name: "MOCO", - Description: "MOCON, Inc.", - Symbol: "MOCO", - Precision: 5, - Type: Stock, - AlternateId: "607494101"}, - 609919302448008: &Security{ - SecurityId: 609919302448008, - Name: "MODN", - Description: "Model N, Inc.", - Symbol: "MODN", - Precision: 5, - Type: Stock, - AlternateId: "607525102"}, - 609925837833792: &Security{ - SecurityId: 609925837833792, - Name: "MOD", - Description: "Modine Manufacturing Co.", - Symbol: "MOD", - Precision: 5, - Type: Stock, - AlternateId: "607828100"}, - 609926101580376: &Security{ - SecurityId: 609926101580376, - Name: "MLNK", - Description: "ModusLink Global Solutions, Inc.", - Symbol: "MLNK", - Precision: 5, - Type: Stock, - AlternateId: "60786L206"}, - 609926103213300: &Security{ - SecurityId: 609926103213300, - Name: "MC", - Description: "Moelis & Company", - Symbol: "MC", - Precision: 5, - Type: Stock, - AlternateId: "60786M105"}, - 609989374347984: &Security{ - SecurityId: 609989374347984, - Name: "MHK", - Description: "Mohawk Industries, Inc.", - Symbol: "MHK", - Precision: 5, - Type: Stock, - AlternateId: "608190104"}, - 609995706500340: &Security{ - SecurityId: 609995706500340, - Name: "MOLG", - Description: "MOL Global, Inc.", - Symbol: "MOLG", - Precision: 5, - Type: Stock, - AlternateId: "60845Q105"}, - 609995676313872: &Security{ - SecurityId: 609995676313872, - Name: "MOKO", - Description: "Moko Social Media Ltd.", - Symbol: "MOKO", - Precision: 5, - Type: Stock, - AlternateId: "608458204"}, - 609997884962112: &Security{ - SecurityId: 609997884962112, - Name: "MOH", - Description: "Molina Healthcare, Inc.", - Symbol: "MOH", - Precision: 5, - Type: Stock, - AlternateId: "60855R100"}, - 610001996662080: &Security{ - SecurityId: 610001996662080, - Name: "TAP.A", - Description: "Molson Coors Brewing Co., Cl A", - Symbol: "TAP.A", - Precision: 5, - Type: Stock, - AlternateId: "60871R100"}, - 610001996709060: &Security{ - SecurityId: 610001996709060, - Name: "TAP", - Description: "Molson Coors Brewing Co.", - Symbol: "TAP", - Precision: 5, - Type: Stock, - AlternateId: "60871R209"}, - 610002453517884: &Security{ - SecurityId: 610002453517884, - Name: "MOMO", - Description: "Momo, Inc.", - Symbol: "MOMO", - Precision: 5, - Type: Stock, - AlternateId: "60879B107"}, - 610065150223932: &Security{ - SecurityId: 610065150223932, - Name: "MCRI", - Description: "Monarch Casino & Resort, Inc.", - Symbol: "MCRI", - Precision: 5, - Type: Stock, - AlternateId: "609027107"}, - 610065484467264: &Security{ - SecurityId: 610065484467264, - Name: "MNRK", - Description: "Monarch Financial Holdings, Inc.", - Symbol: "MNRK", - Precision: 5, - Type: Stock, - AlternateId: "60907Q100"}, - 610069382856180: &Security{ - SecurityId: 610069382856180, - Name: "MDLZ", - Description: "Mondelez International, Inc.", - Symbol: "MDLZ", - Precision: 5, - Type: Stock, - AlternateId: "609207105"}, - 610071907365792: &Security{ - SecurityId: 610071907365792, - Name: "MGI", - Description: "MoneyGram Intl, Inc.", - Symbol: "MGI", - Precision: 5, - Type: Stock, - AlternateId: "60935Y208"}, - 610080375942972: &Security{ - SecurityId: 610080375942972, - Name: "MNR", - Description: "Monmouth Real Estate Investment Corp.", - Symbol: "MNR", - Precision: 5, - Type: Stock, - AlternateId: "609720107"}, - 610080841196532: &Security{ - SecurityId: 610080841196532, - Name: "MORE", - Description: "Monogram Residential Trust, Inc.", - Symbol: "MORE", - Precision: 5, - Type: Stock, - AlternateId: "60979P105"}, - 610082628307956: &Security{ - SecurityId: 610082628307956, - Name: "MPWR", - Description: "Monolithic Power Systems, Inc.", - Symbol: "MPWR", - Precision: 5, - Type: Stock, - AlternateId: "609839105"}, - 612185395005540: &Security{ - SecurityId: 612185395005540, - Name: "MNRO", - Description: "Monro Muffler Brake, Inc.", - Symbol: "MNRO", - Precision: 5, - Type: Stock, - AlternateId: "610236101"}, - 612187570108260: &Security{ - SecurityId: 612187570108260, - Name: "MRCC", - Description: "Monroe Capital Corporation", - Symbol: "MRCC", - Precision: 5, - Type: Stock, - AlternateId: "610335101"}, - 612272691367524: &Security{ - SecurityId: 612272691367524, - Name: "MON", - Description: "Monsanto Co.", - Symbol: "MON", - Precision: 5, - Type: Stock, - AlternateId: "61166W101"}, - 612274748897412: &Security{ - SecurityId: 612274748897412, - Name: "MNST", - Description: "Monster Beverage Corp.", - Symbol: "MNST", - Precision: 5, - Type: Stock, - AlternateId: "61174X109"}, - 612274696829244: &Security{ - SecurityId: 612274696829244, - Name: "MWW", - Description: "Monster Worldwide, Inc.", - Symbol: "MWW", - Precision: 5, - Type: Stock, - AlternateId: "611742107"}, - 612274884992784: &Security{ - SecurityId: 612274884992784, - Name: "TPYP", - Description: "Tortoise North American Pipeline Fund ETF", - Symbol: "TPYP", - Precision: 5, - Type: Stock, - AlternateId: "611776204"}, - 612579579045876: &Security{ - SecurityId: 612579579045876, - Name: "MCO", - Description: "Moody's Corp.", - Symbol: "MCO", - Precision: 5, - Type: Stock, - AlternateId: "615369105"}, - 612579752092872: &Security{ - SecurityId: 612579752092872, - Name: "MOG.A", - Description: "Moog, Inc. Cl A", - Symbol: "MOG.A", - Precision: 5, - Type: Stock, - AlternateId: "615394202"}, - 612579752139492: &Security{ - SecurityId: 612579752139492, - Name: "MOG.B", - Description: "Moog, Inc. Cl B", - Symbol: "MOG.B", - Precision: 5, - Type: Stock, - AlternateId: "615394301"}, - 612738374981436: &Security{ - SecurityId: 612738374981436, - Name: "MSF", - Description: "Morgan Stanley Emerging Markets Fund, Inc.", - Symbol: "MSF", - Precision: 5, - Type: Stock, - AlternateId: "61744G107"}, - 612738376660980: &Security{ - SecurityId: 612738376660980, - Name: "MSD", - Description: "Morgan Stanley Emerging Markets Debt Fund, Inc.", - Symbol: "MSD", - Precision: 5, - Type: Stock, - AlternateId: "61744H105"}, - 612738398496024: &Security{ - SecurityId: 612738398496024, - Name: "APF", - Description: "Morgan Stanley Asia-Pacific Fund, Inc.", - Symbol: "APF", - Precision: 5, - Type: Stock, - AlternateId: "61744U106"}, - 612738358330464: &Security{ - SecurityId: 612738358330464, - Name: "MS", - Description: "Morgan Stanley", - Symbol: "MS", - Precision: 5, - Type: Stock, - AlternateId: "617446448"}, - 612738428729076: &Security{ - SecurityId: 612738428729076, - Name: "IIF", - Description: "Morgan Stanley India Investment Fund, Inc.", - Symbol: "IIF", - Precision: 5, - Type: Stock, - AlternateId: "61745C105"}, - 612738450899712: &Security{ - SecurityId: 612738450899712, - Name: "ICB", - Description: "Morgan Stanley Income Securities, Inc.", - Symbol: "ICB", - Precision: 5, - Type: Stock, - AlternateId: "61745P874"}, - 612738482476716: &Security{ - SecurityId: 612738482476716, - Name: "CAF", - Description: "Morgan Stanley China A Share Fund", - Symbol: "CAF", - Precision: 5, - Type: Stock, - AlternateId: "617468103"}, - 612738583306956: &Security{ - SecurityId: 612738583306956, - Name: "CNY", - Description: "Morgan Stanley Market Vectors - Chinese Renminbi/USD ETN due on 3/31/2020", - Symbol: "CNY", - Precision: 5, - Type: Stock, - AlternateId: "61747W257"}, - 612738583308180: &Security{ - SecurityId: 612738583308180, - Name: "INR", - Description: "Morgan Stanley Market Vectors - Indian Rupee/USD ETN due on 3/31/2020", - Symbol: "INR", - Precision: 5, - Type: Stock, - AlternateId: "61747W265"}, - 612738541263312: &Security{ - SecurityId: 612738541263312, - Name: "EDD", - Description: "Morgan Stanley Emerging Markets Domestic Debt Fund", - Symbol: "EDD", - Precision: 5, - Type: Stock, - AlternateId: "617477104"}, - 612738590027832: &Security{ - SecurityId: 612738590027832, - Name: "URR", - Description: "Market Vectors Double Long Euro ETN due 4/30/2020", - Symbol: "URR", - Precision: 5, - Type: Stock, - AlternateId: "617480272"}, - 612738590029056: &Security{ - SecurityId: 612738590029056, - Name: "DRR", - Description: "Market Vectors Double Short Euro ETN due 4/30/2020", - Symbol: "DRR", - Precision: 5, - Type: Stock, - AlternateId: "617480280"}, - 612742483653912: &Security{ - SecurityId: 612742483653912, - Name: "MLPY", - Description: "Morgan Stanley Cushing MLP High Income Index ETN due 3/21/2031", - Symbol: "MLPY", - Precision: 5, - Type: Stock, - AlternateId: "61760E846"}, - 612744636589956: &Security{ - SecurityId: 612744636589956, - Name: "MORN", - Description: "Morningstar, Inc.", - Symbol: "MORN", - Precision: 5, - Type: Stock, - AlternateId: "617700109"}, - 612895157057196: &Security{ - SecurityId: 612895157057196, - Name: "MOS", - Description: "Mosaic Co. (The)", - Symbol: "MOS", - Precision: 5, - Type: Stock, - AlternateId: "61945C103"}, - 615002393306556: &Security{ - SecurityId: 615002393306556, - Name: "MSI", - Description: "Motorola Solutions, Inc.", - Symbol: "MSI", - Precision: 5, - Type: Stock, - AlternateId: "620076307"}, - 615320156544840: &Security{ - SecurityId: 615320156544840, - Name: "MDM", - Description: "Mountain Province Diamonds, Inc.", - Symbol: "MDM", - Precision: 5, - Type: Stock, - AlternateId: "62426E402"}, - 615326784169752: &Security{ - SecurityId: 615326784169752, - Name: "MOV", - Description: "Movado Group, Inc.", - Symbol: "MOV", - Precision: 5, - Type: Stock, - AlternateId: "624580106"}, - 615330966413448: &Security{ - SecurityId: 615330966413448, - Name: "MLI", - Description: "Mueller Industries, Inc.", - Symbol: "MLI", - Precision: 5, - Type: Stock, - AlternateId: "624756102"}, - 615330969772896: &Security{ - SecurityId: 615330969772896, - Name: "MWA", - Description: "Mueller Water Products, Inc.", - Symbol: "MWA", - Precision: 5, - Type: Stock, - AlternateId: "624758108"}, - 615400799807952: &Security{ - SecurityId: 615400799807952, - Name: "LABL", - Description: "Multi-Color Corp.", - Symbol: "LABL", - Precision: 5, - Type: Stock, - AlternateId: "625383104"}, - 615487454556552: &Security{ - SecurityId: 615487454556552, - Name: "MUR", - Description: "Murphy Oil Corp.", - Symbol: "MUR", - Precision: 5, - Type: Stock, - AlternateId: "626717102"}, - 615487693062024: &Security{ - SecurityId: 615487693062024, - Name: "MUSA", - Description: "Murphy USA, Inc.", - Symbol: "MUSA", - Precision: 5, - Type: Stock, - AlternateId: "626755102"}, - 615637901120976: &Security{ - SecurityId: 615637901120976, - Name: "MFSF", - Description: "MutualFirst Financial, Inc.", - Symbol: "MFSF", - Precision: 5, - Type: Stock, - AlternateId: "62845B104"}, - 615637949830020: &Security{ - SecurityId: 615637949830020, - Name: "MYE", - Description: "Myers Industries, Inc.", - Symbol: "MYE", - Precision: 5, - Type: Stock, - AlternateId: "628464109"}, - 615640091340240: &Security{ - SecurityId: 615640091340240, - Name: "MYGN", - Description: "Myriad Genetics, Inc.", - Symbol: "MYGN", - Precision: 5, - Type: Stock, - AlternateId: "62855J104"}, - 615640217311476: &Security{ - SecurityId: 615640217311476, - Name: "MYOK", - Description: "MyoKardia, Inc.", - Symbol: "MYOK", - Precision: 5, - Type: Stock, - AlternateId: "62857M105"}, - 615644547361416: &Security{ - SecurityId: 615644547361416, - Name: "NBTB", - Description: "NBT Bancorp, Inc.", - Symbol: "NBTB", - Precision: 5, - Type: Stock, - AlternateId: "628778102"}, - 615646593180432: &Security{ - SecurityId: 615646593180432, - Name: "NCS", - Description: "NCI Building Systems, Inc.", - Symbol: "NCS", - Precision: 5, - Type: Stock, - AlternateId: "628852204"}, - 615646673755488: &Security{ - SecurityId: 615646673755488, - Name: "NCR", - Description: "NCR Corp.", - Symbol: "NCR", - Precision: 5, - Type: Stock, - AlternateId: "62886E108"}, - 615646683833040: &Security{ - SecurityId: 615646683833040, - Name: "NCIT", - Description: "NCI, Inc.", - Symbol: "NCIT", - Precision: 5, - Type: Stock, - AlternateId: "62886K104"}, - 615709632481596: &Security{ - SecurityId: 615709632481596, - Name: "NGL", - Description: "NGL Energy Partners L.P.", - Symbol: "NGL", - Precision: 5, - Type: Stock, - AlternateId: "62913M107"}, - 615709674471744: &Security{ - SecurityId: 615709674471744, - Name: "EGOV", - Description: "NIC, Inc.", - Symbol: "EGOV", - Precision: 5, - Type: Stock, - AlternateId: "62914B100"}, - 615709726680060: &Security{ - SecurityId: 615709726680060, - Name: "NL", - Description: "NL Industries, Inc.", - Symbol: "NL", - Precision: 5, - Type: Stock, - AlternateId: "629156407"}, - 615711606123636: &Security{ - SecurityId: 615711606123636, - Name: "NMIH", - Description: "NMI Holdings, Inc.", - Symbol: "NMIH", - Precision: 5, - Type: Stock, - AlternateId: "629209305"}, - 615713960851992: &Security{ - SecurityId: 615713960851992, - Name: "NNBR", - Description: "NN, Inc.", - Symbol: "NNBR", - Precision: 5, - Type: Stock, - AlternateId: "629337106"}, - 615714202903392: &Security{ - SecurityId: 615714202903392, - Name: "NRG", - Description: "NRG Energy, Inc.", - Symbol: "NRG", - Precision: 5, - Type: Stock, - AlternateId: "629377508"}, - 615716005038084: &Security{ - SecurityId: 615716005038084, - Name: "NTN", - Description: "NTN Buzztime, Inc.", - Symbol: "NTN", - Precision: 5, - Type: Stock, - AlternateId: "629410309"}, - 615716102408868: &Security{ - SecurityId: 615716102408868, - Name: "DCM", - Description: "NTT DoCoMo, Inc.", - Symbol: "DCM", - Precision: 5, - Type: Stock, - AlternateId: "62942M201"}, - 615716120931480: &Security{ - SecurityId: 615716120931480, - Name: "NYLD.A", - Description: "NRG Yield, Inc. Class A", - Symbol: "NYLD.A", - Precision: 5, - Type: Stock, - AlternateId: "62942X306"}, - 615716120978100: &Security{ - SecurityId: 615716120978100, - Name: "NYLD", - Description: "NRG Yield, Inc. Class C", - Symbol: "NYLD", - Precision: 5, - Type: Stock, - AlternateId: "62942X405"}, - 615716235052020: &Security{ - SecurityId: 615716235052020, - Name: "NVR", - Description: "NVR, Inc.", - Symbol: "NVR", - Precision: 5, - Type: Stock, - AlternateId: "62944T105"}, - 615716194787928: &Security{ - SecurityId: 615716194787928, - Name: "NVEC", - Description: "NVE Corp.", - Symbol: "NVEC", - Precision: 5, - Type: Stock, - AlternateId: "629445206"}, - 615716298877572: &Security{ - SecurityId: 615716298877572, - Name: "NVEE", - Description: "NV5 Global, Inc.", - Symbol: "NVEE", - Precision: 5, - Type: Stock, - AlternateId: "62945V109"}, - 615718581475536: &Security{ - SecurityId: 615718581475536, - Name: "NBRV", - Description: "Nabriva Therapeutics AG", - Symbol: "NBRV", - Precision: 5, - Type: Stock, - AlternateId: "62957M104"}, - 615718559640492: &Security{ - SecurityId: 615718559640492, - Name: "NC", - Description: "NACCO Industries, Inc.", - Symbol: "NC", - Precision: 5, - Type: Stock, - AlternateId: "629579103"}, - 615724848169344: &Security{ - SecurityId: 615724848169344, - Name: "NAKD", - Description: "Naked Brand Group, Inc.", - Symbol: "NAKD", - Precision: 5, - Type: Stock, - AlternateId: "629839200"}, - 617823504800244: &Security{ - SecurityId: 617823504800244, - Name: "NANO", - Description: "Nanometrics, Inc.", - Symbol: "NANO", - Precision: 5, - Type: Stock, - AlternateId: "630077105"}, - 617823639216144: &Security{ - SecurityId: 617823639216144, - Name: "NSPH", - Description: "Nanosphere, Inc.", - Symbol: "NSPH", - Precision: 5, - Type: Stock, - AlternateId: "63009F204"}, - 617823659325060: &Security{ - SecurityId: 617823659325060, - Name: "NSTG", - Description: "NanoString Technologies, Inc.", - Symbol: "NSTG", - Precision: 5, - Type: Stock, - AlternateId: "63009R109"}, - 617825653029000: &Security{ - SecurityId: 617825653029000, - Name: "NK", - Description: "NantKwest, Inc.", - Symbol: "NK", - Precision: 5, - Type: Stock, - AlternateId: "63016Q102"}, - 617831780268276: &Security{ - SecurityId: 617831780268276, - Name: "NSSC", - Description: "NAPCO Security Technologies, Inc.", - Symbol: "NSSC", - Precision: 5, - Type: Stock, - AlternateId: "630402105"}, - 617903615765088: &Security{ - SecurityId: 617903615765088, - Name: "NDAQ", - Description: "Nasdaq, Inc.", - Symbol: "NDAQ", - Precision: 5, - Type: Stock, - AlternateId: "631103108"}, - 617986340212176: &Security{ - SecurityId: 617986340212176, - Name: "NTRA", - Description: "Natera, Inc.", - Symbol: "NTRA", - Precision: 5, - Type: Stock, - AlternateId: "632307104"}, - 617986582076736: &Security{ - SecurityId: 617986582076736, - Name: "NATH", - Description: "Nathan's Famous, Inc.", - Symbol: "NATH", - Precision: 5, - Type: Stock, - AlternateId: "632347100"}, - 618073411505616: &Security{ - SecurityId: 618073411505616, - Name: "NBHC", - Description: "National Bank Holdings Corp.", - Symbol: "NBHC", - Precision: 5, - Type: Stock, - AlternateId: "633707104"}, - 618154311890052: &Security{ - SecurityId: 618154311890052, - Name: "NKSH", - Description: "National Bankshares, Inc.", - Symbol: "NKSH", - Precision: 5, - Type: Stock, - AlternateId: "634865109"}, - 618214962823704: &Security{ - SecurityId: 618214962823704, - Name: "FIZZ", - Description: "National Beverage Corp.", - Symbol: "FIZZ", - Precision: 5, - Type: Stock, - AlternateId: "635017106"}, - 618221436063804: &Security{ - SecurityId: 618221436063804, - Name: "NCMI", - Description: "National CineMedia, Inc.", - Symbol: "NCMI", - Precision: 5, - Type: Stock, - AlternateId: "635309107"}, - 618223995798408: &Security{ - SecurityId: 618223995798408, - Name: "NCOM", - Description: "National Commerce Corp.", - Symbol: "NCOM", - Precision: 5, - Type: Stock, - AlternateId: "63546L102"}, - 618234491718720: &Security{ - SecurityId: 618234491718720, - Name: "NHC", - Description: "National HealthCare Corp.", - Symbol: "NHC", - Precision: 5, - Type: Stock, - AlternateId: "635906100"}, - 618295915275876: &Security{ - SecurityId: 618295915275876, - Name: "NFG", - Description: "National Fuel Gas Co.", - Symbol: "NFG", - Precision: 5, - Type: Stock, - AlternateId: "636180101"}, - 618297729354540: &Security{ - SecurityId: 618297729354540, - Name: "NGHC", - Description: "National General Holdings Corp.", - Symbol: "NGHC", - Precision: 5, - Type: Stock, - AlternateId: "636220303"}, - 618298038403776: &Security{ - SecurityId: 618298038403776, - Name: "NGG", - Description: "National Grid plc ADR", - Symbol: "NGG", - Precision: 5, - Type: Stock, - AlternateId: "636274300"}, - 618299988344784: &Security{ - SecurityId: 618299988344784, - Name: "NHI", - Description: "National Health Investors, Inc.", - Symbol: "NHI", - Precision: 5, - Type: Stock, - AlternateId: "63633D104"}, - 618304212578952: &Security{ - SecurityId: 618304212578952, - Name: "NATI", - Description: "National Instruments Corp.", - Symbol: "NATI", - Precision: 5, - Type: Stock, - AlternateId: "636518102"}, - 618304430928960: &Security{ - SecurityId: 618304430928960, - Name: "NATL", - Description: "National Interstate Corp.", - Symbol: "NATL", - Precision: 5, - Type: Stock, - AlternateId: "63654U100"}, - 618372043871076: &Security{ - SecurityId: 618372043871076, - Name: "NOV", - Description: "National Oilwell Varco, Inc.", - Symbol: "NOV", - Precision: 5, - Type: Stock, - AlternateId: "637071101"}, - 618373990546272: &Security{ - SecurityId: 618373990546272, - Name: "NPBC", - Description: "National Penn Bancshares, Inc.", - Symbol: "NPBC", - Precision: 5, - Type: Stock, - AlternateId: "637138108"}, - 618376041357264: &Security{ - SecurityId: 618376041357264, - Name: "NPK", - Description: "National Presto Industries, Inc.", - Symbol: "NPK", - Precision: 5, - Type: Stock, - AlternateId: "637215104"}, - 618378575944392: &Security{ - SecurityId: 618378575944392, - Name: "NRCIA", - Description: "National Research Corp. Class A", - Symbol: "NRCIA", - Precision: 5, - Type: Stock, - AlternateId: "637372202"}, - 618378575991012: &Security{ - SecurityId: 618378575991012, - Name: "NRCIB", - Description: "National Research Corp.", - Symbol: "NRCIB", - Precision: 5, - Type: Stock, - AlternateId: "637372301"}, - 618380398281240: &Security{ - SecurityId: 618380398281240, - Name: "NNN", - Description: "National Retail Properties, Inc.", - Symbol: "NNN", - Precision: 5, - Type: Stock, - AlternateId: "637417106"}, - 618382754782344: &Security{ - SecurityId: 618382754782344, - Name: "NSEC", - Description: "National Security Group, Inc. (The)", - Symbol: "NSEC", - Precision: 5, - Type: Stock, - AlternateId: "637546102"}, - 618389456450328: &Security{ - SecurityId: 618389456450328, - Name: "NSA", - Description: "National Storage Affiliates Trust", - Symbol: "NSA", - Precision: 5, - Type: Stock, - AlternateId: "637870106"}, - 618460939227528: &Security{ - SecurityId: 618460939227528, - Name: "NWLI", - Description: "National Western Life Group, Inc. Cl A", - Symbol: "NWLI", - Precision: 5, - Type: Stock, - AlternateId: "638517102"}, - 618461063856072: &Security{ - SecurityId: 618461063856072, - Name: "NW-C", - Description: "National Westminster Bank, 7.763% Non-cumulative Preference Shares, Series C ADR", - Symbol: "NW-C", - Precision: 5, - Type: Stock, - AlternateId: "638539882"}, - 618463124408196: &Security{ - SecurityId: 618463124408196, - Name: "NSM", - Description: "Nationstar Mortgage Holdings, Inc.", - Symbol: "NSM", - Precision: 5, - Type: Stock, - AlternateId: "63861C109"}, - 618467642668296: &Security{ - SecurityId: 618467642668296, - Name: "NAII", - Description: "Natural Alternatives Intl, Inc.", - Symbol: "NAII", - Precision: 5, - Type: Stock, - AlternateId: "638842302"}, - 618467803818372: &Security{ - SecurityId: 618467803818372, - Name: "NGS", - Description: "Natural Gas Services Group, Inc.", - Symbol: "NGS", - Precision: 5, - Type: Stock, - AlternateId: "63886Q109"}, - 618467923210968: &Security{ - SecurityId: 618467923210968, - Name: "NHTC", - Description: "Natural Health Trends Corp.", - Symbol: "NHTC", - Precision: 5, - Type: Stock, - AlternateId: "63888P406"}, - 618467931469152: &Security{ - SecurityId: 618467931469152, - Name: "NGVC", - Description: "Natural Grocers By Vitamin Cottage, Inc.", - Symbol: "NGVC", - Precision: 5, - Type: Stock, - AlternateId: "63888U108"}, - 618469575906456: &Security{ - SecurityId: 618469575906456, - Name: "NAV-D", - Description: "Navistar Intl Corp., Var Rate Series D Cumul Convertible Junior Pref Stock", - Symbol: "NAV-D", - Precision: 5, - Type: Stock, - AlternateId: "638901306"}, - 618469580851848: &Security{ - SecurityId: 618469580851848, - Name: "NAVG", - Description: "Navigators Group, Inc. (The)", - Symbol: "NAVG", - Precision: 5, - Type: Stock, - AlternateId: "638904102"}, - 618528389246892: &Security{ - SecurityId: 618528389246892, - Name: "NRP", - Description: "Natural Resource Partners, L.P. Subordinated Units", - Symbol: "NRP", - Precision: 5, - Type: Stock, - AlternateId: "63900P103"}, - 618528479946084: &Security{ - SecurityId: 618528479946084, - Name: "NATR", - Description: "Nature's Sunshine Products, Inc.", - Symbol: "NATR", - Precision: 5, - Type: Stock, - AlternateId: "639027101"}, - 618528666383460: &Security{ - SecurityId: 618528666383460, - Name: "NTZ", - Description: "Natuzzi S.p.A. ADR", - Symbol: "NTZ", - Precision: 5, - Type: Stock, - AlternateId: "63905A101"}, - 618528649587372: &Security{ - SecurityId: 618528649587372, - Name: "BABY", - Description: "Natus Medical, Inc.", - Symbol: "BABY", - Precision: 5, - Type: Stock, - AlternateId: "639050103"}, - 618530542514568: &Security{ - SecurityId: 618530542514568, - Name: "NLS", - Description: "Nautilus Group, Inc. (The)", - Symbol: "NLS", - Precision: 5, - Type: Stock, - AlternateId: "63910B102"}, - 618535142983008: &Security{ - SecurityId: 618535142983008, - Name: "NAV", - Description: "Navistar Intl Corp.", - Symbol: "NAV", - Precision: 5, - Type: Stock, - AlternateId: "63934E108"}, - 618535218565692: &Security{ - SecurityId: 618535218565692, - Name: "NCI", - Description: "Navigant Consulting, Inc.", - Symbol: "NCI", - Precision: 5, - Type: Stock, - AlternateId: "63935N107"}, - 618535381488480: &Security{ - SecurityId: 618535381488480, - Name: "NAVI", - Description: "Navient Corp.", - Symbol: "NAVI", - Precision: 5, - Type: Stock, - AlternateId: "63938C108"}, - 618535418439744: &Security{ - SecurityId: 618535418439744, - Name: "NM-G", - Description: "Navios Maritime Holdings, 8.75% Dep Shares Ser G Cumul Red Perp Preferred Stock", - Symbol: "NM-G", - Precision: 5, - Type: Stock, - AlternateId: "63938Y100"}, - 618535418533344: &Security{ - SecurityId: 618535418533344, - Name: "NM-H", - Description: "Navios Maritime Holdings, 8.625% Dep Shares Ser H Cumul Red Perp Preferred Stock", - Symbol: "NM-H", - Precision: 5, - Type: Stock, - AlternateId: "63938Y308"}, - 620644618067076: &Security{ - SecurityId: 620644618067076, - Name: "NP", - Description: "Neenah Paper, Inc.", - Symbol: "NP", - Precision: 5, - Type: Stock, - AlternateId: "640079109"}, - 620644730647932: &Security{ - SecurityId: 620644730647932, - Name: "NEFF", - Description: "Neff Corp.", - Symbol: "NEFF", - Precision: 5, - Type: Stock, - AlternateId: "640094207"}, - 620650809131616: &Security{ - SecurityId: 620650809131616, - Name: "NNI", - Description: "Nelnet, Inc.", - Symbol: "NNI", - Precision: 5, - Type: Stock, - AlternateId: "64031N108"}, - 620653468010436: &Security{ - SecurityId: 620653468010436, - Name: "NEO", - Description: "NeoGenomics, Inc.", - Symbol: "NEO", - Precision: 5, - Type: Stock, - AlternateId: "64049M209"}, - 620653432691736: &Security{ - SecurityId: 620653432691736, - Name: "NEOG", - Description: "Neogen Corp.", - Symbol: "NEOG", - Precision: 5, - Type: Stock, - AlternateId: "640491106"}, - 620655161156424: &Security{ - SecurityId: 620655161156424, - Name: "NEON", - Description: "Neonode, Inc.", - Symbol: "NEON", - Precision: 5, - Type: Stock, - AlternateId: "64051M402"}, - 620655172773696: &Security{ - SecurityId: 620655172773696, - Name: "NPTN", - Description: "NeoPhotonics Corp.", - Symbol: "NPTN", - Precision: 5, - Type: Stock, - AlternateId: "64051T100"}, - 620655219803160: &Security{ - SecurityId: 620655219803160, - Name: "NEOS", - Description: "Neos Therapeutics, Inc.", - Symbol: "NEOS", - Precision: 5, - Type: Stock, - AlternateId: "64052L106"}, - 620657574624792: &Security{ - SecurityId: 620657574624792, - Name: "NVCN", - Description: "Neovasc, Inc.", - Symbol: "NVCN", - Precision: 5, - Type: Stock, - AlternateId: "64065J106"}, - 620657630051940: &Security{ - SecurityId: 620657630051940, - Name: "NEOT", - Description: "Neothetics, Inc.", - Symbol: "NEOT", - Precision: 5, - Type: Stock, - AlternateId: "64066G101"}, - 620657614935396: &Security{ - SecurityId: 620657614935396, - Name: "NRX", - Description: "NephroGenex, Inc.", - Symbol: "NRX", - Precision: 5, - Type: Stock, - AlternateId: "640667101"}, - 620723005792344: &Security{ - SecurityId: 620723005792344, - Name: "UEPS", - Description: "Net 1 UEPS Technologies, Inc.", - Symbol: "UEPS", - Precision: 5, - Type: Stock, - AlternateId: "64107N206"}, - 620724742468560: &Security{ - SecurityId: 620724742468560, - Name: "NTAP", - Description: "NetApp, Inc.", - Symbol: "NTAP", - Precision: 5, - Type: Stock, - AlternateId: "64110D104"}, - 620724755905560: &Security{ - SecurityId: 620724755905560, - Name: "NFLX", - Description: "Netflix, Inc.", - Symbol: "NFLX", - Precision: 5, - Type: Stock, - AlternateId: "64110L106"}, - 620724774381192: &Security{ - SecurityId: 620724774381192, - Name: "NTES", - Description: "NetEase, Inc. ADR", - Symbol: "NTES", - Precision: 5, - Type: Stock, - AlternateId: "64110W102"}, - 620724824769744: &Security{ - SecurityId: 620724824769744, - Name: "NTGR", - Description: "NETGEAR, Inc.", - Symbol: "NTGR", - Precision: 5, - Type: Stock, - AlternateId: "64111Q104"}, - 620724826449288: &Security{ - SecurityId: 620724826449288, - Name: "NETE", - Description: "Net Element, Inc.", - Symbol: "NETE", - Precision: 5, - Type: Stock, - AlternateId: "64111R102"}, - 620725039900488: &Security{ - SecurityId: 620725039900488, - Name: "NTWK", - Description: "NetSol Technologies, Inc.", - Symbol: "NTWK", - Precision: 5, - Type: Stock, - AlternateId: "64115A402"}, - 620725071673296: &Security{ - SecurityId: 620725071673296, - Name: "NTCT", - Description: "NetScout Systems, Inc.", - Symbol: "NTCT", - Precision: 5, - Type: Stock, - AlternateId: "64115T104"}, - 620725248033084: &Security{ - SecurityId: 620725248033084, - Name: "N", - Description: "NetSuite, Inc.", - Symbol: "N", - Precision: 5, - Type: Stock, - AlternateId: "64118Q107"}, - 620725254751584: &Security{ - SecurityId: 620725254751584, - Name: "NQ", - Description: "NQ Mobile, Inc. ADR", - Symbol: "NQ", - Precision: 5, - Type: Stock, - AlternateId: "64118U108"}, - 620726996513412: &Security{ - SecurityId: 620726996513412, - Name: "NTIP", - Description: "Network-1 Technologies, Inc.", - Symbol: "NTIP", - Precision: 5, - Type: Stock, - AlternateId: "64121N109"}, - 620727098969700: &Security{ - SecurityId: 620727098969700, - Name: "NBW", - Description: "Neuberger Berman California Intermediate Municipal Fund", - Symbol: "NBW", - Precision: 5, - Type: Stock, - AlternateId: "64123C101"}, - 620727172872840: &Security{ - SecurityId: 620727172872840, - Name: "NBO", - Description: "Neuberger Berman New York Intermediate Municipal Fund", - Symbol: "NBO", - Precision: 5, - Type: Stock, - AlternateId: "64124K102"}, - 620727181270884: &Security{ - SecurityId: 620727181270884, - Name: "NBH", - Description: "Neuberger Berman Intermediate Municipal Fund", - Symbol: "NBH", - Precision: 5, - Type: Stock, - AlternateId: "64124P101"}, - 620727219902340: &Security{ - SecurityId: 620727219902340, - Name: "NBIX", - Description: "Neurocrine Biosciences, Inc.", - Symbol: "NBIX", - Precision: 5, - Type: Stock, - AlternateId: "64125C109"}, - 620727208331328: &Security{ - SecurityId: 620727208331328, - Name: "NURO", - Description: "NeuroMetrix, Inc.", - Symbol: "NURO", - Precision: 5, - Type: Stock, - AlternateId: "641255500"}, - 620727303929688: &Security{ - SecurityId: 620727303929688, - Name: "UWN", - Description: "Nevada Gold & Casinos, Inc.", - Symbol: "UWN", - Precision: 5, - Type: Stock, - AlternateId: "64126Q206"}, - 620727315686820: &Security{ - SecurityId: 620727315686820, - Name: "NSR", - Description: "NeuStar, Inc.", - Symbol: "NSR", - Precision: 5, - Type: Stock, - AlternateId: "64126X201"}, - 620727366121992: &Security{ - SecurityId: 620727366121992, - Name: "CUR", - Description: "Neuralstem, Inc.", - Symbol: "CUR", - Precision: 5, - Type: Stock, - AlternateId: "64127R302"}, - 620727401300760: &Security{ - SecurityId: 620727401300760, - Name: "NHS", - Description: "Neuberger Berman High Yield Strategies Fund", - Symbol: "NHS", - Precision: 5, - Type: Stock, - AlternateId: "64128C106"}, - 620727470164944: &Security{ - SecurityId: 620727470164944, - Name: "NML", - Description: "Neuberger Berman MLP Income Fund Inc.", - Symbol: "NML", - Precision: 5, - Type: Stock, - AlternateId: "64129H104"}, - 620733825831780: &Security{ - SecurityId: 620733825831780, - Name: "NSU", - Description: "Nevsun Resources Ltd", - Symbol: "NSU", - Precision: 5, - Type: Stock, - AlternateId: "64156L101"}, - 620733876220332: &Security{ - SecurityId: 620733876220332, - Name: "NVRO", - Description: "Nevro Corp.", - Symbol: "NVRO", - Precision: 5, - Type: Stock, - AlternateId: "64157F103"}, - 620742151688364: &Security{ - SecurityId: 620742151688364, - Name: "NRO", - Description: "Neuberger Berman Real Estate Securities Income Fund", - Symbol: "NRO", - Precision: 5, - Type: Stock, - AlternateId: "64190A103"}, - 620892395019288: &Security{ - SecurityId: 620892395019288, - Name: "GBR", - Description: "New Concept Energy, Inc.", - Symbol: "GBR", - Precision: 5, - Type: Stock, - AlternateId: "643611106"}, - 620961999985872: &Security{ - SecurityId: 620961999985872, - Name: "NEN", - Description: "New England Realty Associates, L.P.", - Symbol: "NEN", - Precision: 5, - Type: Stock, - AlternateId: "644206104"}, - 620966714668056: &Security{ - SecurityId: 620966714668056, - Name: "GF", - Description: "New Germany Fund, Inc. (The)", - Symbol: "GF", - Precision: 5, - Type: Stock, - AlternateId: "644465106"}, - 620968710051864: &Security{ - SecurityId: 620968710051864, - Name: "NGD", - Description: "New Gold, Inc.", - Symbol: "NGD", - Precision: 5, - Type: Stock, - AlternateId: "644535106"}, - 621042954117948: &Security{ - SecurityId: 621042954117948, - Name: "NWHM", - Description: "The New Home Company, Inc.", - Symbol: "NWHM", - Precision: 5, - Type: Stock, - AlternateId: "645370107"}, - 621049489503696: &Security{ - SecurityId: 621049489503696, - Name: "IRL", - Description: "New Ireland Fund, Inc. (The)", - Symbol: "IRL", - Precision: 5, - Type: Stock, - AlternateId: "645673104"}, - 621114494002200: &Security{ - SecurityId: 621114494002200, - Name: "NJR", - Description: "New Jersey Resources Corp.", - Symbol: "NJR", - Precision: 5, - Type: Stock, - AlternateId: "646025106"}, - 621193022768664: &Security{ - SecurityId: 621193022768664, - Name: "NEWM", - Description: "New Media Investment Group, Inc.", - Symbol: "NEWM", - Precision: 5, - Type: Stock, - AlternateId: "64704V106"}, - 621203916757824: &Security{ - SecurityId: 621203916757824, - Name: "NMFC", - Description: "New Mountain Finance Corp.", - Symbol: "NMFC", - Precision: 5, - Type: Stock, - AlternateId: "647551100"}, - 621276009235776: &Security{ - SecurityId: 621276009235776, - Name: "NEWR", - Description: "New Relic, Inc.", - Symbol: "NEWR", - Precision: 5, - Type: Stock, - AlternateId: "64829B100"}, - 621284699569068: &Security{ - SecurityId: 621284699569068, - Name: "SNR", - Description: "New Senior Investment Group, Inc.", - Symbol: "SNR", - Precision: 5, - Type: Stock, - AlternateId: "648691103"}, - 621354363322248: &Security{ - SecurityId: 621354363322248, - Name: "NWY", - Description: "New York & Co., Inc.", - Symbol: "NWY", - Precision: 5, - Type: Stock, - AlternateId: "649295102"}, - 621358448241852: &Security{ - SecurityId: 621358448241852, - Name: "NYCB-U", - Description: "New York Community Capital Trust V, BONUSES Units due 11/1/2051", - Symbol: "NYCB-U", - Precision: 5, - Type: Stock, - AlternateId: "64944P307"}, - 621358414556076: &Security{ - SecurityId: 621358414556076, - Name: "NYCB", - Description: "New York Community Bancorp, Inc.", - Symbol: "NYCB", - Precision: 5, - Type: Stock, - AlternateId: "649445103"}, - 621362524762980: &Security{ - SecurityId: 621362524762980, - Name: "NYMT", - Description: "New York Mortgage Trust, Inc.", - Symbol: "NYMT", - Precision: 5, - Type: Stock, - AlternateId: "649604501"}, - 621362524903200: &Security{ - SecurityId: 621362524903200, - Name: "NYMTO", - Description: "New York Mortgage Trust, 7.875% Series C Cumulative Redeemable Preferred Stock", - Symbol: "NYMTO", - Precision: 5, - Type: Stock, - AlternateId: "649604808"}, - 621365092709508: &Security{ - SecurityId: 621365092709508, - Name: "NYRT", - Description: "New York REIT, Inc.", - Symbol: "NYRT", - Precision: 5, - Type: Stock, - AlternateId: "64976L109"}, - 623467528522812: &Security{ - SecurityId: 623467528522812, - Name: "NYT", - Description: "New York Times Co. (The)", - Symbol: "NYT", - Precision: 5, - Type: Stock, - AlternateId: "650111107"}, - 623482752562056: &Security{ - SecurityId: 623482752562056, - Name: "NBBC", - Description: "NewBridge Bancorp", - Symbol: "NBBC", - Precision: 5, - Type: Stock, - AlternateId: "65080T102"}, - 623548143372312: &Security{ - SecurityId: 623548143372312, - Name: "NWL", - Description: "Newell Rubbermaid, Inc.", - Symbol: "NWL", - Precision: 5, - Type: Stock, - AlternateId: "651229106"}, - 623548551519072: &Security{ - SecurityId: 623548551519072, - Name: "NFX", - Description: "Newfield Exploration Co.", - Symbol: "NFX", - Precision: 5, - Type: Stock, - AlternateId: "651290108"}, - 623554599816252: &Security{ - SecurityId: 623554599816252, - Name: "NLNK", - Description: "NewLink Genetics Corp.", - Symbol: "NLNK", - Precision: 5, - Type: Stock, - AlternateId: "651511107"}, - 623555033157180: &Security{ - SecurityId: 623555033157180, - Name: "NEU", - Description: "NewMarket Corp.", - Symbol: "NEU", - Precision: 5, - Type: Stock, - AlternateId: "651587107"}, - 623556910967832: &Security{ - SecurityId: 623556910967832, - Name: "NEM", - Description: "Newmont Mining Corp.", - Symbol: "NEM", - Precision: 5, - Type: Stock, - AlternateId: "651639106"}, - 623558965324752: &Security{ - SecurityId: 623558965324752, - Name: "NR", - Description: "Newpark Resources, Inc.", - Symbol: "NR", - Precision: 5, - Type: Stock, - AlternateId: "651718504"}, - 623561195668176: &Security{ - SecurityId: 623561195668176, - Name: "NEWP", - Description: "Newport Corp.", - Symbol: "NEWP", - Precision: 5, - Type: Stock, - AlternateId: "651824104"}, - 623633032891116: &Security{ - SecurityId: 623633032891116, - Name: "NEWT", - Description: "Newtek Business Services Corp.", - Symbol: "NEWT", - Precision: 5, - Type: Stock, - AlternateId: "652526203"}, - 623707308823212: &Security{ - SecurityId: 623707308823212, - Name: "NXST", - Description: "Nexstar Broadcasting Group, Inc.", - Symbol: "NXST", - Precision: 5, - Type: Stock, - AlternateId: "65336K103"}, - 623707481823588: &Security{ - SecurityId: 623707481823588, - Name: "NEE", - Description: "NextEra Energy, Inc.", - Symbol: "NEE", - Precision: 5, - Type: Stock, - AlternateId: "65339F101"}, - 623707482155544: &Security{ - SecurityId: 623707482155544, - Name: "NEE-Q", - Description: "NextEra Energy, Inc., 6.371% Equity Units due 9/1/2018", - Symbol: "NEE-Q", - Precision: 5, - Type: Stock, - AlternateId: "65339F846"}, - 623707482157956: &Security{ - SecurityId: 623707482157956, - Name: "NEE-P", - Description: "NextEra Energy, Inc., 5.799% Equity Units due 9/1/2016", - Symbol: "NEE-P", - Precision: 5, - Type: Stock, - AlternateId: "65339F861"}, - 623709116090136: &Security{ - SecurityId: 623709116090136, - Name: "NHF", - Description: "NexPoint Credit Strategies Fund", - Symbol: "NHF", - Precision: 5, - Type: Stock, - AlternateId: "65340G106"}, - 623709168158232: &Security{ - SecurityId: 623709168158232, - Name: "NEP", - Description: "NextEra Energy Partners, LP", - Symbol: "NEP", - Precision: 5, - Type: Stock, - AlternateId: "65341B106"}, - 623709171517320: &Security{ - SecurityId: 623709171517320, - Name: "NXRT", - Description: "NexPoint Residential Trust, Inc.", - Symbol: "NXRT", - Precision: 5, - Type: Stock, - AlternateId: "65341D102"}, - 623713755189600: &Security{ - SecurityId: 623713755189600, - Name: "NICE", - Description: "NICE Systems Ltd ADR", - Symbol: "NICE", - Precision: 5, - Type: Stock, - AlternateId: "653656108"}, - 623715832921284: &Security{ - SecurityId: 623715832921284, - Name: "NICK", - Description: "Nicholas Financial, Inc.", - Symbol: "NICK", - Precision: 5, - Type: Stock, - AlternateId: "65373J209"}, - 623779290446724: &Security{ - SecurityId: 623779290446724, - Name: "NJ", - Description: "Nidec Corp. ADR", - Symbol: "NJ", - Precision: 5, - Type: Stock, - AlternateId: "654090109"}, - 623780933110956: &Security{ - SecurityId: 623780933110956, - Name: "NKE", - Description: "Nike, Inc.", - Symbol: "NKE", - Precision: 5, - Type: Stock, - AlternateId: "654106103"}, - 623787498729828: &Security{ - SecurityId: 623787498729828, - Name: "NMBL", - Description: "Nimble Storage, Inc.", - Symbol: "NMBL", - Precision: 5, - Type: Stock, - AlternateId: "65440R101"}, - 623792243645028: &Security{ - SecurityId: 623792243645028, - Name: "NKA", - Description: "Niska Gas Storage Partners L.P.", - Symbol: "NKA", - Precision: 5, - Type: Stock, - AlternateId: "654678101"}, - 623794207116276: &Security{ - SecurityId: 623794207116276, - Name: "NI", - Description: "NiSource, Inc.", - Symbol: "NI", - Precision: 5, - Type: Stock, - AlternateId: "65473P105"}, - 623796252888708: &Security{ - SecurityId: 623796252888708, - Name: "NVLS", - Description: "Nivalis Therapeutics, Inc.", - Symbol: "NVLS", - Precision: 5, - Type: Stock, - AlternateId: "65481J109"}, - 623796639200136: &Security{ - SecurityId: 623796639200136, - Name: "NOAH", - Description: "Noah Holdings Ltd ADR", - Symbol: "NOAH", - Precision: 5, - Type: Stock, - AlternateId: "65487X102"}, - 623798340697872: &Security{ - SecurityId: 623798340697872, - Name: "NOK", - Description: "Nokia Corp. ADR", - Symbol: "NOK", - Precision: 5, - Type: Stock, - AlternateId: "654902204"}, - 623857358998260: &Security{ - SecurityId: 623857358998260, - Name: "NBL", - Description: "Noble Energy, Inc.", - Symbol: "NBL", - Precision: 5, - Type: Stock, - AlternateId: "655044105"}, - 623863971693216: &Security{ - SecurityId: 623863971693216, - Name: "NMR", - Description: "Nomura Holdings, Inc. ADR", - Symbol: "NMR", - Precision: 5, - Type: Stock, - AlternateId: "65535H208"}, - 623865836020212: &Security{ - SecurityId: 623865836020212, - Name: "NDLS", - Description: "Noodles & Co.", - Symbol: "NDLS", - Precision: 5, - Type: Stock, - AlternateId: "65540B105"}, - 623865992271192: &Security{ - SecurityId: 623865992271192, - Name: "NORN", - Description: "Noranda Aluminum Holding Corporation", - Symbol: "NORN", - Precision: 5, - Type: Stock, - AlternateId: "65542W206"}, - 623870538944904: &Security{ - SecurityId: 623870538944904, - Name: "NDSN", - Description: "Nordson Corp.", - Symbol: "NDSN", - Precision: 5, - Type: Stock, - AlternateId: "655663102"}, - 623870540624448: &Security{ - SecurityId: 623870540624448, - Name: "JWN", - Description: "Nordstrom, Inc.", - Symbol: "JWN", - Precision: 5, - Type: Stock, - AlternateId: "655664100"}, - 623874773257056: &Security{ - SecurityId: 623874773257056, - Name: "NSC", - Description: "Norfolk Southern Corp.", - Symbol: "NSC", - Precision: 5, - Type: Stock, - AlternateId: "655844108"}, - 623946422363076: &Security{ - SecurityId: 623946422363076, - Name: "NSAT", - Description: "Norsat Intl, Inc.", - Symbol: "NSAT", - Precision: 5, - Type: Stock, - AlternateId: "656512209"}, - 623946665860560: &Security{ - SecurityId: 623946665860560, - Name: "NSYS", - Description: "Nortech Systems, Inc.", - Symbol: "NSYS", - Precision: 5, - Type: Stock, - AlternateId: "656553104"}, - 623946676031748: &Security{ - SecurityId: 623946676031748, - Name: "NTK", - Description: "Nortek, Inc.", - Symbol: "NTK", - Precision: 5, - Type: Stock, - AlternateId: "656559309"}, - 623946733185060: &Security{ - SecurityId: 623946733185060, - Name: "NTL", - Description: "Nortel Inversora S.A. ADR", - Symbol: "NTL", - Precision: 5, - Type: Stock, - AlternateId: "656567401"}, - 623953137421116: &Security{ - SecurityId: 623953137421116, - Name: "NOA", - Description: "North American Energy Partners, Inc.nao", - Symbol: "NOA", - Precision: 5, - Type: Stock, - AlternateId: "656844107"}, - 624177157884696: &Security{ - SecurityId: 624177157884696, - Name: "NRT", - Description: "North European Oil Royalty Trust", - Symbol: "NRT", - Precision: 5, - Type: Stock, - AlternateId: "659310106"}, - 626541089800644: &Security{ - SecurityId: 626541089800644, - Name: "NBN", - Description: "Northeast Bancorp", - Symbol: "NBN", - Precision: 5, - Type: Stock, - AlternateId: "663904209"}, - 626680434103056: &Security{ - SecurityId: 626680434103056, - Name: "NAK", - Description: "Northern Dynasty Minerals, Inc.", - Symbol: "NAK", - Precision: 5, - Type: Stock, - AlternateId: "66510M204"}, - 626689287312516: &Security{ - SecurityId: 626689287312516, - Name: "NOG", - Description: "Northern Oil & Gas, Inc.", - Symbol: "NOG", - Precision: 5, - Type: Stock, - AlternateId: "665531109"}, - 626695649697924: &Security{ - SecurityId: 626695649697924, - Name: "NTIC", - Description: "Northern Technologies International Corp.", - Symbol: "NTIC", - Precision: 5, - Type: Stock, - AlternateId: "665809109"}, - 626695765591212: &Security{ - SecurityId: 626695765591212, - Name: "NTI", - Description: "Northern Tier Energy L.P.", - Symbol: "NTI", - Precision: 5, - Type: Stock, - AlternateId: "665826103"}, - 626695952028624: &Security{ - SecurityId: 626695952028624, - Name: "NTRS", - Description: "Northern Trust Corp.", - Symbol: "NTRS", - Precision: 5, - Type: Stock, - AlternateId: "665859104"}, - 626772188119428: &Security{ - SecurityId: 626772188119428, - Name: "NRIM", - Description: "Northrim Bancorp, Inc.", - Symbol: "NRIM", - Precision: 5, - Type: Stock, - AlternateId: "666762109"}, - 626774010502536: &Security{ - SecurityId: 626774010502536, - Name: "NOC", - Description: "Northrop Grumman Corp.", - Symbol: "NOC", - Precision: 5, - Type: Stock, - AlternateId: "666807102"}, - 626835236191596: &Security{ - SecurityId: 626835236191596, - Name: "NRF", - Description: "NorthStar Realty Finance Corp.", - Symbol: "NRF", - Precision: 5, - Type: Stock, - AlternateId: "66704R803"}, - 626835308088528: &Security{ - SecurityId: 626835308088528, - Name: "NSAM", - Description: "NorthStar Asset Management Group, Inc.", - Symbol: "NSAM", - Precision: 5, - Type: Stock, - AlternateId: "66705Y104"}, - 626835346719588: &Security{ - SecurityId: 626835346719588, - Name: "NRE", - Description: "NorthStar Realty Europe Corp.", - Symbol: "NRE", - Precision: 5, - Type: Stock, - AlternateId: "66706L101"}, - 626841720862380: &Security{ - SecurityId: 626841720862380, - Name: "NWBI", - Description: "Northwest Bancshares, Inc.", - Symbol: "NWBI", - Precision: 5, - Type: Stock, - AlternateId: "667340103"}, - 626841944484480: &Security{ - SecurityId: 626841944484480, - Name: "NWBO", - Description: "Northwest Biotherapeutics, Inc.", - Symbol: "NWBO", - Precision: 5, - Type: Stock, - AlternateId: "66737P600"}, - 626848320073680: &Security{ - SecurityId: 626848320073680, - Name: "NWN", - Description: "Northwest Natural Gas Co.", - Symbol: "NWN", - Precision: 5, - Type: Stock, - AlternateId: "667655104"}, - 626850438069348: &Security{ - SecurityId: 626850438069348, - Name: "NWPX", - Description: "Northwest Pipe Co.", - Symbol: "NWPX", - Precision: 5, - Type: Stock, - AlternateId: "667746101"}, - 626913742889844: &Security{ - SecurityId: 626913742889844, - Name: "NWE", - Description: "NorthWestern Corp.", - Symbol: "NWE", - Precision: 5, - Type: Stock, - AlternateId: "668074305"}, - 627002817871932: &Security{ - SecurityId: 627002817871932, - Name: "NWFL", - Description: "Norwood Financial Corp.", - Symbol: "NWFL", - Precision: 5, - Type: Stock, - AlternateId: "669549107"}, - 627007500641160: &Security{ - SecurityId: 627007500641160, - Name: "NVFY", - Description: "Nova Lifestyle, Inc.", - Symbol: "NVFY", - Precision: 5, - Type: Stock, - AlternateId: "66979P102"}, - 627009538062168: &Security{ - SecurityId: 627009538062168, - Name: "NG", - Description: "NovaGold Resources, Inc.", - Symbol: "NG", - Precision: 5, - Type: Stock, - AlternateId: "66987E206"}, - 627009551685648: &Security{ - SecurityId: 627009551685648, - Name: "MIFI", - Description: "Novatel Wireless, Inc.", - Symbol: "MIFI", - Precision: 5, - Type: Stock, - AlternateId: "66987M604"}, - 627009566569092: &Security{ - SecurityId: 627009566569092, - Name: "NVS", - Description: "Novartis AG", - Symbol: "NVS", - Precision: 5, - Type: Stock, - AlternateId: "66987V109"}, - 627009608559240: &Security{ - SecurityId: 627009608559240, - Name: "NCQ", - Description: "NovaCopper, Inc.", - Symbol: "NCQ", - Precision: 5, - Type: Stock, - AlternateId: "66988K102"}, - 629107512768720: &Security{ - SecurityId: 629107512768720, - Name: "NVAX", - Description: "Novavax, Inc.", - Symbol: "NVAX", - Precision: 5, - Type: Stock, - AlternateId: "670002104"}, - 629109711432648: &Security{ - SecurityId: 629109711432648, - Name: "NVGN", - Description: "Novogen Ltd ADR", - Symbol: "NVGN", - Precision: 5, - Type: Stock, - AlternateId: "67010F202"}, - 629109788648256: &Security{ - SecurityId: 629109788648256, - Name: "DNOW", - Description: "NOW, Inc.", - Symbol: "DNOW", - Precision: 5, - Type: Stock, - AlternateId: "67011P100"}, - 629110218630132: &Security{ - SecurityId: 629110218630132, - Name: "NUS", - Description: "Nu Skin Enterprises, Inc.", - Symbol: "NUS", - Precision: 5, - Type: Stock, - AlternateId: "67018T105"}, - 629114291698932: &Security{ - SecurityId: 629114291698932, - Name: "NUE", - Description: "Nucor Corp.", - Symbol: "NUE", - Precision: 5, - Type: Stock, - AlternateId: "670346105"}, - 629118591515784: &Security{ - SecurityId: 629118591515784, - Name: "NMRX", - Description: "NumereX Corp.", - Symbol: "NMRX", - Precision: 5, - Type: Stock, - AlternateId: "67053A102"}, - 629118905603976: &Security{ - SecurityId: 629118905603976, - Name: "NS", - Description: "NuStar Energy, L.P.", - Symbol: "NS", - Precision: 5, - Type: Stock, - AlternateId: "67058H102"}, - 629118972788616: &Security{ - SecurityId: 629118972788616, - Name: "NSH", - Description: "NuStar GP Holdings, LLC", - Symbol: "NSH", - Precision: 5, - Type: Stock, - AlternateId: "67059L102"}, - 629121435105816: &Security{ - SecurityId: 629121435105816, - Name: "NCB", - Description: "Nuveen California Municipal Value Fund 2", - Symbol: "NCB", - Precision: 5, - Type: Stock, - AlternateId: "6706EB106"}, - 629121445183404: &Security{ - SecurityId: 629121445183404, - Name: "JGV", - Description: "Nuveen Global Equity Income Fund", - Symbol: "JGV", - Precision: 5, - Type: Stock, - AlternateId: "6706EH103"}, - 629121455260992: &Security{ - SecurityId: 629121455260992, - Name: "JRO", - Description: "Nuveen Floating Rate Income Opportunity Fund", - Symbol: "JRO", - Precision: 5, - Type: Stock, - AlternateId: "6706EN100"}, - 629121458620404: &Security{ - SecurityId: 629121458620404, - Name: "JDD", - Description: "Nuveen Diversified Dividend and Income Fund", - Symbol: "JDD", - Precision: 5, - Type: Stock, - AlternateId: "6706EP105"}, - 629121461979492: &Security{ - SecurityId: 629121461979492, - Name: "BXMX", - Description: "Nuveen S&P 500 Buy-Write Income Fund", - Symbol: "BXMX", - Precision: 5, - Type: Stock, - AlternateId: "6706ER101"}, - 629121470377536: &Security{ - SecurityId: 629121470377536, - Name: "SPXX", - Description: "Nuveen S&P 500 Dynamic Overwrite Fund", - Symbol: "SPXX", - Precision: 5, - Type: Stock, - AlternateId: "6706EW100"}, - 629121786145524: &Security{ - SecurityId: 629121786145524, - Name: "NPT", - Description: "Nuveen Premium Income Municipal Fund 4", - Symbol: "NPT", - Precision: 5, - Type: Stock, - AlternateId: "6706K4105"}, - 629120591938620: &Security{ - SecurityId: 629120591938620, - Name: "NTC", - Description: "Nuveen Connecticut Premium Income Municipal Fund", - Symbol: "NTC", - Precision: 5, - Type: Stock, - AlternateId: "67060D107"}, - 629120612093760: &Security{ - SecurityId: 629120612093760, - Name: "NNC", - Description: "Nuveen North Carolina Premium Income Municipal Fund", - Symbol: "NNC", - Precision: 5, - Type: Stock, - AlternateId: "67060P100"}, - 629120613773664: &Security{ - SecurityId: 629120613773664, - Name: "NOM", - Description: "Nuveen Missouri Premium Income Municipal Fund", - Symbol: "NOM", - Precision: 5, - Type: Stock, - AlternateId: "67060Q108"}, - 629120627210340: &Security{ - SecurityId: 629120627210340, - Name: "NUTR", - Description: "Nutraceutical Intl Corp.", - Symbol: "NUTR", - Precision: 5, - Type: Stock, - AlternateId: "67060Y101"}, - 629120654084304: &Security{ - SecurityId: 629120654084304, - Name: "NMT", - Description: "Nuveen Massachusetts Premium Income Municipal Fund", - Symbol: "NMT", - Precision: 5, - Type: Stock, - AlternateId: "67061E104"}, - 629120674239804: &Security{ - SecurityId: 629120674239804, - Name: "NMY", - Description: "Nuveen Maryland Premium Income Municipal Fund", - Symbol: "NMY", - Precision: 5, - Type: Stock, - AlternateId: "67061Q107"}, - 629120679278436: &Security{ - SecurityId: 629120679278436, - Name: "NIM", - Description: "Nuveen Select Maturities Municipal Fund", - Symbol: "NIM", - Precision: 5, - Type: Stock, - AlternateId: "67061T101"}, - 629120684317392: &Security{ - SecurityId: 629120684317392, - Name: "NAZ", - Description: "Nuveen Arizona Premium Income Municipal Fund", - Symbol: "NAZ", - Precision: 5, - Type: Stock, - AlternateId: "67061W104"}, - 629120711191356: &Security{ - SecurityId: 629120711191356, - Name: "NCA", - Description: "Nuveen California Municipal Value Fund", - Symbol: "NCA", - Precision: 5, - Type: Stock, - AlternateId: "67062C107"}, - 629120714550444: &Security{ - SecurityId: 629120714550444, - Name: "NQM", - Description: "Nuveen Investment Quality Municipal Fund", - Symbol: "NQM", - Precision: 5, - Type: Stock, - AlternateId: "67062E103"}, - 629120716229952: &Security{ - SecurityId: 629120716229952, - Name: "NXP", - Description: "Nuveen Select Tax-Free Income Portfolio", - Symbol: "NXP", - Precision: 5, - Type: Stock, - AlternateId: "67062F100"}, - 629120722948488: &Security{ - SecurityId: 629120722948488, - Name: "NMI", - Description: "Nuveen Municipal Income Fund", - Symbol: "NMI", - Precision: 5, - Type: Stock, - AlternateId: "67062J102"}, - 629120727987444: &Security{ - SecurityId: 629120727987444, - Name: "NNY", - Description: "Nuveen New York Municipal Value Fund", - Symbol: "NNY", - Precision: 5, - Type: Stock, - AlternateId: "67062M105"}, - 629120729666988: &Security{ - SecurityId: 629120729666988, - Name: "NQI", - Description: "Nuveen Insured Quality Municipal Fund", - Symbol: "NQI", - Precision: 5, - Type: Stock, - AlternateId: "67062N103"}, - 629120733026400: &Security{ - SecurityId: 629120733026400, - Name: "NPP", - Description: "Nuveen Performance Plus Municipal Fund", - Symbol: "NPP", - Precision: 5, - Type: Stock, - AlternateId: "67062P108"}, - 629120739744576: &Security{ - SecurityId: 629120739744576, - Name: "NPI", - Description: "Nuveen Premium Income Municipal Fund", - Symbol: "NPI", - Precision: 5, - Type: Stock, - AlternateId: "67062T100"}, - 629120744783532: &Security{ - SecurityId: 629120744783532, - Name: "NMO", - Description: "Nuveen Municipal Market Opportunity Fund", - Symbol: "NMO", - Precision: 5, - Type: Stock, - AlternateId: "67062W103"}, - 629120771657496: &Security{ - SecurityId: 629120771657496, - Name: "NXQ", - Description: "Nuveen Select Tax-Free Income Portfolio 2", - Symbol: "NXQ", - Precision: 5, - Type: Stock, - AlternateId: "67063C106"}, - 629120796851628: &Security{ - SecurityId: 629120796851628, - Name: "NXC", - Description: "Nuveen Insured California Select Tax-Free Income Portfolio", - Symbol: "NXC", - Precision: 5, - Type: Stock, - AlternateId: "67063R103"}, - 629120803570128: &Security{ - SecurityId: 629120803570128, - Name: "NXN", - Description: "Nuveen Insured New York Select Tax-Free Income Portfolio", - Symbol: "NXN", - Precision: 5, - Type: Stock, - AlternateId: "67063V104"}, - 629120805249672: &Security{ - SecurityId: 629120805249672, - Name: "NPM", - Description: "Nuveen Premium Income Municipal Fund 2", - Symbol: "NPM", - Precision: 5, - Type: Stock, - AlternateId: "67063W102"}, - 629120806929216: &Security{ - SecurityId: 629120806929216, - Name: "NXR", - Description: "Nuveen Select Tax-Free Income Portfolio 3", - Symbol: "NXR", - Precision: 5, - Type: Stock, - AlternateId: "67063X100"}, - 629120857317768: &Security{ - SecurityId: 629120857317768, - Name: "NPV", - Description: "Nuveen Virginia Premium Income Municipal Fund", - Symbol: "NPV", - Precision: 5, - Type: Stock, - AlternateId: "67064R102"}, - 629120874114144: &Security{ - SecurityId: 629120874114144, - Name: "NKX", - Description: "Nuveen California AMT-Free Municipal Income Fund", - Symbol: "NKX", - Precision: 5, - Type: Stock, - AlternateId: "670651108"}, - 629120882512188: &Security{ - SecurityId: 629120882512188, - Name: "NRK", - Description: "Nuveen Insured New York Tax-Free Advantage Municipal Fund", - Symbol: "NRK", - Precision: 5, - Type: Stock, - AlternateId: "670656107"}, - 629120884191732: &Security{ - SecurityId: 629120884191732, - Name: "NEA", - Description: "Nuveen Insured Tax-Free Advantage Municipal Fund", - Symbol: "NEA", - Precision: 5, - Type: Stock, - AlternateId: "670657105"}, - 629120959774416: &Security{ - SecurityId: 629120959774416, - Name: "NVDA", - Description: "NVIDIA Corp.", - Symbol: "NVDA", - Precision: 5, - Type: Stock, - AlternateId: "67066G104"}, - 629120984968548: &Security{ - SecurityId: 629120984968548, - Name: "NAD", - Description: "Nuveen Dividend Advantage Municipal Fund", - Symbol: "NAD", - Precision: 5, - Type: Stock, - AlternateId: "67066V101"}, - 629120988327996: &Security{ - SecurityId: 629120988327996, - Name: "NAN", - Description: "Nuveen New York Dividend Advantage Municipal Fund", - Symbol: "NAN", - Precision: 5, - Type: Stock, - AlternateId: "67066X107"}, - 629120990007540: &Security{ - SecurityId: 629120990007540, - Name: "NAC", - Description: "Nuveen California Dividend Advantage Municipal Fund", - Symbol: "NAC", - Precision: 5, - Type: Stock, - AlternateId: "67066Y105"}, - 629121050473680: &Security{ - SecurityId: 629121050473680, - Name: "NSL", - Description: "Nuveen Senior Income Fund", - Symbol: "NSL", - Precision: 5, - Type: Stock, - AlternateId: "67067Y104"}, - 629120995046424: &Security{ - SecurityId: 629120995046424, - Name: "NID", - Description: "Nuveen Intermediate Duration Municipal Term Fund", - Symbol: "NID", - Precision: 5, - Type: Stock, - AlternateId: "670671106"}, - 629121005124012: &Security{ - SecurityId: 629121005124012, - Name: "NIQ", - Description: "Nuveen Intermediate Duration Quality Municipal Term Fund", - Symbol: "NIQ", - Precision: 5, - Type: Stock, - AlternateId: "670677103"}, - 629121057192108: &Security{ - SecurityId: 629121057192108, - Name: "NMZ", - Description: "Nuveen Municipal High Income Opportunity Fund", - Symbol: "NMZ", - Precision: 5, - Type: Stock, - AlternateId: "670682103"}, - 629121136134240: &Security{ - SecurityId: 629121136134240, - Name: "NTRI", - Description: "NutriSystem, Inc.", - Symbol: "NTRI", - Precision: 5, - Type: Stock, - AlternateId: "67069D108"}, - 629121169726416: &Security{ - SecurityId: 629121169726416, - Name: "NVX", - Description: "Nuveen California Dividend Advantage Municipal Fund 2", - Symbol: "NVX", - Precision: 5, - Type: Stock, - AlternateId: "67069X104"}, - 629121171405960: &Security{ - SecurityId: 629121171405960, - Name: "NXJ", - Description: "Nuveen New Jersey Dividend Advantage Municipal Fund", - Symbol: "NXJ", - Precision: 5, - Type: Stock, - AlternateId: "67069Y102"}, - 629121122697204: &Security{ - SecurityId: 629121122697204, - Name: "NUW", - Description: "Nuveen ATM-Free Municipal Value Fund", - Symbol: "NUW", - Precision: 5, - Type: Stock, - AlternateId: "670695105"}, - 629121129415740: &Security{ - SecurityId: 629121129415740, - Name: "QQQX", - Description: "Nuveen Nasdaq 100 Dynamic Overwrite Fund", - Symbol: "QQQX", - Precision: 5, - Type: Stock, - AlternateId: "670699107"}, - 629122772079936: &Security{ - SecurityId: 629122772079936, - Name: "NXZ", - Description: "Nuveen Dividend Advantage Municipal Fund 2", - Symbol: "NXZ", - Precision: 5, - Type: Stock, - AlternateId: "67070F100"}, - 629122803992964: &Security{ - SecurityId: 629122803992964, - Name: "NZH", - Description: "Nuveen California Dividend Advantage Municipal Fund 3", - Symbol: "NZH", - Precision: 5, - Type: Stock, - AlternateId: "67070Y109"}, - 629122750245252: &Security{ - SecurityId: 629122750245252, - Name: "NJV", - Description: "Nuveen New Jersey Municipal Value Fund", - Symbol: "NJV", - Precision: 5, - Type: Stock, - AlternateId: "670702109"}, - 629122753604340: &Security{ - SecurityId: 629122753604340, - Name: "NUVA", - Description: "NuVasive, Inc.", - Symbol: "NUVA", - Precision: 5, - Type: Stock, - AlternateId: "670704105"}, - 629122756963392: &Security{ - SecurityId: 629122756963392, - Name: "NYV", - Description: "Nuveen New York Municipal Value Fund 2", - Symbol: "NYV", - Precision: 5, - Type: Stock, - AlternateId: "670706100"}, - 629122825827936: &Security{ - SecurityId: 629122825827936, - Name: "JRS", - Description: "Nuveen Real Estate Income Fund", - Symbol: "JRS", - Precision: 5, - Type: Stock, - AlternateId: "67071B108"}, - 629122842624024: &Security{ - SecurityId: 629122842624024, - Name: "NVG", - Description: "Nuveen Insured Dividend Advantage Municipal Fund", - Symbol: "NVG", - Precision: 5, - Type: Stock, - AlternateId: "67071L106"}, - 629122854381156: &Security{ - SecurityId: 629122854381156, - Name: "JTP", - Description: "Nuveen Quality Preferred Income Fund", - Symbol: "JTP", - Precision: 5, - Type: Stock, - AlternateId: "67071S101"}, - 629122886294076: &Security{ - SecurityId: 629122886294076, - Name: "NKG", - Description: "Nuveen Georgia Dividend Advantage Municipal Fund 2", - Symbol: "NKG", - Precision: 5, - Type: Stock, - AlternateId: "67072B107"}, - 629122887973620: &Security{ - SecurityId: 629122887973620, - Name: "JPS", - Description: "Nuveen Quality Preferred Income Fund 2", - Symbol: "JPS", - Precision: 5, - Type: Stock, - AlternateId: "67072C105"}, - 629122916527200: &Security{ - SecurityId: 629122916527200, - Name: "JFR", - Description: "Nuveen Floating Rate Income Fund", - Symbol: "JFR", - Precision: 5, - Type: Stock, - AlternateId: "67072T108"}, - 629122921565796: &Security{ - SecurityId: 629122921565796, - Name: "JHP", - Description: "Nuveen Quality Preferred Income Fund 3", - Symbol: "JHP", - Precision: 5, - Type: Stock, - AlternateId: "67072W101"}, - 629122946760216: &Security{ - SecurityId: 629122946760216, - Name: "JPC", - Description: "Nuveen Preferred Income Opportunities Fund", - Symbol: "JPC", - Precision: 5, - Type: Stock, - AlternateId: "67073B106"}, - 629122950119304: &Security{ - SecurityId: 629122950119304, - Name: "JQC", - Description: "Nuveen Credit Strategies Income Fund", - Symbol: "JQC", - Precision: 5, - Type: Stock, - AlternateId: "67073D102"}, - 629122955158260: &Security{ - SecurityId: 629122955158260, - Name: "JTD", - Description: "Nuveen Tax-Advantaged Dividend Growth Fund", - Symbol: "JTD", - Precision: 5, - Type: Stock, - AlternateId: "67073G105"}, - 629122929964128: &Security{ - SecurityId: 629122929964128, - Name: "CTF", - Description: "Nuveen Long/Short Commodity Total Return Fund", - Symbol: "CTF", - Precision: 5, - Type: Stock, - AlternateId: "670731108"}, - 629122935002760: &Security{ - SecurityId: 629122935002760, - Name: "NMS", - Description: "Nuveen Minnesota Municipal Income Fund", - Symbol: "NMS", - Precision: 5, - Type: Stock, - AlternateId: "670734102"}, - 629122936682628: &Security{ - SecurityId: 629122936682628, - Name: "JLS", - Description: "Nuveen Mortgage Opportunity Term Fund due 11/30/2019", - Symbol: "JLS", - Precision: 5, - Type: Stock, - AlternateId: "670735109"}, - 629123008905900: &Security{ - SecurityId: 629123008905900, - Name: "NBB", - Description: "Nuveen Build America Bond Fund", - Symbol: "NBB", - Precision: 5, - Type: Stock, - AlternateId: "67074C103"}, - 629123022342900: &Security{ - SecurityId: 629123022342900, - Name: "NPN", - Description: "Nuveen Pennsylvania Municipal Value Fund", - Symbol: "NPN", - Precision: 5, - Type: Stock, - AlternateId: "67074K105"}, - 629123025701988: &Security{ - SecurityId: 629123025701988, - Name: "NEV", - Description: "Nuveen Enhanced Municipal Value Fund", - Symbol: "NEV", - Precision: 5, - Type: Stock, - AlternateId: "67074M101"}, - 629123030740944: &Security{ - SecurityId: 629123030740944, - Name: "CFD", - Description: "Nuveen Diversified Commodity Fund", - Symbol: "CFD", - Precision: 5, - Type: Stock, - AlternateId: "67074P104"}, - 629123032420488: &Security{ - SecurityId: 629123032420488, - Name: "NBD", - Description: "Nuveen Build America Bond Opportunity Fund", - Symbol: "NBD", - Precision: 5, - Type: Stock, - AlternateId: "67074Q102"}, - 629123034100032: &Security{ - SecurityId: 629123034100032, - Name: "JMT", - Description: "Nuveen Mortgage Opportunity Term Fund 2", - Symbol: "JMT", - Precision: 5, - Type: Stock, - AlternateId: "67074R100"}, - 629123039138988: &Security{ - SecurityId: 629123039138988, - Name: "JMF", - Description: "Nuveen Energy MLP Total Return Fund", - Symbol: "JMF", - Precision: 5, - Type: Stock, - AlternateId: "67074U103"}, - 629123044177980: &Security{ - SecurityId: 629123044177980, - Name: "JSD", - Description: "Nuveen Short Duration Credit Opportunities Fund", - Symbol: "JSD", - Precision: 5, - Type: Stock, - AlternateId: "67074X107"}, - 629123045857524: &Security{ - SecurityId: 629123045857524, - Name: "JRI", - Description: "Nuveen Real Asset Income and Growth Fund", - Symbol: "JRI", - Precision: 5, - Type: Stock, - AlternateId: "67074Y105"}, - 629123066012952: &Security{ - SecurityId: 629123066012952, - Name: "JPI", - Description: "Nuveen Preferred and Income Term Fund", - Symbol: "JPI", - Precision: 5, - Type: Stock, - AlternateId: "67075A106"}, - 629123067692496: &Security{ - SecurityId: 629123067692496, - Name: "JPW", - Description: "Nuveen Flexible Investment Income Fund", - Symbol: "JPW", - Precision: 5, - Type: Stock, - AlternateId: "67075B104"}, - 629123072731488: &Security{ - SecurityId: 629123072731488, - Name: "JMLP", - Description: "Nuveen All Cap Energy MLP Opportunities Fund", - Symbol: "JMLP", - Precision: 5, - Type: Stock, - AlternateId: "67075E108"}, - 629123074410996: &Security{ - SecurityId: 629123074410996, - Name: "DIAX", - Description: "Nuveen Dow 30 Dynamic Overwrite Fund", - Symbol: "DIAX", - Precision: 5, - Type: Stock, - AlternateId: "67075F105"}, - 629123076090540: &Security{ - SecurityId: 629123076090540, - Name: "JGH", - Description: "Nuveen Global High Income Fund", - Symbol: "JGH", - Precision: 5, - Type: Stock, - AlternateId: "67075G103"}, - 629123081129532: &Security{ - SecurityId: 629123081129532, - Name: "JMM", - Description: "Nuveen Multi-Market Income Fund, Inc.", - Symbol: "JMM", - Precision: 5, - Type: Stock, - AlternateId: "67075J107"}, - 629123084488584: &Security{ - SecurityId: 629123084488584, - Name: "JHY", - Description: "Nuveen High Income 2020 Target Term Fund", - Symbol: "JHY", - Precision: 5, - Type: Stock, - AlternateId: "67075L102"}, - 629123091207084: &Security{ - SecurityId: 629123091207084, - Name: "JHA", - Description: "Nuveen High Income December 2018 Target Term Fund", - Symbol: "JHA", - Precision: 5, - Type: Stock, - AlternateId: "67075P103"}, - 629123151673224: &Security{ - SecurityId: 629123151673224, - Name: "NYMX", - Description: "Nymox Pharmaceutical Corp.", - Symbol: "NYMX", - Precision: 5, - Type: Stock, - AlternateId: "67076P102"}, - 629125002610200: &Security{ - SecurityId: 629125002610200, - Name: "CINR", - Description: "Ciner Resources L.P.", - Symbol: "CINR", - Precision: 5, - Type: Stock, - AlternateId: "67081B106"}, - 629125116823980: &Security{ - SecurityId: 629125116823980, - Name: "OGE", - Description: "OGE Energy Corp.", - Symbol: "OGE", - Precision: 5, - Type: Stock, - AlternateId: "670837103"}, - 629127129003912: &Security{ - SecurityId: 629127129003912, - Name: "JTA", - Description: "Nuveen Tax-Advantaged Total Return Strategy Fund", - Symbol: "JTA", - Precision: 5, - Type: Stock, - AlternateId: "67090H102"}, - 629127155877948: &Security{ - SecurityId: 629127155877948, - Name: "JCE", - Description: "Nuveen Core Equity Alpha Fund", - Symbol: "JCE", - Precision: 5, - Type: Stock, - AlternateId: "67090X107"}, - 629127194555628: &Security{ - SecurityId: 629127194555628, - Name: "NES", - Description: "Nuverra Environmental Solutions, Inc.", - Symbol: "NES", - Precision: 5, - Type: Stock, - AlternateId: "67091K203"}, - 629127199548000: &Security{ - SecurityId: 629127199548000, - Name: "OCIP", - Description: "OCI Partners L.P.", - Symbol: "OCIP", - Precision: 5, - Type: Stock, - AlternateId: "67091N108"}, - 629127234819648: &Security{ - SecurityId: 629127234819648, - Name: "NUV", - Description: "Nuveen Municipal Value Fund", - Symbol: "NUV", - Precision: 5, - Type: Stock, - AlternateId: "670928100"}, - 629127527073120: &Security{ - SecurityId: 629127527073120, - Name: "NQP", - Description: "Nuveen Pennsylvania Investment Quality Municipal Fund", - Symbol: "NQP", - Precision: 5, - Type: Stock, - AlternateId: "670972108"}, - 629127528752664: &Security{ - SecurityId: 629127528752664, - Name: "NQS", - Description: "Nuveen Select Quality Municipal Fund", - Symbol: "NQS", - Precision: 5, - Type: Stock, - AlternateId: "670973106"}, - 629127538830252: &Security{ - SecurityId: 629127538830252, - Name: "NUM", - Description: "Nuveen Michigan Quality Income Municipal Fund", - Symbol: "NUM", - Precision: 5, - Type: Stock, - AlternateId: "670979103"}, - 629127584179812: &Security{ - SecurityId: 629127584179812, - Name: "NUO", - Description: "Nuveen Ohio Quality Income Municipal Fund", - Symbol: "NUO", - Precision: 5, - Type: Stock, - AlternateId: "670980101"}, - 629127589218804: &Security{ - SecurityId: 629127589218804, - Name: "NTX", - Description: "Nuveen Texas Quality Income Municipal Fund", - Symbol: "NTX", - Precision: 5, - Type: Stock, - AlternateId: "670983105"}, - 629127590898348: &Security{ - SecurityId: 629127590898348, - Name: "NIO", - Description: "Nuveen Insured Municipal Opportunity Fund", - Symbol: "NIO", - Precision: 5, - Type: Stock, - AlternateId: "670984103"}, - 629127597616848: &Security{ - SecurityId: 629127597616848, - Name: "NPF", - Description: "Nuveen Premier Municipal Income Fund", - Symbol: "NPF", - Precision: 5, - Type: Stock, - AlternateId: "670988104"}, - 629186073447744: &Security{ - SecurityId: 629186073447744, - Name: "OFS", - Description: "OFS Capital Corp.", - Symbol: "OFS", - Precision: 5, - Type: Stock, - AlternateId: "67103B100"}, - 629186083525692: &Security{ - SecurityId: 629186083525692, - Name: "ORLY", - Description: "O'Reilly Automotive, Inc.", - Symbol: "ORLY", - Precision: 5, - Type: Stock, - AlternateId: "67103H107"}, - 629186110399368: &Security{ - SecurityId: 629186110399368, - Name: "OFG", - Description: "OFG Bancorp, Inc.", - Symbol: "OFG", - Precision: 5, - Type: Stock, - AlternateId: "67103X102"}, - 629186122156788: &Security{ - SecurityId: 629186122156788, - Name: "OSIS", - Description: "OSI Systems, Inc.", - Symbol: "OSIS", - Precision: 5, - Type: Stock, - AlternateId: "671044105"}, - 629186350584384: &Security{ - SecurityId: 629186350584384, - Name: "OIIM", - Description: "O2Micro Intl Ltd", - Symbol: "OIIM", - Precision: 5, - Type: Stock, - AlternateId: "67107W100"}, - 629203299589620: &Security{ - SecurityId: 629203299589620, - Name: "OVLY", - Description: "Oak Valley Bancorp (CA)", - Symbol: "OVLY", - Precision: 5, - Type: Stock, - AlternateId: "671807105"}, - 629420967792036: &Security{ - SecurityId: 629420967792036, - Name: "OAK", - Description: "Oaktree Capital Group, LLC Class A Units", - Symbol: "OAK", - Precision: 5, - Type: Stock, - AlternateId: "674001201"}, - 629425433844612: &Security{ - SecurityId: 629425433844612, - Name: "OASM", - Description: "Oasmia Pharmaceutical AB", - Symbol: "OASM", - Precision: 5, - Type: Stock, - AlternateId: "67421W109"}, - 629425388494944: &Security{ - SecurityId: 629425388494944, - Name: "OAS", - Description: "Oasis Petroleum, Inc.", - Symbol: "OAS", - Precision: 5, - Type: Stock, - AlternateId: "674215108"}, - 629432308512576: &Security{ - SecurityId: 629432308512576, - Name: "OCAT", - Description: "Ocata Therapeutics, Inc.", - Symbol: "OCAT", - Precision: 5, - Type: Stock, - AlternateId: "67457L100"}, - 629432409289716: &Security{ - SecurityId: 629432409289716, - Name: "OXY", - Description: "Occidental Petroleum Corp.", - Symbol: "OXY", - Precision: 5, - Type: Stock, - AlternateId: "674599105"}, - 629434209838104: &Security{ - SecurityId: 629434209838104, - Name: "OBCI", - Description: "Ocean Bio-Chem, Inc.", - Symbol: "OBCI", - Precision: 5, - Type: Stock, - AlternateId: "674631106"}, - 629438803727868: &Security{ - SecurityId: 629438803727868, - Name: "OPTT", - Description: "Ocean Power Technologies, Inc.", - Symbol: "OPTT", - Precision: 5, - Type: Stock, - AlternateId: "674870407"}, - 629503868552328: &Security{ - SecurityId: 629503868552328, - Name: "OII", - Description: "Oceaneering Intl, Inc.", - Symbol: "OII", - Precision: 5, - Type: Stock, - AlternateId: "675232102"}, - 629503871911776: &Security{ - SecurityId: 629503871911776, - Name: "OCFC", - Description: "OceanFirst Financial Corp.", - Symbol: "OCFC", - Precision: 5, - Type: Stock, - AlternateId: "675234108"}, - 629510324996340: &Security{ - SecurityId: 629510324996340, - Name: "OZM", - Description: "Och-Ziff Capital Management Group LLC", - Symbol: "OZM", - Precision: 5, - Type: Stock, - AlternateId: "67551U105"}, - 629510351870304: &Security{ - SecurityId: 629510351870304, - Name: "OCRX", - Description: "Ocera Therapeutics, Inc.", - Symbol: "OCRX", - Precision: 5, - Type: Stock, - AlternateId: "67552A108"}, - 629510555150424: &Security{ - SecurityId: 629510555150424, - Name: "OCLR", - Description: "Oclaro, Inc.", - Symbol: "OCLR", - Precision: 5, - Type: Stock, - AlternateId: "67555N206"}, - 629514819742212: &Security{ - SecurityId: 629514819742212, - Name: "OCN", - Description: "Ocwen Financial Corp.", - Symbol: "OCN", - Precision: 5, - Type: Stock, - AlternateId: "675746309"}, - 629514912074364: &Security{ - SecurityId: 629514912074364, - Name: "OCLS", - Description: "Oculus Innovative Sciences, Inc.", - Symbol: "OCLS", - Precision: 5, - Type: Stock, - AlternateId: "67575P207"}, - 629514947299392: &Security{ - SecurityId: 629514947299392, - Name: "OCUL", - Description: "Ocular Therapeutix, Inc.", - Symbol: "OCUL", - Precision: 5, - Type: Stock, - AlternateId: "67576A100"}, - 629579945079432: &Security{ - SecurityId: 629579945079432, - Name: "OMEX", - Description: "Odyssey Marine Exploration, Inc.", - Symbol: "OMEX", - Precision: 5, - Type: Stock, - AlternateId: "676118102"}, - 629582168891160: &Security{ - SecurityId: 629582168891160, - Name: "ODP", - Description: "Office Depot, Inc.", - Symbol: "ODP", - Precision: 5, - Type: Stock, - AlternateId: "676220106"}, - 629671371617304: &Security{ - SecurityId: 629671371617304, - Name: "OVBC", - Description: "Ohio Valley Banc Corp", - Symbol: "OVBC", - Precision: 5, - Type: Stock, - AlternateId: "677719106"}, - 629671808363904: &Security{ - SecurityId: 629671808363904, - Name: "OHRP", - Description: "Ohr Pharmaceutical, Inc.", - Symbol: "OHRP", - Precision: 5, - Type: Stock, - AlternateId: "67778H200"}, - 629673842332224: &Security{ - SecurityId: 629673842332224, - Name: "ODC", - Description: "Oil-Dri Corp. of America", - Symbol: "ODC", - Precision: 5, - Type: Stock, - AlternateId: "677864100"}, - 629734553732340: &Security{ - SecurityId: 629734553732340, - Name: "OIS", - Description: "Oil States Intl, Inc.", - Symbol: "OIS", - Precision: 5, - Type: Stock, - AlternateId: "678026105"}, - 629824154527296: &Security{ - SecurityId: 629824154527296, - Name: "ODFL", - Description: "Old Dominion Freight Line, Inc.", - Symbol: "ODFL", - Precision: 5, - Type: Stock, - AlternateId: "679580100"}, - 631928805754428: &Security{ - SecurityId: 631928805754428, - Name: "ONB", - Description: "Old National Bancorp", - Symbol: "ONB", - Precision: 5, - Type: Stock, - AlternateId: "680033107"}, - 631931347013436: &Security{ - SecurityId: 631931347013436, - Name: "OPOF", - Description: "Old Point Financial Corp.", - Symbol: "OPOF", - Precision: 5, - Type: Stock, - AlternateId: "680194107"}, - 631933098852816: &Security{ - SecurityId: 631933098852816, - Name: "ORI", - Description: "Old Republic Intl Corp.", - Symbol: "ORI", - Precision: 5, - Type: Stock, - AlternateId: "680223104"}, - 631933407902016: &Security{ - SecurityId: 631933407902016, - Name: "OSBC", - Description: "Old Second Bancorp, Inc.", - Symbol: "OSBC", - Precision: 5, - Type: Stock, - AlternateId: "680277100"}, - 631942051252788: &Security{ - SecurityId: 631942051252788, - Name: "OLN", - Description: "Olin Corp.", - Symbol: "OLN", - Precision: 5, - Type: Stock, - AlternateId: "680665205"}, - 632009230807428: &Security{ - SecurityId: 632009230807428, - Name: "OLLI", - Description: "Ollie's Bargain Outlet Holdings, Inc.", - Symbol: "OLLI", - Precision: 5, - Type: Stock, - AlternateId: "681116109"}, - 632020198699800: &Security{ - SecurityId: 632020198699800, - Name: "ZEUS", - Description: "Olympic Steel, Inc.", - Symbol: "ZEUS", - Precision: 5, - Type: Stock, - AlternateId: "68162K106"}, - 632026650104856: &Security{ - SecurityId: 632026650104856, - Name: "OMC", - Description: "Omnicom Group, Inc.", - Symbol: "OMC", - Precision: 5, - Type: Stock, - AlternateId: "681919106"}, - 632026765998144: &Security{ - SecurityId: 632026765998144, - Name: "OHI", - Description: "Omega Healthcare Investors, Inc.", - Symbol: "OHI", - Precision: 5, - Type: Stock, - AlternateId: "681936100"}, - 632085900238800: &Security{ - SecurityId: 632085900238800, - Name: "OFLX", - Description: "Omega Flex, Inc.", - Symbol: "OFLX", - Precision: 5, - Type: Stock, - AlternateId: "682095104"}, - 632087566417980: &Security{ - SecurityId: 632087566417980, - Name: "OME", - Description: "Omega Protein Corp.", - Symbol: "OME", - Precision: 5, - Type: Stock, - AlternateId: "68210P107"}, - 632087658796716: &Security{ - SecurityId: 632087658796716, - Name: "OVTI", - Description: "OmniVision Technologies, Inc.", - Symbol: "OVTI", - Precision: 5, - Type: Stock, - AlternateId: "682128103"}, - 632087660476260: &Security{ - SecurityId: 632087660476260, - Name: "OMN", - Description: "OMNOVA Solutions, Inc.", - Symbol: "OMN", - Precision: 5, - Type: Stock, - AlternateId: "682129101"}, - 632087744457348: &Security{ - SecurityId: 632087744457348, - Name: "OMCL", - Description: "Omnicell, Inc.", - Symbol: "OMCL", - Precision: 5, - Type: Stock, - AlternateId: "68213N109"}, - 632087771330952: &Security{ - SecurityId: 632087771330952, - Name: "OMER", - Description: "Omeros Corp.", - Symbol: "OMER", - Precision: 5, - Type: Stock, - AlternateId: "682143102"}, - 632087841875040: &Security{ - SecurityId: 632087841875040, - Name: "ASGN", - Description: "On Assignment, Inc.", - Symbol: "ASGN", - Precision: 5, - Type: Stock, - AlternateId: "682159108"}, - 632087892263232: &Security{ - SecurityId: 632087892263232, - Name: "ONDK", - Description: "On Deck Capital, Inc.", - Symbol: "ONDK", - Precision: 5, - Type: Stock, - AlternateId: "682163100"}, - 632088023273460: &Security{ - SecurityId: 632088023273460, - Name: "ON", - Description: "ON Semiconductor Corp.", - Symbol: "ON", - Precision: 5, - Type: Stock, - AlternateId: "682189105"}, - 632091894788376: &Security{ - SecurityId: 632091894788376, - Name: "OGXI", - Description: "Oncogenex Pharmaceuticals, Inc.", - Symbol: "OGXI", - Precision: 5, - Type: Stock, - AlternateId: "68230A106"}, - 632092050992736: &Security{ - SecurityId: 632092050992736, - Name: "ONTX", - Description: "Onconova Therapeutics, Inc.", - Symbol: "ONTX", - Precision: 5, - Type: Stock, - AlternateId: "68232V108"}, - 632092005643104: &Security{ - SecurityId: 632092005643104, - Name: "ONTY", - Description: "Oncothyreon, Inc.", - Symbol: "ONTY", - Precision: 5, - Type: Stock, - AlternateId: "682324108"}, - 632092155175548: &Security{ - SecurityId: 632092155175548, - Name: "ONCS", - Description: "OncoSec Medical, Inc.", - Symbol: "ONCS", - Precision: 5, - Type: Stock, - AlternateId: "68234L207"}, - 632092175284104: &Security{ - SecurityId: 632092175284104, - Name: "OMED", - Description: "OncoMed Pharmaceuticals", - Symbol: "OMED", - Precision: 5, - Type: Stock, - AlternateId: "68234X102"}, - 632092200478524: &Security{ - SecurityId: 632092200478524, - Name: "OCX", - Description: "OncoCyte Corp.", - Symbol: "OCX", - Precision: 5, - Type: Stock, - AlternateId: "68235C107"}, - 632092222313568: &Security{ - SecurityId: 632092222313568, - Name: "OGS", - Description: "One Gas, Inc.", - Symbol: "OGS", - Precision: 5, - Type: Stock, - AlternateId: "68235P108"}, - 632094064852140: &Security{ - SecurityId: 632094064852140, - Name: "OLP", - Description: "One Liberty Properties, Inc.", - Symbol: "OLP", - Precision: 5, - Type: Stock, - AlternateId: "682406103"}, - 632094279843096: &Security{ - SecurityId: 632094279843096, - Name: "FLWS", - Description: "1-800-FLOWERS.COM, Inc.", - Symbol: "FLWS", - Precision: 5, - Type: Stock, - AlternateId: "68243Q106"}, - 632094338629692: &Security{ - SecurityId: 632094338629692, - Name: "PIH", - Description: "1347 Property Insurance Holdings, Inc.", - Symbol: "PIH", - Precision: 5, - Type: Stock, - AlternateId: "68244P107"}, - 632094409220040: &Security{ - SecurityId: 632094409220040, - Name: "TFSC", - Description: "1347 Capital Corp.", - Symbol: "TFSC", - Precision: 5, - Type: Stock, - AlternateId: "68245V202"}, - 632098930699692: &Security{ - SecurityId: 632098930699692, - Name: "OKS", - Description: "ONEOK Partners, L.P.", - Symbol: "OKS", - Precision: 5, - Type: Stock, - AlternateId: "68268N103"}, - 632098892068524: &Security{ - SecurityId: 632098892068524, - Name: "OKE", - Description: "ONEOK, Inc.", - Symbol: "OKE", - Precision: 5, - Type: Stock, - AlternateId: "682680103"}, - 632170774734444: &Security{ - SecurityId: 632170774734444, - Name: "ONVI", - Description: "Onvia, Inc.", - Symbol: "ONVI", - Precision: 5, - Type: Stock, - AlternateId: "68338T403"}, - 632172489482340: &Security{ - SecurityId: 632172489482340, - Name: "OOMA", - Description: "Ooma, Inc.", - Symbol: "OOMA", - Precision: 5, - Type: Stock, - AlternateId: "683416101"}, - 632179018149912: &Security{ - SecurityId: 632179018149912, - Name: "OTEX", - Description: "Open Text Corp.", - Symbol: "OTEX", - Precision: 5, - Type: Stock, - AlternateId: "683715106"}, - 632179119020004: &Security{ - SecurityId: 632179119020004, - Name: "OPXA", - Description: "Opexa Therapeutics, Inc.", - Symbol: "OPXA", - Precision: 5, - Type: Stock, - AlternateId: "68372T301"}, - 632179165956228: &Security{ - SecurityId: 632179165956228, - Name: "OPGN", - Description: "OpGen, Inc.", - Symbol: "OPGN", - Precision: 5, - Type: Stock, - AlternateId: "68373L109"}, - 632179199548332: &Security{ - SecurityId: 632179199548332, - Name: "OPHT", - Description: "Ophthotech Corp.", - Symbol: "OPHT", - Precision: 5, - Type: Stock, - AlternateId: "683745103"}, - 632179290247596: &Security{ - SecurityId: 632179290247596, - Name: "OPK", - Description: "OPKO Health, Inc.", - Symbol: "OPK", - Precision: 5, - Type: Stock, - AlternateId: "68375N103"}, - 632179308723588: &Security{ - SecurityId: 632179308723588, - Name: "OPWR", - Description: "Opower, Inc.", - Symbol: "OPWR", - Precision: 5, - Type: Stock, - AlternateId: "68375Y109"}, - 632179505238480: &Security{ - SecurityId: 632179505238480, - Name: "OPY", - Description: "Oppenheimer Holdings, Inc.", - Symbol: "OPY", - Precision: 5, - Type: Stock, - AlternateId: "683797104"}, - 632181258804384: &Security{ - SecurityId: 632181258804384, - Name: "OCC", - Description: "Optical Cable Corp.", - Symbol: "OCC", - Precision: 5, - Type: Stock, - AlternateId: "683827208"}, - 632181509020368: &Security{ - SecurityId: 632181509020368, - Name: "RWL", - Description: "Oppenheimer Large Cap Revenue ETF", - Symbol: "RWL", - Precision: 5, - Type: Stock, - AlternateId: "68386C104"}, - 632181509066988: &Security{ - SecurityId: 632181509066988, - Name: "RWK", - Description: "Oppenheimer Mid Cap Revenue ETF", - Symbol: "RWK", - Precision: 5, - Type: Stock, - AlternateId: "68386C203"}, - 632181509113608: &Security{ - SecurityId: 632181509113608, - Name: "RWJ", - Description: "Oppenheimer Small Cap Revenue ETF", - Symbol: "RWJ", - Precision: 5, - Type: Stock, - AlternateId: "68386C302"}, - 632181509160228: &Security{ - SecurityId: 632181509160228, - Name: "RDIV", - Description: "Oppenheimer Ultra Dividend Revenue ETF", - Symbol: "RDIV", - Precision: 5, - Type: Stock, - AlternateId: "68386C401"}, - 632181509206848: &Security{ - SecurityId: 632181509206848, - Name: "RTR", - Description: "Oppenheimer ADR Revenue ETF", - Symbol: "RTR", - Precision: 5, - Type: Stock, - AlternateId: "68386C500"}, - 632181509253828: &Security{ - SecurityId: 632181509253828, - Name: "RWV", - Description: "Oppenheimer Navellier Overall A-100 Revenue ETF", - Symbol: "RWV", - Precision: 5, - Type: Stock, - AlternateId: "68386C609"}, - 632181509300448: &Security{ - SecurityId: 632181509300448, - Name: "RGRO", - Description: "Oppenheimer Global Growth Revenue ETF", - Symbol: "RGRO", - Precision: 5, - Type: Stock, - AlternateId: "68386C708"}, - 632181509347068: &Security{ - SecurityId: 632181509347068, - Name: "RWW", - Description: "Oppenheimer Financials Sector Revenue ETF", - Symbol: "RWW", - Precision: 5, - Type: Stock, - AlternateId: "68386C807"}, - 632181725690868: &Security{ - SecurityId: 632181725690868, - Name: "ORCL", - Description: "Oracle Corp.", - Symbol: "ORCL", - Precision: 5, - Type: Stock, - AlternateId: "68389X105"}, - 632242075973256: &Security{ - SecurityId: 632242075973256, - Name: "OPB", - Description: "Opus Bank", - Symbol: "OPB", - Precision: 5, - Type: Stock, - AlternateId: "684000102"}, - 632242201991148: &Security{ - SecurityId: 632242201991148, - Name: "OGEN", - Description: "Oragenics, Inc.", - Symbol: "OGEN", - Precision: 5, - Type: Stock, - AlternateId: "684023203"}, - 632242299408876: &Security{ - SecurityId: 632242299408876, - Name: "ORMP", - Description: "Oramed Pharmaceuticals Inc.", - Symbol: "ORMP", - Precision: 5, - Type: Stock, - AlternateId: "68403P203"}, - 632331617982048: &Security{ - SecurityId: 632331617982048, - Name: "OSUR", - Description: "OraSure Technologies, Inc.", - Symbol: "OSUR", - Precision: 5, - Type: Stock, - AlternateId: "68554V108"}, - 632331668370240: &Security{ - SecurityId: 632331668370240, - Name: "ORBC", - Description: "ORBCOMM, Inc.", - Symbol: "ORBC", - Precision: 5, - Type: Stock, - AlternateId: "68555P100"}, - 632331785943468: &Security{ - SecurityId: 632331785943468, - Name: "OA", - Description: "Orbital ATK, Inc.", - Symbol: "OA", - Precision: 5, - Type: Stock, - AlternateId: "68557N103"}, - 632335793507244: &Security{ - SecurityId: 632335793507244, - Name: "ORC", - Description: "Orchid Island Capital, Inc.", - Symbol: "ORC", - Precision: 5, - Type: Stock, - AlternateId: "68571X103"}, - 632401550520372: &Security{ - SecurityId: 632401550520372, - Name: "ONP", - Description: "Orient Paper, Inc.", - Symbol: "ONP", - Precision: 5, - Type: Stock, - AlternateId: "68619F205"}, - 632403589527648: &Security{ - SecurityId: 632403589527648, - Name: "OESX", - Description: "Orion Energy Systems, Inc.", - Symbol: "OESX", - Precision: 5, - Type: Stock, - AlternateId: "686275108"}, - 632403693757152: &Security{ - SecurityId: 632403693757152, - Name: "ORN", - Description: "Orion Marine Group, Inc.", - Symbol: "ORN", - Precision: 5, - Type: Stock, - AlternateId: "68628V308"}, - 632405537882028: &Security{ - SecurityId: 632405537882028, - Name: "ORIT", - Description: "Oritani Financial Corp.", - Symbol: "ORIT", - Precision: 5, - Type: Stock, - AlternateId: "68633D103"}, - 632412362161800: &Security{ - SecurityId: 632412362161800, - Name: "ORA", - Description: "Ormat Technologies, Inc.", - Symbol: "ORA", - Precision: 5, - Type: Stock, - AlternateId: "686688102"}, - 632484182542068: &Security{ - SecurityId: 632484182542068, - Name: "ORRF", - Description: "Orrstown Financial Services, Inc.", - Symbol: "ORRF", - Precision: 5, - Type: Stock, - AlternateId: "687380105"}, - 632560082756004: &Security{ - SecurityId: 632560082756004, - Name: "OSK", - Description: "Oshkosh Corp.", - Symbol: "OSK", - Precision: 5, - Type: Stock, - AlternateId: "688239201"}, - 632560354807392: &Security{ - SecurityId: 632560354807392, - Name: "OSIR", - Description: "Osiris Therapeutics, Inc.", - Symbol: "OSIR", - Precision: 5, - Type: Stock, - AlternateId: "68827R108"}, - 632573072952804: &Security{ - SecurityId: 632573072952804, - Name: "OTEL", - Description: "Otelco Inc.", - Symbol: "OTEL", - Precision: 5, - Type: Stock, - AlternateId: "688823301"}, - 632634294862836: &Security{ - SecurityId: 632634294862836, - Name: "OTIC", - Description: "Otonomy, Inc.", - Symbol: "OTIC", - Precision: 5, - Type: Stock, - AlternateId: "68906L105"}, - 632647212789420: &Security{ - SecurityId: 632647212789420, - Name: "OTTR", - Description: "Otter Tail Corp.", - Symbol: "OTTR", - Precision: 5, - Type: Stock, - AlternateId: "689648103"}, - 634750184400408: &Security{ - SecurityId: 634750184400408, - Name: "OUT", - Description: "Outfront Media, Inc.", - Symbol: "OUT", - Precision: 5, - Type: Stock, - AlternateId: "69007J106"}, - 634750152487740: &Security{ - SecurityId: 634750152487740, - Name: "OUTR", - Description: "Outerwall, Inc.", - Symbol: "OUTR", - Precision: 5, - Type: Stock, - AlternateId: "690070107"}, - 634752191541348: &Security{ - SecurityId: 634752191541348, - Name: "OVAS", - Description: "Ovascience, Inc.", - Symbol: "OVAS", - Precision: 5, - Type: Stock, - AlternateId: "69014Q101"}, - 634756667811300: &Security{ - SecurityId: 634756667811300, - Name: "OSG", - Description: "Overseas Shipholding Group, Inc. Cl A", - Symbol: "OSG", - Precision: 5, - Type: Stock, - AlternateId: "69036R301"}, - 634756682834532: &Security{ - SecurityId: 634756682834532, - Name: "OSTK", - Description: "Overstock.com, Inc.", - Symbol: "OSTK", - Precision: 5, - Type: Stock, - AlternateId: "690370101"}, - 634765151458440: &Security{ - SecurityId: 634765151458440, - Name: "OMI", - Description: "Owens & Minor, Inc.", - Symbol: "OMI", - Precision: 5, - Type: Stock, - AlternateId: "690732102"}, - 634765211924580: &Security{ - SecurityId: 634765211924580, - Name: "OC", - Description: "Owens Corning, Inc.", - Symbol: "OC", - Precision: 5, - Type: Stock, - AlternateId: "690742101"}, - 634765343074668: &Security{ - SecurityId: 634765343074668, - Name: "OI", - Description: "Owens-Illinois, Inc.", - Symbol: "OI", - Precision: 5, - Type: Stock, - AlternateId: "690768403"}, - 634767277852512: &Security{ - SecurityId: 634767277852512, - Name: "ORM", - Description: "Owens Realty Mortgage, Inc.", - Symbol: "ORM", - Precision: 5, - Type: Stock, - AlternateId: "690828108"}, - 634837356564228: &Security{ - SecurityId: 634837356564228, - Name: "OXM", - Description: "Oxford Industries, Inc.", - Symbol: "OXM", - Precision: 5, - Type: Stock, - AlternateId: "691497309"}, - 634839224203656: &Security{ - SecurityId: 634839224203656, - Name: "OXLC", - Description: "Oxford Lane Capital Corp.", - Symbol: "OXLC", - Precision: 5, - Type: Stock, - AlternateId: "691543102"}, - 634845642156432: &Security{ - SecurityId: 634845642156432, - Name: "OXGN", - Description: "OXiGENE, Inc.", - Symbol: "OXGN", - Precision: 5, - Type: Stock, - AlternateId: "691828404"}, - 634924053396576: &Security{ - SecurityId: 634924053396576, - Name: "PFIN", - Description: "P&F Industries, Inc.", - Symbol: "PFIN", - Precision: 5, - Type: Stock, - AlternateId: "692830508"}, - 634987255480344: &Security{ - SecurityId: 634987255480344, - Name: "PTSI", - Description: "P.A.M. Transportation Services, Inc.", - Symbol: "PTSI", - Precision: 5, - Type: Stock, - AlternateId: "693149106"}, - 634987509102360: &Security{ - SecurityId: 634987509102360, - Name: "PBF", - Description: "PBF Energy, Inc.", - Symbol: "PBF", - Precision: 5, - Type: Stock, - AlternateId: "69318G106"}, - 634987514140992: &Security{ - SecurityId: 634987514140992, - Name: "PCCC", - Description: "PC Connection, Inc.", - Symbol: "PCCC", - Precision: 5, - Type: Stock, - AlternateId: "69318J100"}, - 634987525898448: &Security{ - SecurityId: 634987525898448, - Name: "PBFX", - Description: "PBF Logistics LP", - Symbol: "PBFX", - Precision: 5, - Type: Stock, - AlternateId: "69318Q104"}, - 634989390272064: &Security{ - SecurityId: 634989390272064, - Name: "MALL", - Description: "PC Mall, Inc.", - Symbol: "MALL", - Precision: 5, - Type: Stock, - AlternateId: "69323K100"}, - 634989521282292: &Security{ - SecurityId: 634989521282292, - Name: "PCTI", - Description: "PCTEL, Inc.", - Symbol: "PCTI", - Precision: 5, - Type: Stock, - AlternateId: "69325Q105"}, - 634989643894116: &Security{ - SecurityId: 634989643894116, - Name: "PDCE", - Description: "PDC Energy, Inc.", - Symbol: "PDCE", - Precision: 5, - Type: Stock, - AlternateId: "69327R101"}, - 634989662370036: &Security{ - SecurityId: 634989662370036, - Name: "PDFS", - Description: "PDF Solutions, Inc.", - Symbol: "PDFS", - Precision: 5, - Type: Stock, - AlternateId: "693282105"}, - 634989776583888: &Security{ - SecurityId: 634989776583888, - Name: "PDLI", - Description: "PDL BioPharma, Inc.", - Symbol: "PDLI", - Precision: 5, - Type: Stock, - AlternateId: "69329Y104"}, - 634991432685408: &Security{ - SecurityId: 634991432685408, - Name: "PCG", - Description: "PG&E Corp.", - Symbol: "PCG", - Precision: 5, - Type: Stock, - AlternateId: "69331C108"}, - 634991473042632: &Security{ - SecurityId: 634991473042632, - Name: "PHH", - Description: "PHH Corp.", - Symbol: "PHH", - Precision: 5, - Type: Stock, - AlternateId: "693320202"}, - 634991763569688: &Security{ - SecurityId: 634991763569688, - Name: "PHII", - Description: "PHI, Inc.", - Symbol: "PHII", - Precision: 5, - Type: Stock, - AlternateId: "69336T106"}, - 634991763616308: &Security{ - SecurityId: 634991763616308, - Name: "PHIIK", - Description: "PHI, Inc. (Non-Voting)", - Symbol: "PHIIK", - Precision: 5, - Type: Stock, - AlternateId: "69336T205"}, - 634991724985140: &Security{ - SecurityId: 634991724985140, - Name: "PICO", - Description: "PICO Holdings, Inc.", - Symbol: "PICO", - Precision: 5, - Type: Stock, - AlternateId: "693366205"}, - 634993758953532: &Security{ - SecurityId: 634993758953532, - Name: "PJT", - Description: "PJT Partners, Inc. Cl A", - Symbol: "PJT", - Precision: 5, - Type: Stock, - AlternateId: "69343T107"}, - 634993960507380: &Security{ - SecurityId: 634993960507380, - Name: "PNC", - Description: "PNC Financial Services Group, Inc. (The)", - Symbol: "PNC", - Precision: 5, - Type: Stock, - AlternateId: "693475105"}, - 634994101595196: &Security{ - SecurityId: 634994101595196, - Name: "PNM", - Description: "PNM Resources, Inc.", - Symbol: "PNM", - Precision: 5, - Type: Stock, - AlternateId: "69349H107"}, - 634995715706172: &Security{ - SecurityId: 634995715706172, - Name: "PPG", - Description: "PPG Industries, Inc.", - Symbol: "PPG", - Precision: 5, - Type: Stock, - AlternateId: "693506107"}, - 634995814803480: &Security{ - SecurityId: 634995814803480, - Name: "PPL", - Description: "PPL Corp.", - Symbol: "PPL", - Precision: 5, - Type: Stock, - AlternateId: "69351T106"}, - 634995984444768: &Security{ - SecurityId: 634995984444768, - Name: "PRAH", - Description: "PRA Health Sciences, Inc.", - Symbol: "PRAH", - Precision: 5, - Type: Stock, - AlternateId: "69354M108"}, - 634995986124312: &Security{ - SecurityId: 634995986124312, - Name: "PRAA", - Description: "PRA Group, Inc.", - Symbol: "PRAA", - Precision: 5, - Type: Stock, - AlternateId: "69354N106"}, - 634997914323516: &Security{ - SecurityId: 634997914323516, - Name: "PSB", - Description: "PS Business Parks, Inc.", - Symbol: "PSB", - Precision: 5, - Type: Stock, - AlternateId: "69360J107"}, - 634998194819136: &Security{ - SecurityId: 634998194819136, - Name: "PVH", - Description: "PVH Corp.", - Symbol: "PVH", - Precision: 5, - Type: Stock, - AlternateId: "693656100"}, - 634998277166976: &Security{ - SecurityId: 634998277166976, - Name: "PTCT", - Description: "PTC Therapeutics, Inc.", - Symbol: "PTCT", - Precision: 5, - Type: Stock, - AlternateId: "69366J200"}, - 635000079348288: &Security{ - SecurityId: 635000079348288, - Name: "PTC", - Description: "PTC, Inc.", - Symbol: "PTC", - Precision: 5, - Type: Stock, - AlternateId: "69370C100"}, - 635000133096288: &Security{ - SecurityId: 635000133096288, - Name: "PCAR", - Description: "PACCAR, Inc.", - Symbol: "PCAR", - Precision: 5, - Type: Stock, - AlternateId: "693718108"}, - 635000329611252: &Security{ - SecurityId: 635000329611252, - Name: "PTLC", - Description: "Pacer Trendpilot 750 ETF", - Symbol: "PTLC", - Precision: 5, - Type: Stock, - AlternateId: "69374H105"}, - 635000329704492: &Security{ - SecurityId: 635000329704492, - Name: "PTNQ", - Description: "Pacer Trendpilot 100 ETF", - Symbol: "PTNQ", - Precision: 5, - Type: Stock, - AlternateId: "69374H303"}, - 635000329797732: &Security{ - SecurityId: 635000329797732, - Name: "PAEU", - Description: "Pacer Autopilot Hedged European Index ETF", - Symbol: "PAEU", - Precision: 5, - Type: Stock, - AlternateId: "69374H501"}, - 635000329937952: &Security{ - SecurityId: 635000329937952, - Name: "PTEU", - Description: "Pacer Trendpilot European Index ETF", - Symbol: "PTEU", - Precision: 5, - Type: Stock, - AlternateId: "69374H808"}, - 635000304417120: &Security{ - SecurityId: 635000304417120, - Name: "PHF", - Description: "Pacholder High Yield Fund, Inc. (The)", - Symbol: "PHF", - Precision: 5, - Type: Stock, - AlternateId: "693742108"}, - 635063412629088: &Security{ - SecurityId: 635063412629088, - Name: "PBM", - Description: "Pacific Booker Minerals, Inc.", - Symbol: "PBM", - Precision: 5, - Type: Stock, - AlternateId: "69403R108"}, - 635063449580640: &Security{ - SecurityId: 635063449580640, - Name: "PACB", - Description: "Pacific Biosciences of California Inc.,", - Symbol: "PACB", - Precision: 5, - Type: Stock, - AlternateId: "69404D108"}, - 635065367701896: &Security{ - SecurityId: 635065367701896, - Name: "ROYT", - Description: "Pacific Coast Oil Trust", - Symbol: "ROYT", - Precision: 5, - Type: Stock, - AlternateId: "694103102"}, - 635065535663712: &Security{ - SecurityId: 635065535663712, - Name: "PCBK", - Description: "Pacific Continental Corp.", - Symbol: "PCBK", - Precision: 5, - Type: Stock, - AlternateId: "69412V108"}, - 635065787699388: &Security{ - SecurityId: 635065787699388, - Name: "PDVW", - Description: "Pacific DataVision, Inc.", - Symbol: "PDVW", - Precision: 5, - Type: Stock, - AlternateId: "694171307"}, - 635074375482432: &Security{ - SecurityId: 635074375482432, - Name: "PMBC", - Description: "Pacific Mercantile Bancorp", - Symbol: "PMBC", - Precision: 5, - Type: Stock, - AlternateId: "694552100"}, - 635078962513908: &Security{ - SecurityId: 635078962513908, - Name: "PPBI", - Description: "Pacific Premier Bancorp, Inc.", - Symbol: "PPBI", - Precision: 5, - Type: Stock, - AlternateId: "69478X105"}, - 635081028441408: &Security{ - SecurityId: 635081028441408, - Name: "PSUN", - Description: "Pacific Sunwear of California, Inc.", - Symbol: "PSUN", - Precision: 5, - Type: Stock, - AlternateId: "694873100"}, - 635143859516736: &Security{ - SecurityId: 635143859516736, - Name: "PCRX", - Description: "Pacira Pharmaceuticals, Inc.", - Symbol: "PCRX", - Precision: 5, - Type: Stock, - AlternateId: "695127100"}, - 635144039235972: &Security{ - SecurityId: 635144039235972, - Name: "PKG", - Description: "Packaging Corp. of America", - Symbol: "PKG", - Precision: 5, - Type: Stock, - AlternateId: "695156109"}, - 635146271445420: &Security{ - SecurityId: 635146271445420, - Name: "PACW", - Description: "PacWest Bancorp", - Symbol: "PACW", - Precision: 5, - Type: Stock, - AlternateId: "695263103"}, - 635154765263424: &Security{ - SecurityId: 635154765263424, - Name: "PTIE", - Description: "Pain Therapeutics, Inc.", - Symbol: "PTIE", - Precision: 5, - Type: Stock, - AlternateId: "69562K100"}, - 635220349369452: &Security{ - SecurityId: 635220349369452, - Name: "PTN", - Description: "Palatin Technologies, Inc.", - Symbol: "PTN", - Precision: 5, - Type: Stock, - AlternateId: "696077403"}, - 635307175299060: &Security{ - SecurityId: 635307175299060, - Name: "PANW", - Description: "Palo Alto Networks, Inc.", - Symbol: "PANW", - Precision: 5, - Type: Stock, - AlternateId: "697435105"}, - 635317869414240: &Security{ - SecurityId: 635317869414240, - Name: "PAAS", - Description: "Pan American Silver Corp.", - Symbol: "PAAS", - Precision: 5, - Type: Stock, - AlternateId: "697900108"}, - 635383481933628: &Security{ - SecurityId: 635383481933628, - Name: "P", - Description: "Pandora Media, Inc.", - Symbol: "P", - Precision: 5, - Type: Stock, - AlternateId: "698354107"}, - 635385403414368: &Security{ - SecurityId: 635385403414368, - Name: "PNRA", - Description: "Panera Bread Co.", - Symbol: "PNRA", - Precision: 5, - Type: Stock, - AlternateId: "69840W108"}, - 635385784687128: &Security{ - SecurityId: 635385784687128, - Name: "PHX", - Description: "Panhandle Royalty Co.", - Symbol: "PHX", - Precision: 5, - Type: Stock, - AlternateId: "698477106"}, - 635394122300808: &Security{ - SecurityId: 635394122300808, - Name: "PZZA", - Description: "Papa John's Intl, Inc.", - Symbol: "PZZA", - Precision: 5, - Type: Stock, - AlternateId: "698813102"}, - 635394123980352: &Security{ - SecurityId: 635394123980352, - Name: "FRSH", - Description: "Papa Murphy's Holdings, Inc.", - Symbol: "FRSH", - Precision: 5, - Type: Stock, - AlternateId: "698814100"}, - 635394589280892: &Security{ - SecurityId: 635394589280892, - Name: "PARR", - Description: "Par Pacific Holdings, Inc.", - Symbol: "PARR", - Precision: 5, - Type: Stock, - AlternateId: "69888T207"}, - 635394547243692: &Security{ - SecurityId: 635394547243692, - Name: "PAR", - Description: "PAR Technology Corp.", - Symbol: "PAR", - Precision: 5, - Type: Stock, - AlternateId: "698884103"}, - 635457410371872: &Security{ - SecurityId: 635457410371872, - Name: "PRGN", - Description: "Paragon Shipping, Inc.", - Symbol: "PRGN", - Precision: 5, - Type: Stock, - AlternateId: "69913R408"}, - 635459639082372: &Security{ - SecurityId: 635459639082372, - Name: "PZG", - Description: "Paramount Gold Nevada Corp.", - Symbol: "PZG", - Precision: 5, - Type: Stock, - AlternateId: "69924M109"}, - 635459647480416: &Security{ - SecurityId: 635459647480416, - Name: "PGRE", - Description: "Paramount Group, Inc.", - Symbol: "PGRE", - Precision: 5, - Type: Stock, - AlternateId: "69924R108"}, - 635461967123208: &Security{ - SecurityId: 635461967123208, - Name: "PRTK", - Description: "Paratek Pharmaceuticals, Inc.", - Symbol: "PRTK", - Precision: 5, - Type: Stock, - AlternateId: "699374302"}, - 635464079987004: &Security{ - SecurityId: 635464079987004, - Name: "PRXL", - Description: "PAREXEL Intl Corp.", - Symbol: "PRXL", - Precision: 5, - Type: Stock, - AlternateId: "699462107"}, - 710924119247952: &Security{ - SecurityId: 710924119247952, - Name: "PCYG", - Description: "Park City Group, Inc.", - Symbol: "PCYG", - Precision: 5, - Type: Stock, - AlternateId: "700215304"}, - 710928474445764: &Security{ - SecurityId: 710928474445764, - Name: "PKE", - Description: "Park Electrochemical Corp.", - Symbol: "PKE", - Precision: 5, - Type: Stock, - AlternateId: "700416209"}, - 710933073187644: &Security{ - SecurityId: 710933073187644, - Name: "PRK", - Description: "Park National Corp.", - Symbol: "PRK", - Precision: 5, - Type: Stock, - AlternateId: "700658107"}, - 710933130294336: &Security{ - SecurityId: 710933130294336, - Name: "PKOH", - Description: "Park-Ohio Holdings Corp.", - Symbol: "PKOH", - Precision: 5, - Type: Stock, - AlternateId: "700666100"}, - 710998546298724: &Security{ - SecurityId: 710998546298724, - Name: "PKD", - Description: "Parker Drilling Co.", - Symbol: "PKD", - Precision: 5, - Type: Stock, - AlternateId: "701081101"}, - 710998611803856: &Security{ - SecurityId: 710998611803856, - Name: "PH", - Description: "Parker Hannifin Corp.", - Symbol: "PH", - Precision: 5, - Type: Stock, - AlternateId: "701094104"}, - 711004900286088: &Security{ - SecurityId: 711004900286088, - Name: "PRKR", - Description: "ParkerVision, Inc.", - Symbol: "PRKR", - Precision: 5, - Type: Stock, - AlternateId: "701354102"}, - 711009532667088: &Security{ - SecurityId: 711009532667088, - Name: "PKY", - Description: "Parkway Properties, Inc.", - Symbol: "PKY", - Precision: 5, - Type: Stock, - AlternateId: "70159Q104"}, - 711015910168968: &Security{ - SecurityId: 711015910168968, - Name: "PE", - Description: "Parsley Energy, Inc.", - Symbol: "PE", - Precision: 5, - Type: Stock, - AlternateId: "701877102"}, - 711078699254148: &Security{ - SecurityId: 711078699254148, - Name: "PTNR", - Description: "Partner Communications Co. Ltd ADR", - Symbol: "PTNR", - Precision: 5, - Type: Stock, - AlternateId: "70211M109"}, - 711078858817524: &Security{ - SecurityId: 711078858817524, - Name: "PRTY", - Description: "Party City Holdco, Inc.", - Symbol: "PRTY", - Precision: 5, - Type: Stock, - AlternateId: "702149105"}, - 711161566468524: &Security{ - SecurityId: 711161566468524, - Name: "PATK", - Description: "Patrick Industries, Inc.", - Symbol: "PATK", - Precision: 5, - Type: Stock, - AlternateId: "703343103"}, - 711161707602924: &Security{ - SecurityId: 711161707602924, - Name: "PNBK", - Description: "Patriot National Bancorp, Inc.", - Symbol: "PNBK", - Precision: 5, - Type: Stock, - AlternateId: "70336F203"}, - 711161845284672: &Security{ - SecurityId: 711161845284672, - Name: "PEGI", - Description: "Pattern Energy Group, Inc.", - Symbol: "PEGI", - Precision: 5, - Type: Stock, - AlternateId: "70338P100"}, - 711161852003208: &Security{ - SecurityId: 711161852003208, - Name: "PN", - Description: "Patriot National, Inc.", - Symbol: "PN", - Precision: 5, - Type: Stock, - AlternateId: "70338T102"}, - 711161872158636: &Security{ - SecurityId: 711161872158636, - Name: "PDCO", - Description: "Patterson Cos., Inc.", - Symbol: "PDCO", - Precision: 5, - Type: Stock, - AlternateId: "703395103"}, - 711163981756260: &Security{ - SecurityId: 711163981756260, - Name: "PTEN", - Description: "Patterson-UTI Energy, Inc.", - Symbol: "PTEN", - Precision: 5, - Type: Stock, - AlternateId: "703481101"}, - 711239856729480: &Security{ - SecurityId: 711239856729480, - Name: "PAYC", - Description: "Paycom Software, Inc.", - Symbol: "PAYC", - Precision: 5, - Type: Stock, - AlternateId: "70432V102"}, - 711239814739260: &Security{ - SecurityId: 711239814739260, - Name: "PAYX", - Description: "Paychex, Inc.", - Symbol: "PAYX", - Precision: 5, - Type: Stock, - AlternateId: "704326107"}, - 711240214534344: &Security{ - SecurityId: 711240214534344, - Name: "PYDS", - Description: "Payment Data Systems, Inc.", - Symbol: "PYDS", - Precision: 5, - Type: Stock, - AlternateId: "70438S202"}, - 711240219526680: &Security{ - SecurityId: 711240219526680, - Name: "PCTY", - Description: "Paylocity Holding Corp.", - Symbol: "PCTY", - Precision: 5, - Type: Stock, - AlternateId: "70438V106"}, - 711244094400684: &Security{ - SecurityId: 711244094400684, - Name: "PYPL", - Description: "PayPal Holdings, Inc.", - Symbol: "PYPL", - Precision: 5, - Type: Stock, - AlternateId: "70450Y103"}, - 711244294321644: &Security{ - SecurityId: 711244294321644, - Name: "BTU", - Description: "Peabody Energy Corp.", - Symbol: "BTU", - Precision: 5, - Type: Stock, - AlternateId: "704549203"}, - 711246793543488: &Security{ - SecurityId: 711246793543488, - Name: "SKIS", - Description: "Peak Resorts, Inc.", - Symbol: "SKIS", - Precision: 5, - Type: Stock, - AlternateId: "70469L100"}, - 711246773388348: &Security{ - SecurityId: 711246773388348, - Name: "PGC", - Description: "Peapack-Gladstone Financial Corp.", - Symbol: "PGC", - Precision: 5, - Type: Stock, - AlternateId: "704699107"}, - 711311586410484: &Security{ - SecurityId: 711311586410484, - Name: "PSO", - Description: "Pearson plc ADR", - Symbol: "PSO", - Precision: 5, - Type: Stock, - AlternateId: "705015105"}, - 711312113809728: &Security{ - SecurityId: 711312113809728, - Name: "PEB", - Description: "Pebblebrook Hotel Trust", - Symbol: "PEB", - Precision: 5, - Type: Stock, - AlternateId: "70509V100"}, - 711318225979152: &Security{ - SecurityId: 711318225979152, - Name: "PED", - Description: "PEDEVCO Corp.", - Symbol: "PED", - Precision: 5, - Type: Stock, - AlternateId: "70532Y204"}, - 711322829759916: &Security{ - SecurityId: 711322829759916, - Name: "PEGA", - Description: "Pegasystems, Inc.", - Symbol: "PEGA", - Precision: 5, - Type: Stock, - AlternateId: "705573103"}, - 711396544746924: &Security{ - SecurityId: 711396544746924, - Name: "PBA", - Description: "Pembina Pipeline Corp.", - Symbol: "PBA", - Precision: 5, - Type: Stock, - AlternateId: "706327103"}, - 711468650661840: &Security{ - SecurityId: 711468650661840, - Name: "PGH", - Description: "Pengrowth Energy Corp.", - Symbol: "PGH", - Precision: 5, - Type: Stock, - AlternateId: "70706P104"}, - 711479507699844: &Security{ - SecurityId: 711479507699844, - Name: "PENN", - Description: "Penn National Gaming, Inc.", - Symbol: "PENN", - Precision: 5, - Type: Stock, - AlternateId: "707569109"}, - 711486147221784: &Security{ - SecurityId: 711486147221784, - Name: "PVAH", - Description: "Penn Virginia Corp.", - Symbol: "PVAH", - Precision: 5, - Type: Stock, - AlternateId: "707882106"}, - 711486155619828: &Security{ - SecurityId: 711486155619828, - Name: "PWE", - Description: "Penn West Petroleum Ltd", - Symbol: "PWE", - Precision: 5, - Type: Stock, - AlternateId: "707887105"}, - 711546989631768: &Security{ - SecurityId: 711546989631768, - Name: "PFLT", - Description: "PennantPark Floating Rate Capital Ltd", - Symbol: "PFLT", - Precision: 5, - Type: Stock, - AlternateId: "70806A106"}, - 711546976194768: &Security{ - SecurityId: 711546976194768, - Name: "PNNT", - Description: "PennantPark Investment Corp.", - Symbol: "PNNT", - Precision: 5, - Type: Stock, - AlternateId: "708062104"}, - 711549149617944: &Security{ - SecurityId: 711549149617944, - Name: "JCP", - Description: "J.C. Penney Co., Inc.", - Symbol: "JCP", - Precision: 5, - Type: Stock, - AlternateId: "708160106"}, - 711555498566316: &Security{ - SecurityId: 711555498566316, - Name: "PWOD", - Description: "Penns Woods Bancorp, Inc.", - Symbol: "PWOD", - Precision: 5, - Type: Stock, - AlternateId: "708430103"}, - 711627154344252: &Security{ - SecurityId: 711627154344252, - Name: "PEI", - Description: "Pennsylvania Real Estate Investment Trust", - Symbol: "PEI", - Precision: 5, - Type: Stock, - AlternateId: "709102107"}, - 711631613724588: &Security{ - SecurityId: 711631613724588, - Name: "PMT", - Description: "PennyMac Mortgage Investment Trust", - Symbol: "PMT", - Precision: 5, - Type: Stock, - AlternateId: "70931T103"}, - 711631566695376: &Security{ - SecurityId: 711631566695376, - Name: "PTXP", - Description: "PennTex Midstream Partners, LP", - Symbol: "PTXP", - Precision: 5, - Type: Stock, - AlternateId: "709311104"}, - 711631643957604: &Security{ - SecurityId: 711631643957604, - Name: "PFSI", - Description: "PennyMac Financial Services, Inc.", - Symbol: "PFSI", - Precision: 5, - Type: Stock, - AlternateId: "70932B101"}, - 711640549281852: &Security{ - SecurityId: 711640549281852, - Name: "PEN", - Description: "Penumbra, Inc.", - Symbol: "PEN", - Precision: 5, - Type: Stock, - AlternateId: "70975L107"}, - 711640710524772: &Security{ - SecurityId: 711640710524772, - Name: "PEBO", - Description: "Peoples Bancorp, Inc.", - Symbol: "PEBO", - Precision: 5, - Type: Stock, - AlternateId: "709789101"}, - 713752125565500: &Security{ - SecurityId: 713752125565500, - Name: "PEBK", - Description: "Peoples Bancorp of North Carolina, Inc.", - Symbol: "PEBK", - Precision: 5, - Type: Stock, - AlternateId: "710577107"}, - 713819370671496: &Security{ - SecurityId: 713819370671496, - Name: "PFBX", - Description: "Peoples Financial Corp.", - Symbol: "PFBX", - Precision: 5, - Type: Stock, - AlternateId: "71103B102"}, - 713819412662004: &Security{ - SecurityId: 713819412662004, - Name: "PFIS", - Description: "Peoples Financial Services Corp.", - Symbol: "PFIS", - Precision: 5, - Type: Stock, - AlternateId: "711040105"}, - 713912779156212: &Security{ - SecurityId: 713912779156212, - Name: "PBCT", - Description: "People's United Financial, Inc.", - Symbol: "PBCT", - Precision: 5, - Type: Stock, - AlternateId: "712704105"}, - 713912782562244: &Security{ - SecurityId: 713912782562244, - Name: "PUB", - Description: "People's Utah Bancorp", - Symbol: "PUB", - Precision: 5, - Type: Stock, - AlternateId: "712706209"}, - 713980689390468: &Security{ - SecurityId: 713980689390468, - Name: "PBY", - Description: "Pep Boys - Manny Moe & Jack (The)", - Symbol: "PBY", - Precision: 5, - Type: Stock, - AlternateId: "713278109"}, - 713980798565256: &Security{ - SecurityId: 713980798565256, - Name: "POM", - Description: "Pepco Holdings, Inc.", - Symbol: "POM", - Precision: 5, - Type: Stock, - AlternateId: "713291102"}, - 713984861556576: &Security{ - SecurityId: 713984861556576, - Name: "PEP", - Description: "PepsiCo, Inc.", - Symbol: "PEP", - Precision: 5, - Type: Stock, - AlternateId: "713448108"}, - 713989045479744: &Security{ - SecurityId: 713989045479744, - Name: "PRCP", - Description: "Perceptron, Inc.", - Symbol: "PRCP", - Precision: 5, - Type: Stock, - AlternateId: "71361F100"}, - 713989324389456: &Security{ - SecurityId: 713989324389456, - Name: "PPHM", - Description: "Peregrine Pharmaceuticals, Inc.", - Symbol: "PPHM", - Precision: 5, - Type: Stock, - AlternateId: "713661304"}, - 713991489321060: &Security{ - SecurityId: 713991489321060, - Name: "PRFT", - Description: "Perficient, Inc.", - Symbol: "PRFT", - Precision: 5, - Type: Stock, - AlternateId: "71375U101"}, - 713991519554112: &Security{ - SecurityId: 713991519554112, - Name: "PERF", - Description: "Perfumania Holdings, Inc.", - Symbol: "PERF", - Precision: 5, - Type: Stock, - AlternateId: "71376C100"}, - 713991576661164: &Security{ - SecurityId: 713991576661164, - Name: "PFGC", - Description: "Performance Food Group Co.", - Symbol: "PFGC", - Precision: 5, - Type: Stock, - AlternateId: "71377A103"}, - 713991586738752: &Security{ - SecurityId: 713991586738752, - Name: "PSG", - Description: "Performance Sports Group Ltd.", - Symbol: "PSG", - Precision: 5, - Type: Stock, - AlternateId: "71377G100"}, - 713993496462324: &Security{ - SecurityId: 713993496462324, - Name: "SLP", - Description: "Pericom Semiconductor Corp.", - Symbol: "SLP", - Precision: 5, - Type: Stock, - AlternateId: "713831105"}, - 714054515232132: &Security{ - SecurityId: 714054515232132, - Name: "PKI", - Description: "PerkinElmer, Inc.", - Symbol: "PKI", - Precision: 5, - Type: Stock, - AlternateId: "714046109"}, - 714056754206700: &Security{ - SecurityId: 714056754206700, - Name: "PESI", - Description: "Perma-Fix Environmental Services, Inc.", - Symbol: "PESI", - Precision: 5, - Type: Stock, - AlternateId: "714157203"}, - 714058808330520: &Security{ - SecurityId: 714058808330520, - Name: "PBT", - Description: "Permian Basin Royalty Trust", - Symbol: "PBT", - Precision: 5, - Type: Stock, - AlternateId: "714236106"}, - 714059031719520: &Security{ - SecurityId: 714059031719520, - Name: "PTX", - Description: "Pernix Therapeutics Holdings, Inc.", - Symbol: "PTX", - Precision: 5, - Type: Stock, - AlternateId: "71426V108"}, - 714137404328172: &Security{ - SecurityId: 714137404328172, - Name: "PRSN", - Description: "Perseon Corp.", - Symbol: "PRSN", - Precision: 5, - Type: Stock, - AlternateId: "715270203"}, - 714139161206544: &Security{ - SecurityId: 714139161206544, - Name: "PGLC", - Description: "Pershing Gold Corp.", - Symbol: "PGLC", - Precision: 5, - Type: Stock, - AlternateId: "715302204"}, - 714146178595608: &Security{ - SecurityId: 714146178595608, - Name: "TLK", - Description: "Telekomunikasi Indonesia ADR", - Symbol: "TLK", - Precision: 5, - Type: Stock, - AlternateId: "715684106"}, - 714218009053464: &Security{ - SecurityId: 714218009053464, - Name: "PETS", - Description: "PetMed Express, Inc.", - Symbol: "PETS", - Precision: 5, - Type: Stock, - AlternateId: "716382106"}, - 714220085058624: &Security{ - SecurityId: 714220085058624, - Name: "PTR", - Description: "PetroChina Co. Ltd ADR", - Symbol: "PTR", - Precision: 5, - Type: Stock, - AlternateId: "71646E100"}, - 714222169462116: &Security{ - SecurityId: 714222169462116, - Name: "PBRA", - Description: "Petroleo Brasileiro S.A. PETROBRAS Preferred Shares ADR", - Symbol: "PBRA", - Precision: 5, - Type: Stock, - AlternateId: "71654V101"}, - 714222169602336: &Security{ - SecurityId: 714222169602336, - Name: "PBR", - Description: "Petroleo Brasileiro S.A. PETROBRAS ADR", - Symbol: "PBR", - Precision: 5, - Type: Stock, - AlternateId: "71654V408"}, - 714226484395872: &Security{ - SecurityId: 714226484395872, - Name: "PQ", - Description: "PetroQuest Energy, Inc.", - Symbol: "PQ", - Precision: 5, - Type: Stock, - AlternateId: "716748108"}, - 714289780724688: &Security{ - SecurityId: 714289780724688, - Name: "PFNX", - Description: "Pfenex, Inc.", - Symbol: "PFNX", - Precision: 5, - Type: Stock, - AlternateId: "717071104"}, - 714289841190828: &Security{ - SecurityId: 714289841190828, - Name: "PFE", - Description: "Pfizer, Inc.", - Symbol: "PFE", - Precision: 5, - Type: Stock, - AlternateId: "717081103"}, - 714289913461080: &Security{ - SecurityId: 714289913461080, - Name: "PFSW", - Description: "PFSweb, Inc.", - Symbol: "PFSW", - Precision: 5, - Type: Stock, - AlternateId: "717098206"}, - 714291799623120: &Security{ - SecurityId: 714291799623120, - Name: "PMC", - Description: "PharMerica Corp.", - Symbol: "PMC", - Precision: 5, - Type: Stock, - AlternateId: "71714F104"}, - 714298227513624: &Security{ - SecurityId: 714298227513624, - Name: "PAHC", - Description: "Phibro Animal Health Corp.", - Symbol: "PAHC", - Precision: 5, - Type: Stock, - AlternateId: "71742Q106"}, - 714370323350916: &Security{ - SecurityId: 714370323350916, - Name: "PM", - Description: "Philip Morris International, Inc.", - Symbol: "PM", - Precision: 5, - Type: Stock, - AlternateId: "718172109"}, - 714372379434000: &Security{ - SecurityId: 714372379434000, - Name: "PHI", - Description: "Philippine Long Distance Telephone Co. ADR", - Symbol: "PHI", - Precision: 5, - Type: Stock, - AlternateId: "718252604"}, - 714378855800016: &Security{ - SecurityId: 714378855800016, - Name: "PSX", - Description: "Phillips 66", - Symbol: "PSX", - Precision: 5, - Type: Stock, - AlternateId: "718546104"}, - 714378860885628: &Security{ - SecurityId: 714378860885628, - Name: "PSXP", - Description: "Phillips 66 Partners LP", - Symbol: "PSXP", - Precision: 5, - Type: Stock, - AlternateId: "718549207"}, - 714446228790288: &Security{ - SecurityId: 714446228790288, - Name: "PNX", - Description: "Phoenix Companies, Inc. (The)", - Symbol: "PNX", - Precision: 5, - Type: Stock, - AlternateId: "71902E604"}, - 714448281047724: &Security{ - SecurityId: 714448281047724, - Name: "FENG", - Description: "Phoenix New Media Ltd ADR", - Symbol: "FENG", - Precision: 5, - Type: Stock, - AlternateId: "71910C103"}, - 714452930318052: &Security{ - SecurityId: 714452930318052, - Name: "PHMD", - Description: "PhotoMedex, Inc.", - Symbol: "PHMD", - Precision: 5, - Type: Stock, - AlternateId: "719358301"}, - 714454799637384: &Security{ - SecurityId: 714454799637384, - Name: "PLAB", - Description: "Photronics, Inc.", - Symbol: "PLAB", - Precision: 5, - Type: Stock, - AlternateId: "719405102"}, - 714455023026384: &Security{ - SecurityId: 714455023026384, - Name: "DOC", - Description: "Physicians Realty Trust", - Symbol: "DOC", - Precision: 5, - Type: Stock, - AlternateId: "71943U104"}, - 716564587130100: &Security{ - SecurityId: 716564587130100, - Name: "PNY", - Description: "Piedmont Natural Gas Co., Inc.", - Symbol: "PNY", - Precision: 5, - Type: Stock, - AlternateId: "720186105"}, - 716564637565272: &Security{ - SecurityId: 716564637565272, - Name: "PDM", - Description: "Piedmont Office Realty Trust", - Symbol: "PDM", - Precision: 5, - Type: Stock, - AlternateId: "720190206"}, - 716566708485216: &Security{ - SecurityId: 716566708485216, - Name: "PIR", - Description: "Pier 1 Imports, Inc.", - Symbol: "PIR", - Precision: 5, - Type: Stock, - AlternateId: "720279108"}, - 716577706610604: &Security{ - SecurityId: 716577706610604, - Name: "PIRS", - Description: "Pieris Pharmaceuticals, Inc.", - Symbol: "PIRS", - Precision: 5, - Type: Stock, - AlternateId: "720795103"}, - 716649444689760: &Security{ - SecurityId: 716649444689760, - Name: "PPC", - Description: "Pilgrim's Pride Corp.", - Symbol: "PPC", - Precision: 5, - Type: Stock, - AlternateId: "72147K108"}, - 716718681820512: &Security{ - SecurityId: 716718681820512, - Name: "PCK", - Description: "PIMCO California Municipal Income Fund II", - Symbol: "PCK", - Precision: 5, - Type: Stock, - AlternateId: "72200M108"}, - 716718683500056: &Security{ - SecurityId: 716718683500056, - Name: "PCQ", - Description: "PIMCO California Municipal Income Fund", - Symbol: "PCQ", - Precision: 5, - Type: Stock, - AlternateId: "72200N106"}, - 716718690218556: &Security{ - SecurityId: 716718690218556, - Name: "PMF", - Description: "PIMCO Municipal Income Fund", - Symbol: "PMF", - Precision: 5, - Type: Stock, - AlternateId: "72200R107"}, - 716718693577644: &Security{ - SecurityId: 716718693577644, - Name: "PNF", - Description: "PIMCO New York Municipal Income Fund", - Symbol: "PNF", - Precision: 5, - Type: Stock, - AlternateId: "72200T103"}, - 716718695257152: &Security{ - SecurityId: 716718695257152, - Name: "PCN", - Description: "PIMCO Corporate & Income Strategy Fund", - Symbol: "PCN", - Precision: 5, - Type: Stock, - AlternateId: "72200U100"}, - 716718698616600: &Security{ - SecurityId: 716718698616600, - Name: "PML", - Description: "PIMCO Municipal Income Fund II", - Symbol: "PML", - Precision: 5, - Type: Stock, - AlternateId: "72200W106"}, - 716718700296144: &Security{ - SecurityId: 716718700296144, - Name: "RCS", - Description: "Pimco Strategic Income Fund, Inc.", - Symbol: "RCS", - Precision: 5, - Type: Stock, - AlternateId: "72200X104"}, - 716718701975688: &Security{ - SecurityId: 716718701975688, - Name: "PNI", - Description: "PIMCO New York Municipal Income Fund II", - Symbol: "PNI", - Precision: 5, - Type: Stock, - AlternateId: "72200Y102"}, - 716718722131116: &Security{ - SecurityId: 716718722131116, - Name: "PMX", - Description: "PIMCO Municipal Income Fund III", - Symbol: "PMX", - Precision: 5, - Type: Stock, - AlternateId: "72201A103"}, - 716718723810660: &Security{ - SecurityId: 716718723810660, - Name: "PTY", - Description: "PIMCO Corporate & Income Opportunity Fund", - Symbol: "PTY", - Precision: 5, - Type: Stock, - AlternateId: "72201B101"}, - 716718725490564: &Security{ - SecurityId: 716718725490564, - Name: "PZC", - Description: "PIMCO California Municipal Income Fund III", - Symbol: "PZC", - Precision: 5, - Type: Stock, - AlternateId: "72201C109"}, - 716718728849652: &Security{ - SecurityId: 716718728849652, - Name: "PYN", - Description: "PIMCO New York Municipal Income Fund III", - Symbol: "PYN", - Precision: 5, - Type: Stock, - AlternateId: "72201E105"}, - 716718733888608: &Security{ - SecurityId: 716718733888608, - Name: "PFL", - Description: "PIMCO Income Strategy Fund", - Symbol: "PFL", - Precision: 5, - Type: Stock, - AlternateId: "72201H108"}, - 716718737247696: &Security{ - SecurityId: 716718737247696, - Name: "PFN", - Description: "PIMCO Income Strategy Fund II", - Symbol: "PFN", - Precision: 5, - Type: Stock, - AlternateId: "72201J104"}, - 716718750684696: &Security{ - SecurityId: 716718750684696, - Name: "TUZ", - Description: "PIMCO 1-3 Year U.S. Treasury Index Fund Exchange-Traded Fund", - Symbol: "TUZ", - Precision: 5, - Type: Stock, - AlternateId: "72201R106"}, - 716718750731316: &Security{ - SecurityId: 716718750731316, - Name: "STPZ", - Description: "PIMCO 1-5 Year U.S. TIPS Index Exchange-Traded Fund", - Symbol: "STPZ", - Precision: 5, - Type: Stock, - AlternateId: "72201R205"}, - 716718750777936: &Security{ - SecurityId: 716718750777936, - Name: "LTPZ", - Description: "PIMCO 15+ Year U.S. TIPS Index Exchange-Traded Fund", - Symbol: "LTPZ", - Precision: 5, - Type: Stock, - AlternateId: "72201R304"}, - 716718750824556: &Security{ - SecurityId: 716718750824556, - Name: "TIPZ", - Description: "PIMCO Broad U.S. TIPS Index Exchange-Traded Fund", - Symbol: "TIPZ", - Precision: 5, - Type: Stock, - AlternateId: "72201R403"}, - 716718750966000: &Security{ - SecurityId: 716718750966000, - Name: "LDUR", - Description: "PIMCO Low Duration Exchange-Traded Fund", - Symbol: "LDUR", - Precision: 5, - Type: Stock, - AlternateId: "72201R718"}, - 716718750967224: &Security{ - SecurityId: 716718750967224, - Name: "DI", - Description: "PIMCO Diversified Income Active Exchange-Traded Fund", - Symbol: "DI", - Precision: 5, - Type: Stock, - AlternateId: "72201R726"}, - 716718750973668: &Security{ - SecurityId: 716718750973668, - Name: "BOND", - Description: "PIMCO Total Return Exchange-Traded Fund ETF", - Symbol: "BOND", - Precision: 5, - Type: Stock, - AlternateId: "72201R775"}, - 716718750974892: &Security{ - SecurityId: 716718750974892, - Name: "HYS", - Description: "PIMCO 0-5 Year High Yield Corporate Bond Index Exchange-Traded Fund", - Symbol: "HYS", - Precision: 5, - Type: Stock, - AlternateId: "72201R783"}, - 716718750976116: &Security{ - SecurityId: 716718750976116, - Name: "ILB", - Description: "PIMCO Global Advantage Inflation-Linked Bond Exchange-Traded Fund", - Symbol: "ILB", - Precision: 5, - Type: Stock, - AlternateId: "72201R791"}, - 716718751012620: &Security{ - SecurityId: 716718751012620, - Name: "CORP", - Description: "PIMCO Investment Grade Corporate Bond Index Exchange-Traded Fund", - Symbol: "CORP", - Precision: 5, - Type: Stock, - AlternateId: "72201R817"}, - 716718751015068: &Security{ - SecurityId: 716718751015068, - Name: "MINT", - Description: "PIMCO Enhanced Short Maturity Active Exchange-Traded Fund", - Symbol: "MINT", - Precision: 5, - Type: Stock, - AlternateId: "72201R833"}, - 716718751020288: &Security{ - SecurityId: 716718751020288, - Name: "SMMU", - Description: "PIMCO Short-Term Municipal Bond Exchange-Traded Fund", - Symbol: "SMMU", - Precision: 5, - Type: Stock, - AlternateId: "72201R874"}, - 716718751021512: &Security{ - SecurityId: 716718751021512, - Name: "ZROZ", - Description: "PIMCO 25+ Year Zero Coupon U.S. Treasury Index Exchange-Traded Fund", - Symbol: "ZROZ", - Precision: 5, - Type: Stock, - AlternateId: "72201R882"}, - 716718762441828: &Security{ - SecurityId: 716718762441828, - Name: "PDI", - Description: "PIMCO Dynamic Income Fund", - Symbol: "PDI", - Precision: 5, - Type: Stock, - AlternateId: "72201Y101"}, - 716718707014572: &Security{ - SecurityId: 716718707014572, - Name: "PGP", - Description: "PIMCO Global StocksPLUS & Income Fund", - Symbol: "PGP", - Precision: 5, - Type: Stock, - AlternateId: "722011103"}, - 716718712053564: &Security{ - SecurityId: 716718712053564, - Name: "PHK", - Description: "PIMCO High Income Fund", - Symbol: "PHK", - Precision: 5, - Type: Stock, - AlternateId: "722014107"}, - 716718784276800: &Security{ - SecurityId: 716718784276800, - Name: "PKO", - Description: "PIMCO Income Opportunity Fund", - Symbol: "PKO", - Precision: 5, - Type: Stock, - AlternateId: "72202B100"}, - 716718787636248: &Security{ - SecurityId: 716718787636248, - Name: "PCI", - Description: "PIMCO Dynamic Credit Income Fund", - Symbol: "PCI", - Precision: 5, - Type: Stock, - AlternateId: "72202D106"}, - 716806028571012: &Security{ - SecurityId: 716806028571012, - Name: "PNK", - Description: "Pinnacle Entertainment, Inc.", - Symbol: "PNK", - Precision: 5, - Type: Stock, - AlternateId: "723456109"}, - 716806122629328: &Security{ - SecurityId: 716806122629328, - Name: "PNFP", - Description: "Pinnacle Financial Partners, Inc.", - Symbol: "PNFP", - Precision: 5, - Type: Stock, - AlternateId: "72346Q104"}, - 716806241882064: &Security{ - SecurityId: 716806241882064, - Name: "PF", - Description: "Pinnacle Foods, Inc.", - Symbol: "PF", - Precision: 5, - Type: Stock, - AlternateId: "72348P104"}, - 716806206610020: &Security{ - SecurityId: 716806206610020, - Name: "PNW", - Description: "Pinnacle West Capital Corp.", - Symbol: "PNW", - Precision: 5, - Type: Stock, - AlternateId: "723484101"}, - 716810377096548: &Security{ - SecurityId: 716810377096548, - Name: "HNW", - Description: "Pioneer Diversified High Income Trust", - Symbol: "HNW", - Precision: 5, - Type: Stock, - AlternateId: "723653101"}, - 716810642476056: &Security{ - SecurityId: 716810642476056, - Name: "PHT", - Description: "Pioneer High Income Trust", - Symbol: "PHT", - Precision: 5, - Type: Stock, - AlternateId: "72369H106"}, - 716810645835144: &Security{ - SecurityId: 716810645835144, - Name: "PHD", - Description: "Pioneer Floating Rate Trust", - Symbol: "PHD", - Precision: 5, - Type: Stock, - AlternateId: "72369J102"}, - 716812612665408: &Security{ - SecurityId: 716812612665408, - Name: "MAV", - Description: "Pioneer Municipal High Income Advantage Trust", - Symbol: "MAV", - Precision: 5, - Type: Stock, - AlternateId: "723762100"}, - 716812614345312: &Security{ - SecurityId: 716812614345312, - Name: "MHI", - Description: "Pioneer Municipal High Income Trust", - Symbol: "MHI", - Precision: 5, - Type: Stock, - AlternateId: "723763108"}, - 716812741996092: &Security{ - SecurityId: 716812741996092, - Name: "PXD", - Description: "Pioneer Natural Resources Co.", - Symbol: "PXD", - Precision: 5, - Type: Stock, - AlternateId: "723787107"}, - 716814614860992: &Security{ - SecurityId: 716814614860992, - Name: "PPSI", - Description: "Pioneer Power Solutions, Inc.", - Symbol: "PPSI", - Precision: 5, - Type: Stock, - AlternateId: "723836300"}, - 716884518705984: &Security{ - SecurityId: 716884518705984, - Name: "PBI", - Description: "Pitney Bowes, Inc.", - Symbol: "PBI", - Precision: 5, - Type: Stock, - AlternateId: "724479100"}, - 716971249130868: &Security{ - SecurityId: 716971249130868, - Name: "PXLW", - Description: "Pixelworks, Inc.", - Symbol: "PXLW", - Precision: 5, - Type: Stock, - AlternateId: "72581M305"}, - 717042990475764: &Security{ - SecurityId: 717042990475764, - Name: "PAA", - Description: "Plains All American Pipeline, L.P.", - Symbol: "PAA", - Precision: 5, - Type: Stock, - AlternateId: "726503105"}, - 717043062699360: &Security{ - SecurityId: 717043062699360, - Name: "PAGP", - Description: "Plains GP Holdings, L.P.", - Symbol: "PAGP", - Precision: 5, - Type: Stock, - AlternateId: "72651A108"}, - 717110675641188: &Security{ - SecurityId: 717110675641188, - Name: "PLNT", - Description: "Planet Fitness, Inc. Cl A", - Symbol: "PLNT", - Precision: 5, - Type: Stock, - AlternateId: "72703H101"}, - 717119722053216: &Security{ - SecurityId: 717119722053216, - Name: "PLT", - Description: "Plantronics, Inc.", - Symbol: "PLT", - Precision: 5, - Type: Stock, - AlternateId: "727493108"}, - 717123932850420: &Security{ - SecurityId: 717123932850420, - Name: "PAH", - Description: "Platform Specialty Products Corp.", - Symbol: "PAH", - Precision: 5, - Type: Stock, - AlternateId: "72766Q105"}, - 717269555557440: &Security{ - SecurityId: 717269555557440, - Name: "PLXS", - Description: "Plexus Corp.", - Symbol: "PLXS", - Precision: 5, - Type: Stock, - AlternateId: "729132100"}, - 717269957032392: &Security{ - SecurityId: 717269957032392, - Name: "PLUG", - Description: "Plug Power, Inc.", - Symbol: "PLUG", - Precision: 5, - Type: Stock, - AlternateId: "72919P202"}, - 717271851592800: &Security{ - SecurityId: 717271851592800, - Name: "PCL", - Description: "Plum Creek Timber Co., Inc.", - Symbol: "PCL", - Precision: 5, - Type: Stock, - AlternateId: "729251108"}, - 717271975884168: &Security{ - SecurityId: 717271975884168, - Name: "PLBC", - Description: "Plumas Bancorp", - Symbol: "PLBC", - Precision: 5, - Type: Stock, - AlternateId: "729273102"}, - 717275946496392: &Security{ - SecurityId: 717275946496392, - Name: "PSTI", - Description: "Pluristem Therapeutics, Inc.", - Symbol: "PSTI", - Precision: 5, - Type: Stock, - AlternateId: "72940R102"}, - 717276015360576: &Security{ - SecurityId: 717276015360576, - Name: "PGEM", - Description: "Ply Gem Holdings, Inc.", - Symbol: "PGEM", - Precision: 5, - Type: Stock, - AlternateId: "72941W100"}, - 719387390090628: &Security{ - SecurityId: 719387390090628, - Name: "PBSK", - Description: "Poage Bankshares, Inc.", - Symbol: "PBSK", - Precision: 5, - Type: Stock, - AlternateId: "730206109"}, - 719400687657120: &Security{ - SecurityId: 719400687657120, - Name: "PCOM", - Description: "Points Intl Ltd", - Symbol: "PCOM", - Precision: 5, - Type: Stock, - AlternateId: "730843208"}, - 719461766846088: &Security{ - SecurityId: 719461766846088, - Name: "PII", - Description: "Polaris Industries, Inc.", - Symbol: "PII", - Precision: 5, - Type: Stock, - AlternateId: "731068102"}, - 719476782613200: &Security{ - SecurityId: 719476782613200, - Name: "PLCM", - Description: "Polycom, Inc.", - Symbol: "PLCM", - Precision: 5, - Type: Stock, - AlternateId: "73172K104"}, - 719477214274584: &Security{ - SecurityId: 719477214274584, - Name: "POL", - Description: "PolyOne Corp.", - Symbol: "POL", - Precision: 5, - Type: Stock, - AlternateId: "73179P106"}, - 719481052197000: &Security{ - SecurityId: 719481052197000, - Name: "PLM", - Description: "PolyMet Mining Corp.", - Symbol: "PLM", - Precision: 5, - Type: Stock, - AlternateId: "731916102"}, - 719555511254004: &Security{ - SecurityId: 719555511254004, - Name: "POOL", - Description: "Pool Corp.", - Symbol: "POOL", - Precision: 5, - Type: Stock, - AlternateId: "73278L105"}, - 719557483123260: &Security{ - SecurityId: 719557483123260, - Name: "POPE", - Description: "Pope Resources, L.P.", - Symbol: "POPE", - Precision: 5, - Type: Stock, - AlternateId: "732857107"}, - 719557595657496: &Security{ - SecurityId: 719557595657496, - Name: "PLKI", - Description: "Popeyes Louisiana Kitchen, Inc.", - Symbol: "PLKI", - Precision: 5, - Type: Stock, - AlternateId: "732872106"}, - 719620725984192: &Security{ - SecurityId: 719620725984192, - Name: "BPOP", - Description: "Popular, Inc.", - Symbol: "BPOP", - Precision: 5, - Type: Stock, - AlternateId: "733174700"}, - 719864109113148: &Security{ - SecurityId: 719864109113148, - Name: "POR", - Description: "Portland General Electric Co.", - Symbol: "POR", - Precision: 5, - Type: Stock, - AlternateId: "736508847"}, - 719931636063072: &Security{ - SecurityId: 719931636063072, - Name: "PTLA", - Description: "Portola Pharmaceuticals, Inc.", - Symbol: "PTLA", - Precision: 5, - Type: Stock, - AlternateId: "737010108"}, - 719940534668496: &Security{ - SecurityId: 719940534668496, - Name: "POST", - Description: "Post Holdings, Inc.", - Symbol: "POST", - Precision: 5, - Type: Stock, - AlternateId: "737446104"}, - 719940652241724: &Security{ - SecurityId: 719940652241724, - Name: "PPS", - Description: "Post Properties, Inc.", - Symbol: "PPS", - Precision: 5, - Type: Stock, - AlternateId: "737464107"}, - 719942758479936: &Security{ - SecurityId: 719942758479936, - Name: "PBPB", - Description: "Potbelly Corp.", - Symbol: "PBPB", - Precision: 5, - Type: Stock, - AlternateId: "73754Y100"}, - 719942797111356: &Security{ - SecurityId: 719942797111356, - Name: "POT", - Description: "Potash Corp. of Saskatchewan, Inc.", - Symbol: "POT", - Precision: 5, - Type: Stock, - AlternateId: "73755L107"}, - 719944817689260: &Security{ - SecurityId: 719944817689260, - Name: "PCH", - Description: "Potlatch Corp.", - Symbol: "PCH", - Precision: 5, - Type: Stock, - AlternateId: "737630103"}, - 720090615076632: &Security{ - SecurityId: 720090615076632, - Name: "POWL", - Description: "Powell Industries, Inc.", - Symbol: "POWL", - Precision: 5, - Type: Stock, - AlternateId: "739128106"}, - 720093090830508: &Security{ - SecurityId: 720093090830508, - Name: "POWI", - Description: "Power Integrations, Inc.", - Symbol: "POWI", - Precision: 5, - Type: Stock, - AlternateId: "739276103"}, - 720095153398992: &Security{ - SecurityId: 720095153398992, - Name: "QQQ", - Description: "PowerShares QQQ", - Symbol: "QQQ", - Precision: 5, - Type: Stock, - AlternateId: "73935A104"}, - 720095155265376: &Security{ - SecurityId: 720095155265376, - Name: "PSR", - Description: "PowerShares Active U.S. Real Estate Fund", - Symbol: "PSR", - Precision: 5, - Type: Stock, - AlternateId: "73935B508"}, - 720095155405236: &Security{ - SecurityId: 720095155405236, - Name: "PHDG", - Description: "PowerShares S&P 500 Downside Hedged Portfolio", - Symbol: "PHDG", - Precision: 5, - Type: Stock, - AlternateId: "73935B805"}, - 720095155414128: &Security{ - SecurityId: 720095155414128, - Name: "LALT", - Description: "PowerShares Multi-Strategy Alternative Portfolio", - Symbol: "LALT", - Precision: 5, - Type: Stock, - AlternateId: "73935B870"}, - 720095155415712: &Security{ - SecurityId: 720095155415712, - Name: "CHNA", - Description: "PowerShares China A - Share Portfolio", - Symbol: "CHNA", - Precision: 5, - Type: Stock, - AlternateId: "73935B888"}, - 720095171874624: &Security{ - SecurityId: 720095171874624, - Name: "PIN", - Description: "PowerShares India Portfolio", - Symbol: "PIN", - Precision: 5, - Type: Stock, - AlternateId: "73935L100"}, - 720095192030160: &Security{ - SecurityId: 720095192030160, - Name: "PWC", - Description: "PowerShares Dynamic Market Portfolio", - Symbol: "PWC", - Precision: 5, - Type: Stock, - AlternateId: "73935X104"}, - 720095192035416: &Security{ - SecurityId: 720095192035416, - Name: "PNQI", - Description: "PowerShares NASDAQ Internet Portfolio", - Symbol: "PNQI", - Precision: 5, - Type: Stock, - AlternateId: "73935X146"}, - 720095192036604: &Security{ - SecurityId: 720095192036604, - Name: "PDP", - Description: "PowerShares DWA Momentum Portfolio", - Symbol: "PDP", - Precision: 5, - Type: Stock, - AlternateId: "73935X153"}, - 720095192037828: &Security{ - SecurityId: 720095192037828, - Name: "PUW", - Description: "PowerShares WilderHill Progressive Energy Portfolio", - Symbol: "PUW", - Precision: 5, - Type: Stock, - AlternateId: "73935X161"}, - 720095192041860: &Security{ - SecurityId: 720095192041860, - Name: "PSP", - Description: "PowerShares Listed Private Equity Portfolio", - Symbol: "PSP", - Precision: 5, - Type: Stock, - AlternateId: "73935X195"}, - 720095192076780: &Security{ - SecurityId: 720095192076780, - Name: "DWAQ", - Description: "PowerShares DWA NASDAQ Momentum Portfolio", - Symbol: "DWAQ", - Precision: 5, - Type: Stock, - AlternateId: "73935X203"}, - 720095192079588: &Security{ - SecurityId: 720095192079588, - Name: "PGF", - Description: "PowerShares Financial Preferred Portfolio", - Symbol: "PGF", - Precision: 5, - Type: Stock, - AlternateId: "73935X229"}, - 720095192086032: &Security{ - SecurityId: 720095192086032, - Name: "PZD", - Description: "PowerShares CleanTech Portfolio", - Symbol: "PZD", - Precision: 5, - Type: Stock, - AlternateId: "73935X278"}, - 720095192087256: &Security{ - SecurityId: 720095192087256, - Name: "PKW", - Description: "PowerShares Buyback Achievers Portfolio", - Symbol: "PKW", - Precision: 5, - Type: Stock, - AlternateId: "73935X286"}, - 720095192123400: &Security{ - SecurityId: 720095192123400, - Name: "PEY", - Description: "PowerShares High Yield Equity Dividend Achievers Portfolio", - Symbol: "PEY", - Precision: 5, - Type: Stock, - AlternateId: "73935X302"}, - 720095192128656: &Security{ - SecurityId: 720095192128656, - Name: "PTF", - Description: "PowerShares DWA Technology Momentum Portfolio", - Symbol: "PTF", - Precision: 5, - Type: Stock, - AlternateId: "73935X344"}, - 720095192129844: &Security{ - SecurityId: 720095192129844, - Name: "PTH", - Description: "PowerShares DWA Healthcare Momentum Portfolio", - Symbol: "PTH", - Precision: 5, - Type: Stock, - AlternateId: "73935X351"}, - 720095192131428: &Security{ - SecurityId: 720095192131428, - Name: "PRN", - Description: "PowerShares DWA Industrials Momentum Portfolio", - Symbol: "PRN", - Precision: 5, - Type: Stock, - AlternateId: "73935X369"}, - 720095192132652: &Security{ - SecurityId: 720095192132652, - Name: "PFI", - Description: "PowerShares DWA Financial Momentum Portfolio", - Symbol: "PFI", - Precision: 5, - Type: Stock, - AlternateId: "73935X377"}, - 720095192133876: &Security{ - SecurityId: 720095192133876, - Name: "PXI", - Description: "PowerShares DWA Energy Momentum Portfolio", - Symbol: "PXI", - Precision: 5, - Type: Stock, - AlternateId: "73935X385"}, - 720095192135100: &Security{ - SecurityId: 720095192135100, - Name: "PSL", - Description: "PowerShares DWA Consumer Staples Momentum Portfolio", - Symbol: "PSL", - Precision: 5, - Type: Stock, - AlternateId: "73935X393"}, - 720095192170020: &Security{ - SecurityId: 720095192170020, - Name: "PGJ", - Description: "PowerShares Golden Dragon China Portfolio", - Symbol: "PGJ", - Precision: 5, - Type: Stock, - AlternateId: "73935X401"}, - 720095192171604: &Security{ - SecurityId: 720095192171604, - Name: "PEZ", - Description: "PowerShares DWA Consumer Cyclicals Momentum Portfolio", - Symbol: "PEZ", - Precision: 5, - Type: Stock, - AlternateId: "73935X419"}, - 720095192172828: &Security{ - SecurityId: 720095192172828, - Name: "PYZ", - Description: "PowerShares DWA Basic Materials Momentum Portfolio", - Symbol: "PYZ", - Precision: 5, - Type: Stock, - AlternateId: "73935X427"}, - 720095192174052: &Security{ - SecurityId: 720095192174052, - Name: "EQWS", - Description: "PowerShares Russell 2000 Equal Weight Portfolio", - Symbol: "EQWS", - Precision: 5, - Type: Stock, - AlternateId: "73935X435"}, - 720095192175276: &Security{ - SecurityId: 720095192175276, - Name: "EQWM", - Description: "PowerShares Russell Midcap Equal Weight Portfolio", - Symbol: "EQWM", - Precision: 5, - Type: Stock, - AlternateId: "73935X443"}, - 720095192176464: &Security{ - SecurityId: 720095192176464, - Name: "EQWL", - Description: "PowerShares Russell Top 200 Equal Weight Portfolio", - Symbol: "EQWL", - Precision: 5, - Type: Stock, - AlternateId: "73935X450"}, - 720095192216640: &Security{ - SecurityId: 720095192216640, - Name: "PBW", - Description: "PowerShares WilderHill Clean Energy Portfolio", - Symbol: "PBW", - Precision: 5, - Type: Stock, - AlternateId: "73935X500"}, - 720095192224668: &Security{ - SecurityId: 720095192224668, - Name: "PRFZ", - Description: "PowerShares FTSE RAFI US 1500 Small-Mid Portfolio", - Symbol: "PRFZ", - Precision: 5, - Type: Stock, - AlternateId: "73935X567"}, - 720095192225892: &Security{ - SecurityId: 720095192225892, - Name: "PHO", - Description: "PowerShares Water Resources Portfolio", - Symbol: "PHO", - Precision: 5, - Type: Stock, - AlternateId: "73935X575"}, - 720095192227116: &Security{ - SecurityId: 720095192227116, - Name: "PRF", - Description: "PowerShares FTSE RAFI US 1000 Portfolio", - Symbol: "PRF", - Precision: 5, - Type: Stock, - AlternateId: "73935X583"}, - 720095192228340: &Security{ - SecurityId: 720095192228340, - Name: "PUI", - Description: "PowerShares DWA Utilities Momentum Portfolio", - Symbol: "PUI", - Precision: 5, - Type: Stock, - AlternateId: "73935X591"}, - 720095192263620: &Security{ - SecurityId: 720095192263620, - Name: "PWB", - Description: "PowerShares Dynamic Large Cap Growth Portfolio", - Symbol: "PWB", - Precision: 5, - Type: Stock, - AlternateId: "73935X609"}, - 720095192264844: &Security{ - SecurityId: 720095192264844, - Name: "PMR", - Description: "PowerShares Dynamic Retail Portfolio", - Symbol: "PMR", - Precision: 5, - Type: Stock, - AlternateId: "73935X617"}, - 720095192266068: &Security{ - SecurityId: 720095192266068, - Name: "PXJ", - Description: "PowerShares Dynamic Oil & Gas Services Portfolio", - Symbol: "PXJ", - Precision: 5, - Type: Stock, - AlternateId: "73935X625"}, - 720095192270064: &Security{ - SecurityId: 720095192270064, - Name: "PXE", - Description: "PowerShares Dynamic Energy Exploration & Production Portfolio", - Symbol: "PXE", - Precision: 5, - Type: Stock, - AlternateId: "73935X658"}, - 720095192271288: &Security{ - SecurityId: 720095192271288, - Name: "PKB", - Description: "PowerShares Dynamic Building & Construction Portfolio", - Symbol: "PKB", - Precision: 5, - Type: Stock, - AlternateId: "73935X666"}, - 720095192273736: &Security{ - SecurityId: 720095192273736, - Name: "SPHQ", - Description: "PowerShares S&P 500 High Quality Portfolio", - Symbol: "SPHQ", - Precision: 5, - Type: Stock, - AlternateId: "73935X682"}, - 720095192274960: &Security{ - SecurityId: 720095192274960, - Name: "PPA", - Description: "PowerShares Aerospace & Defense Portfolio", - Symbol: "PPA", - Precision: 5, - Type: Stock, - AlternateId: "73935X690"}, - 720095192310240: &Security{ - SecurityId: 720095192310240, - Name: "PWV", - Description: "PowerShares Dynamic Large Cap Value Portfolio", - Symbol: "PWV", - Precision: 5, - Type: Stock, - AlternateId: "73935X708"}, - 720095192311464: &Security{ - SecurityId: 720095192311464, - Name: "PID", - Description: "PowerShares International Dividend Achievers Portfolio", - Symbol: "PID", - Precision: 5, - Type: Stock, - AlternateId: "73935X716"}, - 720095192313912: &Security{ - SecurityId: 720095192313912, - Name: "PFM", - Description: "PowerShares Dividend Achievers Portfolio", - Symbol: "PFM", - Precision: 5, - Type: Stock, - AlternateId: "73935X732"}, - 720095192315136: &Security{ - SecurityId: 720095192315136, - Name: "PZI", - Description: "PowerShares Zacks Micro Cap Portfolio", - Symbol: "PZI", - Precision: 5, - Type: Stock, - AlternateId: "73935X740"}, - 720095192316684: &Security{ - SecurityId: 720095192316684, - Name: "PEJ", - Description: "PowerShares Dynamic Leisure & Entertainment Portfolio", - Symbol: "PEJ", - Precision: 5, - Type: Stock, - AlternateId: "73935X757"}, - 720095192319132: &Security{ - SecurityId: 720095192319132, - Name: "PSJ", - Description: "PowerShares Dynamic Software Portfolio", - Symbol: "PSJ", - Precision: 5, - Type: Stock, - AlternateId: "73935X773"}, - 720095192320356: &Security{ - SecurityId: 720095192320356, - Name: "PSI", - Description: "PowerShares Dynamic Semiconductors Portfolio", - Symbol: "PSI", - Precision: 5, - Type: Stock, - AlternateId: "73935X781"}, - 720095192321940: &Security{ - SecurityId: 720095192321940, - Name: "PJP", - Description: "PowerShares Dynamic Pharmaceuticals Portfolio", - Symbol: "PJP", - Precision: 5, - Type: Stock, - AlternateId: "73935X799"}, - 720095192356860: &Security{ - SecurityId: 720095192356860, - Name: "PXMG", - Description: "PowerShares Russell Midcap Pure Growth Portfolio", - Symbol: "PXMG", - Precision: 5, - Type: Stock, - AlternateId: "73935X807"}, - 720095192358084: &Security{ - SecurityId: 720095192358084, - Name: "PXQ", - Description: "PowerShares Dynamic Networking Portfolio", - Symbol: "PXQ", - Precision: 5, - Type: Stock, - AlternateId: "73935X815"}, - 720095192359308: &Security{ - SecurityId: 720095192359308, - Name: "PBS", - Description: "PowerShares Dynamic Media Portfolio", - Symbol: "PBS", - Precision: 5, - Type: Stock, - AlternateId: "73935X823"}, - 720095192362116: &Security{ - SecurityId: 720095192362116, - Name: "PBJ", - Description: "PowerShares Dynamic Food & Beverage Portfolio", - Symbol: "PBJ", - Precision: 5, - Type: Stock, - AlternateId: "73935X849"}, - 720095192363304: &Security{ - SecurityId: 720095192363304, - Name: "PBE", - Description: "PowerShares Dynamic Biotech & Genome Portfolio", - Symbol: "PBE", - Precision: 5, - Type: Stock, - AlternateId: "73935X856"}, - 720095192364528: &Security{ - SecurityId: 720095192364528, - Name: "PXSV", - Description: "PowerShares Russell 2000 Pure Value Portfolio", - Symbol: "PXSV", - Precision: 5, - Type: Stock, - AlternateId: "73935X864"}, - 720095192365752: &Security{ - SecurityId: 720095192365752, - Name: "PXSG", - Description: "PowerShares Russell 2000 Pure Growth Portfolio", - Symbol: "PXSG", - Precision: 5, - Type: Stock, - AlternateId: "73935X872"}, - 720095192366976: &Security{ - SecurityId: 720095192366976, - Name: "PXMV", - Description: "PowerShares Russell Midcap Pure Value Portfolio", - Symbol: "PXMV", - Precision: 5, - Type: Stock, - AlternateId: "73935X880"}, - 720095193709704: &Security{ - SecurityId: 720095193709704, - Name: "DBV", - Description: "PowerShares DB G10 Currency Harvest Fund", - Symbol: "DBV", - Precision: 5, - Type: Stock, - AlternateId: "73935Y102"}, - 720095215544676: &Security{ - SecurityId: 720095215544676, - Name: "DBE", - Description: "PowerShares DB Energy Fund", - Symbol: "DBE", - Precision: 5, - Type: Stock, - AlternateId: "73936B101"}, - 720095215591296: &Security{ - SecurityId: 720095215591296, - Name: "DBP", - Description: "PowerShares DB Precious Metals Fund", - Symbol: "DBP", - Precision: 5, - Type: Stock, - AlternateId: "73936B200"}, - 720095215638276: &Security{ - SecurityId: 720095215638276, - Name: "DBS", - Description: "PowerShares DB Silver Fund", - Symbol: "DBS", - Precision: 5, - Type: Stock, - AlternateId: "73936B309"}, - 720095215684896: &Security{ - SecurityId: 720095215684896, - Name: "DBA", - Description: "PowerShares DB Agriculture Fund", - Symbol: "DBA", - Precision: 5, - Type: Stock, - AlternateId: "73936B408"}, - 720095215731516: &Security{ - SecurityId: 720095215731516, - Name: "DBO", - Description: "PowerShares DB Oil Fund", - Symbol: "DBO", - Precision: 5, - Type: Stock, - AlternateId: "73936B507"}, - 720095215778136: &Security{ - SecurityId: 720095215778136, - Name: "DGL", - Description: "PowerShares DB Gold Fund", - Symbol: "DGL", - Precision: 5, - Type: Stock, - AlternateId: "73936B606"}, - 720095215824756: &Security{ - SecurityId: 720095215824756, - Name: "DBB", - Description: "PowerShares DB Base Metals Fund", - Symbol: "DBB", - Precision: 5, - Type: Stock, - AlternateId: "73936B705"}, - 720095218904124: &Security{ - SecurityId: 720095218904124, - Name: "UUP", - Description: "PowerShares DB US Dollar Index Bullish Fund", - Symbol: "UUP", - Precision: 5, - Type: Stock, - AlternateId: "73936D107"}, - 720095218950744: &Security{ - SecurityId: 720095218950744, - Name: "UDN", - Description: "PowerShares DB US Dollar Index Bearish Fund", - Symbol: "UDN", - Precision: 5, - Type: Stock, - AlternateId: "73936D206"}, - 720095224036320: &Security{ - SecurityId: 720095224036320, - Name: "PBP", - Description: "PowerShares S&P 500 Buy Write Portfolio", - Symbol: "PBP", - Precision: 5, - Type: Stock, - AlternateId: "73936G308"}, - 720095235700212: &Security{ - SecurityId: 720095235700212, - Name: "POWR", - Description: "PowerSecure International, Inc.", - Symbol: "POWR", - Precision: 5, - Type: Stock, - AlternateId: "73936N105"}, - 720095240739168: &Security{ - SecurityId: 720095240739168, - Name: "PIZ", - Description: "PowerShares DWA Developed Markets Momentum Portfolio", - Symbol: "PIZ", - Precision: 5, - Type: Stock, - AlternateId: "73936Q108"}, - 720095240785788: &Security{ - SecurityId: 720095240785788, - Name: "PIE", - Description: "PowerShares DWA Emerging Markets Momentum Portfolio", - Symbol: "PIE", - Precision: 5, - Type: Stock, - AlternateId: "73936Q207"}, - 720095240981520: &Security{ - SecurityId: 720095240981520, - Name: "SPMO", - Description: "PowerShares S&P 500 Momentum Portfolio", - Symbol: "SPMO", - Precision: 5, - Type: Stock, - AlternateId: "73936Q678"}, - 720095240983968: &Security{ - SecurityId: 720095240983968, - Name: "SPVU", - Description: "PowerShares S&P 500 Value Portfolio", - Symbol: "SPVU", - Precision: 5, - Type: Stock, - AlternateId: "73936Q694"}, - 720095241018888: &Security{ - SecurityId: 720095241018888, - Name: "PAGG", - Description: "PowerShares Global Agriculture Portfolio", - Symbol: "PAGG", - Precision: 5, - Type: Stock, - AlternateId: "73936Q702"}, - 720095241020112: &Security{ - SecurityId: 720095241020112, - Name: "PGHY", - Description: "PowerShares Global Short Term High Yield Bond Portfolio ETF", - Symbol: "PGHY", - Precision: 5, - Type: Stock, - AlternateId: "73936Q710"}, - 720095241022920: &Security{ - SecurityId: 720095241022920, - Name: "PFEM", - Description: "PowerShares Fundamental Emerging Markets Local Debt Portfolio ETF", - Symbol: "PFEM", - Precision: 5, - Type: Stock, - AlternateId: "73936Q736"}, - 720095241024144: &Security{ - SecurityId: 720095241024144, - Name: "DWAS", - Description: "PowerShares DWA SmallCap Momentum Portfolio", - Symbol: "DWAS", - Precision: 5, - Type: Stock, - AlternateId: "73936Q744"}, - 720095241028140: &Security{ - SecurityId: 720095241028140, - Name: "KBWP", - Description: "PowerShares KBW Property & Casualty Insurance Portfolio", - Symbol: "KBWP", - Precision: 5, - Type: Stock, - AlternateId: "73936Q777"}, - 720095241030588: &Security{ - SecurityId: 720095241030588, - Name: "KBWD", - Description: "PowerShares KBW High Dividend Yield Financial Portfolio", - Symbol: "KBWD", - Precision: 5, - Type: Stock, - AlternateId: "73936Q793"}, - 720095241067092: &Security{ - SecurityId: 720095241067092, - Name: "KBWY", - Description: "PowerShares KBW Premium Yield Equity REIT Portfolio", - Symbol: "KBWY", - Precision: 5, - Type: Stock, - AlternateId: "73936Q819"}, - 720095241069540: &Security{ - SecurityId: 720095241069540, - Name: "PICB", - Description: "PowerShares International Corporate Bond Portfolio", - Symbol: "PICB", - Precision: 5, - Type: Stock, - AlternateId: "73936Q835"}, - 720095241070764: &Security{ - SecurityId: 720095241070764, - Name: "PCEF", - Description: "PowerShares CEF Income Composite Portfolio ETF", - Symbol: "PCEF", - Precision: 5, - Type: Stock, - AlternateId: "73936Q843"}, - 720095241074760: &Security{ - SecurityId: 720095241074760, - Name: "PSAU", - Description: "PowerShares Global Gold and Precious Metals Portfolio", - Symbol: "PSAU", - Precision: 5, - Type: Stock, - AlternateId: "73936Q876"}, - 720095245921692: &Security{ - SecurityId: 720095245921692, - Name: "PVI", - Description: "PowerShares VRDO Tax-Free Weekly Portfolio", - Symbol: "PVI", - Precision: 5, - Type: Stock, - AlternateId: "73936T433"}, - 720095245922916: &Security{ - SecurityId: 720095245922916, - Name: "PWZ", - Description: "PowerShares California AMT-Free Municipal Bond Portfolio", - Symbol: "PWZ", - Precision: 5, - Type: Stock, - AlternateId: "73936T441"}, - 720095245924464: &Security{ - SecurityId: 720095245924464, - Name: "PZT", - Description: "PowerShares New York AMT-Free Municipal Bond Portfolio", - Symbol: "PZT", - Precision: 5, - Type: Stock, - AlternateId: "73936T458"}, - 720095245926912: &Security{ - SecurityId: 720095245926912, - Name: "PZA", - Description: "PowerShares National AMT-Free Municipal Bond Portfolio", - Symbol: "PZA", - Precision: 5, - Type: Stock, - AlternateId: "73936T474"}, - 720095245967088: &Security{ - SecurityId: 720095245967088, - Name: "PCY", - Description: "PowerShares Emerging Markets Sovereign Debt Portfolio", - Symbol: "PCY", - Precision: 5, - Type: Stock, - AlternateId: "73936T524"}, - 720095245971084: &Security{ - SecurityId: 720095245971084, - Name: "PHB", - Description: "PowerShares Fundamental High Yield Corporate Bond Portfolio", - Symbol: "PHB", - Precision: 5, - Type: Stock, - AlternateId: "73936T557"}, - 720095245972308: &Security{ - SecurityId: 720095245972308, - Name: "PGX", - Description: "PowerShares Preferred Portfolio", - Symbol: "PGX", - Precision: 5, - Type: Stock, - AlternateId: "73936T565"}, - 720095246012484: &Security{ - SecurityId: 720095246012484, - Name: "PBD", - Description: "PowerShares Global Clean Energy Portfolio", - Symbol: "PBD", - Precision: 5, - Type: Stock, - AlternateId: "73936T615"}, - 720095246013708: &Security{ - SecurityId: 720095246013708, - Name: "PIO", - Description: "PowerShares Global Water Portfolio", - Symbol: "PIO", - Precision: 5, - Type: Stock, - AlternateId: "73936T623"}, - 720095246065548: &Security{ - SecurityId: 720095246065548, - Name: "PXH", - Description: "PowerShares FTSE RAFI Emerging Markets Portfolio", - Symbol: "PXH", - Precision: 5, - Type: Stock, - AlternateId: "73936T763"}, - 720095246066772: &Security{ - SecurityId: 720095246066772, - Name: "PDN", - Description: "PowerShares FTSE RAFI Developed Markets ex-US Small-Mid Portfolio", - Symbol: "PDN", - Precision: 5, - Type: Stock, - AlternateId: "73936T771"}, - 720095246068356: &Security{ - SecurityId: 720095246068356, - Name: "PXF", - Description: "PowerShares FTSE RAFI Developed Markets ex-U.S. Portfolio", - Symbol: "PXF", - Precision: 5, - Type: Stock, - AlternateId: "73936T789"}, - 720095246104500: &Security{ - SecurityId: 720095246104500, - Name: "IDHQ", - Description: "PowerShares S&P International Developed High Quality Portfolio", - Symbol: "IDHQ", - Precision: 5, - Type: Stock, - AlternateId: "73936T805"}, - 720095246110944: &Security{ - SecurityId: 720095246110944, - Name: "PAF", - Description: "PowerShares FTSE RAFI Asia Pacific ex-Japan Portfolio", - Symbol: "PAF", - Precision: 5, - Type: Stock, - AlternateId: "73936T854"}, - 720095276057796: &Security{ - SecurityId: 720095276057796, - Name: "PXR", - Description: "PowerShares Emerging Markets Infrastructure Portfolio", - Symbol: "PXR", - Precision: 5, - Type: Stock, - AlternateId: "73937B209"}, - 720095276151036: &Security{ - SecurityId: 720095276151036, - Name: "BAB", - Description: "PowerShares Build America Bond Portfolio", - Symbol: "BAB", - Precision: 5, - Type: Stock, - AlternateId: "73937B407"}, - 720095276159928: &Security{ - SecurityId: 720095276159928, - Name: "USLB", - Description: "PowerShares Russell 1000 Low Beta Equal Weight Portfolio", - Symbol: "USLB", - Precision: 5, - Type: Stock, - AlternateId: "73937B472"}, - 720095276161152: &Security{ - SecurityId: 720095276161152, - Name: "IDLB", - Description: "PowerShares FTSE International Low Beta Equal Weight Portfolio", - Symbol: "IDLB", - Precision: 5, - Type: Stock, - AlternateId: "73937B480"}, - 720095276162736: &Security{ - SecurityId: 720095276162736, - Name: "DWTR", - Description: "PowerShares DWA Tactical Sector Rotation Portfolio", - Symbol: "DWTR", - Precision: 5, - Type: Stock, - AlternateId: "73937B498"}, - 720095276197656: &Security{ - SecurityId: 720095276197656, - Name: "PSCD", - Description: "PowerShares S&P SmallCap Consumer Discretionary Portfolio ETF", - Symbol: "PSCD", - Precision: 5, - Type: Stock, - AlternateId: "73937B506"}, - 720095276198880: &Security{ - SecurityId: 720095276198880, - Name: "FXEU", - Description: "PowerShares Europe Currency Hedged Low Volatility Portfolio", - Symbol: "FXEU", - Precision: 5, - Type: Stock, - AlternateId: "73937B514"}, - 720095276200104: &Security{ - SecurityId: 720095276200104, - Name: "FXJP", - Description: "PowerShares Japan Currency Hedged Low Volatility Portfolio", - Symbol: "FXJP", - Precision: 5, - Type: Stock, - AlternateId: "73937B522"}, - 720095276202912: &Security{ - SecurityId: 720095276202912, - Name: "FXEP", - Description: "PowerShares Developed EuroPacific Currency Hedged Low Volatility Portfolio", - Symbol: "FXEP", - Precision: 5, - Type: Stock, - AlternateId: "73937B548"}, - 720095276205324: &Security{ - SecurityId: 720095276205324, - Name: "XRLV", - Description: "PowerShares S&P 500 ex-Rate Sensitive Low Volatility Portfolio", - Symbol: "XRLV", - Precision: 5, - Type: Stock, - AlternateId: "73937B563"}, - 720095276206548: &Security{ - SecurityId: 720095276206548, - Name: "EQAL", - Description: "PowerShares Russell 1000 Equal Weight Portfolio", - Symbol: "EQAL", - Precision: 5, - Type: Stock, - AlternateId: "73937B571"}, - 720095276208132: &Security{ - SecurityId: 720095276208132, - Name: "LDRI", - Description: "PowerShares LadderRite 0-5 Year Corporate Bond Portfolio", - Symbol: "LDRI", - Precision: 5, - Type: Stock, - AlternateId: "73937B589"}, - 720095276209356: &Security{ - SecurityId: 720095276209356, - Name: "VRP", - Description: "PowerShares Variable Rate Preferred Portfolio", - Symbol: "VRP", - Precision: 5, - Type: Stock, - AlternateId: "73937B597"}, - 720095276244276: &Security{ - SecurityId: 720095276244276, - Name: "PSCC", - Description: "PowerShares S&P SmallCap Consumer Staples Portfolio ETF", - Symbol: "PSCC", - Precision: 5, - Type: Stock, - AlternateId: "73937B605"}, - 720095276245500: &Security{ - SecurityId: 720095276245500, - Name: "CNTR", - Description: "PowerShares Contrarian Opportunities Portfolio", - Symbol: "CNTR", - Precision: 5, - Type: Stock, - AlternateId: "73937B613"}, - 720095276246724: &Security{ - SecurityId: 720095276246724, - Name: "IPKW", - Description: "PowerShares International BuyBack Achievers Portfolio", - Symbol: "IPKW", - Precision: 5, - Type: Stock, - AlternateId: "73937B621"}, - 720095276248308: &Security{ - SecurityId: 720095276248308, - Name: "XSLV", - Description: "PowerShares S&P SmallCap Low Volatility Portfolio", - Symbol: "XSLV", - Precision: 5, - Type: Stock, - AlternateId: "73937B639"}, - 720095276249532: &Security{ - SecurityId: 720095276249532, - Name: "XMLV", - Description: "PowerShares S&P MidCap Low Volatility Portfolio", - Symbol: "XMLV", - Precision: 5, - Type: Stock, - AlternateId: "73937B647"}, - 720095276250720: &Security{ - SecurityId: 720095276250720, - Name: "SPHD", - Description: "PowerShares S&P 500 High Dividend Low Volatility Portfolio", - Symbol: "SPHD", - Precision: 5, - Type: Stock, - AlternateId: "73937B654"}, - 720095276251944: &Security{ - SecurityId: 720095276251944, - Name: "EELV", - Description: "PowerShares S&P Emerging Markets Low Volatility Portfolio", - Symbol: "EELV", - Precision: 5, - Type: Stock, - AlternateId: "73937B662"}, - 720095276253168: &Security{ - SecurityId: 720095276253168, - Name: "EEHB", - Description: "PowerShares S&P Emerging Markets High Beta Portfolio ETF", - Symbol: "EEHB", - Precision: 5, - Type: Stock, - AlternateId: "73937B670"}, - 720095276254752: &Security{ - SecurityId: 720095276254752, - Name: "IDLV", - Description: "PowerShares S&P International Developed Low Volatility Portfolio", - Symbol: "IDLV", - Precision: 5, - Type: Stock, - AlternateId: "73937B688"}, - 720095276255976: &Security{ - SecurityId: 720095276255976, - Name: "IDHB", - Description: "PowerShares S&P International Developed High Beta Portfolio ETF", - Symbol: "IDHB", - Precision: 5, - Type: Stock, - AlternateId: "73937B696"}, - 720095276290896: &Security{ - SecurityId: 720095276290896, - Name: "PSCE", - Description: "PowerShares S&P SmallCap Energy Portfolio ETF", - Symbol: "PSCE", - Precision: 5, - Type: Stock, - AlternateId: "73937B704"}, - 720095276292120: &Security{ - SecurityId: 720095276292120, - Name: "KBWR", - Description: "PowerShares KBW Regional Banking Portfolio", - Symbol: "KBWR", - Precision: 5, - Type: Stock, - AlternateId: "73937B712"}, - 720095276293344: &Security{ - SecurityId: 720095276293344, - Name: "KBWI", - Description: "PowerShares KBW Insurance Portfolio", - Symbol: "KBWI", - Precision: 5, - Type: Stock, - AlternateId: "73937B720"}, - 720095276294928: &Security{ - SecurityId: 720095276294928, - Name: "KBWC", - Description: "PowerShares KBW Capital Markets Portfolio", - Symbol: "KBWC", - Precision: 5, - Type: Stock, - AlternateId: "73937B738"}, - 720095276296152: &Security{ - SecurityId: 720095276296152, - Name: "KBWB", - Description: "PowerShares KBW Bank Portfolio", - Symbol: "KBWB", - Precision: 5, - Type: Stock, - AlternateId: "73937B746"}, - 720095276297340: &Security{ - SecurityId: 720095276297340, - Name: "DSUM", - Description: "PowerShares Chinese Yuan Dim Sum Bond Portfolio", - Symbol: "DSUM", - Precision: 5, - Type: Stock, - AlternateId: "73937B753"}, - 720095276298564: &Security{ - SecurityId: 720095276298564, - Name: "PFIG", - Description: "PowerShares Fundamental Investment Grade Corporate Bond Portfolio", - Symbol: "PFIG", - Precision: 5, - Type: Stock, - AlternateId: "73937B761"}, - 720095276300148: &Security{ - SecurityId: 720095276300148, - Name: "SPLV", - Description: "PowerShares S&P 500 Low Volatility Portfolio", - Symbol: "SPLV", - Precision: 5, - Type: Stock, - AlternateId: "73937B779"}, - 720095276337516: &Security{ - SecurityId: 720095276337516, - Name: "PSCF", - Description: "PowerShares S&P SmallCap Financials Portfolio ETF", - Symbol: "PSCF", - Precision: 5, - Type: Stock, - AlternateId: "73937B803"}, - 720095276340324: &Security{ - SecurityId: 720095276340324, - Name: "SPHB", - Description: "PowerShares S&P 500 High Beta Portfolio", - Symbol: "SPHB", - Precision: 5, - Type: Stock, - AlternateId: "73937B829"}, - 720095276341548: &Security{ - SecurityId: 720095276341548, - Name: "PSCU", - Description: "PowerShares S&P SmallCap Utilities Portfolio ETF", - Symbol: "PSCU", - Precision: 5, - Type: Stock, - AlternateId: "73937B837"}, - 720095276343960: &Security{ - SecurityId: 720095276343960, - Name: "PSCM", - Description: "PowerShares S&P SmallCap Materials Portfolio ETF", - Symbol: "PSCM", - Precision: 5, - Type: Stock, - AlternateId: "73937B852"}, - 720095276345184: &Security{ - SecurityId: 720095276345184, - Name: "PSCT", - Description: "PowerShares S&P SmallCap Information Technology Portfolio ETF", - Symbol: "PSCT", - Precision: 5, - Type: Stock, - AlternateId: "73937B860"}, - 720095276346768: &Security{ - SecurityId: 720095276346768, - Name: "PSCI", - Description: "PowerShares S&P SmallCap Industrials Portfolio ETF", - Symbol: "PSCI", - Precision: 5, - Type: Stock, - AlternateId: "73937B878"}, - 720095276347992: &Security{ - SecurityId: 720095276347992, - Name: "PSCH", - Description: "PowerShares S&P SmallCap Health Care Portfolio ETF", - Symbol: "PSCH", - Precision: 5, - Type: Stock, - AlternateId: "73937B886"}, - 720095309603352: &Security{ - SecurityId: 720095309603352, - Name: "PDBC", - Description: "PowerShares DB Optimum Yield Diversified Commodity Strategy Portfolio", - Symbol: "PDBC", - Precision: 5, - Type: Stock, - AlternateId: "73937V106"}, - 720095259214728: &Security{ - SecurityId: 720095259214728, - Name: "PXLG", - Description: "PowerShares Russell Top 200 Pure Growth Portfolio", - Symbol: "PXLG", - Precision: 5, - Type: Stock, - AlternateId: "739371102"}, - 720095259261348: &Security{ - SecurityId: 720095259261348, - Name: "PXLV", - Description: "PowerShares Russell Top 200 Pure Value Portfolio", - Symbol: "PXLV", - Precision: 5, - Type: Stock, - AlternateId: "739371201"}, - 720097121908872: &Security{ - SecurityId: 720097121908872, - Name: "POZN", - Description: "POZEN, Inc.", - Symbol: "POZN", - Precision: 5, - Type: Stock, - AlternateId: "73941U102"}, - 722204480676816: &Security{ - SecurityId: 722204480676816, - Name: "PX", - Description: "Praxair, Inc.", - Symbol: "PX", - Precision: 5, - Type: Stock, - AlternateId: "74005P104"}, - 722206729682712: &Security{ - SecurityId: 722206729682712, - Name: "NKY", - Description: "Precidian MAXIS Nikkei 225 Index Fund", - Symbol: "NKY", - Precision: 5, - Type: Stock, - AlternateId: "74016W106"}, - 722206811983860: &Security{ - SecurityId: 722206811983860, - Name: "PCP", - Description: "Precision Castparts Corp.", - Symbol: "PCP", - Precision: 5, - Type: Stock, - AlternateId: "740189105"}, - 722208632781024: &Security{ - SecurityId: 722208632781024, - Name: "PDS", - Description: "Precision Drilling Corp.", - Symbol: "PDS", - Precision: 5, - Type: Stock, - AlternateId: "74022D308"}, - 722211246170028: &Security{ - SecurityId: 722211246170028, - Name: "APTS", - Description: "Preferred Apartment Communities, Inc. Cl A", - Symbol: "APTS", - Precision: 5, - Type: Stock, - AlternateId: "74039L103"}, - 722213092068048: &Security{ - SecurityId: 722213092068048, - Name: "PLPC", - Description: "Preformed Line Products Co.", - Symbol: "PLPC", - Precision: 5, - Type: Stock, - AlternateId: "740444104"}, - 722215119364488: &Security{ - SecurityId: 722215119364488, - Name: "PINC", - Description: "Premier, Inc.", - Symbol: "PINC", - Precision: 5, - Type: Stock, - AlternateId: "74051N102"}, - 722284820069220: &Security{ - SecurityId: 722284820069220, - Name: "PBH", - Description: "Prestige Brands Holdings, Inc.", - Symbol: "PBH", - Precision: 5, - Type: Stock, - AlternateId: "74112D101"}, - 722289595217544: &Security{ - SecurityId: 722289595217544, - Name: "PVG", - Description: "Pretium Resources, Inc.", - Symbol: "PVG", - Precision: 5, - Type: Stock, - AlternateId: "74139C102"}, - 722291498222688: &Security{ - SecurityId: 722291498222688, - Name: "TROW", - Description: "T. Rowe Price Group, Inc.", - Symbol: "TROW", - Precision: 5, - Type: Stock, - AlternateId: "74144T108"}, - 722293389610092: &Security{ - SecurityId: 722293389610092, - Name: "PCLN", - Description: "Priceline Group, Inc.", - Symbol: "PCLN", - Precision: 5, - Type: Stock, - AlternateId: "741503403"}, - 722293446577284: &Security{ - SecurityId: 722293446577284, - Name: "PSMT", - Description: "PriceSmart, Inc.", - Symbol: "PSMT", - Precision: 5, - Type: Stock, - AlternateId: "741511109"}, - 722293644818412: &Security{ - SecurityId: 722293644818412, - Name: "PBMD", - Description: "Prima BioMed Ltd", - Symbol: "PBMD", - Precision: 5, - Type: Stock, - AlternateId: "74154B203"}, - 722293891675344: &Security{ - SecurityId: 722293891675344, - Name: "PNRG", - Description: "PrimeEnergy Corp.", - Symbol: "PNRG", - Precision: 5, - Type: Stock, - AlternateId: "74158E104"}, - 722295840030048: &Security{ - SecurityId: 722295840030048, - Name: "PRI", - Description: "Primerica, Inc.", - Symbol: "PRI", - Precision: 5, - Type: Stock, - AlternateId: "74164M108"}, - 722295856826136: &Security{ - SecurityId: 722295856826136, - Name: "PPP", - Description: "Primero Mining Corp.", - Symbol: "PPP", - Precision: 5, - Type: Stock, - AlternateId: "74164W106"}, - 722295902175732: &Security{ - SecurityId: 722295902175732, - Name: "PRMW", - Description: "Primo Water Corp.", - Symbol: "PRMW", - Precision: 5, - Type: Stock, - AlternateId: "74165N105"}, - 722371861129608: &Security{ - SecurityId: 722371861129608, - Name: "PFG", - Description: "Principal Financial Group, Inc.", - Symbol: "PFG", - Precision: 5, - Type: Stock, - AlternateId: "74251V102"}, - 722372106353616: &Security{ - SecurityId: 722372106353616, - Name: "PGZ", - Description: "Principal Real Estate Income Fund", - Symbol: "PGZ", - Precision: 5, - Type: Stock, - AlternateId: "74255X104"}, - 722372108033160: &Security{ - SecurityId: 722372108033160, - Name: "YLD", - Description: "Principal EDGE Active Income ETF", - Symbol: "YLD", - Precision: 5, - Type: Stock, - AlternateId: "74255Y102"}, - 722374264706868: &Security{ - SecurityId: 722374264706868, - Name: "PDEX", - Description: "Pro-Dex, Inc.", - Symbol: "PDEX", - Precision: 5, - Type: Stock, - AlternateId: "74265M205"}, - 722374368796440: &Security{ - SecurityId: 722374368796440, - Name: "PRA", - Description: "ProAssurance Corp.", - Symbol: "PRA", - Precision: 5, - Type: Stock, - AlternateId: "74267C106"}, - 722376176063364: &Security{ - SecurityId: 722376176063364, - Name: "PG", - Description: "Procter & Gamble Co. (The)", - Symbol: "PG", - Precision: 5, - Type: Stock, - AlternateId: "742718109"}, - 722376340665408: &Security{ - SecurityId: 722376340665408, - Name: "PRZM", - Description: "Prism Technologies Group, Inc.", - Symbol: "PRZM", - Precision: 5, - Type: Stock, - AlternateId: "74273Y100"}, - 722380821881004: &Security{ - SecurityId: 722380821881004, - Name: "PVTB", - Description: "PrivateBancorp, Inc.", - Symbol: "PVTB", - Precision: 5, - Type: Stock, - AlternateId: "742962103"}, - 722441583669420: &Security{ - SecurityId: 722441583669420, - Name: "IPDN", - Description: "Professional Diversity Network, Inc.", - Symbol: "IPDN", - Precision: 5, - Type: Stock, - AlternateId: "74312Y103"}, - 722441823854436: &Security{ - SecurityId: 722441823854436, - Name: "PFIE", - Description: "Profire Energy, Inc.", - Symbol: "PFIE", - Precision: 5, - Type: Stock, - AlternateId: "74316X101"}, - 722441901116952: &Security{ - SecurityId: 722441901116952, - Name: "PGNX", - Description: "Progenics Pharmaceuticals, Inc.", - Symbol: "PGNX", - Precision: 5, - Type: Stock, - AlternateId: "743187106"}, - 722445823020096: &Security{ - SecurityId: 722445823020096, - Name: "PRGS", - Description: "Progress Software Corp.", - Symbol: "PRGS", - Precision: 5, - Type: Stock, - AlternateId: "743312100"}, - 722445828059052: &Security{ - SecurityId: 722445828059052, - Name: "PGR", - Description: "Progressive Corp. (The)", - Symbol: "PGR", - Precision: 5, - Type: Stock, - AlternateId: "743315103"}, - 722446330264164: &Security{ - SecurityId: 722446330264164, - Name: "BIN", - Description: "Progressive Waste Solutions Ltd", - Symbol: "BIN", - Precision: 5, - Type: Stock, - AlternateId: "74339G101"}, - 722447989724844: &Security{ - SecurityId: 722447989724844, - Name: "PLD", - Description: "ProLogis, Inc.", - Symbol: "PLD", - Precision: 5, - Type: Stock, - AlternateId: "74340W103"}, - 722448063627948: &Security{ - SecurityId: 722448063627948, - Name: "PFPT", - Description: "ProofPoint, Inc.", - Symbol: "PFPT", - Precision: 5, - Type: Stock, - AlternateId: "743424103"}, - 722448292055904: &Security{ - SecurityId: 722448292055904, - Name: "PRPH", - Description: "ProPhase Labs, Inc.", - Symbol: "PRPH", - Precision: 5, - Type: Stock, - AlternateId: "74345W108"}, - 722448334046052: &Security{ - SecurityId: 722448334046052, - Name: "DNAI", - Description: "ProNAi Therapeutics, Inc.", - Symbol: "DNAI", - Precision: 5, - Type: Stock, - AlternateId: "74346L101"}, - 722448355881132: &Security{ - SecurityId: 722448355881132, - Name: "PRO", - Description: "PROS Holdings, Inc.", - Symbol: "PRO", - Precision: 5, - Type: Stock, - AlternateId: "74346Y103"}, - 722448377762724: &Security{ - SecurityId: 722448377762724, - Name: "TBT", - Description: "ProShares UltraShort 20+ Year Treasury ETF", - Symbol: "TBT", - Precision: 5, - Type: Stock, - AlternateId: "74347B201"}, - 722448377809344: &Security{ - SecurityId: 722448377809344, - Name: "SDS", - Description: "ProShares UltraShort S&P500", - Symbol: "SDS", - Precision: 5, - Type: Stock, - AlternateId: "74347B300"}, - 722448377862768: &Security{ - SecurityId: 722448377862768, - Name: "UOP", - Description: "ProShares Ultra Oil & Gas Exploration & Production", - Symbol: "UOP", - Precision: 5, - Type: Stock, - AlternateId: "74347B458"}, - 722448377863992: &Security{ - SecurityId: 722448377863992, - Name: "GDJJ", - Description: "ProShares Ultra Junior Miners ETF", - Symbol: "GDJJ", - Precision: 5, - Type: Stock, - AlternateId: "74347B466"}, - 722448377865216: &Security{ - SecurityId: 722448377865216, - Name: "UBIO", - Description: "Proshares UltraPro NASDAQ Biotechnology", - Symbol: "UBIO", - Precision: 5, - Type: Stock, - AlternateId: "74347B474"}, - 722448377866440: &Security{ - SecurityId: 722448377866440, - Name: "GDXX", - Description: "ProShares Ultra Gold Miners ETF", - Symbol: "GDXX", - Precision: 5, - Type: Stock, - AlternateId: "74347B482"}, - 722448377867664: &Security{ - SecurityId: 722448377867664, - Name: "UBR", - Description: "ProShares Ultra MSCI Brazil Capped ETF", - Symbol: "UBR", - Precision: 5, - Type: Stock, - AlternateId: "74347B490"}, - 722448377902944: &Security{ - SecurityId: 722448377902944, - Name: "TOLZ", - Description: "ProShares DJ Brookfield Global Infrastructure ETF", - Symbol: "TOLZ", - Precision: 5, - Type: Stock, - AlternateId: "74347B508"}, - 722448377907840: &Security{ - SecurityId: 722448377907840, - Name: "EUDV", - Description: "ProShares MSCI Europe Dividend Growers ETF", - Symbol: "EUDV", - Precision: 5, - Type: Stock, - AlternateId: "74347B540"}, - 722448377909388: &Security{ - SecurityId: 722448377909388, - Name: "SPXT", - Description: "ProShares S&P 500 Ex-Technology ETF", - Symbol: "SPXT", - Precision: 5, - Type: Stock, - AlternateId: "74347B557"}, - 722448377910612: &Security{ - SecurityId: 722448377910612, - Name: "SPXV", - Description: "ProShares S&P 500 Ex-Health Care ETF", - Symbol: "SPXV", - Precision: 5, - Type: Stock, - AlternateId: "74347B565"}, - 722448377911836: &Security{ - SecurityId: 722448377911836, - Name: "SPXN", - Description: "ProShares S&P 500 Ex-Financials ETF", - Symbol: "SPXN", - Precision: 5, - Type: Stock, - AlternateId: "74347B573"}, - 722448377913060: &Security{ - SecurityId: 722448377913060, - Name: "SPXE", - Description: "ProShares S&P 500 Ex-Energy ETF", - Symbol: "SPXE", - Precision: 5, - Type: Stock, - AlternateId: "74347B581"}, - 722448377914644: &Security{ - SecurityId: 722448377914644, - Name: "HGJP", - Description: "ProShares Hedged FTSE Japan ETF", - Symbol: "HGJP", - Precision: 5, - Type: Stock, - AlternateId: "74347B599"}, - 722448377949564: &Security{ - SecurityId: 722448377949564, - Name: "IGHG", - Description: "ProShares Investment Grade - Interest Rate Hedged ETF", - Symbol: "IGHG", - Precision: 5, - Type: Stock, - AlternateId: "74347B607"}, - 722448377950788: &Security{ - SecurityId: 722448377950788, - Name: "HGEU", - Description: "ProShares Hedged FTSE Europe ETF", - Symbol: "HGEU", - Precision: 5, - Type: Stock, - AlternateId: "74347B615"}, - 722448377952012: &Security{ - SecurityId: 722448377952012, - Name: "ZBIO", - Description: "ProShares UltraPro Short NASDAQ Biotechnology", - Symbol: "ZBIO", - Precision: 5, - Type: Stock, - AlternateId: "74347B623"}, - 722448377954820: &Security{ - SecurityId: 722448377954820, - Name: "HBZ", - Description: "ProShare UltraShort Homebuilders & Supplies", - Symbol: "HBZ", - Precision: 5, - Type: Stock, - AlternateId: "74347B649"}, - 722448377956008: &Security{ - SecurityId: 722448377956008, - Name: "HBU", - Description: "ProShares Ultra Homebuilders & Supplies", - Symbol: "HBU", - Precision: 5, - Type: Stock, - AlternateId: "74347B656"}, - 722448377957232: &Security{ - SecurityId: 722448377957232, - Name: "SOP", - Description: "ProShares UltraShort Oil & Gas Exploration & Production", - Symbol: "SOP", - Precision: 5, - Type: Stock, - AlternateId: "74347B664"}, - 722448377959680: &Security{ - SecurityId: 722448377959680, - Name: "REGL", - Description: "ProShares S&P MidCap 400 Dividend Aristocrats ETF", - Symbol: "REGL", - Precision: 5, - Type: Stock, - AlternateId: "74347B680"}, - 722448377961264: &Security{ - SecurityId: 722448377961264, - Name: "SMDV", - Description: "ProShares Russell 2000 Dividend Growers ETF", - Symbol: "SMDV", - Precision: 5, - Type: Stock, - AlternateId: "74347B698"}, - 722448377996184: &Security{ - SecurityId: 722448377996184, - Name: "EMSH", - Description: "ProShares Short Term USD Emerging Markets Bond ETF", - Symbol: "EMSH", - Precision: 5, - Type: Stock, - AlternateId: "74347B706"}, - 722448377997408: &Security{ - SecurityId: 722448377997408, - Name: "PSQ", - Description: "ProShares Short QQQ ETF", - Symbol: "PSQ", - Precision: 5, - Type: Stock, - AlternateId: "74347B714"}, - 722448377998632: &Security{ - SecurityId: 722448377998632, - Name: "SDP", - Description: "ProShares UltraShort Utilities ETF", - Symbol: "SDP", - Precision: 5, - Type: Stock, - AlternateId: "74347B722"}, - 722448377999856: &Security{ - SecurityId: 722448377999856, - Name: "REW", - Description: "ProShares UltraShort Technology ETF", - Symbol: "REW", - Precision: 5, - Type: Stock, - AlternateId: "74347B730"}, - 722448378001440: &Security{ - SecurityId: 722448378001440, - Name: "SKF", - Description: "ProShares UltraShort Financials ETF", - Symbol: "SKF", - Precision: 5, - Type: Stock, - AlternateId: "74347B748"}, - 722448378006660: &Security{ - SecurityId: 722448378006660, - Name: "BIS", - Description: "ProShares UltraShort Nasdaq Biotechnology ETF", - Symbol: "BIS", - Precision: 5, - Type: Stock, - AlternateId: "74347B789"}, - 722448378007884: &Security{ - SecurityId: 722448378007884, - Name: "SSG", - Description: "ProShares UltraShort Semiconductors ETF", - Symbol: "SSG", - Precision: 5, - Type: Stock, - AlternateId: "74347B797"}, - 722448378044028: &Security{ - SecurityId: 722448378044028, - Name: "ALTS", - Description: "ProShares Morningstar Alternatives Solution ETF", - Symbol: "ALTS", - Precision: 5, - Type: Stock, - AlternateId: "74347B813"}, - 722448378046836: &Security{ - SecurityId: 722448378046836, - Name: "EFAD", - Description: "ProShares MSCI EAFE Dividend Growers ETF", - Symbol: "EFAD", - Precision: 5, - Type: Stock, - AlternateId: "74347B839"}, - 722448378051696: &Security{ - SecurityId: 722448378051696, - Name: "WYDE", - Description: "ProShares CDS Short North American HY Credit ETF", - Symbol: "WYDE", - Precision: 5, - Type: Stock, - AlternateId: "74347B870"}, - 722448378053280: &Security{ - SecurityId: 722448378053280, - Name: "TYTE", - Description: "ProShares CDS North American HY Credit ETF", - Symbol: "TYTE", - Precision: 5, - Type: Stock, - AlternateId: "74347B888"}, - 722448404590140: &Security{ - SecurityId: 722448404590140, - Name: "SSO", - Description: "ProShares Ultra S&P500", - Symbol: "SSO", - Precision: 5, - Type: Stock, - AlternateId: "74347R107"}, - 722448404591364: &Security{ - SecurityId: 722448404591364, - Name: "SZK", - Description: "ProShares UltraShort Consumer Goods ETF", - Symbol: "SZK", - Precision: 5, - Type: Stock, - AlternateId: "74347R115"}, - 722448404592588: &Security{ - SecurityId: 722448404592588, - Name: "IGS", - Description: "ProShares Short Investment Grade Corporate ETF", - Symbol: "IGS", - Precision: 5, - Type: Stock, - AlternateId: "74347R123"}, - 722448404593812: &Security{ - SecurityId: 722448404593812, - Name: "SJB", - Description: "ProShares Short High Yield ETF", - Symbol: "SJB", - Precision: 5, - Type: Stock, - AlternateId: "74347R131"}, - 722448404599032: &Security{ - SecurityId: 722448404599032, - Name: "UBT", - Description: "ProShares Ultra 20+ Year Treasury ETF", - Symbol: "UBT", - Precision: 5, - Type: Stock, - AlternateId: "74347R172"}, - 722448404600256: &Security{ - SecurityId: 722448404600256, - Name: "UST", - Description: "ProShares Ultra 7-10 Year Treasury ETF", - Symbol: "UST", - Precision: 5, - Type: Stock, - AlternateId: "74347R180"}, - 722448404636760: &Security{ - SecurityId: 722448404636760, - Name: "QLD", - Description: "ProShares Ultra QQQ ETF", - Symbol: "QLD", - Precision: 5, - Type: Stock, - AlternateId: "74347R206"}, - 722448404637984: &Security{ - SecurityId: 722448404637984, - Name: "BIB", - Description: "ProShares Ultra Nasdaq Biotechnology ETF", - Symbol: "BIB", - Precision: 5, - Type: Stock, - AlternateId: "74347R214"}, - 722448404639208: &Security{ - SecurityId: 722448404639208, - Name: "DDG", - Description: "ProShares Short Oil & Gas ETF", - Symbol: "DDG", - Precision: 5, - Type: Stock, - AlternateId: "74347R222"}, - 722448404640432: &Security{ - SecurityId: 722448404640432, - Name: "SEF", - Description: "ProShares Short Financials ETF", - Symbol: "SEF", - Precision: 5, - Type: Stock, - AlternateId: "74347R230"}, - 722448404642016: &Security{ - SecurityId: 722448404642016, - Name: "CSM", - Description: "ProShares Large Cap Core Plus", - Symbol: "CSM", - Precision: 5, - Type: Stock, - AlternateId: "74347R248"}, - 722448404644428: &Security{ - SecurityId: 722448404644428, - Name: "LTL", - Description: "ProShares Ultra Telecommunications ETF", - Symbol: "LTL", - Precision: 5, - Type: Stock, - AlternateId: "74347R263"}, - 722448404683380: &Security{ - SecurityId: 722448404683380, - Name: "DDM", - Description: "ProShares Ultra Dow30 ETF", - Symbol: "DDM", - Precision: 5, - Type: Stock, - AlternateId: "74347R305"}, - 722448404684604: &Security{ - SecurityId: 722448404684604, - Name: "PST", - Description: "ProShares UltraShort 7-10 Year Treasury ETF", - Symbol: "PST", - Precision: 5, - Type: Stock, - AlternateId: "74347R313"}, - 722448404692272: &Security{ - SecurityId: 722448404692272, - Name: "EFZ", - Description: "ProShares Short MSCI EAFE ETF", - Symbol: "EFZ", - Precision: 5, - Type: Stock, - AlternateId: "74347R370"}, - 722448404695080: &Security{ - SecurityId: 722448404695080, - Name: "EUM", - Description: "ProShares Short MSCI Emerging Markets ETF", - Symbol: "EUM", - Precision: 5, - Type: Stock, - AlternateId: "74347R396"}, - 722448404730000: &Security{ - SecurityId: 722448404730000, - Name: "MVV", - Description: "ProShares Ultra MidCap400 ETF", - Symbol: "MVV", - Precision: 5, - Type: Stock, - AlternateId: "74347R404"}, - 722448404776620: &Security{ - SecurityId: 722448404776620, - Name: "SH", - Description: "ProShares Short S&P500 ETF", - Symbol: "SH", - Precision: 5, - Type: Stock, - AlternateId: "74347R503"}, - 722448404831268: &Security{ - SecurityId: 722448404831268, - Name: "USD", - Description: "ProShares Ultra Semicondustors ETF", - Symbol: "USD", - Precision: 5, - Type: Stock, - AlternateId: "74347R669"}, - 722448404834940: &Security{ - SecurityId: 722448404834940, - Name: "ROM", - Description: "ProShares Ultra Technology ETF", - Symbol: "ROM", - Precision: 5, - Type: Stock, - AlternateId: "74347R693"}, - 722448404869860: &Security{ - SecurityId: 722448404869860, - Name: "DOG", - Description: "ProShares Short Dow30 ETF", - Symbol: "DOG", - Precision: 5, - Type: Stock, - AlternateId: "74347R701"}, - 722448404871444: &Security{ - SecurityId: 722448404871444, - Name: "DIG", - Description: "ProShares Ultra Oil & Gas ETF", - Symbol: "DIG", - Precision: 5, - Type: Stock, - AlternateId: "74347R719"}, - 722448404872668: &Security{ - SecurityId: 722448404872668, - Name: "UXI", - Description: "ProShares Ultra Industrials ETF", - Symbol: "UXI", - Precision: 5, - Type: Stock, - AlternateId: "74347R727"}, - 722448404873892: &Security{ - SecurityId: 722448404873892, - Name: "RXL", - Description: "ProShares Ultra Health Care ETF", - Symbol: "RXL", - Precision: 5, - Type: Stock, - AlternateId: "74347R735"}, - 722448404876304: &Security{ - SecurityId: 722448404876304, - Name: "UCC", - Description: "ProShares Ultra Consumer Services ETF", - Symbol: "UCC", - Precision: 5, - Type: Stock, - AlternateId: "74347R750"}, - 722448404877888: &Security{ - SecurityId: 722448404877888, - Name: "UGE", - Description: "ProShares Ultra Consumer Goods ETF", - Symbol: "UGE", - Precision: 5, - Type: Stock, - AlternateId: "74347R768"}, - 722448404879112: &Security{ - SecurityId: 722448404879112, - Name: "UYM", - Description: "ProShares Ultra Basic Materials ETF", - Symbol: "UYM", - Precision: 5, - Type: Stock, - AlternateId: "74347R776"}, - 722448404916480: &Security{ - SecurityId: 722448404916480, - Name: "MYY", - Description: "ProShares Short MidCap400 ETF", - Symbol: "MYY", - Precision: 5, - Type: Stock, - AlternateId: "74347R800"}, - 722448404918064: &Security{ - SecurityId: 722448404918064, - Name: "SAA", - Description: "ProShares Ultra SmallCap600 ETF", - Symbol: "SAA", - Precision: 5, - Type: Stock, - AlternateId: "74347R818"}, - 722448404921736: &Security{ - SecurityId: 722448404921736, - Name: "UWM", - Description: "ProShares Ultra Russell2000 ETF", - Symbol: "UWM", - Precision: 5, - Type: Stock, - AlternateId: "74347R842"}, - 722448413085456: &Security{ - SecurityId: 722448413085456, - Name: "VIXM", - Description: "ProShares VIX Medium-Term Futures ETF", - Symbol: "VIXM", - Precision: 5, - Type: Stock, - AlternateId: "74347W338"}, - 722448413087868: &Security{ - SecurityId: 722448413087868, - Name: "AGQ", - Description: "ProShares Ultra Silver", - Symbol: "AGQ", - Precision: 5, - Type: Stock, - AlternateId: "74347W353"}, - 722448413089092: &Security{ - SecurityId: 722448413089092, - Name: "VIXY", - Description: "ProShares VIX Short-Term Futures ETF", - Symbol: "VIXY", - Precision: 5, - Type: Stock, - AlternateId: "74347W361"}, - 722448413091900: &Security{ - SecurityId: 722448413091900, - Name: "KOLD", - Description: "ProShares UltraShort Bloomberg Natural Gas", - Symbol: "KOLD", - Precision: 5, - Type: Stock, - AlternateId: "74347W387"}, - 722448413093124: &Security{ - SecurityId: 722448413093124, - Name: "GLL", - Description: "ProShares UltraShort Gold ETF", - Symbol: "GLL", - Precision: 5, - Type: Stock, - AlternateId: "74347W395"}, - 722448413135712: &Security{ - SecurityId: 722448413135712, - Name: "CROC", - Description: "ProShares UltraShort Australian Dollar ETF", - Symbol: "CROC", - Precision: 5, - Type: Stock, - AlternateId: "74347W460"}, - 722448413178696: &Security{ - SecurityId: 722448413178696, - Name: "FUTS", - Description: "ProShares Managed Futures Strategy", - Symbol: "FUTS", - Precision: 5, - Type: Stock, - AlternateId: "74347W536"}, - 722448413182692: &Security{ - SecurityId: 722448413182692, - Name: "YCS", - Description: "ProShares UltraShort Yen ETF", - Symbol: "YCS", - Precision: 5, - Type: Stock, - AlternateId: "74347W569"}, - 722448413221284: &Security{ - SecurityId: 722448413221284, - Name: "UGL", - Description: "ProShares Ultra Gold ETF", - Symbol: "UGL", - Precision: 5, - Type: Stock, - AlternateId: "74347W601"}, - 722448413224092: &Security{ - SecurityId: 722448413224092, - Name: "SVXY", - Description: "ProShares Short VIX Short-Term Futures ETF", - Symbol: "SVXY", - Precision: 5, - Type: Stock, - AlternateId: "74347W627"}, - 722448413273160: &Security{ - SecurityId: 722448413273160, - Name: "EUFX", - Description: "ProShares Short Euro ETF", - Symbol: "EUFX", - Precision: 5, - Type: Stock, - AlternateId: "74347W742"}, - 722448413323776: &Security{ - SecurityId: 722448413323776, - Name: "ULE", - Description: "ProShares Ultra Euro ETF", - Symbol: "ULE", - Precision: 5, - Type: Stock, - AlternateId: "74347W874"}, - 722448413325000: &Security{ - SecurityId: 722448413325000, - Name: "EUO", - Description: "ProShares UltraShort Euro ETF", - Symbol: "EUO", - Precision: 5, - Type: Stock, - AlternateId: "74347W882"}, - 722448414668952: &Security{ - SecurityId: 722448414668952, - Name: "SDOW", - Description: "ProShares UltraPro Short Dow 30 ETF", - Symbol: "SDOW", - Precision: 5, - Type: Stock, - AlternateId: "74347X112"}, - 722448414671760: &Security{ - SecurityId: 722448414671760, - Name: "SMN", - Description: "ProShares UltraShort Basic Materials ETF", - Symbol: "SMN", - Precision: 5, - Type: Stock, - AlternateId: "74347X138"}, - 722448414676980: &Security{ - SecurityId: 722448414676980, - Name: "SMK", - Description: "ProShares UltraShort MSCI Mexico Capped IMI", - Symbol: "SMK", - Precision: 5, - Type: Stock, - AlternateId: "74347X179"}, - 722448414726048: &Security{ - SecurityId: 722448414726048, - Name: "HDG", - Description: "ProShares Hedge Replication ETF", - Symbol: "HDG", - Precision: 5, - Type: Stock, - AlternateId: "74347X294"}, - 722448414760968: &Security{ - SecurityId: 722448414760968, - Name: "EET", - Description: "ProShares Ultra MSCI Emerging Markets", - Symbol: "EET", - Precision: 5, - Type: Stock, - AlternateId: "74347X302"}, - 722448414765000: &Security{ - SecurityId: 722448414765000, - Name: "TPS", - Description: "ProShares UltraShort TIPS ETF", - Symbol: "TPS", - Precision: 5, - Type: Stock, - AlternateId: "74347X336"}, - 722448414766224: &Security{ - SecurityId: 722448414766224, - Name: "TBZ", - Description: "ProShares UltraShort 3-7 Year Treasury ETF", - Symbol: "TBZ", - Precision: 5, - Type: Stock, - AlternateId: "74347X344"}, - 722448414816840: &Security{ - SecurityId: 722448414816840, - Name: "KRS", - Description: "ProShares Short S&P Regional Banking", - Symbol: "KRS", - Precision: 5, - Type: Stock, - AlternateId: "74347X476"}, - 722448414818064: &Security{ - SecurityId: 722448414818064, - Name: "KRU", - Description: "ProShares Ultra KBW Regional Banking ETF", - Symbol: "KRU", - Precision: 5, - Type: Stock, - AlternateId: "74347X484"}, - 722448414854208: &Security{ - SecurityId: 722448414854208, - Name: "EFO", - Description: "ProShares Ultra MSCI EAFE", - Symbol: "EFO", - Precision: 5, - Type: Stock, - AlternateId: "74347X500"}, - 722448414855792: &Security{ - SecurityId: 722448414855792, - Name: "UMX", - Description: "ProShares Ultra MSCI Mexico Capped IMI ETF", - Symbol: "UMX", - Precision: 5, - Type: Stock, - AlternateId: "74347X518"}, - 722448414857016: &Security{ - SecurityId: 722448414857016, - Name: "UPV", - Description: "ProShares Ultra FTSE Europe", - Symbol: "UPV", - Precision: 5, - Type: Stock, - AlternateId: "74347X526"}, - 722448414858240: &Security{ - SecurityId: 722448414858240, - Name: "UXJ", - Description: "ProShares Ultra MSCI Pacific ex-Japan ETF", - Symbol: "UXJ", - Precision: 5, - Type: Stock, - AlternateId: "74347X534"}, - 722448414861012: &Security{ - SecurityId: 722448414861012, - Name: "SBM", - Description: "ProShares Short Basic Materials ETF", - Symbol: "SBM", - Precision: 5, - Type: Stock, - AlternateId: "74347X559"}, - 722448414863460: &Security{ - SecurityId: 722448414863460, - Name: "EEV", - Description: "ProShares UltraShort MSCI Emerging Markets ETF", - Symbol: "EEV", - Precision: 5, - Type: Stock, - AlternateId: "74347X575"}, - 722448414903636: &Security{ - SecurityId: 722448414903636, - Name: "URE", - Description: "ProShares Ultra Real Estate ETF", - Symbol: "URE", - Precision: 5, - Type: Stock, - AlternateId: "74347X625"}, - 722448414904860: &Security{ - SecurityId: 722448414904860, - Name: "UYG", - Description: "ProShares Ultra Financials ETF", - Symbol: "UYG", - Precision: 5, - Type: Stock, - AlternateId: "74347X633"}, - 722448414906084: &Security{ - SecurityId: 722448414906084, - Name: "REK", - Description: "ProShares Short Real Estate ETF", - Symbol: "REK", - Precision: 5, - Type: Stock, - AlternateId: "74347X641"}, - 722448414907632: &Security{ - SecurityId: 722448414907632, - Name: "YXI", - Description: "ProShares Short FTSE China 50 ETF", - Symbol: "YXI", - Precision: 5, - Type: Stock, - AlternateId: "74347X658"}, - 722448414947808: &Security{ - SecurityId: 722448414947808, - Name: "EZJ", - Description: "ProShares Ultra MSCI Japan", - Symbol: "EZJ", - Precision: 5, - Type: Stock, - AlternateId: "74347X708"}, - 722448414959508: &Security{ - SecurityId: 722448414959508, - Name: "URTY", - Description: "ProShares UltraPro Russell 2000 ETF", - Symbol: "URTY", - Precision: 5, - Type: Stock, - AlternateId: "74347X799"}, - 722448414995652: &Security{ - SecurityId: 722448414995652, - Name: "UMDD", - Description: "ProShares UltraPro MidCap 400 ETF", - Symbol: "UMDD", - Precision: 5, - Type: Stock, - AlternateId: "74347X815"}, - 722448414996876: &Security{ - SecurityId: 722448414996876, - Name: "UDOW", - Description: "ProShares UltraPro Dow 30 ETF", - Symbol: "UDOW", - Precision: 5, - Type: Stock, - AlternateId: "74347X823"}, - 722448414998100: &Security{ - SecurityId: 722448414998100, - Name: "TQQQ", - Description: "ProShares UltraPro QQQ ETF", - Symbol: "TQQQ", - Precision: 5, - Type: Stock, - AlternateId: "74347X831"}, - 722448414999684: &Security{ - SecurityId: 722448414999684, - Name: "TBF", - Description: "ProShares Short 20+ Year Treasury ETF", - Symbol: "TBF", - Precision: 5, - Type: Stock, - AlternateId: "74347X849"}, - 722448415002096: &Security{ - SecurityId: 722448415002096, - Name: "UPRO", - Description: "ProShares UltraPro S&P 500", - Symbol: "UPRO", - Precision: 5, - Type: Stock, - AlternateId: "74347X864"}, - 722448415004544: &Security{ - SecurityId: 722448415004544, - Name: "XPP", - Description: "ProShares Ultra FTSE China 50 ETF", - Symbol: "XPP", - Precision: 5, - Type: Stock, - AlternateId: "74347X880"}, - 722448436557348: &Security{ - SecurityId: 722448436557348, - Name: "GDXS", - Description: "ProShares UltraShort Gold Miners ETF", - Symbol: "GDXS", - Precision: 5, - Type: Stock, - AlternateId: "74348A269"}, - 722448436559796: &Security{ - SecurityId: 722448436559796, - Name: "GDJS", - Description: "ProShares UltraShort Junior Miners ETF", - Symbol: "GDJS", - Precision: 5, - Type: Stock, - AlternateId: "74348A285"}, - 722448436597524: &Security{ - SecurityId: 722448436597524, - Name: "TWM", - Description: "ProShares UltraShort Russell 2000", - Symbol: "TWM", - Precision: 5, - Type: Stock, - AlternateId: "74348A319"}, - 722448436598748: &Security{ - SecurityId: 722448436598748, - Name: "SDD", - Description: "ProShares UltraShort SmallCap600", - Symbol: "SDD", - Precision: 5, - Type: Stock, - AlternateId: "74348A327"}, - 722448436599972: &Security{ - SecurityId: 722448436599972, - Name: "SRTY", - Description: "ProShares UltraPro Short Russell 2000", - Symbol: "SRTY", - Precision: 5, - Type: Stock, - AlternateId: "74348A335"}, - 722448436601196: &Security{ - SecurityId: 722448436601196, - Name: "MZZ", - Description: "ProShares UltraShort MidCap400", - Symbol: "MZZ", - Precision: 5, - Type: Stock, - AlternateId: "74348A343"}, - 722448436602384: &Security{ - SecurityId: 722448436602384, - Name: "FXP", - Description: "ProShares UltraShort FTSE China 50 ETF", - Symbol: "FXP", - Precision: 5, - Type: Stock, - AlternateId: "74348A350"}, - 722448436603968: &Security{ - SecurityId: 722448436603968, - Name: "SIJ", - Description: "ProShares UltraShort Industrials ETF", - Symbol: "SIJ", - Precision: 5, - Type: Stock, - AlternateId: "74348A368"}, - 722448436605192: &Security{ - SecurityId: 722448436605192, - Name: "SBB", - Description: "ProShares Short SmallCap600", - Symbol: "SBB", - Precision: 5, - Type: Stock, - AlternateId: "74348A376"}, - 722448436645368: &Security{ - SecurityId: 722448436645368, - Name: "QID", - Description: "ProShares UltraShort QQQ", - Symbol: "QID", - Precision: 5, - Type: Stock, - AlternateId: "74348A426"}, - 722448436646592: &Security{ - SecurityId: 722448436646592, - Name: "EPV", - Description: "ProShares UltraShort FTSE Europe ETF", - Symbol: "EPV", - Precision: 5, - Type: Stock, - AlternateId: "74348A434"}, - 722448436647816: &Security{ - SecurityId: 722448436647816, - Name: "SPXU", - Description: "ProShares UltraPro Short S&P 500", - Symbol: "SPXU", - Precision: 5, - Type: Stock, - AlternateId: "74348A442"}, - 722448436649364: &Security{ - SecurityId: 722448436649364, - Name: "EWV", - Description: "ProShares UltraShort MSCI Japan ETF", - Symbol: "EWV", - Precision: 5, - Type: Stock, - AlternateId: "74348A459"}, - 722448436650588: &Security{ - SecurityId: 722448436650588, - Name: "NOBL", - Description: "ProShares S&P 500 Dividend Aristocrats ETF", - Symbol: "NOBL", - Precision: 5, - Type: Stock, - AlternateId: "74348A467"}, - 722448436651812: &Security{ - SecurityId: 722448436651812, - Name: "EFU", - Description: "ProShares UltraShort MSCI EAFE ETF", - Symbol: "EFU", - Precision: 5, - Type: Stock, - AlternateId: "74348A475"}, - 722448436654260: &Security{ - SecurityId: 722448436654260, - Name: "TTT", - Description: "ProShares UltraPro Short 20+ Year Treasury ETF", - Symbol: "TTT", - Precision: 5, - Type: Stock, - AlternateId: "74348A491"}, - 722448436690764: &Security{ - SecurityId: 722448436690764, - Name: "FINZ", - Description: "ProShares UltraPro Short Financial Select Sector", - Symbol: "FINZ", - Precision: 5, - Type: Stock, - AlternateId: "74348A517"}, - 722448436693212: &Security{ - SecurityId: 722448436693212, - Name: "PEX", - Description: "ProShares Global Listed Private Equity ETF", - Symbol: "PEX", - Precision: 5, - Type: Stock, - AlternateId: "74348A533"}, - 722448436694436: &Security{ - SecurityId: 722448436694436, - Name: "HYHG", - Description: "ProShares High Yield-Interest Rate Hedged ETF", - Symbol: "HYHG", - Precision: 5, - Type: Stock, - AlternateId: "74348A541"}, - 722448436697208: &Security{ - SecurityId: 722448436697208, - Name: "MRGR", - Description: "ProShares Merger ETF", - Symbol: "MRGR", - Precision: 5, - Type: Stock, - AlternateId: "74348A566"}, - 722448436699656: &Security{ - SecurityId: 722448436699656, - Name: "FINU", - Description: "ProShares UltraPro Financial Select Sector", - Symbol: "FINU", - Precision: 5, - Type: Stock, - AlternateId: "74348A582"}, - 722448436700880: &Security{ - SecurityId: 722448436700880, - Name: "DXD", - Description: "ProShares UltraShort Dow30", - Symbol: "DXD", - Precision: 5, - Type: Stock, - AlternateId: "74348A590"}, - 722448436736160: &Security{ - SecurityId: 722448436736160, - Name: "TBX", - Description: "ProShares Short 7-10 Year Treasury ETF", - Symbol: "TBX", - Precision: 5, - Type: Stock, - AlternateId: "74348A608"}, - 722448436745052: &Security{ - SecurityId: 722448436745052, - Name: "BZQ", - Description: "ProShares UltraShort MSCI Brazil Capped", - Symbol: "BZQ", - Precision: 5, - Type: Stock, - AlternateId: "74348A673"}, - 722448436782780: &Security{ - SecurityId: 722448436782780, - Name: "UJB", - Description: "ProShares Ultra High Yield ETF", - Symbol: "UJB", - Precision: 5, - Type: Stock, - AlternateId: "74348A707"}, - 722448436788036: &Security{ - SecurityId: 722448436788036, - Name: "COBO", - Description: "ProShares USD Covered Bond", - Symbol: "COBO", - Precision: 5, - Type: Stock, - AlternateId: "74348A749"}, - 722448436829400: &Security{ - SecurityId: 722448436829400, - Name: "IGU", - Description: "ProShares Ultra Investment Grade Corporate ETF", - Symbol: "IGU", - Precision: 5, - Type: Stock, - AlternateId: "74348A806"}, - 722448436830624: &Security{ - SecurityId: 722448436830624, - Name: "RINF", - Description: "ProShares 30 Year TIPS/TSY Spread ETF", - Symbol: "RINF", - Precision: 5, - Type: Stock, - AlternateId: "74348A814"}, - 722448436839876: &Security{ - SecurityId: 722448436839876, - Name: "GGOV", - Description: "ProShares German Sovereign/Sub-Sovereign ETF", - Symbol: "GGOV", - Precision: 5, - Type: Stock, - AlternateId: "74348A889"}, - 722448468415368: &Security{ - SecurityId: 722448468415368, - Name: "PSEC", - Description: "Prospect Capital Corp.", - Symbol: "PSEC", - Precision: 5, - Type: Stock, - AlternateId: "74348T102"}, - 722452299619572: &Security{ - SecurityId: 722452299619572, - Name: "PB", - Description: "Prosperity Bancshares, Inc.", - Symbol: "PB", - Precision: 5, - Type: Stock, - AlternateId: "743606105"}, - 722452608668772: &Security{ - SecurityId: 722452608668772, - Name: "PLX", - Description: "Protalix BioTherapeutics, Inc.", - Symbol: "PLX", - Precision: 5, - Type: Stock, - AlternateId: "74365A101"}, - 722454562062468: &Security{ - SecurityId: 722454562062468, - Name: "PRTO", - Description: "Proteon Therapeutics, Inc.", - Symbol: "PRTO", - Precision: 5, - Type: Stock, - AlternateId: "74371L109"}, - 722454689713248: &Security{ - SecurityId: 722454689713248, - Name: "PVCT", - Description: "Provectus Biopharmaceuticals, Inc.", - Symbol: "PVCT", - Precision: 5, - Type: Stock, - AlternateId: "74373P108"}, - 722454659480160: &Security{ - SecurityId: 722454659480160, - Name: "PWX", - Description: "Providence & Worcester Railroad Co.", - Symbol: "PWX", - Precision: 5, - Type: Stock, - AlternateId: "743737108"}, - 722456879932548: &Security{ - SecurityId: 722456879932548, - Name: "PVBC", - Description: "Provident Bancorp, Inc.", - Symbol: "PVBC", - Precision: 5, - Type: Stock, - AlternateId: "74383X109"}, - 722457054612468: &Security{ - SecurityId: 722457054612468, - Name: "PFS", - Description: "Provident Financial Services, Inc.", - Symbol: "PFS", - Precision: 5, - Type: Stock, - AlternateId: "74386T105"}, - 722457019340388: &Security{ - SecurityId: 722457019340388, - Name: "PROV", - Description: "Provident Financial Holdings, Inc.", - Symbol: "PROV", - Precision: 5, - Type: Stock, - AlternateId: "743868101"}, - 722524200621156: &Security{ - SecurityId: 722524200621156, - Name: "PBIP", - Description: "Prudential Bancorp, Inc.", - Symbol: "PBIP", - Precision: 5, - Type: Stock, - AlternateId: "74431A101"}, - 722524244291208: &Security{ - SecurityId: 722524244291208, - Name: "PRU", - Description: "Prudential Financial, Inc.", - Symbol: "PRU", - Precision: 5, - Type: Stock, - AlternateId: "744320102"}, - 722524321553796: &Security{ - SecurityId: 722524321553796, - Name: "GHY", - Description: "Prudential Global Short Duration High Yield Fund, Inc.", - Symbol: "GHY", - Precision: 5, - Type: Stock, - AlternateId: "74433A109"}, - 722524555066932: &Security{ - SecurityId: 722524555066932, - Name: "PMD", - Description: "Psychemedics Corp.", - Symbol: "PMD", - Precision: 5, - Type: Stock, - AlternateId: "744375205"}, - 722526332053860: &Security{ - SecurityId: 722526332053860, - Name: "PSDV", - Description: "pSivida Corp.", - Symbol: "PSDV", - Precision: 5, - Type: Stock, - AlternateId: "74440J101"}, - 722526446267964: &Security{ - SecurityId: 722526446267964, - Name: "ISD", - Description: "Prudential Short Duration High Yield Fund, Inc.", - Symbol: "ISD", - Precision: 5, - Type: Stock, - AlternateId: "74442F107"}, - 722528905225752: &Security{ - SecurityId: 722528905225752, - Name: "PEG", - Description: "Public Service Enterprise Group, Inc.", - Symbol: "PEG", - Precision: 5, - Type: Stock, - AlternateId: "744573106"}, - 722530675541124: &Security{ - SecurityId: 722530675541124, - Name: "PSA", - Description: "Public Storage, Inc.", - Symbol: "PSA", - Precision: 5, - Type: Stock, - AlternateId: "74460D109"}, - 722607096389436: &Security{ - SecurityId: 722607096389436, - Name: "PULB", - Description: "Pulaski Financial Corp.", - Symbol: "PULB", - Precision: 5, - Type: Stock, - AlternateId: "745548107"}, - 722613655289772: &Security{ - SecurityId: 722613655289772, - Name: "PULM", - Description: "Pulmatrix, Inc.", - Symbol: "PULM", - Precision: 5, - Type: Stock, - AlternateId: "74584P103"}, - 722613745988964: &Security{ - SecurityId: 722613745988964, - Name: "PHM", - Description: "PulteGroup, Inc.", - Symbol: "PHM", - Precision: 5, - Type: Stock, - AlternateId: "745867101"}, - 722613846766140: &Security{ - SecurityId: 722613846766140, - Name: "PBYI", - Description: "Puma Biotechnology, Inc.", - Symbol: "PBYI", - Precision: 5, - Type: Stock, - AlternateId: "74587V107"}, - 722678809367340: &Security{ - SecurityId: 722678809367340, - Name: "PCYO", - Description: "Pure Cycle Corp.", - Symbol: "PCYO", - Precision: 5, - Type: Stock, - AlternateId: "746228303"}, - 722678953720968: &Security{ - SecurityId: 722678953720968, - Name: "PSTG", - Description: "Pure Storage, Inc.", - Symbol: "PSTG", - Precision: 5, - Type: Stock, - AlternateId: "74624M102"}, - 722689997196348: &Security{ - SecurityId: 722689997196348, - Name: "PCF", - Description: "Putnam High Income Securities Fund", - Symbol: "PCF", - Precision: 5, - Type: Stock, - AlternateId: "746779107"}, - 722691861569964: &Security{ - SecurityId: 722691861569964, - Name: "PMM", - Description: "Putnam Managed Municipal Income Trust", - Symbol: "PMM", - Precision: 5, - Type: Stock, - AlternateId: "746823103"}, - 722692042968384: &Security{ - SecurityId: 722692042968384, - Name: "PPT", - Description: "Putnam Premier Income Trust", - Symbol: "PPT", - Precision: 5, - Type: Stock, - AlternateId: "746853100"}, - 722693927497536: &Security{ - SecurityId: 722693927497536, - Name: "PIM", - Description: "Putnam Master Intermediate Income Trust", - Symbol: "PIM", - Precision: 5, - Type: Stock, - AlternateId: "746909100"}, - 722694036672684: &Security{ - SecurityId: 722694036672684, - Name: "PMO", - Description: "Putnam Municipal Opportunities Trust", - Symbol: "PMO", - Precision: 5, - Type: Stock, - AlternateId: "746922103"}, - 722694045070728: &Security{ - SecurityId: 722694045070728, - Name: "QLTI", - Description: "QLT, Inc.", - Symbol: "QLTI", - Precision: 5, - Type: Stock, - AlternateId: "746927102"}, - 722757479128272: &Security{ - SecurityId: 722757479128272, - Name: "QCRH", - Description: "QCR Holdings, Inc.", - Symbol: "QCRH", - Precision: 5, - Type: Stock, - AlternateId: "74727A104"}, - 722757484213884: &Security{ - SecurityId: 722757484213884, - Name: "QADB", - Description: "QAD, Inc.", - Symbol: "QADB", - Precision: 5, - Type: Stock, - AlternateId: "74727D207"}, - 722757484260504: &Security{ - SecurityId: 722757484260504, - Name: "QADA", - Description: "QAD, Inc.", - Symbol: "QADA", - Precision: 5, - Type: Stock, - AlternateId: "74727D306"}, - 722757474089316: &Security{ - SecurityId: 722757474089316, - Name: "QLGC", - Description: "QLogic Corp.", - Symbol: "QLGC", - Precision: 5, - Type: Stock, - AlternateId: "747277101"}, - 722759217531012: &Security{ - SecurityId: 722759217531012, - Name: "QUAD", - Description: "Quad/Graphics, Inc.", - Symbol: "QUAD", - Precision: 5, - Type: Stock, - AlternateId: "747301109"}, - 722759319987372: &Security{ - SecurityId: 722759319987372, - Name: "PZN", - Description: "Pzena Investment Management, Inc.", - Symbol: "PZN", - Precision: 5, - Type: Stock, - AlternateId: "74731Q103"}, - 722759286395196: &Security{ - SecurityId: 722759286395196, - Name: "KWR", - Description: "Quaker Chemical Corp.", - Symbol: "KWR", - Precision: 5, - Type: Stock, - AlternateId: "747316107"}, - 722759445958644: &Security{ - SecurityId: 722759445958644, - Name: "QLIK", - Description: "QLIK Technologies, Inc.", - Symbol: "QLIK", - Precision: 5, - Type: Stock, - AlternateId: "74733T105"}, - 722759449317696: &Security{ - SecurityId: 722759449317696, - Name: "QEP", - Description: "QEP Resources, Inc.", - Symbol: "QEP", - Precision: 5, - Type: Stock, - AlternateId: "74733V100"}, - 722759494667652: &Security{ - SecurityId: 722759494667652, - Name: "QIHU", - Description: "Qihoo 360 Technology Co. Ltd", - Symbol: "QIHU", - Precision: 5, - Type: Stock, - AlternateId: "74734M109"}, - 722759555133792: &Security{ - SecurityId: 722759555133792, - Name: "QIWI", - Description: "QIWI plc ADR", - Symbol: "QIWI", - Precision: 5, - Type: Stock, - AlternateId: "74735M108"}, - 722759595444396: &Security{ - SecurityId: 722759595444396, - Name: "QTS", - Description: "QTS Realty Trust, Inc.", - Symbol: "QTS", - Precision: 5, - Type: Stock, - AlternateId: "74736A103"}, - 722759612240484: &Security{ - SecurityId: 722759612240484, - Name: "QRVO", - Description: "Qorvo, Inc.", - Symbol: "QRVO", - Precision: 5, - Type: Stock, - AlternateId: "74736K101"}, - 722759613920388: &Security{ - SecurityId: 722759613920388, - Name: "QTWO", - Description: "Q2 Holdings, Inc.", - Symbol: "QTWO", - Precision: 5, - Type: Stock, - AlternateId: "74736L109"}, - 722763698746284: &Security{ - SecurityId: 722763698746284, - Name: "QCOM", - Description: "QUALCOMM, Inc.", - Symbol: "QCOM", - Precision: 5, - Type: Stock, - AlternateId: "747525103"}, - 722764098495108: &Security{ - SecurityId: 722764098495108, - Name: "QBAK", - Description: "Qualstar Corp.", - Symbol: "QBAK", - Precision: 5, - Type: Stock, - AlternateId: "74758R109"}, - 722764101947436: &Security{ - SecurityId: 722764101947436, - Name: "QLYS", - Description: "Qualys, Inc.", - Symbol: "QLYS", - Precision: 5, - Type: Stock, - AlternateId: "74758T303"}, - 722764056504528: &Security{ - SecurityId: 722764056504528, - Name: "QSII", - Description: "Quality Systems, Inc.", - Symbol: "QSII", - Precision: 5, - Type: Stock, - AlternateId: "747582104"}, - 722765890645128: &Security{ - SecurityId: 722765890645128, - Name: "PWR", - Description: "Quanta Services, Inc.", - Symbol: "PWR", - Precision: 5, - Type: Stock, - AlternateId: "74762E102"}, - 722766072137148: &Security{ - SecurityId: 722766072137148, - Name: "QTWW", - Description: "Quantum Fuel Systems Technologies Worldwide, Inc.", - Symbol: "QTWW", - Precision: 5, - Type: Stock, - AlternateId: "74765E307"}, - 722772286669584: &Security{ - SecurityId: 722772286669584, - Name: "QTM", - Description: "Quantum Corp.", - Symbol: "QTM", - Precision: 5, - Type: Stock, - AlternateId: "747906204"}, - 722837857151808: &Security{ - SecurityId: 722837857151808, - Name: "DGX", - Description: "Quest Diagnostics, Inc.", - Symbol: "DGX", - Precision: 5, - Type: Stock, - AlternateId: "74834L100"}, - 722837892423816: &Security{ - SecurityId: 722837892423816, - Name: "STR", - Description: "Questar Corp.", - Symbol: "STR", - Precision: 5, - Type: Stock, - AlternateId: "748356102"}, - 722838045269088: &Security{ - SecurityId: 722838045269088, - Name: "QUIK", - Description: "QuickLogic Corp.", - Symbol: "QUIK", - Precision: 5, - Type: Stock, - AlternateId: "74837P108"}, - 722838095657316: &Security{ - SecurityId: 722838095657316, - Name: "QDEL", - Description: "Quidel Corp.", - Symbol: "QDEL", - Precision: 5, - Type: Stock, - AlternateId: "74838J101"}, - 722846572679232: &Security{ - SecurityId: 722846572679232, - Name: "QNST", - Description: "Quinstreet, Inc.", - Symbol: "QNST", - Precision: 5, - Type: Stock, - AlternateId: "74874Q100"}, - 722846579444352: &Security{ - SecurityId: 722846579444352, - Name: "QPACU", - Description: "Quinpario Acquisition Corp. 2", - Symbol: "QPACU", - Precision: 5, - Type: Stock, - AlternateId: "74874U200"}, - 722846707048548: &Security{ - SecurityId: 722846707048548, - Name: "Q", - Description: "Quintiles Transnational Holdings, Inc.", - Symbol: "Q", - Precision: 5, - Type: Stock, - AlternateId: "74876Y101"}, - 722909818619856: &Security{ - SecurityId: 722909818619856, - Name: "QUNR", - Description: "Qunar Cayman Islands Ltd.", - Symbol: "QUNR", - Precision: 5, - Type: Stock, - AlternateId: "74906P104"}, - 722909781668268: &Security{ - SecurityId: 722909781668268, - Name: "QUMU", - Description: "Qumu Corp.", - Symbol: "QUMU", - Precision: 5, - Type: Stock, - AlternateId: "749063103"}, - 722913900320196: &Security{ - SecurityId: 722913900320196, - Name: "RAS", - Description: "RAIT Financial Trust", - Symbol: "RAS", - Precision: 5, - Type: Stock, - AlternateId: "749227609"}, - 722916229714272: &Security{ - SecurityId: 722916229714272, - Name: "RICK", - Description: "RCI Hospitality Holdings, Inc.", - Symbol: "RICK", - Precision: 5, - Type: Stock, - AlternateId: "74934Q108"}, - 722916307116288: &Security{ - SecurityId: 722916307116288, - Name: "RCMT", - Description: "RCM Technologies, Inc.", - Symbol: "RCMT", - Precision: 5, - Type: Stock, - AlternateId: "749360400"}, - 722920635346860: &Security{ - SecurityId: 722920635346860, - Name: "RGCO", - Description: "RGC Resources, Inc.", - Symbol: "RGCO", - Precision: 5, - Type: Stock, - AlternateId: "74955L103"}, - 722920603434228: &Security{ - SecurityId: 722920603434228, - Name: "RFIL", - Description: "RF Industries Ltd", - Symbol: "RFIL", - Precision: 5, - Type: Stock, - AlternateId: "749552105"}, - 722922486283836: &Security{ - SecurityId: 722922486283836, - Name: "RLI", - Description: "RLI Corp.", - Symbol: "RLI", - Precision: 5, - Type: Stock, - AlternateId: "749607107"}, - 722922802051536: &Security{ - SecurityId: 722922802051536, - Name: "RLJE", - Description: "RLJ Entertainment, Inc.", - Symbol: "RLJE", - Precision: 5, - Type: Stock, - AlternateId: "74965F104"}, - 722922812129124: &Security{ - SecurityId: 722922812129124, - Name: "RLJ", - Description: "RLJ Lodging Trust", - Symbol: "RLJ", - Precision: 5, - Type: Stock, - AlternateId: "74965L101"}, - 722922864197220: &Security{ - SecurityId: 722922864197220, - Name: "ROIQ", - Description: "ROI Acquisition Corp. II", - Symbol: "ROIQ", - Precision: 5, - Type: Stock, - AlternateId: "74966G101"}, - 722922870915720: &Security{ - SecurityId: 722922870915720, - Name: "RMGN", - Description: "RMG Networks Holding Corp.", - Symbol: "RMGN", - Precision: 5, - Type: Stock, - AlternateId: "74966K102"}, - 722922837323544: &Security{ - SecurityId: 722922837323544, - Name: "RES", - Description: "RPC, Inc.", - Symbol: "RES", - Precision: 5, - Type: Stock, - AlternateId: "749660106"}, - 722922943139352: &Security{ - SecurityId: 722922943139352, - Name: "RMR", - Description: "RMR Group, Inc. (The) Cl A", - Symbol: "RMR", - Precision: 5, - Type: Stock, - AlternateId: "74967R106"}, - 722922966653868: &Security{ - SecurityId: 722922966653868, - Name: "RPM", - Description: "RPM Intl, Inc.", - Symbol: "RPM", - Precision: 5, - Type: Stock, - AlternateId: "749685103"}, - 722924799114924: &Security{ - SecurityId: 722924799114924, - Name: "RPXC", - Description: "RPX Corp.", - Symbol: "RPXC", - Precision: 5, - Type: Stock, - AlternateId: "74972G103"}, - 722924992270836: &Security{ - SecurityId: 722924992270836, - Name: "RTIX", - Description: "RTI Surgical, Inc.", - Symbol: "RTIX", - Precision: 5, - Type: Stock, - AlternateId: "74975N105"}, - 722925178708212: &Security{ - SecurityId: 722925178708212, - Name: "RSPP", - Description: "RSP Permian, Inc.", - Symbol: "RSPP", - Precision: 5, - Type: Stock, - AlternateId: "74978Q105"}, - 725025740069952: &Security{ - SecurityId: 725025740069952, - Name: "RAX", - Description: "Rackspace Hosting, Inc.", - Symbol: "RAX", - Precision: 5, - Type: Stock, - AlternateId: "750086100"}, - 725029791303780: &Security{ - SecurityId: 725029791303780, - Name: "RDN", - Description: "Radian Group, Inc.", - Symbol: "RDN", - Precision: 5, - Type: Stock, - AlternateId: "750236101"}, - 725029957585728: &Security{ - SecurityId: 725029957585728, - Name: "RLGT", - Description: "Radiant Logistics, Inc.", - Symbol: "RLGT", - Precision: 5, - Type: Stock, - AlternateId: "75025X100"}, - 725033995382880: &Security{ - SecurityId: 725033995382880, - Name: "ROIA", - Description: "Radio One, Inc.", - Symbol: "ROIA", - Precision: 5, - Type: Stock, - AlternateId: "75040P108"}, - 725033995522740: &Security{ - SecurityId: 725033995522740, - Name: "ROIAK", - Description: "Radio One, Inc. Cl D", - Symbol: "ROIAK", - Precision: 5, - Type: Stock, - AlternateId: "75040P405"}, - 725034270839940: &Security{ - SecurityId: 725034270839940, - Name: "RSYS", - Description: "RadiSys Corp.", - Symbol: "RSYS", - Precision: 5, - Type: Stock, - AlternateId: "750459109"}, - 725034331352700: &Security{ - SecurityId: 725034331352700, - Name: "RDUS", - Description: "Radius Health, Inc.", - Symbol: "RDUS", - Precision: 5, - Type: Stock, - AlternateId: "750469207"}, - 725044909527576: &Security{ - SecurityId: 725044909527576, - Name: "RMBS", - Description: "Rambus, Inc.", - Symbol: "RMBS", - Precision: 5, - Type: Stock, - AlternateId: "750917106"}, - 725108027817060: &Security{ - SecurityId: 725108027817060, - Name: "RL", - Description: "Ralph Lauren Corp.", - Symbol: "RL", - Precision: 5, - Type: Stock, - AlternateId: "751212101"}, - 725112623293128: &Security{ - SecurityId: 725112623293128, - Name: "RPT", - Description: "Ramco-Gershenson Properties Trust", - Symbol: "RPT", - Precision: 5, - Type: Stock, - AlternateId: "751452202"}, - 725112623479968: &Security{ - SecurityId: 725112623479968, - Name: "RPT-D", - Description: "Ramco-Gershenson Properties Trust, 7.25% Series D Cumul Conv Perp Pfd Shares", - Symbol: "RPT-D", - Precision: 5, - Type: Stock, - AlternateId: "751452608"}, - 725184643501152: &Security{ - SecurityId: 725184643501152, - Name: "RAND", - Description: "Rand Capital Corp.", - Symbol: "RAND", - Precision: 5, - Type: Stock, - AlternateId: "752185108"}, - 725199466112388: &Security{ - SecurityId: 725199466112388, - Name: "RRC", - Description: "Range Resources Corp.", - Symbol: "RRC", - Precision: 5, - Type: Stock, - AlternateId: "75281A109"}, - 725269170176208: &Security{ - SecurityId: 725269170176208, - Name: "RPD", - Description: "Rapid7, Inc.", - Symbol: "RPD", - Precision: 5, - Type: Stock, - AlternateId: "753422104"}, - 725277899140632: &Security{ - SecurityId: 725277899140632, - Name: "RPTP", - Description: "Raptor Pharmaceutical Corp.", - Symbol: "RPTP", - Precision: 5, - Type: Stock, - AlternateId: "75382F106"}, - 725343120309600: &Security{ - SecurityId: 725343120309600, - Name: "RAVN", - Description: "Raven Industries, Inc.", - Symbol: "RAVN", - Precision: 5, - Type: Stock, - AlternateId: "754212108"}, - 725354121794436: &Security{ - SecurityId: 725354121794436, - Name: "RJF", - Description: "Raymond James Financial, Inc.", - Symbol: "RJF", - Precision: 5, - Type: Stock, - AlternateId: "754730109"}, - 725358305717676: &Security{ - SecurityId: 725358305717676, - Name: "RYN", - Description: "Rayonier, Inc.", - Symbol: "RYN", - Precision: 5, - Type: Stock, - AlternateId: "754907103"}, - 725417569288656: &Security{ - SecurityId: 725417569288656, - Name: "RYAM", - Description: "Rayonier Advanced Materials, Inc.", - Symbol: "RYAM", - Precision: 5, - Type: Stock, - AlternateId: "75508B104"}, - 725419306198332: &Security{ - SecurityId: 725419306198332, - Name: "RTN", - Description: "Raytheon Co.", - Symbol: "RTN", - Precision: 5, - Type: Stock, - AlternateId: "755111507"}, - 725421716260704: &Security{ - SecurityId: 725421716260704, - Name: "RMAX", - Description: "RE/MAX Holdings, Inc.", - Symbol: "RMAX", - Precision: 5, - Type: Stock, - AlternateId: "75524W108"}, - 725421748173264: &Security{ - SecurityId: 725421748173264, - Name: "RLOC", - Description: "ReachLocal, Inc.", - Symbol: "RLOC", - Precision: 5, - Type: Stock, - AlternateId: "75525F104"}, - 725425787649636: &Security{ - SecurityId: 725425787649636, - Name: "RDI", - Description: "Reading Intl, Inc.", - Symbol: "RDI", - Precision: 5, - Type: Stock, - AlternateId: "755408101"}, - 725425787696256: &Security{ - SecurityId: 725425787696256, - Name: "RDIB", - Description: "Reading Intl, Inc. Cl B", - Symbol: "RDIB", - Precision: 5, - Type: Stock, - AlternateId: "755408200"}, - 725495530391532: &Security{ - SecurityId: 725495530391532, - Name: "RGSE", - Description: "Real Goods Solar, Inc.", - Symbol: "RGSE", - Precision: 5, - Type: Stock, - AlternateId: "75601N203"}, - 725495545461456: &Security{ - SecurityId: 725495545461456, - Name: "CAL", - Description: "Caleres, Inc.", - Symbol: "CAL", - Precision: 5, - Type: Stock, - AlternateId: "75601W104"}, - 725495708384244: &Security{ - SecurityId: 725495708384244, - Name: "RLD", - Description: "RealD, Inc.", - Symbol: "RLD", - Precision: 5, - Type: Stock, - AlternateId: "75604L105"}, - 725495750374752: &Security{ - SecurityId: 725495750374752, - Name: "DIVY", - Description: "Realty Shares DIVS ETF", - Symbol: "DIVY", - Precision: 5, - Type: Stock, - AlternateId: "75605A108"}, - 725495769130464: &Security{ - SecurityId: 725495769130464, - Name: "RNWK", - Description: "RealNetworks, Inc.", - Symbol: "RNWK", - Precision: 5, - Type: Stock, - AlternateId: "75605L708"}, - 725495790685464: &Security{ - SecurityId: 725495790685464, - Name: "RLGY", - Description: "Realogy Holdings Corp.", - Symbol: "RLGY", - Precision: 5, - Type: Stock, - AlternateId: "75605Y106"}, - 725495832675972: &Security{ - SecurityId: 725495832675972, - Name: "RP", - Description: "RealPage, Inc.", - Symbol: "RP", - Precision: 5, - Type: Stock, - AlternateId: "75606N109"}, - 725497623146448: &Security{ - SecurityId: 725497623146448, - Name: "O", - Description: "Realty Income Corp.", - Symbol: "O", - Precision: 5, - Type: Stock, - AlternateId: "756109104"}, - 725497923797604: &Security{ - SecurityId: 725497923797604, - Name: "UTG", - Description: "Reaves Utility Income Fund", - Symbol: "UTG", - Precision: 5, - Type: Stock, - AlternateId: "756158101"}, - 725500016599176: &Security{ - SecurityId: 725500016599176, - Name: "QYLD", - Description: "Recon Capital NASDAQ-100 Covered Call ETF", - Symbol: "QYLD", - Precision: 5, - Type: Stock, - AlternateId: "75623U102"}, - 725500016645796: &Security{ - SecurityId: 725500016645796, - Name: "DAX", - Description: "Recon Capital DAX Germany ETF", - Symbol: "DAX", - Precision: 5, - Type: Stock, - AlternateId: "75623U201"}, - 725500016692416: &Security{ - SecurityId: 725500016692416, - Name: "UK", - Description: "Recon Capital FTSE 100 ETF", - Symbol: "UK", - Precision: 5, - Type: Stock, - AlternateId: "75623U300"}, - 725500354202244: &Security{ - SecurityId: 725500354202244, - Name: "REPH", - Description: "Recro Pharma, Inc.", - Symbol: "REPH", - Precision: 5, - Type: Stock, - AlternateId: "75629F109"}, - 725506750179720: &Security{ - SecurityId: 725506750179720, - Name: "RHT", - Description: "Red Hat, Inc.", - Symbol: "RHT", - Precision: 5, - Type: Stock, - AlternateId: "756577102"}, - 725511038239512: &Security{ - SecurityId: 725511038239512, - Name: "RLH", - Description: "Red Lion Hotels Corp.", - Symbol: "RLH", - Precision: 5, - Type: Stock, - AlternateId: "756764106"}, - 725513426653284: &Security{ - SecurityId: 725513426653284, - Name: "RRGB", - Description: "Red Robin Gourmet Burgers, Inc.", - Symbol: "RRGB", - Precision: 5, - Type: Stock, - AlternateId: "75689M101"}, - 725582940920640: &Security{ - SecurityId: 725582940920640, - Name: "REDF", - Description: "Rediff.com India Ltd.", - Symbol: "REDF", - Precision: 5, - Type: Stock, - AlternateId: "757479100"}, - 725652591376968: &Security{ - SecurityId: 725652591376968, - Name: "RWT", - Description: "Redwood Trust, Inc.", - Symbol: "RWT", - Precision: 5, - Type: Stock, - AlternateId: "758075402"}, - 725658884758332: &Security{ - SecurityId: 725658884758332, - Name: "REED", - Description: "Reed's, Inc.", - Symbol: "REED", - Precision: 5, - Type: Stock, - AlternateId: "758338107"}, - 725667699382956: &Security{ - SecurityId: 725667699382956, - Name: "RBC", - Description: "Regal Beloit Corp.", - Symbol: "RBC", - Precision: 5, - Type: Stock, - AlternateId: "758750103"}, - 725667769927044: &Security{ - SecurityId: 725667769927044, - Name: "RGC", - Description: "Regal Entertainment Group", - Symbol: "RGC", - Precision: 5, - Type: Stock, - AlternateId: "758766109"}, - 725669830815660: &Security{ - SecurityId: 725669830815660, - Name: "REG", - Description: "Regency Centers Corp.", - Symbol: "REG", - Precision: 5, - Type: Stock, - AlternateId: "758849103"}, - 725669961825852: &Security{ - SecurityId: 725669961825852, - Name: "REGN", - Description: "Regeneron Pharmaceuticals, Inc.", - Symbol: "REGN", - Precision: 5, - Type: Stock, - AlternateId: "75886F107"}, - 725671935374652: &Security{ - SecurityId: 725671935374652, - Name: "RGS", - Description: "Regis Corp.", - Symbol: "RGS", - Precision: 5, - Type: Stock, - AlternateId: "758932107"}, - 725730602681916: &Security{ - SecurityId: 725730602681916, - Name: "RGNX", - Description: "REGENXBIO, Inc.", - Symbol: "RGNX", - Precision: 5, - Type: Stock, - AlternateId: "75901B107"}, - 725730678264600: &Security{ - SecurityId: 725730678264600, - Name: "RM", - Description: "Regional Management Corp.", - Symbol: "RM", - Precision: 5, - Type: Stock, - AlternateId: "75902K106"}, - 725733589038912: &Security{ - SecurityId: 725733589038912, - Name: "RF", - Description: "Regions Financial Corp.", - Symbol: "RF", - Precision: 5, - Type: Stock, - AlternateId: "7591EP100"}, - 725733036445284: &Security{ - SecurityId: 725733036445284, - Name: "RGLS", - Description: "Regulus Therapeutics, Inc.", - Symbol: "RGLS", - Precision: 5, - Type: Stock, - AlternateId: "75915K101"}, - 725737358330640: &Security{ - SecurityId: 725737358330640, - Name: "RGA", - Description: "Reinsurance Group of America, Inc.", - Symbol: "RGA", - Precision: 5, - Type: Stock, - AlternateId: "759351604"}, - 725737458874356: &Security{ - SecurityId: 725737458874356, - Name: "REIS", - Description: "Reis, Inc.", - Symbol: "REIS", - Precision: 5, - Type: Stock, - AlternateId: "75936P105"}, - 725741422768008: &Security{ - SecurityId: 725741422768008, - Name: "RS", - Description: "Reliance Steel & Aluminum Co.", - Symbol: "RS", - Precision: 5, - Type: Stock, - AlternateId: "759509102"}, - 725741573933376: &Security{ - SecurityId: 725741573933376, - Name: "RELV", - Description: "Reliv Intl, Inc.", - Symbol: "RELV", - Precision: 5, - Type: Stock, - AlternateId: "75952R100"}, - 725741536982112: &Security{ - SecurityId: 725741536982112, - Name: "RWC", - Description: "RELM Wireless Corp.", - Symbol: "RWC", - Precision: 5, - Type: Stock, - AlternateId: "759525108"}, - 725741589050208: &Security{ - SecurityId: 725741589050208, - Name: "RELX", - Description: "RELX PLC", - Symbol: "RELX", - Precision: 5, - Type: Stock, - AlternateId: "759530108"}, - 725741703264060: &Security{ - SecurityId: 725741703264060, - Name: "MARK", - Description: "Remark Media. Inc.", - Symbol: "MARK", - Precision: 5, - Type: Stock, - AlternateId: "75954W107"}, - 725741728458120: &Security{ - SecurityId: 725741728458120, - Name: "RENX", - Description: "RELX N.V.", - Symbol: "RENX", - Precision: 5, - Type: Stock, - AlternateId: "75955B102"}, - 725745784730940: &Security{ - SecurityId: 725745784730940, - Name: "RNST", - Description: "Renasant Corp.", - Symbol: "RNST", - Precision: 5, - Type: Stock, - AlternateId: "75970E107"}, - 725745899037924: &Security{ - SecurityId: 725745899037924, - Name: "REGI", - Description: "Renewable Energy Group, Inc.", - Symbol: "REGI", - Precision: 5, - Type: Stock, - AlternateId: "75972A301"}, - 725745882148596: &Security{ - SecurityId: 725745882148596, - Name: "RCG", - Description: "RENN Fund, Inc.", - Symbol: "RCG", - Precision: 5, - Type: Stock, - AlternateId: "759720105"}, - 725746075304508: &Security{ - SecurityId: 725746075304508, - Name: "RNVA", - Description: "Rennova Health, Inc.", - Symbol: "RNVA", - Precision: 5, - Type: Stock, - AlternateId: "759757107"}, - 725748485553288: &Security{ - SecurityId: 725748485553288, - Name: "RENN", - Description: "Renren, Inc. ADR", - Symbol: "RENN", - Precision: 5, - Type: Stock, - AlternateId: "759892102"}, - 725750185324932: &Security{ - SecurityId: 725750185324932, - Name: "RGEN", - Description: "Repligen Corp.", - Symbol: "RGEN", - Precision: 5, - Type: Stock, - AlternateId: "759916109"}, - 725750307983376: &Security{ - SecurityId: 725750307983376, - Name: "IPO", - Description: "Renaissance IPO ETF", - Symbol: "IPO", - Precision: 5, - Type: Stock, - AlternateId: "759937204"}, - 725750308029996: &Security{ - SecurityId: 725750308029996, - Name: "IPOS", - Description: "Renaissance International IPO ETF", - Symbol: "IPOS", - Precision: 5, - Type: Stock, - AlternateId: "759937303"}, - 727846938997056: &Security{ - SecurityId: 727846938997056, - Name: "RCII", - Description: "Rent-A-Center, Inc.", - Symbol: "RCII", - Precision: 5, - Type: Stock, - AlternateId: "76009N100"}, - 727848596824740: &Security{ - SecurityId: 727848596824740, - Name: "RTK", - Description: "Rentech, Inc.", - Symbol: "RTK", - Precision: 5, - Type: Stock, - AlternateId: "760112201"}, - 727848598457664: &Security{ - SecurityId: 727848598457664, - Name: "RNF", - Description: "Rentech Nitrogen Partners L.P.", - Symbol: "RNF", - Precision: 5, - Type: Stock, - AlternateId: "760113100"}, - 727848962934408: &Security{ - SecurityId: 727848962934408, - Name: "RENT", - Description: "Rentrak Corp.", - Symbol: "RENT", - Precision: 5, - Type: Stock, - AlternateId: "760174102"}, - 727851222064836: &Security{ - SecurityId: 727851222064836, - Name: "RPRX", - Description: "Repros Therapeutics Inc", - Symbol: "RPRX", - Precision: 5, - Type: Stock, - AlternateId: "76028H209"}, - 727851195190800: &Security{ - SecurityId: 727851195190800, - Name: "RBCAA", - Description: "Republic Bancorp, Inc. (KY)", - Symbol: "RBCAA", - Precision: 5, - Type: Stock, - AlternateId: "760281204"}, - 727855133843772: &Security{ - SecurityId: 727855133843772, - Name: "FRBK", - Description: "Republic First Bancorp, Inc.", - Symbol: "FRBK", - Precision: 5, - Type: Stock, - AlternateId: "760416107"}, - 727861911094080: &Security{ - SecurityId: 727861911094080, - Name: "RSG", - Description: "Republic Services, Inc.", - Symbol: "RSG", - Precision: 5, - Type: Stock, - AlternateId: "760759100"}, - 727866009357372: &Security{ - SecurityId: 727866009357372, - Name: "REFR", - Description: "Research Frontiers, Inc.", - Symbol: "REFR", - Precision: 5, - Type: Stock, - AlternateId: "760911107"}, - 727927202807100: &Security{ - SecurityId: 727927202807100, - Name: "RMD", - Description: "ResMed, Inc.", - Symbol: "RMD", - Precision: 5, - Type: Stock, - AlternateId: "761152107"}, - 727927416118152: &Security{ - SecurityId: 727927416118152, - Name: "RESN", - Description: "Resonant, Inc.", - Symbol: "RESN", - Precision: 5, - Type: Stock, - AlternateId: "76118L102"}, - 727927449757236: &Security{ - SecurityId: 727927449757236, - Name: "REXI", - Description: "Resource America, Inc.", - Symbol: "REXI", - Precision: 5, - Type: Stock, - AlternateId: "761195205"}, - 727929127927008: &Security{ - SecurityId: 727929127927008, - Name: "RSO", - Description: "Resource Capital Corp.", - Symbol: "RSO", - Precision: 5, - Type: Stock, - AlternateId: "76120W708"}, - 727929238501620: &Security{ - SecurityId: 727929238501620, - Name: "RECN", - Description: "Resources Connection, Inc.", - Symbol: "RECN", - Precision: 5, - Type: Stock, - AlternateId: "76122Q105"}, - 727929562667328: &Security{ - SecurityId: 727929562667328, - Name: "RH", - Description: "Restoration Hardware Holdings, Inc.", - Symbol: "RH", - Precision: 5, - Type: Stock, - AlternateId: "761283100"}, - 727929671842548: &Security{ - SecurityId: 727929671842548, - Name: "RVP", - Description: "Retractable Technologies, Inc.", - Symbol: "RVP", - Precision: 5, - Type: Stock, - AlternateId: "76129W105"}, - 727929633211416: &Security{ - SecurityId: 727929633211416, - Name: "RTRX", - Description: "Retrophin, Inc.", - Symbol: "RTRX", - Precision: 5, - Type: Stock, - AlternateId: "761299106"}, - 727931332982700: &Security{ - SecurityId: 727931332982700, - Name: "QSR", - Description: "Restaurant Brands International, Inc.", - Symbol: "QSR", - Precision: 5, - Type: Stock, - AlternateId: "76131D103"}, - 727931349778788: &Security{ - SecurityId: 727931349778788, - Name: "ROIC", - Description: "Retail Opportunity Investments Corp.", - Symbol: "ROIC", - Precision: 5, - Type: Stock, - AlternateId: "76131N101"}, - 727931363262408: &Security{ - SecurityId: 727931363262408, - Name: "RPAI", - Description: "Retail Properties of America, Inc.", - Symbol: "RPAI", - Precision: 5, - Type: Stock, - AlternateId: "76131V202"}, - 727931390089752: &Security{ - SecurityId: 727931390089752, - Name: "SALE", - Description: "RetailMeNot, Inc.", - Symbol: "SALE", - Precision: 5, - Type: Stock, - AlternateId: "76132B106"}, - 727931432080260: &Security{ - SecurityId: 727931432080260, - Name: "RVNC", - Description: "Revance Therapeutics, Inc.", - Symbol: "RVNC", - Precision: 5, - Type: Stock, - AlternateId: "761330109"}, - 727935733810116: &Security{ - SecurityId: 727935733810116, - Name: "REV", - Description: "Revlon, Inc.", - Symbol: "REV", - Precision: 5, - Type: Stock, - AlternateId: "761525609"}, - 727935933451068: &Security{ - SecurityId: 727935933451068, - Name: "RVLT", - Description: "Revolution Lighting Technologies, Inc.", - Symbol: "RVLT", - Precision: 5, - Type: Stock, - AlternateId: "76155G107"}, - 727935975441216: &Security{ - SecurityId: 727935975441216, - Name: "REXX", - Description: "Rex Energy Corp.", - Symbol: "REXX", - Precision: 5, - Type: Stock, - AlternateId: "761565100"}, - 727937908679412: &Security{ - SecurityId: 727937908679412, - Name: "REX", - Description: "REX American Resources Corp.", - Symbol: "REX", - Precision: 5, - Type: Stock, - AlternateId: "761624105"}, - 727938022893156: &Security{ - SecurityId: 727938022893156, - Name: "RNN", - Description: "Rexahn Pharmaceuticals, Inc.", - Symbol: "RNN", - Precision: 5, - Type: Stock, - AlternateId: "761640101"}, - 727938343699848: &Security{ - SecurityId: 727938343699848, - Name: "RXN", - Description: "Rexnord Corp.", - Symbol: "RXN", - Precision: 5, - Type: Stock, - AlternateId: "76169B102"}, - 727938345379392: &Security{ - SecurityId: 727938345379392, - Name: "REXR", - Description: "Rexford Industrial Realty, Inc.", - Symbol: "REXR", - Precision: 5, - Type: Stock, - AlternateId: "76169C100"}, - 727940023315992: &Security{ - SecurityId: 727940023315992, - Name: "RAI", - Description: "Reynolds American, Inc.", - Symbol: "RAI", - Precision: 5, - Type: Stock, - AlternateId: "761713106"}, - 728005802117292: &Security{ - SecurityId: 728005802117292, - Name: "RHNO", - Description: "Rhino Resource Partners L.P.", - Symbol: "RHNO", - Precision: 5, - Type: Stock, - AlternateId: "76218Y103"}, - 728018684772120: &Security{ - SecurityId: 728018684772120, - Name: "RICE", - Description: "Rice Energy, Inc.", - Symbol: "RICE", - Precision: 5, - Type: Stock, - AlternateId: "762760106"}, - 728020574339904: &Security{ - SecurityId: 728020574339904, - Name: "RMP", - Description: "Rice Midstream Partners LP", - Symbol: "RMP", - Precision: 5, - Type: Stock, - AlternateId: "762819100"}, - 728083996640316: &Security{ - SecurityId: 728083996640316, - Name: "RELL", - Description: "Richardson Electronics Ltd", - Symbol: "RELL", - Precision: 5, - Type: Stock, - AlternateId: "763165107"}, - 728247356092440: &Security{ - SecurityId: 728247356092440, - Name: "RIC", - Description: "Richmont Mines, Inc.", - Symbol: "RIC", - Precision: 5, - Type: Stock, - AlternateId: "76547T106"}, - 728327742747372: &Security{ - SecurityId: 728327742747372, - Name: "RIGL", - Description: "Rigel Pharmaceuticals, Inc.", - Symbol: "RIGL", - Precision: 5, - Type: Stock, - AlternateId: "766559603"}, - 728327927271744: &Security{ - SecurityId: 728327927271744, - Name: "NAME", - Description: "Rightside Group, Ltd.", - Symbol: "NAME", - Precision: 5, - Type: Stock, - AlternateId: "76658B100"}, - 728327912155200: &Security{ - SecurityId: 728327912155200, - Name: "RNET", - Description: "RigNet, Inc.", - Symbol: "RNET", - Precision: 5, - Type: Stock, - AlternateId: "766582100"}, - 728334000810072: &Security{ - SecurityId: 728334000810072, - Name: "RNG", - Description: "RingCentral, Inc.", - Symbol: "RNG", - Precision: 5, - Type: Stock, - AlternateId: "76680R206"}, - 728334007481952: &Security{ - SecurityId: 728334007481952, - Name: "REI", - Description: "Ring Energy, Inc.", - Symbol: "REI", - Precision: 5, - Type: Stock, - AlternateId: "76680V108"}, - 728410391378676: &Security{ - SecurityId: 728410391378676, - Name: "RBA", - Description: "Ritchie Bros. Auctioneers, Inc.", - Symbol: "RBA", - Precision: 5, - Type: Stock, - AlternateId: "767744105"}, - 728410451844816: &Security{ - SecurityId: 728410451844816, - Name: "RAD", - Description: "Rite Aid Corp.", - Symbol: "RAD", - Precision: 5, - Type: Stock, - AlternateId: "767754104"}, - 728412511054212: &Security{ - SecurityId: 728412511054212, - Name: "RTTR", - Description: "Ritter Pharmaceuticals, Inc.", - Symbol: "RTTR", - Precision: 5, - Type: Stock, - AlternateId: "767836109"}, - 728482408273908: &Security{ - SecurityId: 728482408273908, - Name: "RIVR", - Description: "River Valley Bancorp", - Symbol: "RIVR", - Precision: 5, - Type: Stock, - AlternateId: "768475105"}, - 728490801315204: &Security{ - SecurityId: 728490801315204, - Name: "RIV", - Description: "RiverNorth Opportunities Fund, Inc.", - Symbol: "RIV", - Precision: 5, - Type: Stock, - AlternateId: "76881Y109"}, - 728558719947072: &Security{ - SecurityId: 728558719947072, - Name: "RVSB", - Description: "Riverview Bancorp, Inc.", - Symbol: "RVSB", - Precision: 5, - Type: Stock, - AlternateId: "769397100"}, - 728567096192244: &Security{ - SecurityId: 728567096192244, - Name: "RRTS", - Description: "Roadrunner Transportation Systems, Inc.", - Symbol: "RRTS", - Precision: 5, - Type: Stock, - AlternateId: "76973Q105"}, - 730674122396076: &Security{ - SecurityId: 730674122396076, - Name: "RHI", - Description: "Robert Half Intl, Inc.", - Symbol: "RHI", - Precision: 5, - Type: Stock, - AlternateId: "770323103"}, - 730824679861776: &Security{ - SecurityId: 730824679861776, - Name: "RCPI", - Description: "Rock Creek Pharmaceuticals, Inc.", - Symbol: "RCPI", - Precision: 5, - Type: Stock, - AlternateId: "772081204"}, - 730904797498500: &Security{ - SecurityId: 730904797498500, - Name: "FUEL", - Description: "Rocket Fuel, Inc.", - Symbol: "FUEL", - Precision: 5, - Type: Stock, - AlternateId: "773111109"}, - 730922154650244: &Security{ - SecurityId: 730922154650244, - Name: "ROK", - Description: "Rockwell Automation, Inc.", - Symbol: "ROK", - Precision: 5, - Type: Stock, - AlternateId: "773903109"}, - 730987696625508: &Security{ - SecurityId: 730987696625508, - Name: "COL", - Description: "Rockwell Collins, Inc.", - Symbol: "COL", - Precision: 5, - Type: Stock, - AlternateId: "774341101"}, - 730987883062920: &Security{ - SecurityId: 730987883062920, - Name: "RMTI", - Description: "Rockwell Medical, Inc.", - Symbol: "RMTI", - Precision: 5, - Type: Stock, - AlternateId: "774374102"}, - 730991875510080: &Security{ - SecurityId: 730991875510080, - Name: "RCKY", - Description: "Rocky Brands, Inc.", - Symbol: "RCKY", - Precision: 5, - Type: Stock, - AlternateId: "774515100"}, - 731059533801864: &Security{ - SecurityId: 731059533801864, - Name: "RSTI", - Description: "Rofin-Sinar Technologies, Inc.", - Symbol: "RSTI", - Precision: 5, - Type: Stock, - AlternateId: "775043102"}, - 731061478843776: &Security{ - SecurityId: 731061478843776, - Name: "RCI", - Description: "Rogers Communications, Inc.", - Symbol: "RCI", - Precision: 5, - Type: Stock, - AlternateId: "775109200"}, - 731061650117988: &Security{ - SecurityId: 731061650117988, - Name: "ROG", - Description: "Rogers Corp.", - Symbol: "ROG", - Precision: 5, - Type: Stock, - AlternateId: "775133101"}, - 731068177106052: &Security{ - SecurityId: 731068177106052, - Name: "ROKA", - Description: "Roka Bioscience, Inc.", - Symbol: "ROKA", - Precision: 5, - Type: Stock, - AlternateId: "775431109"}, - 731074586520528: &Security{ - SecurityId: 731074586520528, - Name: "ROL", - Description: "Rollins, Inc.", - Symbol: "ROL", - Precision: 5, - Type: Stock, - AlternateId: "775711104"}, - 731151266029848: &Security{ - SecurityId: 731151266029848, - Name: "ROP", - Description: "Roper Technologies, Inc.", - Symbol: "ROP", - Precision: 5, - Type: Stock, - AlternateId: "776696106"}, - 731218448990196: &Security{ - SecurityId: 731218448990196, - Name: "RRMS", - Description: "Rose Rock Midstream L.P.", - Symbol: "RRMS", - Precision: 5, - Type: Stock, - AlternateId: "777149105"}, - 731231736432444: &Security{ - SecurityId: 731231736432444, - Name: "RST", - Description: "Rosetta Stone, Inc.", - Symbol: "RST", - Precision: 5, - Type: Stock, - AlternateId: "777780107"}, - 731299287228588: &Security{ - SecurityId: 731299287228588, - Name: "ROST", - Description: "Ross Stores, Inc.", - Symbol: "ROST", - Precision: 5, - Type: Stock, - AlternateId: "778296103"}, - 731377592606052: &Security{ - SecurityId: 731377592606052, - Name: "RSE", - Description: "Rouse Properties, Inc.", - Symbol: "RSE", - Precision: 5, - Type: Stock, - AlternateId: "779287101"}, - 731379707242632: &Security{ - SecurityId: 731379707242632, - Name: "ROVI", - Description: "Rovi Corp.", - Symbol: "ROVI", - Precision: 5, - Type: Stock, - AlternateId: "779376102"}, - 733489061394420: &Security{ - SecurityId: 733489061394420, - Name: "RBPAA", - Description: "Royal Bancshares of Pennsylvania, Inc.", - Symbol: "RBPAA", - Precision: 5, - Type: Stock, - AlternateId: "780081105"}, - 733489071472008: &Security{ - SecurityId: 733489071472008, - Name: "RY", - Description: "Royal Bank of Canada", - Symbol: "RY", - Precision: 5, - Type: Stock, - AlternateId: "780087102"}, - 733489132219452: &Security{ - SecurityId: 733489132219452, - Name: "RBS-T", - Description: "Royal Bank of Scotland, 7.25% Non-cumul Dollar Preference Shares Series T ADR", - Symbol: "RBS-T", - Precision: 5, - Type: Stock, - AlternateId: "780097713"}, - 733489132222260: &Security{ - SecurityId: 733489132222260, - Name: "RBS-S", - Description: "Royal Bank of Scotland, 6.60% Non-cumul Dollar Preference Shares Series S ADR", - Symbol: "RBS-S", - Precision: 5, - Type: Stock, - AlternateId: "780097739"}, - 733489132223484: &Security{ - SecurityId: 733489132223484, - Name: "RBS-R", - Description: "Royal Bank of Scotland, 6.125% Non-cumul Dollar Preference Shares Series R ADR", - Symbol: "RBS-R", - Precision: 5, - Type: Stock, - AlternateId: "780097747"}, - 733489132228704: &Security{ - SecurityId: 733489132228704, - Name: "RBS-L", - Description: "Royal Bank of Scotland, 5.75% Non-cumul Dollar Preference Shares Series L ADR", - Symbol: "RBS-L", - Precision: 5, - Type: Stock, - AlternateId: "780097788"}, - 733489132264848: &Security{ - SecurityId: 733489132264848, - Name: "RBS-F", - Description: "Royal Bank of Scotland, 7.65% Non-cumul Dollar Preference Shares Series F ADR", - Symbol: "RBS-F", - Precision: 5, - Type: Stock, - AlternateId: "780097804"}, - 733489132274100: &Security{ - SecurityId: 733489132274100, - Name: "RBS-H", - Description: "Royal Bank of Scotland, 7.25% Non-cumul Dollar Preference Shares Series H ADR", - Symbol: "RBS-H", - Precision: 5, - Type: Stock, - AlternateId: "780097879"}, - 733490835068880: &Security{ - SecurityId: 733490835068880, - Name: "YGRO", - Description: "RBC ETN Linked to Yorkville MLP Dist Growth Leaders Liquid PR Index due 7/2034", - Symbol: "YGRO", - Precision: 5, - Type: Stock, - AlternateId: "78011D104"}, - 733493246997564: &Security{ - SecurityId: 733493246997564, - Name: "RDS.B", - Description: "Royal Dutch Shell plc Cl B", - Symbol: "RDS.B", - Precision: 5, - Type: Stock, - AlternateId: "780259107"}, - 733493247044184: &Security{ - SecurityId: 733493247044184, - Name: "RDS.A", - Description: "Royal Dutch Shell plc Cl A", - Symbol: "RDS.A", - Precision: 5, - Type: Stock, - AlternateId: "780259206"}, - 733493425036896: &Security{ - SecurityId: 733493425036896, - Name: "RGLD", - Description: "Royal Gold, Inc.", - Symbol: "RGLD", - Precision: 5, - Type: Stock, - AlternateId: "780287108"}, - 733504082246784: &Security{ - SecurityId: 733504082246784, - Name: "ROYL", - Description: "Royale Energy, Inc.", - Symbol: "ROYL", - Precision: 5, - Type: Stock, - AlternateId: "78074G200"}, - 733506099419088: &Security{ - SecurityId: 733506099419088, - Name: "RGT", - Description: "Royce Global Value Trust, Inc.", - Symbol: "RGT", - Precision: 5, - Type: Stock, - AlternateId: "78081T104"}, - 733508227492596: &Security{ - SecurityId: 733508227492596, - Name: "RVT", - Description: "Royce Value Trust, Inc.", - Symbol: "RVT", - Precision: 5, - Type: Stock, - AlternateId: "780910105"}, - 733508229172140: &Security{ - SecurityId: 733508229172140, - Name: "RBYCF", - Description: "Rubicon Minerals Corp.", - Symbol: "RBYCF", - Precision: 5, - Type: Stock, - AlternateId: "780911103"}, - 733508235890640: &Security{ - SecurityId: 733508235890640, - Name: "RMT", - Description: "Royce Micro-Cap Trust, Inc.", - Symbol: "RMT", - Precision: 5, - Type: Stock, - AlternateId: "780915104"}, - 733569289932168: &Security{ - SecurityId: 733569289932168, - Name: "RUBI", - Description: "Rubicon Project, Inc. (The)", - Symbol: "RUBI", - Precision: 5, - Type: Stock, - AlternateId: "78112V102"}, - 733569604020288: &Security{ - SecurityId: 733569604020288, - Name: "RT", - Description: "Ruby Tuesday, Inc.", - Symbol: "RT", - Precision: 5, - Type: Stock, - AlternateId: "781182100"}, - 733571414646624: &Security{ - SecurityId: 733571414646624, - Name: "RKUS", - Description: "Ruckus Wireless, Inc.", - Symbol: "RKUS", - Precision: 5, - Type: Stock, - AlternateId: "781220108"}, - 733571716977324: &Security{ - SecurityId: 733571716977324, - Name: "RTEC", - Description: "Rudolph Technologies, Inc.", - Symbol: "RTEC", - Precision: 5, - Type: Stock, - AlternateId: "781270103"}, - 733584606397380: &Security{ - SecurityId: 733584606397380, - Name: "RUSHA", - Description: "Rush Enterprises, Inc. Cl A", - Symbol: "RUSHA", - Precision: 5, - Type: Stock, - AlternateId: "781846209"}, - 733584606444000: &Security{ - SecurityId: 733584606444000, - Name: "RUSHB", - Description: "Rush Enterprises, Inc. Cl B", - Symbol: "RUSHB", - Precision: 5, - Type: Stock, - AlternateId: "781846308"}, - 733730383582596: &Security{ - SecurityId: 733730383582596, - Name: "RUTH", - Description: "Ruth's Hospitality Group, Inc.", - Symbol: "RUTH", - Precision: 5, - Type: Stock, - AlternateId: "783332109"}, - 733734809370720: &Security{ - SecurityId: 733734809370720, - Name: "R", - Description: "Ryder System, Inc.", - Symbol: "R", - Precision: 5, - Type: Stock, - AlternateId: "783549108"}, - 733734908467992: &Security{ - SecurityId: 733734908467992, - Name: "RSP", - Description: "Guggenheim S&P 500 Equal Weight ETF", - Symbol: "RSP", - Precision: 5, - Type: Stock, - AlternateId: "78355W106"}, - 733734908514612: &Security{ - SecurityId: 733734908514612, - Name: "XLG", - Description: "Guggenheim Russell Top 50 Mega Cap ETF", - Symbol: "XLG", - Precision: 5, - Type: Stock, - AlternateId: "78355W205"}, - 733734908561232: &Security{ - SecurityId: 733734908561232, - Name: "RPV", - Description: "Guggenheim S&P 500 Pure Value ETF", - Symbol: "RPV", - Precision: 5, - Type: Stock, - AlternateId: "78355W304"}, - 733734908607852: &Security{ - SecurityId: 733734908607852, - Name: "RPG", - Description: "Guggenheim S&P 500 Pure Growth ETF", - Symbol: "RPG", - Precision: 5, - Type: Stock, - AlternateId: "78355W403"}, - 733734908618328: &Security{ - SecurityId: 733734908618328, - Name: "EWRE", - Description: "Guggenheim S&P 500 Equal Weight Real Estate ETF", - Symbol: "EWRE", - Precision: 5, - Type: Stock, - AlternateId: "78355W486"}, - 733734908654472: &Security{ - SecurityId: 733734908654472, - Name: "RFV", - Description: "Guggenheim S&P MidCap 400 Pure Value ETF", - Symbol: "RFV", - Precision: 5, - Type: Stock, - AlternateId: "78355W502"}, - 733734908658504: &Security{ - SecurityId: 733734908658504, - Name: "EWEM", - Description: "Guggenheim MSCI Emerging Markets Equal Country Weight ETF", - Symbol: "EWEM", - Precision: 5, - Type: Stock, - AlternateId: "78355W536"}, - 733734908663724: &Security{ - SecurityId: 733734908663724, - Name: "EWRM", - Description: "Guggenheim Russell Midcap Equal Weight ETF", - Symbol: "EWRM", - Precision: 5, - Type: Stock, - AlternateId: "78355W577"}, - 733734908664948: &Security{ - SecurityId: 733734908664948, - Name: "EWRS", - Description: "Guggenheim Russell 2000 Equal Weight ETF", - Symbol: "EWRS", - Precision: 5, - Type: Stock, - AlternateId: "78355W585"}, - 733734908666172: &Security{ - SecurityId: 733734908666172, - Name: "EWRI", - Description: "Guggenheim Russell 1000 Equal Weight ETF", - Symbol: "EWRI", - Precision: 5, - Type: Stock, - AlternateId: "78355W593"}, - 733734908701092: &Security{ - SecurityId: 733734908701092, - Name: "RFG", - Description: "Guggenheim S&P MidCap 400 Pure Growth ETF", - Symbol: "RFG", - Precision: 5, - Type: Stock, - AlternateId: "78355W601"}, - 733734908747712: &Security{ - SecurityId: 733734908747712, - Name: "RZV", - Description: "Guggenheim S&P SmallCap 600 Pure Value ETF", - Symbol: "RZV", - Precision: 5, - Type: Stock, - AlternateId: "78355W700"}, - 733734908759412: &Security{ - SecurityId: 733734908759412, - Name: "RYU", - Description: "Guggenheim S&P 500 Equal Weight Utilities ETF", - Symbol: "RYU", - Precision: 5, - Type: Stock, - AlternateId: "78355W791"}, - 733734908794692: &Security{ - SecurityId: 733734908794692, - Name: "RZG", - Description: "Guggenheim S&P SmallCap 600 Pure Growth ETF", - Symbol: "RZG", - Precision: 5, - Type: Stock, - AlternateId: "78355W809"}, - 733734908795916: &Security{ - SecurityId: 733734908795916, - Name: "RYT", - Description: "Guggenheim S&P 500 Equal Weight Technology ETF", - Symbol: "RYT", - Precision: 5, - Type: Stock, - AlternateId: "78355W817"}, - 733734908797140: &Security{ - SecurityId: 733734908797140, - Name: "RTM", - Description: "Guggenheim S&P 500 Equal Weight Materials ETF", - Symbol: "RTM", - Precision: 5, - Type: Stock, - AlternateId: "78355W825"}, - 733734908798364: &Security{ - SecurityId: 733734908798364, - Name: "RGI", - Description: "Guggenheim S&P 500 Equal Weight Industrial ETF", - Symbol: "RGI", - Precision: 5, - Type: Stock, - AlternateId: "78355W833"}, - 733734908799588: &Security{ - SecurityId: 733734908799588, - Name: "RYH", - Description: "Guggenheim S&P 500 Equal Weight Health Care ETF", - Symbol: "RYH", - Precision: 5, - Type: Stock, - AlternateId: "78355W841"}, - 733734908801136: &Security{ - SecurityId: 733734908801136, - Name: "RYF", - Description: "Guggenheim S&P 500 Equal Weight Financial ETF", - Symbol: "RYF", - Precision: 5, - Type: Stock, - AlternateId: "78355W858"}, - 733734908802360: &Security{ - SecurityId: 733734908802360, - Name: "RYE", - Description: "Guggenheim S&P 500 Equal Weight Energy ETF", - Symbol: "RYE", - Precision: 5, - Type: Stock, - AlternateId: "78355W866"}, - 733734908803584: &Security{ - SecurityId: 733734908803584, - Name: "RHS", - Description: "Guggenheim S&P Equal Weight Consumer Staples ETF", - Symbol: "RHS", - Precision: 5, - Type: Stock, - AlternateId: "78355W874"}, - 733734908804808: &Security{ - SecurityId: 733734908804808, - Name: "RCD", - Description: "Guggenheim S&P 500 Equal Weight Consumer Discretionary ETF", - Symbol: "RCD", - Precision: 5, - Type: Stock, - AlternateId: "78355W882"}, - 733739215003344: &Security{ - SecurityId: 733739215003344, - Name: "RYI", - Description: "Ryerson Holding Corp.", - Symbol: "RYI", - Precision: 5, - Type: Stock, - AlternateId: "783754104"}, - 733739377926204: &Security{ - SecurityId: 733739377926204, - Name: "RHP", - Description: "Ryman Hospitality Properties, Inc.", - Symbol: "RHP", - Precision: 5, - Type: Stock, - AlternateId: "78377T107"}, - 733741400183652: &Security{ - SecurityId: 733741400183652, - Name: "STBA", - Description: "S&T Bancorp, Inc.", - Symbol: "STBA", - Precision: 5, - Type: Stock, - AlternateId: "783859101"}, - 733741598378520: &Security{ - SecurityId: 733741598378520, - Name: "SBAC", - Description: "SBA Communications Corp.", - Symbol: "SBAC", - Precision: 5, - Type: Stock, - AlternateId: "78388J106"}, - 733802538206196: &Security{ - SecurityId: 733802538206196, - Name: "SBFG", - Description: "SB Financial Group", - Symbol: "SBFG", - Precision: 5, - Type: Stock, - AlternateId: "78408D105"}, - 733802538252816: &Security{ - SecurityId: 733802538252816, - Name: "SBFGP", - Description: "SB Financial Group, 6.50% Dep Shares Non-Cumul Conv Perp Preferred Shares Ser A", - Symbol: "SBFGP", - Precision: 5, - Type: Stock, - AlternateId: "78408D204"}, - 733804281647532: &Security{ - SecurityId: 733804281647532, - Name: "SEIC", - Description: "SEI Investments Co.", - Symbol: "SEIC", - Precision: 5, - Type: Stock, - AlternateId: "784117103"}, - 733804646217516: &Security{ - SecurityId: 733804646217516, - Name: "SFXE", - Description: "SFX Entertainment, Inc.", - Symbol: "SFXE", - Precision: 5, - Type: Stock, - AlternateId: "784178303"}, - 733806740605392: &Security{ - SecurityId: 733806740605392, - Name: "SIFI", - Description: "SI Financial Group, Inc.", - Symbol: "SIFI", - Precision: 5, - Type: Stock, - AlternateId: "78425V104"}, - 733808571386832: &Security{ - SecurityId: 733808571386832, - Name: "SJW", - Description: "SJW Corp.", - Symbol: "SJW", - Precision: 5, - Type: Stock, - AlternateId: "784305104"}, - 733810781761632: &Security{ - SecurityId: 733810781761632, - Name: "SKM", - Description: "SK Telecom Co. Ltd ADR", - Symbol: "SKM", - Precision: 5, - Type: Stock, - AlternateId: "78440P108"}, - 733810795198308: &Security{ - SecurityId: 733810795198308, - Name: "SLG", - Description: "SL Green Realty Corp.", - Symbol: "SLG", - Precision: 5, - Type: Stock, - AlternateId: "78440X101"}, - 733810805276184: &Security{ - SecurityId: 733810805276184, - Name: "SLI", - Description: "SL Industries, Inc.", - Symbol: "SLI", - Precision: 5, - Type: Stock, - AlternateId: "784413106"}, - 733810902693912: &Security{ - SecurityId: 733810902693912, - Name: "SLM", - Description: "SLM Corp. (Sallie Mae)", - Symbol: "SLM", - Precision: 5, - Type: Stock, - AlternateId: "78442P106"}, - 733813193689920: &Security{ - SecurityId: 733813193689920, - Name: "SM", - Description: "SM Energy Company", - Symbol: "SM", - Precision: 5, - Type: Stock, - AlternateId: "78454L100"}, - */ - 733815239462316: &Security{ - SecurityId: 733815239462316, - Name: "SPY", - Description: "SPDR S&P 500 ETF Trust", - Symbol: "SPY", - Precision: 5, - Type: Stock, - AlternateId: "78462F103"}, - /* - 733815311685948: &Security{ - SecurityId: 733815311685948, - Name: "SPSC", - Description: "SPS Commerce, Inc.", - Symbol: "SPSC", - Precision: 5, - Type: Stock, - AlternateId: "78463M107"}, - 733815326802492: &Security{ - SecurityId: 733815326802492, - Name: "GLD", - Description: "SPDR Gold Shares", - Symbol: "GLD", - Precision: 5, - Type: Stock, - AlternateId: "78463V107"}, - 733815330161580: &Security{ - SecurityId: 733815330161580, - Name: "FEU", - Description: "SPDR STOXX Europe 50 ETF", - Symbol: "FEU", - Precision: 5, - Type: Stock, - AlternateId: "78463X103"}, - 733815330168024: &Security{ - SecurityId: 733815330168024, - Name: "NANR", - Description: "SPDR S&P North American Natural Resources ETF", - Symbol: "NANR", - Precision: 5, - Type: Stock, - AlternateId: "78463X152"}, - 733815330169248: &Security{ - SecurityId: 733815330169248, - Name: "HDWX", - Description: "SPDR S&P International Dividend Currency Hedged ETF", - Symbol: "HDWX", - Precision: 5, - Type: Stock, - AlternateId: "78463X160"}, - 733815330170832: &Security{ - SecurityId: 733815330170832, - Name: "HREX", - Description: "SPDR MSCI International Real Estate Currency Hedged ETF", - Symbol: "HREX", - Precision: 5, - Type: Stock, - AlternateId: "78463X178"}, - 733815330172056: &Security{ - SecurityId: 733815330172056, - Name: "HFEZ", - Description: "SPDR EURO STOXX 50 Currency Hedged ETF", - Symbol: "HFEZ", - Precision: 5, - Type: Stock, - AlternateId: "78463X186"}, - 733815330173280: &Security{ - SecurityId: 733815330173280, - Name: "LOWC", - Description: "SPDR MSCI ACWI Low Carbon Target ETF", - Symbol: "LOWC", - Precision: 5, - Type: Stock, - AlternateId: "78463X194"}, - 733815330208200: &Security{ - SecurityId: 733815330208200, - Name: "FEZ", - Description: "SPDR Euro STOXX 50 ETF", - Symbol: "FEZ", - Precision: 5, - Type: Stock, - AlternateId: "78463X202"}, - 733815330209424: &Security{ - SecurityId: 733815330209424, - Name: "XINA", - Description: "SPDR MSCI China A Shares IMI ETF", - Symbol: "XINA", - Precision: 5, - Type: Stock, - AlternateId: "78463X210"}, - 733815330211008: &Security{ - SecurityId: 733815330211008, - Name: "QTWN", - Description: "SPDR MSCI Taiwan Quality Mix", - Symbol: "QTWN", - Precision: 5, - Type: Stock, - AlternateId: "78463X228"}, - 733815330217452: &Security{ - SecurityId: 733815330217452, - Name: "QKOR", - Description: "SPDR MSCI South Korea Quality Mix ETF", - Symbol: "QKOR", - Precision: 5, - Type: Stock, - AlternateId: "78463X277"}, - 733815330219900: &Security{ - SecurityId: 733815330219900, - Name: "QMEX", - Description: "SPDR MSCI Mexico Quality Mix ETF", - Symbol: "QMEX", - Precision: 5, - Type: Stock, - AlternateId: "78463X293"}, - 733815330254820: &Security{ - SecurityId: 733815330254820, - Name: "GMF", - Description: "SPDR S&P Emerging Asia Pacific ETF", - Symbol: "GMF", - Precision: 5, - Type: Stock, - AlternateId: "78463X301"}, - 733815330258852: &Security{ - SecurityId: 733815330258852, - Name: "QGBR", - Description: "SPDR MSCI United Kingdom Quality Mix ETF", - Symbol: "QGBR", - Precision: 5, - Type: Stock, - AlternateId: "78463X335"}, - 733815330260076: &Security{ - SecurityId: 733815330260076, - Name: "QESP", - Description: "SPDR MSCI Spain Quality Mix ETF", - Symbol: "QESP", - Precision: 5, - Type: Stock, - AlternateId: "78463X343"}, - 733815330261264: &Security{ - SecurityId: 733815330261264, - Name: "QDEU", - Description: "SPDR MSCI Germany Quality Mix ETF", - Symbol: "QDEU", - Precision: 5, - Type: Stock, - AlternateId: "78463X350"}, - 733815330262848: &Security{ - SecurityId: 733815330262848, - Name: "QJPN", - Description: "SPDR MSCI Japan Quality Mix ETF", - Symbol: "QJPN", - Precision: 5, - Type: Stock, - AlternateId: "78463X368"}, - 733815330264072: &Security{ - SecurityId: 733815330264072, - Name: "QCAN", - Description: "SPDR MSCI Canada Quality Mix ETF", - Symbol: "QCAN", - Precision: 5, - Type: Stock, - AlternateId: "78463X376"}, - 733815330265296: &Security{ - SecurityId: 733815330265296, - Name: "QAUS", - Description: "SPDR MSCI Australia Quality Mix ETF", - Symbol: "QAUS", - Precision: 5, - Type: Stock, - AlternateId: "78463X384"}, - 733815330266520: &Security{ - SecurityId: 733815330266520, - Name: "SMEZ", - Description: "SPDR Euro STOXX Small Cap ETF", - Symbol: "SMEZ", - Precision: 5, - Type: Stock, - AlternateId: "78463X392"}, - 733815330301440: &Security{ - SecurityId: 733815330301440, - Name: "GXC", - Description: "SPDR S&P China ETF", - Symbol: "GXC", - Precision: 5, - Type: Stock, - AlternateId: "78463X400"}, - 733815330303024: &Security{ - SecurityId: 733815330303024, - Name: "QWLD", - Description: "SPDR MSCI World Quality Mix ETF", - Symbol: "QWLD", - Precision: 5, - Type: Stock, - AlternateId: "78463X418"}, - 733815330304248: &Security{ - SecurityId: 733815330304248, - Name: "QEMM", - Description: "SPDR MSCI Emerging Markets Quality Mix ETF", - Symbol: "QEMM", - Precision: 5, - Type: Stock, - AlternateId: "78463X426"}, - 733815330305472: &Security{ - SecurityId: 733815330305472, - Name: "QEFA", - Description: "SPDR MSCI EAFE Quality Mix ETF", - Symbol: "QEFA", - Precision: 5, - Type: Stock, - AlternateId: "78463X434"}, - 733815330306696: &Security{ - SecurityId: 733815330306696, - Name: "EMBB", - Description: "SPDR MSCI EM Beyond BRIC ETF", - Symbol: "EMBB", - Precision: 5, - Type: Stock, - AlternateId: "78463X442"}, - 733815330308244: &Security{ - SecurityId: 733815330308244, - Name: "WDIV", - Description: "SPDR S&P Global Dividend ETF", - Symbol: "WDIV", - Precision: 5, - Type: Stock, - AlternateId: "78463X459"}, - 733815330309468: &Security{ - SecurityId: 733815330309468, - Name: "EMFT", - Description: "SPDR MSCI EM 50 ETF", - Symbol: "EMFT", - Precision: 5, - Type: Stock, - AlternateId: "78463X467"}, - 733815330310692: &Security{ - SecurityId: 733815330310692, - Name: "ACIM", - Description: "SPDR MSCI ACWI IMI ETF", - Symbol: "ACIM", - Precision: 5, - Type: Stock, - AlternateId: "78463X475"}, - 733815330348420: &Security{ - SecurityId: 733815330348420, - Name: "GMM", - Description: "SPDR S&P Emerging Markets ETF", - Symbol: "GMM", - Precision: 5, - Type: Stock, - AlternateId: "78463X509"}, - 733815330352092: &Security{ - SecurityId: 733815330352092, - Name: "EDIV", - Description: "SPDR S&P Emerging Markets Dividend ETF", - Symbol: "EDIV", - Precision: 5, - Type: Stock, - AlternateId: "78463X533"}, - 733815330353316: &Security{ - SecurityId: 733815330353316, - Name: "GNR", - Description: "SPDR S&P Global Natural Resources ETF", - Symbol: "GNR", - Precision: 5, - Type: Stock, - AlternateId: "78463X541"}, - 733815330354864: &Security{ - SecurityId: 733815330354864, - Name: "RBL", - Description: "SPDR S&P Russia ETF", - Symbol: "RBL", - Precision: 5, - Type: Stock, - AlternateId: "78463X558"}, - 733815330398712: &Security{ - SecurityId: 733815330398712, - Name: "IPU", - Description: "SPDR S&P International Utilities Sector ETF", - Symbol: "IPU", - Precision: 5, - Type: Stock, - AlternateId: "78463X632"}, - 733815330399936: &Security{ - SecurityId: 733815330399936, - Name: "IST", - Description: "SPDR S&P International Telecommunications Sector ETF", - Symbol: "IST", - Precision: 5, - Type: Stock, - AlternateId: "78463X640"}, - 733815330401484: &Security{ - SecurityId: 733815330401484, - Name: "IPK", - Description: "SPDR S&P International Technology Sector ETF", - Symbol: "IPK", - Precision: 5, - Type: Stock, - AlternateId: "78463X657"}, - 733815330402708: &Security{ - SecurityId: 733815330402708, - Name: "IRV", - Description: "SPDR S&P International Materials Sector ETF", - Symbol: "IRV", - Precision: 5, - Type: Stock, - AlternateId: "78463X665"}, - 733815330403932: &Security{ - SecurityId: 733815330403932, - Name: "IPN", - Description: "SPDR S&P International Industrial Sector ETF", - Symbol: "IPN", - Precision: 5, - Type: Stock, - AlternateId: "78463X673"}, - 733815330405156: &Security{ - SecurityId: 733815330405156, - Name: "IRY", - Description: "SPDR S&P International Health Care Sector ETF", - Symbol: "IRY", - Precision: 5, - Type: Stock, - AlternateId: "78463X681"}, - 733815330406740: &Security{ - SecurityId: 733815330406740, - Name: "IPF", - Description: "SPDR S&P International Financial Sector ETF", - Symbol: "IPF", - Precision: 5, - Type: Stock, - AlternateId: "78463X699"}, - 733815330441660: &Security{ - SecurityId: 733815330441660, - Name: "GML", - Description: "SPDR S&P Emerging Latin America ETF", - Symbol: "GML", - Precision: 5, - Type: Stock, - AlternateId: "78463X707"}, - 733815330442884: &Security{ - SecurityId: 733815330442884, - Name: "IPW", - Description: "SPDR S&P International Energy Sector ETF", - Symbol: "IPW", - Precision: 5, - Type: Stock, - AlternateId: "78463X715"}, - 733815330444108: &Security{ - SecurityId: 733815330444108, - Name: "IPS", - Description: "SPDR S&P International Consumer Staples Sector ETF", - Symbol: "IPS", - Precision: 5, - Type: Stock, - AlternateId: "78463X723"}, - 733815330445332: &Security{ - SecurityId: 733815330445332, - Name: "IPD", - Description: "SPDR S&P International Consumer Discretionary Sector ETF", - Symbol: "IPD", - Precision: 5, - Type: Stock, - AlternateId: "78463X731"}, - 733815330446916: &Security{ - SecurityId: 733815330446916, - Name: "RWO", - Description: "SPDR Dow Jones Global Real Estate ETF", - Symbol: "RWO", - Precision: 5, - Type: Stock, - AlternateId: "78463X749"}, - 733815330448104: &Security{ - SecurityId: 733815330448104, - Name: "EWX", - Description: "SPDR S&P Emerging Markets Small Cap ETF", - Symbol: "EWX", - Precision: 5, - Type: Stock, - AlternateId: "78463X756"}, - 733815330449328: &Security{ - SecurityId: 733815330449328, - Name: "MDD", - Description: "SPDR S&P International Mid Cap ETF", - Symbol: "MDD", - Precision: 5, - Type: Stock, - AlternateId: "78463X764"}, - 733815330450552: &Security{ - SecurityId: 733815330450552, - Name: "DWX", - Description: "SPDR S&P Intl Dividend ETF", - Symbol: "DWX", - Precision: 5, - Type: Stock, - AlternateId: "78463X772"}, - 733815330453360: &Security{ - SecurityId: 733815330453360, - Name: "BIK", - Description: "SPDR S&P BRIC 40 ETF", - Symbol: "BIK", - Precision: 5, - Type: Stock, - AlternateId: "78463X798"}, - 733815330488280: &Security{ - SecurityId: 733815330488280, - Name: "GAF", - Description: "SPDR S&P Emerging Middle East & Africa ETF", - Symbol: "GAF", - Precision: 5, - Type: Stock, - AlternateId: "78463X806"}, - 733815330490728: &Security{ - SecurityId: 733815330490728, - Name: "JSC", - Description: "SPDR Russell/Nomura Small Cap Japan ETF", - Symbol: "JSC", - Precision: 5, - Type: Stock, - AlternateId: "78463X822"}, - 733815330491952: &Security{ - SecurityId: 733815330491952, - Name: "JPP", - Description: "SPDR Russell/Nomura Prime Japan ETF", - Symbol: "JPP", - Precision: 5, - Type: Stock, - AlternateId: "78463X830"}, - 733815330493536: &Security{ - SecurityId: 733815330493536, - Name: "CWI", - Description: "SPDR MSCI AWCI ex-US ETF", - Symbol: "CWI", - Precision: 5, - Type: Stock, - AlternateId: "78463X848"}, - 733815330494724: &Security{ - SecurityId: 733815330494724, - Name: "GII", - Description: "SPDR S&P Global Infrastructure ETF", - Symbol: "GII", - Precision: 5, - Type: Stock, - AlternateId: "78463X855"}, - 733815330495948: &Security{ - SecurityId: 733815330495948, - Name: "RWX", - Description: "SPDR Dow Jones International Real Estate ETF", - Symbol: "RWX", - Precision: 5, - Type: Stock, - AlternateId: "78463X863"}, - 733815330497172: &Security{ - SecurityId: 733815330497172, - Name: "GWX", - Description: "SPDR S&P Intl Small Cap ETF", - Symbol: "GWX", - Precision: 5, - Type: Stock, - AlternateId: "78463X871"}, - 733815330498756: &Security{ - SecurityId: 733815330498756, - Name: "GWL", - Description: "SPDR S&P World ex-US ETF", - Symbol: "GWL", - Precision: 5, - Type: Stock, - AlternateId: "78463X889"}, - 733815283132368: &Security{ - SecurityId: 733815283132368, - Name: "SPXC", - Description: "SPX Corp.", - Symbol: "SPXC", - Precision: 5, - Type: Stock, - AlternateId: "784635104"}, - 733815351996552: &Security{ - SecurityId: 733815351996552, - Name: "MTK", - Description: "SPDR Morgan Stanley Technology ETF", - Symbol: "MTK", - Precision: 5, - Type: Stock, - AlternateId: "78464A102"}, - 733815351999360: &Security{ - SecurityId: 733815351999360, - Name: "VLU", - Description: "SPDR S&P 1500 Value Tilt ETF", - Symbol: "VLU", - Precision: 5, - Type: Stock, - AlternateId: "78464A128"}, - 733815352001808: &Security{ - SecurityId: 733815352001808, - Name: "CBND", - Description: "SPDR Barclays Issuer Scored Corporate Bond ETF", - Symbol: "CBND", - Precision: 5, - Type: Stock, - AlternateId: "78464A144"}, - 733815352002996: &Security{ - SecurityId: 733815352002996, - Name: "IBND", - Description: "SPDR Barclays International Corporate Bond ETF", - Symbol: "IBND", - Precision: 5, - Type: Stock, - AlternateId: "78464A151"}, - 733815352043172: &Security{ - SecurityId: 733815352043172, - Name: "SLYG", - Description: "SPDR S&P 600 Small Cap Growth ETF", - Symbol: "SLYG", - Precision: 5, - Type: Stock, - AlternateId: "78464A201"}, - 733815352052424: &Security{ - SecurityId: 733815352052424, - Name: "BABS", - Description: "SPDR Nuveen Barclays Build America Bond ETF", - Symbol: "BABS", - Precision: 5, - Type: Stock, - AlternateId: "78464A276"}, - 733815352053648: &Security{ - SecurityId: 733815352053648, - Name: "HYMB", - Description: "SPDR Nuveen S&P High Yield Municipal Bond ETF", - Symbol: "HYMB", - Precision: 5, - Type: Stock, - AlternateId: "78464A284"}, - 733815352054872: &Security{ - SecurityId: 733815352054872, - Name: "PSK", - Description: "SPDR Wells Fargo Preferred Stock ETF", - Symbol: "PSK", - Precision: 5, - Type: Stock, - AlternateId: "78464A292"}, - 733815352089792: &Security{ - SecurityId: 733815352089792, - Name: "SLYV", - Description: "SPDR S&P 600 Small Cap Value ETF", - Symbol: "SLYV", - Precision: 5, - Type: Stock, - AlternateId: "78464A300"}, - 733815352093824: &Security{ - SecurityId: 733815352093824, - Name: "BWZ", - Description: "SPDR Barclays Short Term International Treasury Bond ETF", - Symbol: "BWZ", - Precision: 5, - Type: Stock, - AlternateId: "78464A334"}, - 733815352096596: &Security{ - SecurityId: 733815352096596, - Name: "CWB", - Description: "SPDR Barclays Convertible Securities ETF", - Symbol: "CWB", - Precision: 5, - Type: Stock, - AlternateId: "78464A359"}, - 733815352097820: &Security{ - SecurityId: 733815352097820, - Name: "LWC", - Description: "SPDR Barclays Long Term Corporate Bond ETF", - Symbol: "LWC", - Precision: 5, - Type: Stock, - AlternateId: "78464A367"}, - 733815352099044: &Security{ - SecurityId: 733815352099044, - Name: "ITR", - Description: "SPDR Barclays Intermediate Term Corporate Bond ETF", - Symbol: "ITR", - Precision: 5, - Type: Stock, - AlternateId: "78464A375"}, - 733815352100268: &Security{ - SecurityId: 733815352100268, - Name: "MBG", - Description: "SPDR Barclays Mortgage Backed Bond ETF", - Symbol: "MBG", - Precision: 5, - Type: Stock, - AlternateId: "78464A383"}, - 733815352101492: &Security{ - SecurityId: 733815352101492, - Name: "EBND", - Description: "SPDR Barclays Emerging Markets Local Bond ETF", - Symbol: "EBND", - Precision: 5, - Type: Stock, - AlternateId: "78464A391"}, - 733815352136772: &Security{ - SecurityId: 733815352136772, - Name: "SPYG", - Description: "SPDR S&P 500 Growth ETF", - Symbol: "SPYG", - Precision: 5, - Type: Stock, - AlternateId: "78464A409"}, - 733815352137996: &Security{ - SecurityId: 733815352137996, - Name: "JNK", - Description: "SPDR Barclays High Yield Bond ETF", - Symbol: "JNK", - Precision: 5, - Type: Stock, - AlternateId: "78464A417"}, - 733815352139220: &Security{ - SecurityId: 733815352139220, - Name: "SHM", - Description: "SPDR Nuveen Barclays Short Term Municipal Bond ETF", - Symbol: "SHM", - Precision: 5, - Type: Stock, - AlternateId: "78464A425"}, - 733815352140444: &Security{ - SecurityId: 733815352140444, - Name: "INY", - Description: "SPDR Nuveen Barclays New York Municipal Bond ETF", - Symbol: "INY", - Precision: 5, - Type: Stock, - AlternateId: "78464A433"}, - 733815352141668: &Security{ - SecurityId: 733815352141668, - Name: "CXA", - Description: "SPDR Nuveen Barclays California Municipal Bond ETF", - Symbol: "CXA", - Precision: 5, - Type: Stock, - AlternateId: "78464A441"}, - 733815352143216: &Security{ - SecurityId: 733815352143216, - Name: "TFI", - Description: "SPDR Nuveen Barclays Municipal Bond ETF", - Symbol: "TFI", - Precision: 5, - Type: Stock, - AlternateId: "78464A458"}, - 733815352145664: &Security{ - SecurityId: 733815352145664, - Name: "SCPB", - Description: "SPDR Barclays Short Term Corporate Bond ETF", - Symbol: "SCPB", - Precision: 5, - Type: Stock, - AlternateId: "78464A474"}, - 733815352148112: &Security{ - SecurityId: 733815352148112, - Name: "WIP", - Description: "SPDR DB International Government Inflation-Protected Bond ETF", - Symbol: "WIP", - Precision: 5, - Type: Stock, - AlternateId: "78464A490"}, - 733815352183392: &Security{ - SecurityId: 733815352183392, - Name: "SPYV", - Description: "SPDR S&P 500 Value ETF", - Symbol: "SPYV", - Precision: 5, - Type: Stock, - AlternateId: "78464A508"}, - 733815352184616: &Security{ - SecurityId: 733815352184616, - Name: "BWX", - Description: "SPDR Barclays International Treasury Bond ETF", - Symbol: "BWX", - Precision: 5, - Type: Stock, - AlternateId: "78464A516"}, - 733815352187064: &Security{ - SecurityId: 733815352187064, - Name: "XTN", - Description: "SPDR S&P Transportation ETF", - Symbol: "XTN", - Precision: 5, - Type: Stock, - AlternateId: "78464A532"}, - 733815352188288: &Security{ - SecurityId: 733815352188288, - Name: "XTL", - Description: "SPDR S&P Telecom ETF", - Symbol: "XTL", - Precision: 5, - Type: Stock, - AlternateId: "78464A540"}, - 733815352192284: &Security{ - SecurityId: 733815352192284, - Name: "XHS", - Description: "SPDR S&P Health Care Services ETF", - Symbol: "XHS", - Precision: 5, - Type: Stock, - AlternateId: "78464A573"}, - 733815352193508: &Security{ - SecurityId: 733815352193508, - Name: "XHE", - Description: "SPDR S&P Health Care Equipment ETF", - Symbol: "XHE", - Precision: 5, - Type: Stock, - AlternateId: "78464A581"}, - 733815352195092: &Security{ - SecurityId: 733815352195092, - Name: "XSW", - Description: "SPDR S&P Software & Services ETF", - Symbol: "XSW", - Precision: 5, - Type: Stock, - AlternateId: "78464A599"}, - 733815352230012: &Security{ - SecurityId: 733815352230012, - Name: "RWR", - Description: "SPDR DJ Wilshire REIT ETF", - Symbol: "RWR", - Precision: 5, - Type: Stock, - AlternateId: "78464A607"}, - 733815352233684: &Security{ - SecurityId: 733815352233684, - Name: "XAR", - Description: "SPDR S&P Aerospace & Defense ETF", - Symbol: "XAR", - Precision: 5, - Type: Stock, - AlternateId: "78464A631"}, - 733815352235268: &Security{ - SecurityId: 733815352235268, - Name: "BNDS", - Description: "SPDR Barclays Aggregate Bond ETF", - Symbol: "BNDS", - Precision: 5, - Type: Stock, - AlternateId: "78464A649"}, - 733815352236456: &Security{ - SecurityId: 733815352236456, - Name: "IPE", - Description: "SPDR Barclays TIPS ETF", - Symbol: "IPE", - Precision: 5, - Type: Stock, - AlternateId: "78464A656"}, - 733815352237680: &Security{ - SecurityId: 733815352237680, - Name: "TLO", - Description: "SPDR Barclays Long Term Treasury ETF", - Symbol: "TLO", - Precision: 5, - Type: Stock, - AlternateId: "78464A664"}, - 733815352238904: &Security{ - SecurityId: 733815352238904, - Name: "ITE", - Description: "SPDR Barclays Capital Intermediate Term Treasury ETF", - Symbol: "ITE", - Precision: 5, - Type: Stock, - AlternateId: "78464A672"}, - 733815352240128: &Security{ - SecurityId: 733815352240128, - Name: "BIL", - Description: "SPDR Barclays 1-3 Month T-Bill ETF", - Symbol: "BIL", - Precision: 5, - Type: Stock, - AlternateId: "78464A680"}, - 733815352241712: &Security{ - SecurityId: 733815352241712, - Name: "KRE", - Description: "SPDR S&P Regional Banking ETF", - Symbol: "KRE", - Precision: 5, - Type: Stock, - AlternateId: "78464A698"}, - 733815352276632: &Security{ - SecurityId: 733815352276632, - Name: "DGT", - Description: "SPDR Dow Jones Global Titans ETF", - Symbol: "DGT", - Precision: 5, - Type: Stock, - AlternateId: "78464A706"}, - 733815352277856: &Security{ - SecurityId: 733815352277856, - Name: "XRT", - Description: "SPDR S&P Retail ETF", - Symbol: "XRT", - Precision: 5, - Type: Stock, - AlternateId: "78464A714"}, - 733815352279080: &Security{ - SecurityId: 733815352279080, - Name: "XPH", - Description: "SPDR S&P Pharmaceuticals ETF", - Symbol: "XPH", - Precision: 5, - Type: Stock, - AlternateId: "78464A722"}, - 733815352280304: &Security{ - SecurityId: 733815352280304, - Name: "XOP", - Description: "SPDR S&P Oil & Gas Exploration & Production ETF", - Symbol: "XOP", - Precision: 5, - Type: Stock, - AlternateId: "78464A730"}, - 733815352281888: &Security{ - SecurityId: 733815352281888, - Name: "XES", - Description: "SPDR S&P Oil & Gas Equipment & Services ETF", - Symbol: "XES", - Precision: 5, - Type: Stock, - AlternateId: "78464A748"}, - 733815352283076: &Security{ - SecurityId: 733815352283076, - Name: "XME", - Description: "SPDR S&P Metals & Mining ETF", - Symbol: "XME", - Precision: 5, - Type: Stock, - AlternateId: "78464A755"}, - 733815352284300: &Security{ - SecurityId: 733815352284300, - Name: "SDY", - Description: "SPDR S&P Dividend ETF", - Symbol: "SDY", - Precision: 5, - Type: Stock, - AlternateId: "78464A763"}, - 733815352285524: &Security{ - SecurityId: 733815352285524, - Name: "KCE", - Description: "SPDR S&P Capital Markets ETF", - Symbol: "KCE", - Precision: 5, - Type: Stock, - AlternateId: "78464A771"}, - 733815352287108: &Security{ - SecurityId: 733815352287108, - Name: "KIE", - Description: "SPDR S&P Insurance ETF", - Symbol: "KIE", - Precision: 5, - Type: Stock, - AlternateId: "78464A789"}, - 733815352288332: &Security{ - SecurityId: 733815352288332, - Name: "KBE", - Description: "SPDR S&P Bank ETF", - Symbol: "KBE", - Precision: 5, - Type: Stock, - AlternateId: "78464A797"}, - 733815352323252: &Security{ - SecurityId: 733815352323252, - Name: "THRK", - Description: "SPDR Russell 3000 ETF", - Symbol: "THRK", - Precision: 5, - Type: Stock, - AlternateId: "78464A805"}, - 733815352324476: &Security{ - SecurityId: 733815352324476, - Name: "SLY", - Description: "SPDR S&P 600 Small Cap ETF", - Symbol: "SLY", - Precision: 5, - Type: Stock, - AlternateId: "78464A813"}, - 733815352325700: &Security{ - SecurityId: 733815352325700, - Name: "MDYG", - Description: "SPDR S&P 400 Mid Cap Growth ETF", - Symbol: "MDYG", - Precision: 5, - Type: Stock, - AlternateId: "78464A821"}, - 733815352327284: &Security{ - SecurityId: 733815352327284, - Name: "MDYV", - Description: "SPDR S&P 400 Mid Cap Value ETF", - Symbol: "MDYV", - Precision: 5, - Type: Stock, - AlternateId: "78464A839"}, - 733815352328508: &Security{ - SecurityId: 733815352328508, - Name: "RSCO", - Description: "SPDR Russell Small Cap Completeness ETF", - Symbol: "RSCO", - Precision: 5, - Type: Stock, - AlternateId: "78464A847"}, - 733815352329696: &Security{ - SecurityId: 733815352329696, - Name: "ONEK", - Description: "SPDR Russell 1000 ETF", - Symbol: "ONEK", - Precision: 5, - Type: Stock, - AlternateId: "78464A854"}, - 733815352330920: &Security{ - SecurityId: 733815352330920, - Name: "XSD", - Description: "SPDR S&P Semiconductor ETF", - Symbol: "XSD", - Precision: 5, - Type: Stock, - AlternateId: "78464A862"}, - 733815352332144: &Security{ - SecurityId: 733815352332144, - Name: "XBI", - Description: "SPDR S&P Biotech ETF", - Symbol: "XBI", - Precision: 5, - Type: Stock, - AlternateId: "78464A870"}, - 733815352333728: &Security{ - SecurityId: 733815352333728, - Name: "XHB", - Description: "SPDR S&P Homebuilders ETF", - Symbol: "XHB", - Precision: 5, - Type: Stock, - AlternateId: "78464A888"}, - 733815548511552: &Security{ - SecurityId: 733815548511552, - Name: "SSNC", - Description: "SS&C Technologies, Inc.", - Symbol: "SSNC", - Precision: 5, - Type: Stock, - AlternateId: "78467J100"}, - 733815568667052: &Security{ - SecurityId: 733815568667052, - Name: "RLY", - Description: "SPDR SSGA Multi-Asset Real Return ETF", - Symbol: "RLY", - Precision: 5, - Type: Stock, - AlternateId: "78467V103"}, - 733815568713672: &Security{ - SecurityId: 733815568713672, - Name: "INKM", - Description: "SPDR SSGA Income Allocation ETF", - Symbol: "INKM", - Precision: 5, - Type: Stock, - AlternateId: "78467V202"}, - 733815568806912: &Security{ - SecurityId: 733815568806912, - Name: "GAL", - Description: "SPDR SSGA Global Allocation ETF", - Symbol: "GAL", - Precision: 5, - Type: Stock, - AlternateId: "78467V400"}, - 733815568900512: &Security{ - SecurityId: 733815568900512, - Name: "SRLN", - Description: "SPDR Blackstone/ GSO Senior Loan ETF", - Symbol: "SRLN", - Precision: 5, - Type: Stock, - AlternateId: "78467V608"}, - 733815568947132: &Security{ - SecurityId: 733815568947132, - Name: "ULST", - Description: "SPDR SSgA Ultra Short Term Bond ETF", - Symbol: "ULST", - Precision: 5, - Type: Stock, - AlternateId: "78467V707"}, - 733815568993752: &Security{ - SecurityId: 733815568993752, - Name: "SYE", - Description: "SPDR MFS Systematic Core Equity ETF", - Symbol: "SYE", - Precision: 5, - Type: Stock, - AlternateId: "78467V806"}, - 733815568999008: &Security{ - SecurityId: 733815568999008, - Name: "TOTL", - Description: "SPDR DoubleLine Total Return Tactical ETF", - Symbol: "TOTL", - Precision: 5, - Type: Stock, - AlternateId: "78467V848"}, - 733815569001420: &Security{ - SecurityId: 733815569001420, - Name: "RORO", - Description: "SPDR SSgA Risk Aware ETF", - Symbol: "RORO", - Precision: 5, - Type: Stock, - AlternateId: "78467V863"}, - 733815569002644: &Security{ - SecurityId: 733815569002644, - Name: "SYV", - Description: "SPDR MFS Systematic Value Equity ETF", - Symbol: "SYV", - Precision: 5, - Type: Stock, - AlternateId: "78467V871"}, - 733815569004228: &Security{ - SecurityId: 733815569004228, - Name: "SYG", - Description: "SPDR MFS Systematic Growth Equity ETF", - Symbol: "SYG", - Precision: 5, - Type: Stock, - AlternateId: "78467V889"}, - 733815572026500: &Security{ - SecurityId: 733815572026500, - Name: "DIA", - Description: "SPDR Dow Jones Industrial Average ETF", - Symbol: "DIA", - Precision: 5, - Type: Stock, - AlternateId: "78467X109"}, - 733815573706044: &Security{ - SecurityId: 733815573706044, - Name: "MDY", - Description: "SPDR S&P MidCap 400 ETF", - Symbol: "MDY", - Precision: 5, - Type: Stock, - AlternateId: "78467Y107"}, - 733815622414692: &Security{ - SecurityId: 733815622414692, - Name: "SST", - Description: "SPDR Barclays Short Term Treasury ETF", - Symbol: "SST", - Precision: 5, - Type: Stock, - AlternateId: "78468R101"}, - 733815622461312: &Security{ - SecurityId: 733815622461312, - Name: "FLRN", - Description: "SPDR Barclays Investment Grade Floating Rate ETF", - Symbol: "FLRN", - Precision: 5, - Type: Stock, - AlternateId: "78468R200"}, - 733815622554912: &Security{ - SecurityId: 733815622554912, - Name: "SJNK", - Description: "SPDR Barclays Short Term High Yield Bond ETF", - Symbol: "SJNK", - Precision: 5, - Type: Stock, - AlternateId: "78468R408"}, - 733815622601532: &Security{ - SecurityId: 733815622601532, - Name: "EMCD", - Description: "SPDR BofA Merrill Lynch Emerging Markets Corp. Bond ETF", - Symbol: "EMCD", - Precision: 5, - Type: Stock, - AlternateId: "78468R507"}, - 733815622648152: &Security{ - SecurityId: 733815622648152, - Name: "CJNK", - Description: "SPDR BofA Merrill Lynch Crossover Corporate Bond ETF", - Symbol: "CJNK", - Precision: 5, - Type: Stock, - AlternateId: "78468R606"}, - 733815622701216: &Security{ - SecurityId: 733815622701216, - Name: "ONEV", - Description: "SPDR Russell 1000 Low Volatility Focus ETF", - Symbol: "ONEV", - Precision: 5, - Type: Stock, - AlternateId: "78468R754"}, - 733815622702440: &Security{ - SecurityId: 733815622702440, - Name: "ONEO", - Description: "SPDR Russell 1000 Momentum Focus ETF", - Symbol: "ONEO", - Precision: 5, - Type: Stock, - AlternateId: "78468R762"}, - 733815622703664: &Security{ - SecurityId: 733815622703664, - Name: "ONEY", - Description: "SPDR Russell 1000 Yield Focus ETF", - Symbol: "ONEY", - Precision: 5, - Type: Stock, - AlternateId: "78468R770"}, - 733815622705248: &Security{ - SecurityId: 733815622705248, - Name: "SPYD", - Description: "SPDR S&P 500 High Dividend ETF", - Symbol: "SPYD", - Precision: 5, - Type: Stock, - AlternateId: "78468R788"}, - 733815622706472: &Security{ - SecurityId: 733815622706472, - Name: "SPYX", - Description: "SPDR S&P 500 Fossil Fuel Free ETF", - Symbol: "SPYX", - Precision: 5, - Type: Stock, - AlternateId: "78468R796"}, - 733815622741392: &Security{ - SecurityId: 733815622741392, - Name: "LGLV", - Description: "SPDR Russell 1000 Low Volatility ETF", - Symbol: "LGLV", - Precision: 5, - Type: Stock, - AlternateId: "78468R804"}, - 733815622742616: &Security{ - SecurityId: 733815622742616, - Name: "QUS", - Description: "SPDR MSCI USA Quality Mix ETF", - Symbol: "QUS", - Precision: 5, - Type: Stock, - AlternateId: "78468R812"}, - 733815622743840: &Security{ - SecurityId: 733815622743840, - Name: "SPYB", - Description: "SPDR S&P 500 Buyback ETF", - Symbol: "SPYB", - Precision: 5, - Type: Stock, - AlternateId: "78468R820"}, - 733815622746648: &Security{ - SecurityId: 733815622746648, - Name: "IJNK", - Description: "SPDR Barclays International High Yield Bond ETF", - Symbol: "IJNK", - Precision: 5, - Type: Stock, - AlternateId: "78468R846"}, - 733815622747836: &Security{ - SecurityId: 733815622747836, - Name: "TWOK", - Description: "SPDR Russell 2000 ETF", - Symbol: "TWOK", - Precision: 5, - Type: Stock, - AlternateId: "78468R853"}, - 733815622749060: &Security{ - SecurityId: 733815622749060, - Name: "TIPX", - Description: "SPDR Barclays 1-10 Year TIPS ETF", - Symbol: "TIPX", - Precision: 5, - Type: Stock, - AlternateId: "78468R861"}, - 733815622750644: &Security{ - SecurityId: 733815622750644, - Name: "SIPE", - Description: "SPDR Barclays 0-5 Year TIPS ETF", - Symbol: "SIPE", - Precision: 5, - Type: Stock, - AlternateId: "78468R879"}, - 733815622751868: &Security{ - SecurityId: 733815622751868, - Name: "SMLV", - Description: "SPDR Russell 2000 Low Volatility ETF", - Symbol: "SMLV", - Precision: 5, - Type: Stock, - AlternateId: "78468R887"}, - 733815692958780: &Security{ - SecurityId: 733815692958780, - Name: "FLOW", - Description: "SPX FLOW, Inc.", - Symbol: "FLOW", - Precision: 5, - Type: Stock, - AlternateId: "78469X107"}, - 733819853367396: &Security{ - SecurityId: 733819853367396, - Name: "SIVB", - Description: "SVB Financial Group", - Symbol: "SIVB", - Precision: 5, - Type: Stock, - AlternateId: "78486Q101"}, - 733821810120108: &Security{ - SecurityId: 733821810120108, - Name: "SGRP", - Description: "SPAR Group, Inc.", - Symbol: "SGRP", - Precision: 5, - Type: Stock, - AlternateId: "784933103"}, - 733882763384784: &Security{ - SecurityId: 733882763384784, - Name: "SANW", - Description: "S&W Seed Company", - Symbol: "SANW", - Precision: 5, - Type: Stock, - AlternateId: "785135104"}, - 733893954666120: &Security{ - SecurityId: 733893954666120, - Name: "SBR", - Description: "Sabine Royalty Trust", - Symbol: "SBR", - Precision: 5, - Type: Stock, - AlternateId: "785688102"}, - 733895850952728: &Security{ - SecurityId: 733895850952728, - Name: "SBRA", - Description: "Sabra Health Care REIT, Inc.", - Symbol: "SBRA", - Precision: 5, - Type: Stock, - AlternateId: "78573L106"}, - 733895852632272: &Security{ - SecurityId: 733895852632272, - Name: "SABR", - Description: "Sabre Corp.", - Symbol: "SABR", - Precision: 5, - Type: Stock, - AlternateId: "78573M104"}, - 733967725127292: &Security{ - SecurityId: 733967725127292, - Name: "SFE", - Description: "Safeguard Scientifics, Inc.", - Symbol: "SFE", - Precision: 5, - Type: Stock, - AlternateId: "786449207"}, - 733970202607296: &Security{ - SecurityId: 733970202607296, - Name: "SGA", - Description: "Saga Communications, Inc.", - Symbol: "SGA", - Precision: 5, - Type: Stock, - AlternateId: "786598300"}, - 733972276840032: &Security{ - SecurityId: 733972276840032, - Name: "SAGE", - Description: "Sage Therapeutics, Inc.", - Symbol: "SAGE", - Precision: 5, - Type: Stock, - AlternateId: "78667J108"}, - 733972369218732: &Security{ - SecurityId: 733972369218732, - Name: "SGNT", - Description: "Sagent Pharmaceuticals, Inc.", - Symbol: "SGNT", - Precision: 5, - Type: Stock, - AlternateId: "786692103"}, - 734037726436596: &Security{ - SecurityId: 734037726436596, - Name: "SAIA", - Description: "Saia, Inc.", - Symbol: "SAIA", - Precision: 5, - Type: Stock, - AlternateId: "78709Y105"}, - 736312117976640: &Security{ - SecurityId: 736312117976640, - Name: "JOE", - Description: "St. Joe Company, The.", - Symbol: "JOE", - Precision: 5, - Type: Stock, - AlternateId: "790148100"}, - 736327357132716: &Security{ - SecurityId: 736327357132716, - Name: "STJ", - Description: "St. Jude Medical, Inc.", - Symbol: "STJ", - Precision: 5, - Type: Stock, - AlternateId: "790849103"}, - 736560608812488: &Security{ - SecurityId: 736560608812488, - Name: "SAJA", - Description: "Sajan, Inc.", - Symbol: "SAJA", - Precision: 5, - Type: Stock, - AlternateId: "79379T202"}, - 736623691783632: &Security{ - SecurityId: 736623691783632, - Name: "SALM", - Description: "Salem Media Group, Inc.", - Symbol: "SALM", - Precision: 5, - Type: Stock, - AlternateId: "794093104"}, - 736636601405448: &Security{ - SecurityId: 736636601405448, - Name: "CRM", - Description: "salesforce.com, Inc.", - Symbol: "CRM", - Precision: 5, - Type: Stock, - AlternateId: "79466L302"}, - 736638492559860: &Security{ - SecurityId: 736638492559860, - Name: "SMM", - Description: "Salient Midstream & MLP Fund", - Symbol: "SMM", - Precision: 5, - Type: Stock, - AlternateId: "79471V105"}, - 736705991288196: &Security{ - SecurityId: 736705991288196, - Name: "SAL", - Description: "Salisbury Bancorp, Inc.", - Symbol: "SAL", - Precision: 5, - Type: Stock, - AlternateId: "795226109"}, - 736710600154320: &Security{ - SecurityId: 736710600154320, - Name: "SBH", - Description: "Sally Beauty Holdings, Inc.", - Symbol: "SBH", - Precision: 5, - Type: Stock, - AlternateId: "79546E104"}, - 736941196314612: &Security{ - SecurityId: 736941196314612, - Name: "SJT", - Description: "San Juan Basin Royalty Trust", - Symbol: "SJT", - Precision: 5, - Type: Stock, - AlternateId: "798241105"}, - 812479718899152: &Security{ - SecurityId: 812479718899152, - Name: "SAFM", - Description: "Sanderson Farms, Inc.", - Symbol: "SAFM", - Precision: 5, - Type: Stock, - AlternateId: "800013104"}, - 812479915414116: &Security{ - SecurityId: 812479915414116, - Name: "SNDK", - Description: "SanDisk Corp.", - Symbol: "SNDK", - Precision: 5, - Type: Stock, - AlternateId: "80004C101"}, - 812480118741180: &Security{ - SecurityId: 812480118741180, - Name: "PER", - Description: "SandRidge Permian Trust", - Symbol: "PER", - Precision: 5, - Type: Stock, - AlternateId: "80007P307"}, - 812480125366116: &Security{ - SecurityId: 812480125366116, - Name: "SDT", - Description: "SandRidge Mississippian Trust I", - Symbol: "SDT", - Precision: 5, - Type: Stock, - AlternateId: "80007T101"}, - 812480128725528: &Security{ - SecurityId: 812480128725528, - Name: "SDR", - Description: "SandRidge Mississippian Trust II", - Symbol: "SDR", - Precision: 5, - Type: Stock, - AlternateId: "80007V106"}, - 812482056971352: &Security{ - SecurityId: 812482056971352, - Name: "SAND", - Description: "Sandstorm Gold Ltd", - Symbol: "SAND", - Precision: 5, - Type: Stock, - AlternateId: "80013R206"}, - 812486551577004: &Security{ - SecurityId: 812486551577004, - Name: "SASR", - Description: "Sandy Spring Bancorp, Inc.", - Symbol: "SASR", - Precision: 5, - Type: Stock, - AlternateId: "800363103"}, - 812488484815164: &Security{ - SecurityId: 812488484815164, - Name: "JBSS", - Description: "John B. Sanfilippo & Son, Inc.", - Symbol: "JBSS", - Precision: 5, - Type: Stock, - AlternateId: "800422107"}, - 812493149108760: &Security{ - SecurityId: 812493149108760, - Name: "SGMO", - Description: "Sangamo BioSciences, Inc.", - Symbol: "SGMO", - Precision: 5, - Type: Stock, - AlternateId: "800677106"}, - 812558329966728: &Security{ - SecurityId: 812558329966728, - Name: "SANM", - Description: "Sanmina Corporation", - Symbol: "SANM", - Precision: 5, - Type: Stock, - AlternateId: "801056102"}, - 812654014330980: &Security{ - SecurityId: 812654014330980, - Name: "SC", - Description: "Santander Consumer USA Holdings, Inc.", - Symbol: "SC", - Precision: 5, - Type: Stock, - AlternateId: "80283M101"}, - 812715054982416: &Security{ - SecurityId: 812715054982416, - Name: "SAP", - Description: "SAP SE ADR", - Symbol: "SAP", - Precision: 5, - Type: Stock, - AlternateId: "803054204"}, - 812724014054304: &Security{ - SecurityId: 812724014054304, - Name: "SAR", - Description: "Saratoga Investment Corp.", - Symbol: "SAR", - Precision: 5, - Type: Stock, - AlternateId: "80349A208"}, - 812732533113024: &Security{ - SecurityId: 812732533113024, - Name: "SSL", - Description: "Sasol Ltd ADR", - Symbol: "SSL", - Precision: 5, - Type: Stock, - AlternateId: "803866300"}, - 812800192991076: &Security{ - SecurityId: 812800192991076, - Name: "BFS", - Description: "Saul Centers, Inc.", - Symbol: "BFS", - Precision: 5, - Type: Stock, - AlternateId: "804395101"}, - 812889469620360: &Security{ - SecurityId: 812889469620360, - Name: "SCG", - Description: "SCANA Corp.", - Symbol: "SCG", - Precision: 5, - Type: Stock, - AlternateId: "80589M102"}, - 812950031534652: &Security{ - SecurityId: 812950031534652, - Name: "SCSC", - Description: "ScanSource, Inc.", - Symbol: "SCSC", - Precision: 5, - Type: Stock, - AlternateId: "806037107"}, - 812958557265288: &Security{ - SecurityId: 812958557265288, - Name: "HSIC", - Description: "Henry Schein, Inc.", - Symbol: "HSIC", - Precision: 5, - Type: Stock, - AlternateId: "806407102"}, - 812967566725728: &Security{ - SecurityId: 812967566725728, - Name: "SLB", - Description: "Schlumberger Ltd", - Symbol: "SLB", - Precision: 5, - Type: Stock, - AlternateId: "806857108"}, - 812967675947136: &Security{ - SecurityId: 812967675947136, - Name: "SMIT", - Description: "Schmitt Industries, Inc.", - Symbol: "SMIT", - Precision: 5, - Type: Stock, - AlternateId: "806870200"}, - 812967739726104: &Security{ - SecurityId: 812967739726104, - Name: "SCHN", - Description: "Schnitzer Steel Industries, Inc.", - Symbol: "SCHN", - Precision: 5, - Type: Stock, - AlternateId: "806882106"}, - 813028575417588: &Security{ - SecurityId: 813028575417588, - Name: "SCHL", - Description: "Scholastic Corp.", - Symbol: "SCHL", - Precision: 5, - Type: Stock, - AlternateId: "807066105"}, - 813109294403280: &Security{ - SecurityId: 813109294403280, - Name: "SHLM", - Description: "A. Schulman, Inc.", - Symbol: "SHLM", - Precision: 5, - Type: Stock, - AlternateId: "808194104"}, - 813117516123636: &Security{ - SecurityId: 813117516123636, - Name: "SCHW", - Description: "Charles Schwab Corp. (The)", - Symbol: "SCHW", - Precision: 5, - Type: Stock, - AlternateId: "808513105"}, - 813117578269320: &Security{ - SecurityId: 813117578269320, - Name: "SCHB", - Description: "Schwab U.S. Broad Market ETF", - Symbol: "SCHB", - Precision: 5, - Type: Stock, - AlternateId: "808524102"}, - 813117578315940: &Security{ - SecurityId: 813117578315940, - Name: "SCHX", - Description: "Schwab U.S. Large-Cap ETF", - Symbol: "SCHX", - Precision: 5, - Type: Stock, - AlternateId: "808524201"}, - 813117578362560: &Security{ - SecurityId: 813117578362560, - Name: "SCHG", - Description: "Schwab U.S. Large-Cap Growth ETF", - Symbol: "SCHG", - Precision: 5, - Type: Stock, - AlternateId: "808524300"}, - 813117578409540: &Security{ - SecurityId: 813117578409540, - Name: "SCHV", - Description: "Schwab U.S. Large-Cap Value ETF", - Symbol: "SCHV", - Precision: 5, - Type: Stock, - AlternateId: "808524409"}, - 813117578456160: &Security{ - SecurityId: 813117578456160, - Name: "SCHM", - Description: "Schwab U.S. Mid-Cap ETF", - Symbol: "SCHM", - Precision: 5, - Type: Stock, - AlternateId: "808524508"}, - 813117578502780: &Security{ - SecurityId: 813117578502780, - Name: "SCHA", - Description: "Schwab U.S. Small-Cap ETF", - Symbol: "SCHA", - Precision: 5, - Type: Stock, - AlternateId: "808524607"}, - 813117578549400: &Security{ - SecurityId: 813117578549400, - Name: "SCHE", - Description: "Schwab Emerging Markets Equity ETF", - Symbol: "SCHE", - Precision: 5, - Type: Stock, - AlternateId: "808524706"}, - 813117578553072: &Security{ - SecurityId: 813117578553072, - Name: "FNDE", - Description: "Schwab Fundamental Emerging Markets Large Company Index ETF", - Symbol: "FNDE", - Precision: 5, - Type: Stock, - AlternateId: "808524730"}, - 813117578554656: &Security{ - SecurityId: 813117578554656, - Name: "FNDC", - Description: "Schwab Fundamental International Small Company Index ETF", - Symbol: "FNDC", - Precision: 5, - Type: Stock, - AlternateId: "808524748"}, - 813117578555844: &Security{ - SecurityId: 813117578555844, - Name: "FNDF", - Description: "Schwab Fundamental International Large Company Index ETF", - Symbol: "FNDF", - Precision: 5, - Type: Stock, - AlternateId: "808524755"}, - 813117578557068: &Security{ - SecurityId: 813117578557068, - Name: "FNDA", - Description: "Schwab Fundamental U.S. Small Company Index ETF", - Symbol: "FNDA", - Precision: 5, - Type: Stock, - AlternateId: "808524763"}, - 813117578558292: &Security{ - SecurityId: 813117578558292, - Name: "FNDX", - Description: "Schwab Fundamental U.S. Large Company Index ETF", - Symbol: "FNDX", - Precision: 5, - Type: Stock, - AlternateId: "808524771"}, - 813117578559876: &Security{ - SecurityId: 813117578559876, - Name: "FNDB", - Description: "Schwab Fundamental U.S. Broad Market Index ETF", - Symbol: "FNDB", - Precision: 5, - Type: Stock, - AlternateId: "808524789"}, - 813117578561100: &Security{ - SecurityId: 813117578561100, - Name: "SCHD", - Description: "Schwab US Dividend Equity ETF", - Symbol: "SCHD", - Precision: 5, - Type: Stock, - AlternateId: "808524797"}, - 813117578596020: &Security{ - SecurityId: 813117578596020, - Name: "SCHF", - Description: "Schwab International Equity ETF", - Symbol: "SCHF", - Precision: 5, - Type: Stock, - AlternateId: "808524805"}, - 813117578600052: &Security{ - SecurityId: 813117578600052, - Name: "SCHZ", - Description: "Schwab U.S. Aggregate Bond ETF", - Symbol: "SCHZ", - Precision: 5, - Type: Stock, - AlternateId: "808524839"}, - 813117578601276: &Security{ - SecurityId: 813117578601276, - Name: "SCHH", - Description: "Schwab U.S. REIT ETF", - Symbol: "SCHH", - Precision: 5, - Type: Stock, - AlternateId: "808524847"}, - 813117578602464: &Security{ - SecurityId: 813117578602464, - Name: "SCHR", - Description: "Schwab Intermediate-Term U.S. Treasury ETF", - Symbol: "SCHR", - Precision: 5, - Type: Stock, - AlternateId: "808524854"}, - 813117578603688: &Security{ - SecurityId: 813117578603688, - Name: "SCHO", - Description: "Schwab Short-Term U.S. Treasury ETF", - Symbol: "SCHO", - Precision: 5, - Type: Stock, - AlternateId: "808524862"}, - 813117578604912: &Security{ - SecurityId: 813117578604912, - Name: "SCHP", - Description: "Schwab U.S. TIPS ETF", - Symbol: "SCHP", - Precision: 5, - Type: Stock, - AlternateId: "808524870"}, - 813117578606496: &Security{ - SecurityId: 813117578606496, - Name: "SCHC", - Description: "Schwab International Small-Cap Equity ETF", - Symbol: "SCHC", - Precision: 5, - Type: Stock, - AlternateId: "808524888"}, - 813117694162968: &Security{ - SecurityId: 813117694162968, - Name: "SWM", - Description: "Schweitzer-Mauduit Intl, Inc.", - Symbol: "SWM", - Precision: 5, - Type: Stock, - AlternateId: "808541106"}, - 813119781925584: &Security{ - SecurityId: 813119781925584, - Name: "SCLN", - Description: "SciClone Pharmaceuticals, Inc.", - Symbol: "SCLN", - Precision: 5, - Type: Stock, - AlternateId: "80862K104"}, - 813119756731452: &Security{ - SecurityId: 813119756731452, - Name: "SAIC", - Description: "Science Applications Intl Corp.", - Symbol: "SAIC", - Precision: 5, - Type: Stock, - AlternateId: "808625107"}, - 813122088038532: &Security{ - SecurityId: 813122088038532, - Name: "SGMS", - Description: "Scientific Games Corp.", - Symbol: "SGMS", - Precision: 5, - Type: Stock, - AlternateId: "80874P109"}, - 813185463309156: &Security{ - SecurityId: 813185463309156, - Name: "SQI", - Description: "Sciquest, Inc.", - Symbol: "SQI", - Precision: 5, - Type: Stock, - AlternateId: "80908T101"}, - 815303433891096: &Security{ - SecurityId: 815303433891096, - Name: "SMG", - Description: "Scotts Miracle-Gro Co. (The)", - Symbol: "SMG", - Precision: 5, - Type: Stock, - AlternateId: "810186106"}, - 815379436654920: &Security{ - SecurityId: 815379436654920, - Name: "SSP", - Description: "E.W. Scripps Co. (The)", - Symbol: "SSP", - Precision: 5, - Type: Stock, - AlternateId: "811054402"}, - 815379498660708: &Security{ - SecurityId: 815379498660708, - Name: "SNI", - Description: "Scripps Networks Interactive, Inc.", - Symbol: "SNI", - Precision: 5, - Type: Stock, - AlternateId: "811065101"}, - 815384028585060: &Security{ - SecurityId: 815384028585060, - Name: "SCYX", - Description: "Scynexis, Inc.", - Symbol: "SCYX", - Precision: 5, - Type: Stock, - AlternateId: "811292101"}, - 815390258281020: &Security{ - SecurityId: 815390258281020, - Name: "SEB", - Description: "Seaboard Corp.", - Symbol: "SEB", - Precision: 5, - Type: Stock, - AlternateId: "811543107"}, - 815392747471932: &Security{ - SecurityId: 815392747471932, - Name: "SEAC", - Description: "SeaChange Intl, Inc.", - Symbol: "SEAC", - Precision: 5, - Type: Stock, - AlternateId: "811699107"}, - 815398725225060: &Security{ - SecurityId: 815398725225060, - Name: "CKH", - Description: "SEACOR Holdings, Inc.", - Symbol: "CKH", - Precision: 5, - Type: Stock, - AlternateId: "811904101"}, - 815398789050612: &Security{ - SecurityId: 815398789050612, - Name: "SA", - Description: "Seabridge Gold, Inc.", - Symbol: "SA", - Precision: 5, - Type: Stock, - AlternateId: "811916105"}, - 815459762470464: &Security{ - SecurityId: 815459762470464, - Name: "SEE", - Description: "Sealed Air Corp.", - Symbol: "SEE", - Precision: 5, - Type: Stock, - AlternateId: "81211K100"}, - 815464285676676: &Security{ - SecurityId: 815464285676676, - Name: "SRSC", - Description: "Sears Canada, Inc.", - Symbol: "SRSC", - Precision: 5, - Type: Stock, - AlternateId: "81234D109"}, - 815464324307736: &Security{ - SecurityId: 815464324307736, - Name: "SHLD", - Description: "Sears Holdings Corp.", - Symbol: "SHLD", - Precision: 5, - Type: Stock, - AlternateId: "812350106"}, - 815464388132964: &Security{ - SecurityId: 815464388132964, - Name: "SHOS", - Description: "Sears Hometown and Outlet Stores, Inc.", - Symbol: "SHOS", - Precision: 5, - Type: Stock, - AlternateId: "812362101"}, - 815468726581344: &Security{ - SecurityId: 815468726581344, - Name: "SPNE", - Description: "SeaSpine Holdings Corp.", - Symbol: "SPNE", - Precision: 5, - Type: Stock, - AlternateId: "81255T108"}, - 815468812241544: &Security{ - SecurityId: 815468812241544, - Name: "SGEN", - Description: "Seattle Genetics, Inc.", - Symbol: "SGEN", - Precision: 5, - Type: Stock, - AlternateId: "812578102"}, - 815475078888768: &Security{ - SecurityId: 815475078888768, - Name: "SEAS", - Description: "SeaWorld Entertainment, Inc.", - Symbol: "SEAS", - Precision: 5, - Type: Stock, - AlternateId: "81282V100"}, - 815549069332800: &Security{ - SecurityId: 815549069332800, - Name: "EYES", - Description: "Second Sight Medical Products, Inc.", - Symbol: "EYES", - Precision: 5, - Type: Stock, - AlternateId: "81362J100"}, - 815549517790272: &Security{ - SecurityId: 815549517790272, - Name: "XLB", - Description: "SPDR Materials Select Sector ETF", - Symbol: "XLB", - Precision: 5, - Type: Stock, - AlternateId: "81369Y100"}, - 815549517837252: &Security{ - SecurityId: 815549517837252, - Name: "XLV", - Description: "SPDR Health Care Select Sector ETF", - Symbol: "XLV", - Precision: 5, - Type: Stock, - AlternateId: "81369Y209"}, - 815549517883872: &Security{ - SecurityId: 815549517883872, - Name: "XLP", - Description: "SPDR Consumer Staples Select Sector ETF", - Symbol: "XLP", - Precision: 5, - Type: Stock, - AlternateId: "81369Y308"}, - 815549517930492: &Security{ - SecurityId: 815549517930492, - Name: "XLY", - Description: "SPDR Consumer Discretionary Select Sector ETF", - Symbol: "XLY", - Precision: 5, - Type: Stock, - AlternateId: "81369Y407"}, - 815549517977112: &Security{ - SecurityId: 815549517977112, - Name: "XLE", - Description: "SPDR Energy Select Sector ETF", - Symbol: "XLE", - Precision: 5, - Type: Stock, - AlternateId: "81369Y506"}, - 815549518023732: &Security{ - SecurityId: 815549518023732, - Name: "XLF", - Description: "SPDR Financial Select Sector ETF", - Symbol: "XLF", - Precision: 5, - Type: Stock, - AlternateId: "81369Y605"}, - 815549518070352: &Security{ - SecurityId: 815549518070352, - Name: "XLI", - Description: "SPDR Industrial Select Sector ETF", - Symbol: "XLI", - Precision: 5, - Type: Stock, - AlternateId: "81369Y704"}, - 815549518116972: &Security{ - SecurityId: 815549518116972, - Name: "XLK", - Description: "SPDR Technology Select Sector ETF", - Symbol: "XLK", - Precision: 5, - Type: Stock, - AlternateId: "81369Y803"}, - 815549518124640: &Security{ - SecurityId: 815549518124640, - Name: "XLRE", - Description: "Real Estate Select Sector SPDR Fund (The)", - Symbol: "XLRE", - Precision: 5, - Type: Stock, - AlternateId: "81369Y860"}, - 815549518126224: &Security{ - SecurityId: 815549518126224, - Name: "XLFS", - Description: "Financial Services Select Sector SPDR Fund (The)", - Symbol: "XLFS", - Precision: 5, - Type: Stock, - AlternateId: "81369Y878"}, - 815549518127448: &Security{ - SecurityId: 815549518127448, - Name: "XLU", - Description: "SPDR Utilities Select Sector ETF", - Symbol: "XLU", - Precision: 5, - Type: Stock, - AlternateId: "81369Y886"}, - 815629949655300: &Security{ - SecurityId: 815629949655300, - Name: "SNFCA", - Description: "Security National Financial Corp.", - Symbol: "SNFCA", - Precision: 5, - Type: Stock, - AlternateId: "814785309"}, - 815773543292844: &Security{ - SecurityId: 815773543292844, - Name: "SCSS", - Description: "Select Comfort Corp.", - Symbol: "SCSS", - Precision: 5, - Type: Stock, - AlternateId: "81616X103"}, - 815773583603808: &Security{ - SecurityId: 815773583603808, - Name: "SLCT", - Description: "Select Bancorp, Inc. (NC)", - Symbol: "SLCT", - Precision: 5, - Type: Stock, - AlternateId: "81617L108"}, - 815773657506624: &Security{ - SecurityId: 815773657506624, - Name: "SIR", - Description: "Select Income REIT", - Symbol: "SIR", - Precision: 5, - Type: Stock, - AlternateId: "81618T100"}, - 815773712934132: &Security{ - SecurityId: 815773712934132, - Name: "SEM", - Description: "Select Medical Holdings Corp.", - Symbol: "SEM", - Precision: 5, - Type: Stock, - AlternateId: "81619Q105"}, - 815775799063788: &Security{ - SecurityId: 815775799063788, - Name: "DTRM", - Description: "Determine, Inc.", - Symbol: "DTRM", - Precision: 5, - Type: Stock, - AlternateId: "816288203"}, - 815777478633276: &Security{ - SecurityId: 815777478633276, - Name: "SIGI", - Description: "Selective Insurance Group, Inc.", - Symbol: "SIGI", - Precision: 5, - Type: Stock, - AlternateId: "816300107"}, - 815784207174900: &Security{ - SecurityId: 815784207174900, - Name: "SEMG", - Description: "SemGroup Corp.", - Symbol: "SEMG", - Precision: 5, - Type: Stock, - AlternateId: "81663A105"}, - 815784229056600: &Security{ - SecurityId: 815784229056600, - Name: "SMI", - Description: "BCD Semiconductor Manufacturing Ltd", - Symbol: "SMI", - Precision: 5, - Type: Stock, - AlternateId: "81663N206"}, - 815784259242996: &Security{ - SecurityId: 815784259242996, - Name: "LEDS", - Description: "SemiLEDs Corp.", - Symbol: "LEDS", - Precision: 5, - Type: Stock, - AlternateId: "816645105"}, - 815788641361104: &Security{ - SecurityId: 815788641361104, - Name: "SMLR", - Description: "Semler Scientific, Inc.", - Symbol: "SMLR", - Precision: 5, - Type: Stock, - AlternateId: "81684M104"}, - 815788664875620: &Security{ - SecurityId: 815788664875620, - Name: "SMTC", - Description: "Semtech Corp.", - Symbol: "SMTC", - Precision: 5, - Type: Stock, - AlternateId: "816850101"}, - 815788666555524: &Security{ - SecurityId: 815788666555524, - Name: "SRE", - Description: "Sempra Energy", - Symbol: "SRE", - Precision: 5, - Type: Stock, - AlternateId: "816851109"}, - 815849735713524: &Security{ - SecurityId: 815849735713524, - Name: "SENEB", - Description: "Seneca Foods Corp. Cl B", - Symbol: "SENEB", - Precision: 5, - Type: Stock, - AlternateId: "817070105"}, - 815849735900004: &Security{ - SecurityId: 815849735900004, - Name: "SENEA", - Description: "Seneca Foods Corp. Cl A", - Symbol: "SENEA", - Precision: 5, - Type: Stock, - AlternateId: "817070501"}, - 815853763432836: &Security{ - SecurityId: 815853763432836, - Name: "SNH", - Description: "Senior Housing Properties Trust", - Symbol: "SNH", - Precision: 5, - Type: Stock, - AlternateId: "81721M109"}, - 815854017054528: &Security{ - SecurityId: 815854017054528, - Name: "SXT", - Description: "Sensient Technologies Corp.", - Symbol: "SXT", - Precision: 5, - Type: Stock, - AlternateId: "81725T100"}, - 815855968768608: &Security{ - SecurityId: 815855968768608, - Name: "SQNS", - Description: "Sequans Communications S.A.", - Symbol: "SQNS", - Precision: 5, - Type: Stock, - AlternateId: "817323108"}, - 815856036093108: &Security{ - SecurityId: 815856036093108, - Name: "SQNM", - Description: "Sequenom, Inc.", - Symbol: "SQNM", - Precision: 5, - Type: Stock, - AlternateId: "817337405"}, - 815856084708516: &Security{ - SecurityId: 815856084708516, - Name: "SQBG", - Description: "Sequential Brands Group, Inc.", - Symbol: "SQBG", - Precision: 5, - Type: Stock, - AlternateId: "817340201"}, - 815860241711496: &Security{ - SecurityId: 815860241711496, - Name: "MCRB", - Description: "Seres Therapeutics, Inc.", - Symbol: "MCRB", - Precision: 5, - Type: Stock, - AlternateId: "81750R102"}, - 815860567557072: &Security{ - SecurityId: 815860567557072, - Name: "SCI", - Description: "Service Corp. Intl", - Symbol: "SCI", - Precision: 5, - Type: Stock, - AlternateId: "817565104"}, - 815862478960260: &Security{ - SecurityId: 815862478960260, - Name: "SERV", - Description: "ServiceMaster Global Holdings, Inc.", - Symbol: "SERV", - Precision: 5, - Type: Stock, - AlternateId: "81761R109"}, - 815862536066952: &Security{ - SecurityId: 815862536066952, - Name: "NOW", - Description: "ServiceNow, Inc.", - Symbol: "NOW", - Precision: 5, - Type: Stock, - AlternateId: "81762P102"}, - 815862604931136: &Security{ - SecurityId: 815862604931136, - Name: "SREV", - Description: "ServiceSource International, Inc.", - Symbol: "SREV", - Precision: 5, - Type: Stock, - AlternateId: "81763U100"}, - 815862905582688: &Security{ - SecurityId: 815862905582688, - Name: "SFBS", - Description: "ServisFirst Bancshares, Inc.", - Symbol: "SFBS", - Precision: 5, - Type: Stock, - AlternateId: "81768T108"}, - 815864734684224: &Security{ - SecurityId: 815864734684224, - Name: "SVT", - Description: "Servotronics, Inc.", - Symbol: "SVT", - Precision: 5, - Type: Stock, - AlternateId: "817732100"}, - 815928232567356: &Security{ - SecurityId: 815928232567356, - Name: "SSE", - Description: "Seventy Seven Energy, Inc.", - Symbol: "SSE", - Precision: 5, - Type: Stock, - AlternateId: "818097107"}, - 815929950814272: &Security{ - SecurityId: 815929950814272, - Name: "SVBI", - Description: "Severn Bancorp, Inc.", - Symbol: "SVBI", - Precision: 5, - Type: Stock, - AlternateId: "81811M100"}, - 816006294400356: &Security{ - SecurityId: 816006294400356, - Name: "SHAK", - Description: "Shake Shack, Inc.", - Symbol: "SHAK", - Precision: 5, - Type: Stock, - AlternateId: "819047101"}, - 818121945432420: &Security{ - SecurityId: 818121945432420, - Name: "SMED", - Description: "Sharps Compliance Corp.", - Symbol: "SMED", - Precision: 5, - Type: Stock, - AlternateId: "820017101"}, - 818122182258384: &Security{ - SecurityId: 818122182258384, - Name: "SHSP", - Description: "SharpSpring, Inc.", - Symbol: "SHSP", - Precision: 5, - Type: Stock, - AlternateId: "820054104"}, - 818126744141952: &Security{ - SecurityId: 818126744141952, - Name: "SJR", - Description: "Shaw Communications, Inc.", - Symbol: "SJR", - Precision: 5, - Type: Stock, - AlternateId: "82028K200"}, - 818291850348132: &Security{ - SecurityId: 818291850348132, - Name: "SHLX", - Description: "Shell Midstream Partners, L.P.", - Symbol: "SHLX", - Precision: 5, - Type: Stock, - AlternateId: "822634101"}, - 818359281891864: &Security{ - SecurityId: 818359281891864, - Name: "SHEN", - Description: "Shenandoah Telecommunications Co.", - Symbol: "SHEN", - Precision: 5, - Type: Stock, - AlternateId: "82312B106"}, - 818442115514136: &Security{ - SecurityId: 818442115514136, - Name: "SHW", - Description: "Sherwin-Williams Co. (The)", - Symbol: "SHW", - Precision: 5, - Type: Stock, - AlternateId: "824348106"}, - 818446460680584: &Security{ - SecurityId: 818446460680584, - Name: "SHLO", - Description: "Shiloh Industries, Inc.", - Symbol: "SHLO", - Precision: 5, - Type: Stock, - AlternateId: "824543102"}, - 818446768050240: &Security{ - SecurityId: 818446768050240, - Name: "SHG", - Description: "Shinhan Financial Group Co. Ltd ADR", - Symbol: "SHG", - Precision: 5, - Type: Stock, - AlternateId: "824596100"}, - 818452849939992: &Security{ - SecurityId: 818452849939992, - Name: "SHPG", - Description: "Shire plc ADR", - Symbol: "SHPG", - Precision: 5, - Type: Stock, - AlternateId: "82481R106"}, - 818453242970244: &Security{ - SecurityId: 818453242970244, - Name: "SCVL", - Description: "Shoe Carnival, Inc.", - Symbol: "SCVL", - Precision: 5, - Type: Stock, - AlternateId: "824889109"}, - 818514273497148: &Security{ - SecurityId: 818514273497148, - Name: "SHOP", - Description: "Shopify, Inc.", - Symbol: "SHOP", - Precision: 5, - Type: Stock, - AlternateId: "82509L107"}, - 818515882569204: &Security{ - SecurityId: 818515882569204, - Name: "SHBI", - Description: "Shore Bancshares, Inc.", - Symbol: "SHBI", - Precision: 5, - Type: Stock, - AlternateId: "825107105"}, - 818518109740020: &Security{ - SecurityId: 818518109740020, - Name: "SHOR", - Description: "ShoreTel, Inc.", - Symbol: "SHOR", - Precision: 5, - Type: Stock, - AlternateId: "825211105"}, - 818527280536656: &Security{ - SecurityId: 818527280536656, - Name: "SFLY", - Description: "Shutterfly, Inc.", - Symbol: "SFLY", - Precision: 5, - Type: Stock, - AlternateId: "82568P304"}, - 818527298918976: &Security{ - SecurityId: 818527298918976, - Name: "SSTK", - Description: "Shutterstock, Inc.", - Symbol: "SSTK", - Precision: 5, - Type: Stock, - AlternateId: "825690100"}, - 818594668317060: &Security{ - SecurityId: 818594668317060, - Name: "SIEB", - Description: "Siebert Financial Corp.", - Symbol: "SIEB", - Precision: 5, - Type: Stock, - AlternateId: "826176109"}, - 818596453748616: &Security{ - SecurityId: 818596453748616, - Name: "BSRR", - Description: "Sierra Bancorp", - Symbol: "BSRR", - Precision: 5, - Type: Stock, - AlternateId: "82620P102"}, - 818596504137204: &Security{ - SecurityId: 818596504137204, - Name: "SIEN", - Description: "Sientra, Inc.", - Symbol: "SIEN", - Precision: 5, - Type: Stock, - AlternateId: "82621J105"}, - 818603012649240: &Security{ - SecurityId: 818603012649240, - Name: "SWIR", - Description: "Sierra Wireless, Inc.", - Symbol: "SWIR", - Precision: 5, - Type: Stock, - AlternateId: "826516106"}, - 818603194047660: &Security{ - SecurityId: 818603194047660, - Name: "SIF", - Description: "SIFCO Industries, Inc.", - Symbol: "SIF", - Precision: 5, - Type: Stock, - AlternateId: "826546103"}, - 818603313300396: &Security{ - SecurityId: 818603313300396, - Name: "SIGM", - Description: "Sigma Designs, Inc.", - Symbol: "SIGM", - Precision: 5, - Type: Stock, - AlternateId: "826565103"}, - 818605214625636: &Security{ - SecurityId: 818605214625636, - Name: "SGMA", - Description: "SigmaTron Intl, Inc.", - Symbol: "SGMA", - Precision: 5, - Type: Stock, - AlternateId: "82661L101"}, - 818605360752336: &Security{ - SecurityId: 818605360752336, - Name: "SGNL", - Description: "Signal Genetics, Inc.", - Symbol: "SGNL", - Precision: 5, - Type: Stock, - AlternateId: "826640104"}, - 818605689957072: &Security{ - SecurityId: 818605689957072, - Name: "SBNY", - Description: "Signature Bank", - Symbol: "SBNY", - Precision: 5, - Type: Stock, - AlternateId: "82669G104"}, - 818611724817288: &Security{ - SecurityId: 818611724817288, - Name: "SLAB", - Description: "Silicon Laboratories, Inc.", - Symbol: "SLAB", - Precision: 5, - Type: Stock, - AlternateId: "826919102"}, - 818670677659524: &Security{ - SecurityId: 818670677659524, - Name: "SLGN", - Description: "Silgan Holdings, Inc.", - Symbol: "SLGN", - Precision: 5, - Type: Stock, - AlternateId: "827048109"}, - 818670805310304: &Security{ - SecurityId: 818670805310304, - Name: "SIMO", - Description: "Silicon Motion Technology Corp. ADR", - Symbol: "SIMO", - Precision: 5, - Type: Stock, - AlternateId: "82706C108"}, - 818670913139952: &Security{ - SecurityId: 818670913139952, - Name: "SPIL", - Description: "Siliconware Precision Industries Co. Ltd ADR", - Symbol: "SPIL", - Precision: 5, - Type: Stock, - AlternateId: "827084864"}, - 818677298705544: &Security{ - SecurityId: 818677298705544, - Name: "SBY", - Description: "Silver Bay Realty Trust Corp.", - Symbol: "SBY", - Precision: 5, - Type: Stock, - AlternateId: "82735Q102"}, - 818751430237356: &Security{ - SecurityId: 818751430237356, - Name: "SSNI", - Description: "Silver Spring Networks, Inc.", - Symbol: "SSNI", - Precision: 5, - Type: Stock, - AlternateId: "82817Q103"}, - 818753356757016: &Security{ - SecurityId: 818753356757016, - Name: "SSRI", - Description: "Silver Standard Resources, Inc.", - Symbol: "SSRI", - Precision: 5, - Type: Stock, - AlternateId: "82823L106"}, - 818755508345148: &Security{ - SecurityId: 818755508345148, - Name: "SLW", - Description: "Silver Wheaton Corp.", - Symbol: "SLW", - Precision: 5, - Type: Stock, - AlternateId: "828336107"}, - 818755634316420: &Security{ - SecurityId: 818755634316420, - Name: "SAMG", - Description: "Silvercrest Asset Management Group, Inc.", - Symbol: "SAMG", - Precision: 5, - Type: Stock, - AlternateId: "828359109"}, - 818764205443200: &Security{ - SecurityId: 818764205443200, - Name: "SFNC", - Description: "Simmons First National Corp.", - Symbol: "SFNC", - Precision: 5, - Type: Stock, - AlternateId: "828730200"}, - 818766210858372: &Security{ - SecurityId: 818766210858372, - Name: "SPG", - Description: "Simon Property Group, Inc.", - Symbol: "SPG", - Precision: 5, - Type: Stock, - AlternateId: "828806109"}, - 818827578988020: &Security{ - SecurityId: 818827578988020, - Name: "SSD", - Description: "Simpson Manufacturing Co., Inc.", - Symbol: "SSD", - Precision: 5, - Type: Stock, - AlternateId: "829073105"}, - 818831635260804: &Security{ - SecurityId: 818831635260804, - Name: "SBGI", - Description: "Sinclair Broadcast Group, Inc.", - Symbol: "SBGI", - Precision: 5, - Type: Stock, - AlternateId: "829226109"}, - 818840594332332: &Security{ - SecurityId: 818840594332332, - Name: "SIRO", - Description: "Sirona Dental Systems, Inc.", - Symbol: "SIRO", - Precision: 5, - Type: Stock, - AlternateId: "82966C103"}, - 818840713585068: &Security{ - SecurityId: 818840713585068, - Name: "SIRI", - Description: "Sirius XM Holdings, Inc.", - Symbol: "SIRI", - Precision: 5, - Type: Stock, - AlternateId: "82968B103"}, - 818845094070252: &Security{ - SecurityId: 818845094070252, - Name: "SITO", - Description: "SITO Mobile, Ltd.", - Symbol: "SITO", - Precision: 5, - Type: Stock, - AlternateId: "82988R203"}, - 820943060378760: &Security{ - SecurityId: 820943060378760, - Name: "SIX", - Description: "Six Flags Entertainment Corp.", - Symbol: "SIX", - Precision: 5, - Type: Stock, - AlternateId: "83001A102"}, - 820945383287796: &Security{ - SecurityId: 820945383287796, - Name: "SZMK", - Description: "Sizmek, Inc.", - Symbol: "SZMK", - Precision: 5, - Type: Stock, - AlternateId: "83013P105"}, - 820954239902964: &Security{ - SecurityId: 820954239902964, - Name: "SKX", - Description: "Skechers U.S.A., Inc.", - Symbol: "SKX", - Precision: 5, - Type: Stock, - AlternateId: "830566105"}, - 820960610686416: &Security{ - SecurityId: 820960610686416, - Name: "SKUL", - Description: "SkullCandy, Inc.", - Symbol: "SKUL", - Precision: 5, - Type: Stock, - AlternateId: "83083J104"}, - 820960578773748: &Security{ - SecurityId: 820960578773748, - Name: "SKY", - Description: "Skyline Corp.", - Symbol: "SKY", - Precision: 5, - Type: Stock, - AlternateId: "830830105"}, - 820960666113924: &Security{ - SecurityId: 820960666113924, - Name: "MOBI", - Description: "Sky-mobi Ltd", - Symbol: "MOBI", - Precision: 5, - Type: Stock, - AlternateId: "83084G109"}, - 820960671152556: &Security{ - SecurityId: 820960671152556, - Name: "SKYS", - Description: "Sky Solar Holdings, Ltd.", - Symbol: "SKYS", - Precision: 5, - Type: Stock, - AlternateId: "83084J103"}, - 820960688088864: &Security{ - SecurityId: 820960688088864, - Name: "SKLNU", - Description: "Skyline Medical, Inc. (Units)", - Symbol: "SKLNU", - Precision: 5, - Type: Stock, - AlternateId: "83084T408"}, - 820960808927904: &Security{ - SecurityId: 820960808927904, - Name: "SPU", - Description: "Skypeople Fruit Juice", - Symbol: "SPU", - Precision: 5, - Type: Stock, - AlternateId: "83086T208"}, - 820960835754888: &Security{ - SecurityId: 820960835754888, - Name: "SKYW", - Description: "SkyWest, Inc.", - Symbol: "SKYW", - Precision: 5, - Type: Stock, - AlternateId: "830879102"}, - 820960918056072: &Security{ - SecurityId: 820960918056072, - Name: "SWKS", - Description: "Skyworks Solutions Inc.", - Symbol: "SWKS", - Precision: 5, - Type: Stock, - AlternateId: "83088M102"}, - 821036751039072: &Security{ - SecurityId: 821036751039072, - Name: "SMT", - Description: "Smart Technologies, Inc.", - Symbol: "SMT", - Precision: 5, - Type: Stock, - AlternateId: "83172R108"}, - 821036897165412: &Security{ - SecurityId: 821036897165412, - Name: "SWHC", - Description: "Smith & Wesson Holding Corp.", - Symbol: "SWHC", - Precision: 5, - Type: Stock, - AlternateId: "831756101"}, - 821039132781252: &Security{ - SecurityId: 821039132781252, - Name: "AOS", - Description: "Smith (A.O.) Corp.", - Symbol: "AOS", - Precision: 5, - Type: Stock, - AlternateId: "831865209"}, - 821040956797284: &Security{ - SecurityId: 821040956797284, - Name: "SFS", - Description: "Smart & Final Stores, Inc.", - Symbol: "SFS", - Precision: 5, - Type: Stock, - AlternateId: "83190B101"}, - 821040973640352: &Security{ - SecurityId: 821040973640352, - Name: "SMBK", - Description: "SmartFinancial, Inc.", - Symbol: "SMBK", - Precision: 5, - Type: Stock, - AlternateId: "83190L208"}, - 821102197276512: &Security{ - SecurityId: 821102197276512, - Name: "SMSI", - Description: "Smith Micro Software, Inc.", - Symbol: "SMSI", - Precision: 5, - Type: Stock, - AlternateId: "832154108"}, - 821113259274108: &Security{ - SecurityId: 821113259274108, - Name: "SMTX", - Description: "SMTC Corp.", - Symbol: "SMTX", - Precision: 5, - Type: Stock, - AlternateId: "832682207"}, - 821113326551988: &Security{ - SecurityId: 821113326551988, - Name: "SJM", - Description: "Smucker (J.M.) Co. (The)", - Symbol: "SJM", - Precision: 5, - Type: Stock, - AlternateId: "832696405"}, - 821178263725668: &Security{ - SecurityId: 821178263725668, - Name: "SNA", - Description: "Snap-on, Inc.", - Symbol: "SNA", - Precision: 5, - Type: Stock, - AlternateId: "833034101"}, - 821189263530960: &Security{ - SecurityId: 821189263530960, - Name: "LNCE", - Description: "Snyder's-Lance, Inc.", - Symbol: "LNCE", - Precision: 5, - Type: Stock, - AlternateId: "833551104"}, - 821191326099444: &Security{ - SecurityId: 821191326099444, - Name: "SQM", - Description: "Sociedad Quimica y Minera de Chile S.A. ADR", - Symbol: "SQM", - Precision: 5, - Type: Stock, - AlternateId: "833635105"}, - 821256977249964: &Security{ - SecurityId: 821256977249964, - Name: "SOHU", - Description: "SOHU.com, Inc.", - Symbol: "SOHU", - Precision: 5, - Type: Stock, - AlternateId: "83408W103"}, - 821258848342080: &Security{ - SecurityId: 821258848342080, - Name: "SLRC", - Description: "Solar Capital Ltd", - Symbol: "SLRC", - Precision: 5, - Type: Stock, - AlternateId: "83413U100"}, - 821258967594852: &Security{ - SecurityId: 821258967594852, - Name: "SZYM", - Description: "Solazyme, Inc.", - Symbol: "SZYM", - Precision: 5, - Type: Stock, - AlternateId: "83415T101"}, - 821258997828228: &Security{ - SecurityId: 821258997828228, - Name: "SWI", - Description: "SolarWinds, Inc.", - Symbol: "SWI", - Precision: 5, - Type: Stock, - AlternateId: "83416B109"}, - 821259016303860: &Security{ - SecurityId: 821259016303860, - Name: "SUNS", - Description: "Solar Senior Capital Ltd", - Symbol: "SUNS", - Precision: 5, - Type: Stock, - AlternateId: "83416M105"}, - 821259028060992: &Security{ - SecurityId: 821259028060992, - Name: "SCTY", - Description: "SolarCity Corp.", - Symbol: "SCTY", - Precision: 5, - Type: Stock, - AlternateId: "83416T100"}, - 821259056661444: &Security{ - SecurityId: 821259056661444, - Name: "SLTD", - Description: "Solar3D, Inc.", - Symbol: "SLTD", - Precision: 5, - Type: Stock, - AlternateId: "83417A209"}, - 821259076770000: &Security{ - SecurityId: 821259076770000, - Name: "SEDG", - Description: "SolarEdge Technologies, Inc.", - Symbol: "SEDG", - Precision: 5, - Type: Stock, - AlternateId: "83417M104"}, - 821261681854524: &Security{ - SecurityId: 821261681854524, - Name: "XPL", - Description: "Solitario Resources Corp.", - Symbol: "XPL", - Precision: 5, - Type: Stock, - AlternateId: "8342EP107"}, - 821260870599888: &Security{ - SecurityId: 821260870599888, - Name: "SLH", - Description: "Solera Holdings, Inc.", - Symbol: "SLH", - Precision: 5, - Type: Stock, - AlternateId: "83421A104"}, - 821343840270984: &Security{ - SecurityId: 821343840270984, - Name: "SAH", - Description: "Sonic Automotive, Inc.", - Symbol: "SAH", - Precision: 5, - Type: Stock, - AlternateId: "83545G102"}, - 821343858793596: &Security{ - SecurityId: 821343858793596, - Name: "SOFO", - Description: "Sonic Foundry, Inc.", - Symbol: "SOFO", - Precision: 5, - Type: Stock, - AlternateId: "83545R207"}, - 821343815076852: &Security{ - SecurityId: 821343815076852, - Name: "SONC", - Description: "Sonic Corp.", - Symbol: "SONC", - Precision: 5, - Type: Stock, - AlternateId: "835451105"}, - 821344063659912: &Security{ - SecurityId: 821344063659912, - Name: "SON", - Description: "Sonoco Products Co.", - Symbol: "SON", - Precision: 5, - Type: Stock, - AlternateId: "835495102"}, - 821350568859588: &Security{ - SecurityId: 821350568859588, - Name: "SPHS", - Description: "Sophiris Bio, Inc.", - Symbol: "SPHS", - Precision: 5, - Type: Stock, - AlternateId: "83578Q209"}, - 821352775828284: &Security{ - SecurityId: 821352775828284, - Name: "BID", - Description: "Sotheby's Holdings, Inc.", - Symbol: "BID", - Precision: 5, - Type: Stock, - AlternateId: "835898107"}, - 821354465708460: &Security{ - SecurityId: 821354465708460, - Name: "SONS", - Description: "Sonus Networks, Inc.", - Symbol: "SONS", - Precision: 5, - Type: Stock, - AlternateId: "835916503"}, - 821413356218208: &Security{ - SecurityId: 821413356218208, - Name: "SFUN", - Description: "SouFun Holdings Ltd ADR", - Symbol: "SFUN", - Precision: 5, - Type: Stock, - AlternateId: "836034108"}, - 821415593466612: &Security{ - SecurityId: 821415593466612, - Name: "SOR", - Description: "Source Capital, Inc.", - Symbol: "SOR", - Precision: 5, - Type: Stock, - AlternateId: "836144105"}, - 821580854244192: &Security{ - SecurityId: 821580854244192, - Name: "SJI", - Description: "South Jersey Industries, Inc.", - Symbol: "SJI", - Precision: 5, - Type: Stock, - AlternateId: "838518108"}, - 823847400297792: &Security{ - SecurityId: 823847400297792, - Name: "SOCB", - Description: "Southcoast Financial Corp. (SC)", - Symbol: "SOCB", - Precision: 5, - Type: Stock, - AlternateId: "84129R100"}, - 823849007690304: &Security{ - SecurityId: 823849007690304, - Name: "SXE", - Description: "Southcross Energy Partners L.P.", - Symbol: "SXE", - Precision: 5, - Type: Stock, - AlternateId: "84130C100"}, - 823932200750652: &Security{ - SecurityId: 823932200750652, - Name: "SO", - Description: "Southern Co.", - Symbol: "SO", - Precision: 5, - Type: Stock, - AlternateId: "842587107"}, - 823934236445172: &Security{ - SecurityId: 823934236445172, - Name: "PCU", - Description: "Southern Copper Corp.", - Symbol: "PCU", - Precision: 5, - Type: Stock, - AlternateId: "84265V105"}, - 823938663912804: &Security{ - SecurityId: 823938663912804, - Name: "SFST", - Description: "Southern First Bancshares, Inc.", - Symbol: "SFST", - Precision: 5, - Type: Stock, - AlternateId: "842873101"}, - 824006199592728: &Security{ - SecurityId: 824006199592728, - Name: "SMBC", - Description: "Southern Missouri Bancorp, Inc.", - Symbol: "SMBC", - Precision: 5, - Type: Stock, - AlternateId: "843380106"}, - 824092829147268: &Security{ - SecurityId: 824092829147268, - Name: "SBSI", - Description: "Southside Bancshares, Inc.", - Symbol: "SBSI", - Precision: 5, - Type: Stock, - AlternateId: "84470P109"}, - 824093030701152: &Security{ - SecurityId: 824093030701152, - Name: "LUV", - Description: "Southwest Airlines Co.", - Symbol: "LUV", - Precision: 5, - Type: Stock, - AlternateId: "844741108"}, - 824093161711020: &Security{ - SecurityId: 824093161711020, - Name: "OKSB", - Description: "Southwest Bancorp, Inc.", - Symbol: "OKSB", - Precision: 5, - Type: Stock, - AlternateId: "844767103"}, - 824095516532616: &Security{ - SecurityId: 824095516532616, - Name: "SWX", - Description: "Southwest Gas Corp.", - Symbol: "SWX", - Precision: 5, - Type: Stock, - AlternateId: "844895102"}, - 824156051572944: &Security{ - SecurityId: 824156051572944, - Name: "SGB", - Description: "Southwest Georgia Financial Corp.", - Symbol: "SGB", - Precision: 5, - Type: Stock, - AlternateId: "84502A104"}, - 824164995528324: &Security{ - SecurityId: 824164995528324, - Name: "SWN", - Description: "Southwestern Energy Co.", - Symbol: "SWN", - Precision: 5, - Type: Stock, - AlternateId: "845467109"}, - 824236483344480: &Security{ - SecurityId: 824236483344480, - Name: "SSS", - Description: "Sovran Self Storage, Inc.", - Symbol: "SSS", - Precision: 5, - Type: Stock, - AlternateId: "84610H108"}, - 824241362628996: &Security{ - SecurityId: 824241362628996, - Name: "SPAN", - Description: "Span-America Medical Systems, Inc.", - Symbol: "SPAN", - Precision: 5, - Type: Stock, - AlternateId: "846396109"}, - 824243114798748: &Security{ - SecurityId: 824243114798748, - Name: "SBSA", - Description: "Spanish Broadcasting System, Inc.", - Symbol: "SBSA", - Precision: 5, - Type: Stock, - AlternateId: "846425833"}, - 824245264376640: &Security{ - SecurityId: 824245264376640, - Name: "LOV", - Description: "Spark Networks, Inc.", - Symbol: "LOV", - Precision: 5, - Type: Stock, - AlternateId: "84651P100"}, - 824245224065964: &Security{ - SecurityId: 824245224065964, - Name: "SPKE", - Description: "Spark Energy, Inc.", - Symbol: "SPKE", - Precision: 5, - Type: Stock, - AlternateId: "846511103"}, - 824245314765228: &Security{ - SecurityId: 824245314765228, - Name: "ONCE", - Description: "Spark Therapeutics, Inc.", - Symbol: "ONCE", - Precision: 5, - Type: Stock, - AlternateId: "84652J103"}, - 824251767849792: &Security{ - SecurityId: 824251767849792, - Name: "SPAR", - Description: "Spartan Motors, Inc.", - Symbol: "SPAR", - Precision: 5, - Type: Stock, - AlternateId: "846819100"}, - 824317185534048: &Security{ - SecurityId: 824317185534048, - Name: "SPA", - Description: "Sparton Corp.", - Symbol: "SPA", - Precision: 5, - Type: Stock, - AlternateId: "847235108"}, - 824323927512708: &Security{ - SecurityId: 824323927512708, - Name: "SEP", - Description: "Spectra Energy Partners, L.P.", - Symbol: "SEP", - Precision: 5, - Type: Stock, - AlternateId: "84756N109"}, - 824323888881540: &Security{ - SecurityId: 824323888881540, - Name: "SE", - Description: "Spectra Energy Corp.", - Symbol: "SE", - Precision: 5, - Type: Stock, - AlternateId: "847560109"}, - 824325723022140: &Security{ - SecurityId: 824325723022140, - Name: "SPNC", - Description: "Spectranetics Corp. (The)", - Symbol: "SPNC", - Precision: 5, - Type: Stock, - AlternateId: "84760C107"}, - 824325993440280: &Security{ - SecurityId: 824325993440280, - Name: "SPDC", - Description: "Speed Commerce, Inc.", - Symbol: "SPDC", - Precision: 5, - Type: Stock, - AlternateId: "84764T106"}, - 824328376815384: &Security{ - SecurityId: 824328376815384, - Name: "TRK", - Description: "Speedway Motorsports, Inc.", - Symbol: "TRK", - Precision: 5, - Type: Stock, - AlternateId: "847788106"}, - 824402320230276: &Security{ - SecurityId: 824402320230276, - Name: "SPR", - Description: "Spirit AeroSystems Holdings, Inc.", - Symbol: "SPR", - Precision: 5, - Type: Stock, - AlternateId: "848574109"}, - 824402325268872: &Security{ - SecurityId: 824402325268872, - Name: "SAVE", - Description: "Spirit Airlines, Inc.", - Symbol: "SAVE", - Precision: 5, - Type: Stock, - AlternateId: "848577102"}, - 824404260186576: &Security{ - SecurityId: 824404260186576, - Name: "SPLK", - Description: "Splunk, Inc.", - Symbol: "SPLK", - Precision: 5, - Type: Stock, - AlternateId: "848637104"}, - 824473781172504: &Security{ - SecurityId: 824473781172504, - Name: "SPWH", - Description: "Sportsman's Warehouse Holdings, Inc.", - Symbol: "SPWH", - Precision: 5, - Type: Stock, - AlternateId: "84920Y106"}, - 824476147751520: &Security{ - SecurityId: 824476147751520, - Name: "SRLP", - Description: "Sprague Resources LP", - Symbol: "SRLP", - Precision: 5, - Type: Stock, - AlternateId: "849343108"}, - 826678957416804: &Security{ - SecurityId: 826678957416804, - Name: "OMF", - Description: "OneMain Holdings, Inc.", - Symbol: "OMF", - Precision: 5, - Type: Stock, - AlternateId: "85172J101"}, - 826742383076304: &Security{ - SecurityId: 826742383076304, - Name: "PHYS", - Description: "Sprott Physical Gold Trust", - Symbol: "PHYS", - Precision: 5, - Type: Stock, - AlternateId: "85207H104"}, - 826742388115260: &Security{ - SecurityId: 826742388115260, - Name: "PSLV", - Description: "Sprott Physical Silver Trust", - Symbol: "PSLV", - Precision: 5, - Type: Stock, - AlternateId: "85207K107"}, - 826742398192848: &Security{ - SecurityId: 826742398192848, - Name: "SPPP", - Description: "Sprott Physical Platinum and Palladium Trust", - Symbol: "SPPP", - Precision: 5, - Type: Stock, - AlternateId: "85207Q104"}, - 826742446901892: &Security{ - SecurityId: 826742446901892, - Name: "FUND", - Description: "Sprott Focus Trust, Inc.", - Symbol: "FUND", - Precision: 5, - Type: Stock, - AlternateId: "85208J109"}, - 826742451940488: &Security{ - SecurityId: 826742451940488, - Name: "SFM", - Description: "Sprouts Farmers Market, Inc.", - Symbol: "SFM", - Precision: 5, - Type: Stock, - AlternateId: "85208M102"}, - 826746472941228: &Security{ - SecurityId: 826746472941228, - Name: "SQ", - Description: "Square, Inc. Cl A", - Symbol: "SQ", - Precision: 5, - Type: Stock, - AlternateId: "852234103"}, - 826748525525364: &Security{ - SecurityId: 826748525525364, - Name: "STAA", - Description: "STAAR Surgical Co.", - Symbol: "STAA", - Precision: 5, - Type: Stock, - AlternateId: "852312305"}, - 826748957140128: &Security{ - SecurityId: 826748957140128, - Name: "STAF", - Description: "Staffing 360 Solutions, Inc.", - Symbol: "STAF", - Precision: 5, - Type: Stock, - AlternateId: "852387208"}, - 826753077284724: &Security{ - SecurityId: 826753077284724, - Name: "SSI", - Description: "Stage Stores, Inc.", - Symbol: "SSI", - Precision: 5, - Type: Stock, - AlternateId: "85254C305"}, - 826753088948616: &Security{ - SecurityId: 826753088948616, - Name: "STAG", - Description: "Stag Industrial, Inc.", - Symbol: "STAG", - Precision: 5, - Type: Stock, - AlternateId: "85254J102"}, - 826759659652992: &Security{ - SecurityId: 826759659652992, - Name: "STMP", - Description: "Stamps.com, Inc.", - Symbol: "STMP", - Precision: 5, - Type: Stock, - AlternateId: "852857200"}, - 826759891393344: &Security{ - SecurityId: 826759891393344, - Name: "SFG", - Description: "StanCorp Financial Group, Inc.", - Symbol: "SFG", - Precision: 5, - Type: Stock, - AlternateId: "852891100"}, - 826833728992500: &Security{ - SecurityId: 826833728992500, - Name: "SMP", - Description: "Standard Motor Products, Inc.", - Symbol: "SMP", - Precision: 5, - Type: Stock, - AlternateId: "853666105"}, - 826903196230716: &Security{ - SecurityId: 826903196230716, - Name: "SXI", - Description: "Standex Intl Corp.", - Symbol: "SXI", - Precision: 5, - Type: Stock, - AlternateId: "854231107"}, - 826905198379680: &Security{ - SecurityId: 826905198379680, - Name: "STLY", - Description: "Stanley Furniture Co., Inc.", - Symbol: "STLY", - Precision: 5, - Type: Stock, - AlternateId: "854305208"}, - 826909547185296: &Security{ - SecurityId: 826909547185296, - Name: "SWH", - Description: "Stanley Black & Decker, 6.25% Equity Units due 11/17/2018", - Symbol: "SWH", - Precision: 5, - Type: Stock, - AlternateId: "854502804"}, - 826914056627844: &Security{ - SecurityId: 826914056627844, - Name: "STN", - Description: "Stantec, Inc.", - Symbol: "STN", - Precision: 5, - Type: Stock, - AlternateId: "85472N109"}, - 826977205150344: &Security{ - SecurityId: 826977205150344, - Name: "SPLS", - Description: "Staples, Inc.", - Symbol: "SPLS", - Precision: 5, - Type: Stock, - AlternateId: "855030102"}, - 826979341622004: &Security{ - SecurityId: 826979341622004, - Name: "SGU", - Description: "Star Gas Partners, L.P.", - Symbol: "SGU", - Precision: 5, - Type: Stock, - AlternateId: "85512C105"}, - 826981625899908: &Security{ - SecurityId: 826981625899908, - Name: "SBUX", - Description: "Starbucks Corp.", - Symbol: "SBUX", - Precision: 5, - Type: Stock, - AlternateId: "855244109"}, - 826990460680068: &Security{ - SecurityId: 826990460680068, - Name: "SCX", - Description: "L.S. Starrett Co. (The)", - Symbol: "SCX", - Precision: 5, - Type: Stock, - AlternateId: "855668109"}, - 826990648796988: &Security{ - SecurityId: 826990648796988, - Name: "SRT", - Description: "StarTek, Inc.", - Symbol: "SRT", - Precision: 5, - Type: Stock, - AlternateId: "85569C107"}, - 826992272985588: &Security{ - SecurityId: 826992272985588, - Name: "STFC", - Description: "State Auto Financial Corp.", - Symbol: "STFC", - Precision: 5, - Type: Stock, - AlternateId: "855707105"}, - 826992340170228: &Security{ - SecurityId: 826992340170228, - Name: "STWD", - Description: "Starwood Property Trust, Inc.", - Symbol: "STWD", - Precision: 5, - Type: Stock, - AlternateId: "85571B105"}, - 826992365364360: &Security{ - SecurityId: 826992365364360, - Name: "STRZA", - Description: "Starz Series A", - Symbol: "STRZA", - Precision: 5, - Type: Stock, - AlternateId: "85571Q102"}, - 826996631728932: &Security{ - SecurityId: 826996631728932, - Name: "HOT", - Description: "Starwood Hotels & Resorts Worldwide, Inc.", - Symbol: "HOT", - Precision: 5, - Type: Stock, - AlternateId: "85590A401"}, - 827136038130804: &Security{ - SecurityId: 827136038130804, - Name: "SNC", - Description: "State National Companies, Inc.", - Symbol: "SNC", - Precision: 5, - Type: Stock, - AlternateId: "85711T305"}, - 827142894229932: &Security{ - SecurityId: 827142894229932, - Name: "STT", - Description: "State Street Corp.", - Symbol: "STT", - Precision: 5, - Type: Stock, - AlternateId: "857477103"}, - 827214368609088: &Security{ - SecurityId: 827214368609088, - Name: "STLD", - Description: "Steel Dynamics, Inc.", - Symbol: "STLD", - Precision: 5, - Type: Stock, - AlternateId: "858119100"}, - 827214417364716: &Security{ - SecurityId: 827214417364716, - Name: "SXCL", - Description: "Steel Excel, Inc.", - Symbol: "SXCL", - Precision: 5, - Type: Stock, - AlternateId: "858122203"}, - 827214580240956: &Security{ - SecurityId: 827214580240956, - Name: "SPLP", - Description: "Steel Partners Holdings L.P.", - Symbol: "SPLP", - Precision: 5, - Type: Stock, - AlternateId: "85814R107"}, - 827214603802092: &Security{ - SecurityId: 827214603802092, - Name: "SCS", - Description: "Steelcase, Inc.", - Symbol: "SCS", - Precision: 5, - Type: Stock, - AlternateId: "858155203"}, - 827219078252640: &Security{ - SecurityId: 827219078252640, - Name: "SMRT", - Description: "Stein Mart, Inc.", - Symbol: "SMRT", - Precision: 5, - Type: Stock, - AlternateId: "858375108"}, - 827223319329516: &Security{ - SecurityId: 827223319329516, - Name: "SBOT", - Description: "Stellar Biotechnologies, Inc.", - Symbol: "SBOT", - Precision: 5, - Type: Stock, - AlternateId: "85855A203"}, - 827223376389984: &Security{ - SecurityId: 827223376389984, - Name: "SCM", - Description: "Stellus Capital Investment Corp.", - Symbol: "SCM", - Precision: 5, - Type: Stock, - AlternateId: "858568108"}, - 827223468815376: &Security{ - SecurityId: 827223468815376, - Name: "STEM", - Description: "StemCells, Inc.", - Symbol: "STEM", - Precision: 5, - Type: Stock, - AlternateId: "85857R204"}, - 827223504040764: &Security{ - SecurityId: 827223504040764, - Name: "STML", - Description: "Stemline Therapeutics, Inc.", - Symbol: "STML", - Precision: 5, - Type: Stock, - AlternateId: "85858C107"}, - 827223493962816: &Security{ - SecurityId: 827223493962816, - Name: "SCL", - Description: "Stepan Co.", - Symbol: "SCL", - Precision: 5, - Type: Stock, - AlternateId: "858586100"}, - 827231771110752: &Security{ - SecurityId: 827231771110752, - Name: "SRCL", - Description: "Stericycle, Inc.", - Symbol: "SRCL", - Precision: 5, - Type: Stock, - AlternateId: "858912108"}, - 827231771157372: &Security{ - SecurityId: 827231771157372, - Name: "SRCLP", - Description: "Stericycle, 5.25% Dep Shares Series A Mandatory Convertible Preferred Stock", - Symbol: "SRCLP", - Precision: 5, - Type: Stock, - AlternateId: "858912207"}, - 827292962880576: &Security{ - SecurityId: 827292962880576, - Name: "STE", - Description: "STERIS plc", - Symbol: "STE", - Precision: 5, - Type: Stock, - AlternateId: "859152100"}, - 829412974196028: &Security{ - SecurityId: 829412974196028, - Name: "SSFN", - Description: "Stewardship Financial Corp.", - Symbol: "SSFN", - Precision: 5, - Type: Stock, - AlternateId: "860326107"}, - 829413269808228: &Security{ - SecurityId: 829413269808228, - Name: "STC", - Description: "Stewart Information Services Corp.", - Symbol: "STC", - Precision: 5, - Type: Stock, - AlternateId: "860372101"}, - 829419554931336: &Security{ - SecurityId: 829419554931336, - Name: "SF", - Description: "Stifel Financial Corp.", - Symbol: "SF", - Precision: 5, - Type: Stock, - AlternateId: "860630102"}, - 829421835849864: &Security{ - SecurityId: 829421835849864, - Name: "SWC", - Description: "Stillwater Mining Co.", - Symbol: "SWC", - Precision: 5, - Type: Stock, - AlternateId: "86074Q102"}, - 829484740828296: &Security{ - SecurityId: 829484740828296, - Name: "STM", - Description: "STMicroelectronics N.V. ADR", - Symbol: "STM", - Precision: 5, - Type: Stock, - AlternateId: "861012102"}, - 829498028270652: &Security{ - SecurityId: 829498028270652, - Name: "EDF", - Description: "Stone Harbor Emerging Markets Income Fund", - Symbol: "EDF", - Precision: 5, - Type: Stock, - AlternateId: "86164T107"}, - 829498033309248: &Security{ - SecurityId: 829498033309248, - Name: "EDI", - Description: "Stone Harbor Emerging Markets Total Income Fund", - Symbol: "EDI", - Precision: 5, - Type: Stock, - AlternateId: "86164W100"}, - 829497982920984: &Security{ - SecurityId: 829497982920984, - Name: "SGY", - Description: "Stone Energy Corp.", - Symbol: "SGY", - Precision: 5, - Type: Stock, - AlternateId: "861642106"}, - 829500398208720: &Security{ - SecurityId: 829500398208720, - Name: "BANX", - Description: "StoneCastle Financial Corp.", - Symbol: "BANX", - Precision: 5, - Type: Stock, - AlternateId: "861780104"}, - 829502195491008: &Security{ - SecurityId: 829502195491008, - Name: "SGM", - Description: "Stonegate Mortgage Corp.", - Symbol: "SGM", - Precision: 5, - Type: Stock, - AlternateId: "86181Q300"}, - 829502153407548: &Security{ - SecurityId: 829502153407548, - Name: "SGBK", - Description: "Stonegate Bank (FL)", - Symbol: "SGBK", - Precision: 5, - Type: Stock, - AlternateId: "861811107"}, - 829502314650504: &Security{ - SecurityId: 829502314650504, - Name: "SRI", - Description: "Stoneridge, Inc.", - Symbol: "SRI", - Precision: 5, - Type: Stock, - AlternateId: "86183P102"}, - 829502316330048: &Security{ - SecurityId: 829502316330048, - Name: "STON", - Description: "StoneMor Partners, L.P.", - Symbol: "STON", - Precision: 5, - Type: Stock, - AlternateId: "86183Q100"}, - 829565340561216: &Security{ - SecurityId: 829565340561216, - Name: "STOR", - Description: "Store Capital Corp.", - Symbol: "STOR", - Precision: 5, - Type: Stock, - AlternateId: "862121100"}, - 829574361778788: &Security{ - SecurityId: 829574361778788, - Name: "STRP", - Description: "Straight Path Communications, Inc.", - Symbol: "STRP", - Precision: 5, - Type: Stock, - AlternateId: "862578101"}, - 829578354226020: &Security{ - SecurityId: 829578354226020, - Name: "SGL", - Description: "Strategic Global Income Fund, Inc.", - Symbol: "SGL", - Precision: 5, - Type: Stock, - AlternateId: "862719101"}, - 829643644259136: &Security{ - SecurityId: 829643644259136, - Name: "STRT", - Description: "Strattec Security Corp.", - Symbol: "STRT", - Precision: 5, - Type: Stock, - AlternateId: "863111100"}, - 829643956714404: &Security{ - SecurityId: 829643956714404, - Name: "STRS", - Description: "Stratus Properties, Inc.", - Symbol: "STRS", - Precision: 5, - Type: Stock, - AlternateId: "863167201"}, - 829645995721752: &Security{ - SecurityId: 829645995721752, - Name: "STRM", - Description: "StreamLine Health Solutions, Inc.", - Symbol: "STRM", - Precision: 5, - Type: Stock, - AlternateId: "86323X106"}, - 829645950372084: &Security{ - SecurityId: 829645950372084, - Name: "STRA", - Description: "Strayer Education, Inc.", - Symbol: "STRA", - Precision: 5, - Type: Stock, - AlternateId: "863236105"}, - 829654840579428: &Security{ - SecurityId: 829654840579428, - Name: "SYK", - Description: "Stryker Corp.", - Symbol: "SYK", - Precision: 5, - Type: Stock, - AlternateId: "863667101"}, - 829659320115552: &Security{ - SecurityId: 829659320115552, - Name: "STB", - Description: "Student Transportation, Inc.", - Symbol: "STB", - Precision: 5, - Type: Stock, - AlternateId: "86388A108"}, - 829722263725152: &Security{ - SecurityId: 829722263725152, - Name: "RGR", - Description: "Sturm, Ruger & Co., Inc.", - Symbol: "RGR", - Precision: 5, - Type: Stock, - AlternateId: "864159108"}, - 829728963713232: &Security{ - SecurityId: 829728963713232, - Name: "SPH", - Description: "Suburban Propane Partners, L.P.", - Symbol: "SPH", - Precision: 5, - Type: Stock, - AlternateId: "864482104"}, - 829735203486780: &Security{ - SecurityId: 829735203486780, - Name: "SCNB", - Description: "Suffolk Bancorp", - Symbol: "SCNB", - Precision: 5, - Type: Stock, - AlternateId: "864739107"}, - 829876887494244: &Security{ - SecurityId: 829876887494244, - Name: "SMMF", - Description: "Summit Financial Group, Inc.", - Symbol: "SMMF", - Precision: 5, - Type: Stock, - AlternateId: "86606G101"}, - 829876984911936: &Security{ - SecurityId: 829876984911936, - Name: "INN", - Description: "Summit Hotel Properties, Inc.", - Symbol: "INN", - Precision: 5, - Type: Stock, - AlternateId: "866082100"}, - 829878919829640: &Security{ - SecurityId: 829878919829640, - Name: "SMLP", - Description: "Summit Midstream Partners, L.P.", - Symbol: "SMLP", - Precision: 5, - Type: Stock, - AlternateId: "866142102"}, - 829881320000904: &Security{ - SecurityId: 829881320000904, - Name: "SMMT", - Description: "Summit Therapeutics plc", - Symbol: "SMMT", - Precision: 5, - Type: Stock, - AlternateId: "86627R102"}, - 829889758438308: &Security{ - SecurityId: 829889758438308, - Name: "SNBC", - Description: "Sun Bancorp, Inc. (NJ)", - Symbol: "SNBC", - Precision: 5, - Type: Stock, - AlternateId: "86663B201"}, - 829889988499152: &Security{ - SecurityId: 829889988499152, - Name: "SUI", - Description: "Sun Communities, Inc.", - Symbol: "SUI", - Precision: 5, - Type: Stock, - AlternateId: "866674104"}, - 829892289573108: &Security{ - SecurityId: 829892289573108, - Name: "SLF", - Description: "Sun Life Financial, Inc.", - Symbol: "SLF", - Precision: 5, - Type: Stock, - AlternateId: "866796105"}, - 829896334088436: &Security{ - SecurityId: 829896334088436, - Name: "SNHY", - Description: "Sun Hydraulics Corp.", - Symbol: "SNHY", - Precision: 5, - Type: Stock, - AlternateId: "866942105"}, - 829959353280684: &Security{ - SecurityId: 829959353280684, - Name: "SXC", - Description: "SunCoke Energy, Inc.", - Symbol: "SXC", - Precision: 5, - Type: Stock, - AlternateId: "86722A103"}, - 829959393591396: &Security{ - SecurityId: 829959393591396, - Name: "SXCP", - Description: "SunCoke Energy Partners, L.P.", - Symbol: "SXCP", - Precision: 5, - Type: Stock, - AlternateId: "86722Y101"}, - 829959343203132: &Security{ - SecurityId: 829959343203132, - Name: "SU", - Description: "Suncor Energy, Inc.", - Symbol: "SU", - Precision: 5, - Type: Stock, - AlternateId: "867224107"}, - 829961570374020: &Security{ - SecurityId: 829961570374020, - Name: "SUNE", - Description: "SunEdison, Inc.", - Symbol: "SUNE", - Precision: 5, - Type: Stock, - AlternateId: "86732Y109"}, - 829961526936996: &Security{ - SecurityId: 829961526936996, - Name: "SNSS", - Description: "Sunesis Pharmaceuticals, Inc.", - Symbol: "SNSS", - Precision: 5, - Type: Stock, - AlternateId: "867328601"}, - 829961865986184: &Security{ - SecurityId: 829961865986184, - Name: "SSY", - Description: "SunLink Health Systems, Inc.", - Symbol: "SSY", - Precision: 5, - Type: Stock, - AlternateId: "86737U102"}, - 829968811198560: &Security{ - SecurityId: 829968811198560, - Name: "STKL", - Description: "Sunopta, Inc.", - Symbol: "STKL", - Precision: 5, - Type: Stock, - AlternateId: "8676EP108"}, - 829968199818336: &Security{ - SecurityId: 829968199818336, - Name: "SXL", - Description: "Sunoco Logistics Partners, L.P.", - Symbol: "SXL", - Precision: 5, - Type: Stock, - AlternateId: "86764L108"}, - 829968258604932: &Security{ - SecurityId: 829968258604932, - Name: "SUN", - Description: "Sunoco LP (Units)", - Symbol: "SUN", - Precision: 5, - Type: Stock, - AlternateId: "86765K109"}, - 829968228511704: &Security{ - SecurityId: 829968228511704, - Name: "SPWR", - Description: "SunPower Corp.", - Symbol: "SPWR", - Precision: 5, - Type: Stock, - AlternateId: "867652406"}, - 829970213677812: &Security{ - SecurityId: 829970213677812, - Name: "RUN", - Description: "Sunrun, Inc.", - Symbol: "RUN", - Precision: 5, - Type: Stock, - AlternateId: "86771W105"}, - 829970554639968: &Security{ - SecurityId: 829970554639968, - Name: "SBCP", - Description: "Sunshine Bancorp, Inc.", - Symbol: "SBCP", - Precision: 5, - Type: Stock, - AlternateId: "86777J108"}, - 829972447567128: &Security{ - SecurityId: 829972447567128, - Name: "SSH", - Description: "Sunshine Heart, Inc.", - Symbol: "SSH", - Precision: 5, - Type: Stock, - AlternateId: "86782U106"}, - 829972823800932: &Security{ - SecurityId: 829972823800932, - Name: "SHO", - Description: "Sunstone Hotel Investors, Inc.", - Symbol: "SHO", - Precision: 5, - Type: Stock, - AlternateId: "867892101"}, - 829972823987772: &Security{ - SecurityId: 829972823987772, - Name: "SHO-D", - Description: "Sunstone Hotel Investors, 8.00% Series D Cumul Redeem Preferred Stock", - Symbol: "SHO-D", - Precision: 5, - Type: Stock, - AlternateId: "867892507"}, - 829974520213164: &Security{ - SecurityId: 829974520213164, - Name: "STI", - Description: "SunTrust Banks, Inc.", - Symbol: "STI", - Precision: 5, - Type: Stock, - AlternateId: "867914103"}, - 830035710303804: &Security{ - SecurityId: 830035710303804, - Name: "SDPI", - Description: "Superior Drilling Products, Inc.", - Symbol: "SDPI", - Precision: 5, - Type: Stock, - AlternateId: "868153107"}, - 830035717022304: &Security{ - SecurityId: 830035717022304, - Name: "SPN", - Description: "Superior Energy Services, Inc.", - Symbol: "SPN", - Precision: 5, - Type: Stock, - AlternateId: "868157108"}, - 830035779167988: &Security{ - SecurityId: 830035779167988, - Name: "SUP", - Description: "Superior Industries Intl, Inc.", - Symbol: "SUP", - Precision: 5, - Type: Stock, - AlternateId: "868168105"}, - 830040072266376: &Security{ - SecurityId: 830040072266376, - Name: "SGC", - Description: "Superior Uniform Group, Inc.", - Symbol: "SGC", - Precision: 5, - Type: Stock, - AlternateId: "868358102"}, - 830042250728544: &Security{ - SecurityId: 830042250728544, - Name: "SUPN", - Description: "Supernus Pharmaceuticals, Inc.", - Symbol: "SUPN", - Precision: 5, - Type: Stock, - AlternateId: "868459108"}, - 830044301539500: &Security{ - SecurityId: 830044301539500, - Name: "SVU", - Description: "SUPERVALU, Inc.", - Symbol: "SVU", - Precision: 5, - Type: Stock, - AlternateId: "868536103"}, - 830044647540324: &Security{ - SecurityId: 830044647540324, - Name: "SPRT", - Description: "Support.com, Inc.", - Symbol: "SPRT", - Precision: 5, - Type: Stock, - AlternateId: "86858W101"}, - 830046298602888: &Security{ - SecurityId: 830046298602888, - Name: "STS", - Description: "Supreme Industries, Inc.", - Symbol: "STS", - Precision: 5, - Type: Stock, - AlternateId: "868607102"}, - 830050717672512: &Security{ - SecurityId: 830050717672512, - Name: "SGRY", - Description: "Surgery Partners, Inc.", - Symbol: "SGRY", - Precision: 5, - Type: Stock, - AlternateId: "86881A100"}, - 830050736148504: &Security{ - SecurityId: 830050736148504, - Name: "SCAI", - Description: "Surgical Care Affiliates, Inc.", - Symbol: "SCAI", - Precision: 5, - Type: Stock, - AlternateId: "86881L106"}, - 830051068712256: &Security{ - SecurityId: 830051068712256, - Name: "SRDX", - Description: "SurModics, Inc.", - Symbol: "SRDX", - Precision: 5, - Type: Stock, - AlternateId: "868873100"}, - 830118486865608: &Security{ - SecurityId: 830118486865608, - Name: "TOR", - Description: "Sutor Technology Group Ltd.", - Symbol: "TOR", - Precision: 5, - Type: Stock, - AlternateId: "869362202"}, - 832232332275732: &Security{ - SecurityId: 832232332275732, - Name: "FUE", - Description: "Swedish Export Credit ELEMENTS MLCX Biofuels Index Total Return 2/13/2023", - Symbol: "FUE", - Precision: 5, - Type: Stock, - AlternateId: "870297199"}, - 832232332311876: &Security{ - SecurityId: 832232332311876, - Name: "GRU", - Description: "Swedish Export Credit ELEMENTS MLCX Grains Index - Total Return due 2/14/2023", - Symbol: "GRU", - Precision: 5, - Type: Stock, - AlternateId: "870297215"}, - 832232332357272: &Security{ - SecurityId: 832232332357272, - Name: "RJN", - Description: "Swedish Export Credit ELEMENTS Rogers Intl Commodity Index Energy TR 10/24/2022", - Symbol: "RJN", - Precision: 5, - Type: Stock, - AlternateId: "870297306"}, - 832232332403892: &Security{ - SecurityId: 832232332403892, - Name: "RJZ", - Description: "Swedish Export Credit ELEMENTS Rogers Intl Commodity Index-Metals TR 10/24/2022", - Symbol: "RJZ", - Precision: 5, - Type: Stock, - AlternateId: "870297405"}, - 832232332450512: &Security{ - SecurityId: 832232332450512, - Name: "EEH", - Description: "Swedish Export Credit ELEMENTS LC U.S. Momentum Index ETN 8/8/2022", - Symbol: "EEH", - Precision: 5, - Type: Stock, - AlternateId: "870297504"}, - 832232332497132: &Security{ - SecurityId: 832232332497132, - Name: "RJA", - Description: "Swedish Export Credit ELEMENTS Linked Rogers Intl Agriculture TR due 10/24/2022", - Symbol: "RJA", - Precision: 5, - Type: Stock, - AlternateId: "870297603"}, - 832232332590372: &Security{ - SecurityId: 832232332590372, - Name: "RJI", - Description: "Swedish Export Credit ELEMENTS Rogers Intl Commodity Index TR ETN due 10/24/2022", - Symbol: "RJI", - Precision: 5, - Type: Stock, - AlternateId: "870297801"}, - 832242855058020: &Security{ - SecurityId: 832242855058020, - Name: "SFYW", - Description: "Swift Energy Co.", - Symbol: "SFYW", - Precision: 5, - Type: Stock, - AlternateId: "870738101"}, - 832242952475748: &Security{ - SecurityId: 832242952475748, - Name: "SWFT", - Description: "Swift Transportation Co., Inc.", - Symbol: "SWFT", - Precision: 5, - Type: Stock, - AlternateId: "87074U101"}, - 832244850535104: &Security{ - SecurityId: 832244850535104, - Name: "SWSH", - Description: "Swisher Hygiene, Inc.", - Symbol: "SWSH", - Precision: 5, - Type: Stock, - AlternateId: "870808300"}, - 832245268666212: &Security{ - SecurityId: 832245268666212, - Name: "SWZ", - Description: "Swiss Helvetia Fund, Inc. (The)", - Symbol: "SWZ", - Precision: 5, - Type: Stock, - AlternateId: "870875101"}, - 832310333630892: &Security{ - SecurityId: 832310333630892, - Name: "SYKE", - Description: "Sykes Enterprises, Inc.", - Symbol: "SYKE", - Precision: 5, - Type: Stock, - AlternateId: "871237103"}, - 832316675861088: &Security{ - SecurityId: 832316675861088, - Name: "SYMC", - Description: "Symantec Corp.", - Symbol: "SYMC", - Precision: 5, - Type: Stock, - AlternateId: "871503108"}, - 832316774958360: &Security{ - SecurityId: 832316774958360, - Name: "SYA", - Description: "Symetra Financial Corp.", - Symbol: "SYA", - Precision: 5, - Type: Stock, - AlternateId: "87151Q106"}, - 832317035298840: &Security{ - SecurityId: 832317035298840, - Name: "SYNC", - Description: "Synacor, Inc.", - Symbol: "SYNC", - Precision: 5, - Type: Stock, - AlternateId: "871561106"}, - 832317042017340: &Security{ - SecurityId: 832317042017340, - Name: "SYNL", - Description: "Synalloy Corp.", - Symbol: "SYNL", - Precision: 5, - Type: Stock, - AlternateId: "871565107"}, - 832317115920516: &Security{ - SecurityId: 832317115920516, - Name: "SYNA", - Description: "Synaptics, Inc.", - Symbol: "SYNA", - Precision: 5, - Type: Stock, - AlternateId: "87157D109"}, - 832317241891392: &Security{ - SecurityId: 832317241891392, - Name: "SSRG", - Description: "Symmetry Surgical, Inc.", - Symbol: "SSRG", - Precision: 5, - Type: Stock, - AlternateId: "87159G100"}, - 832318864400448: &Security{ - SecurityId: 832318864400448, - Name: "SYT", - Description: "Syngenta AG ADS", - Symbol: "SYT", - Precision: 5, - Type: Stock, - AlternateId: "87160A100"}, - 832318859361852: &Security{ - SecurityId: 832318859361852, - Name: "SNPS", - Description: "Synopsys, Inc.", - Symbol: "SNPS", - Precision: 5, - Type: Stock, - AlternateId: "871607107"}, - 832318997090220: &Security{ - SecurityId: 832318997090220, - Name: "SYNT", - Description: "Syntel, Inc.", - Symbol: "SYNT", - Precision: 5, - Type: Stock, - AlternateId: "87162H103"}, - 832319022284352: &Security{ - SecurityId: 832319022284352, - Name: "SNX", - Description: "SYNNEX Corp.", - Symbol: "SNX", - Precision: 5, - Type: Stock, - AlternateId: "87162W100"}, - 832319044212960: &Security{ - SecurityId: 832319044212960, - Name: "SGYP", - Description: "Synergy Pharmaceuticals, Inc.", - Symbol: "SGYP", - Precision: 5, - Type: Stock, - AlternateId: "871639308"}, - 832319131459500: &Security{ - SecurityId: 832319131459500, - Name: "SYRG", - Description: "Synergy Resources Corp.", - Symbol: "SYRG", - Precision: 5, - Type: Stock, - AlternateId: "87164P103"}, - 832319139857544: &Security{ - SecurityId: 832319139857544, - Name: "SYN", - Description: "Synthetic Biologics, Inc.", - Symbol: "SYN", - Precision: 5, - Type: Stock, - AlternateId: "87164U102"}, - 832319168411052: &Security{ - SecurityId: 832319168411052, - Name: "SYF", - Description: "Synchrony Financial", - Symbol: "SYF", - Precision: 5, - Type: Stock, - AlternateId: "87165B103"}, - 832319158333464: &Security{ - SecurityId: 832319158333464, - Name: "SYPR", - Description: "Sypris Solutions, Inc.", - Symbol: "SYPR", - Precision: 5, - Type: Stock, - AlternateId: "871655106"}, - 832323337218108: &Security{ - SecurityId: 832323337218108, - Name: "SYY", - Description: "Sysco Corp.", - Symbol: "SYY", - Precision: 5, - Type: Stock, - AlternateId: "871829107"}, - 832323505179492: &Security{ - SecurityId: 832323505179492, - Name: "SYX", - Description: "Systemax, Inc.", - Symbol: "SYX", - Precision: 5, - Type: Stock, - AlternateId: "871851101"}, - 832388936300424: &Security{ - SecurityId: 832388936300424, - Name: "TCB", - Description: "TCF Financial Corp.", - Symbol: "TCB", - Precision: 5, - Type: Stock, - AlternateId: "872275102"}, - 832390906490208: &Security{ - SecurityId: 832390906490208, - Name: "TCP", - Description: "TC Pipelines, L.P.", - Symbol: "TCP", - Precision: 5, - Type: Stock, - AlternateId: "87233Q108"}, - 832390923286224: &Security{ - SecurityId: 832390923286224, - Name: "TSI", - Description: "TCW Strategic Income Fund", - Symbol: "TSI", - Precision: 5, - Type: Stock, - AlternateId: "872340104"}, - 832391101325664: &Security{ - SecurityId: 832391101325664, - Name: "AMTD", - Description: "TD Ameritrade Holding Corp", - Symbol: "AMTD", - Precision: 5, - Type: Stock, - AlternateId: "87236Y108"}, - 832391113082688: &Security{ - SecurityId: 832391113082688, - Name: "TE", - Description: "TECO Energy, Inc.", - Symbol: "TE", - Precision: 5, - Type: Stock, - AlternateId: "872375100"}, - 832391208820908: &Security{ - SecurityId: 832391208820908, - Name: "TCPC", - Description: "TCP Capital Corp.", - Symbol: "TCPC", - Precision: 5, - Type: Stock, - AlternateId: "87238Q103"}, - 832391175228732: &Security{ - SecurityId: 832391175228732, - Name: "TESS", - Description: "Tessco Technologies, Inc.", - Symbol: "TESS", - Precision: 5, - Type: Stock, - AlternateId: "872386107"}, - 832393053039384: &Security{ - SecurityId: 832393053039384, - Name: "TCRD", - Description: "THL Credit, Inc.", - Symbol: "TCRD", - Precision: 5, - Type: Stock, - AlternateId: "872438106"}, - 832393145418156: &Security{ - SecurityId: 832393145418156, - Name: "TSLF", - Description: "THL Credit Senior Loan Fund", - Symbol: "TSLF", - Precision: 5, - Type: Stock, - AlternateId: "87244R103"}, - 832393148777604: &Security{ - SecurityId: 832393148777604, - Name: "TICC", - Description: "TICC Capital Corp.", - Symbol: "TICC", - Precision: 5, - Type: Stock, - AlternateId: "87244T109"}, - 832395276851076: &Security{ - SecurityId: 832395276851076, - Name: "TJX", - Description: "TJX Companies, Inc. (The)", - Symbol: "TJX", - Precision: 5, - Type: Stock, - AlternateId: "872540109"}, - 832395579228396: &Security{ - SecurityId: 832395579228396, - Name: "TMUS-A", - Description: "T-Mobile US, 5.50% Mandatory Convertible Preferred Stock Series A", - Symbol: "TMUS-A", - Precision: 5, - Type: Stock, - AlternateId: "872590203"}, - 832397341099104: &Security{ - SecurityId: 832397341099104, - Name: "TRR", - Description: "TRC Companies, Inc.", - Symbol: "TRR", - Precision: 5, - Type: Stock, - AlternateId: "872625108"}, - 832397542653060: &Security{ - SecurityId: 832397542653060, - Name: "TPH", - Description: "TRI Pointe Group, Inc.", - Symbol: "TPH", - Precision: 5, - Type: Stock, - AlternateId: "87265H109"}, - 832397547691656: &Security{ - SecurityId: 832397547691656, - Name: "TSLX", - Description: "TPG Specialty Lending, Inc.", - Symbol: "TSLX", - Precision: 5, - Type: Stock, - AlternateId: "87265K102"}, - 832402057507452: &Security{ - SecurityId: 832402057507452, - Name: "TSRI", - Description: "TSR, Inc.", - Symbol: "TSRI", - Precision: 5, - Type: Stock, - AlternateId: "872885207"}, - 832462862919300: &Security{ - SecurityId: 832462862919300, - Name: "TTMI", - Description: "TTM Technologies, Inc.", - Symbol: "TTMI", - Precision: 5, - Type: Stock, - AlternateId: "87305R109"}, - 832469458771188: &Security{ - SecurityId: 832469458771188, - Name: "DATA", - Description: "Tableau Software, Inc.", - Symbol: "DATA", - Precision: 5, - Type: Stock, - AlternateId: "87336U105"}, - 832480305731244: &Security{ - SecurityId: 832480305731244, - Name: "TAHO", - Description: "Tahoe Resources, Inc.", - Symbol: "TAHO", - Precision: 5, - Type: Stock, - AlternateId: "873868103"}, - 832541013771948: &Security{ - SecurityId: 832541013771948, - Name: "TAIT", - Description: "Taitron Components, Inc.", - Symbol: "TAIT", - Precision: 5, - Type: Stock, - AlternateId: "874028103"}, - 832541070879000: &Security{ - SecurityId: 832541070879000, - Name: "TWN", - Description: "Taiwan Fund, Inc. (The)", - Symbol: "TWN", - Precision: 5, - Type: Stock, - AlternateId: "874036106"}, - 832541075917632: &Security{ - SecurityId: 832541075917632, - Name: "TSM", - Description: "Taiwan Semiconductor Manufacturing Co. Ltd ADR", - Symbol: "TSM", - Precision: 5, - Type: Stock, - AlternateId: "874039100"}, - 832541188452228: &Security{ - SecurityId: 832541188452228, - Name: "TTWO", - Description: "Take-Two Interactive Software, Inc.", - Symbol: "TTWO", - Precision: 5, - Type: Stock, - AlternateId: "874054109"}, - 832541363132112: &Security{ - SecurityId: 832541363132112, - Name: "XRS", - Description: "TAL Education Group ADR", - Symbol: "XRS", - Precision: 5, - Type: Stock, - AlternateId: "874080104"}, - 832541368171104: &Security{ - SecurityId: 832541368171104, - Name: "TAL", - Description: "TAL Intl Group, Inc.", - Symbol: "TAL", - Precision: 5, - Type: Stock, - AlternateId: "874083108"}, - 832545385812468: &Security{ - SecurityId: 832545385812468, - Name: "TLN", - Description: "Talen Energy Corp.", - Symbol: "TLN", - Precision: 5, - Type: Stock, - AlternateId: "87422J105"}, - 832554494370108: &Security{ - SecurityId: 832554494370108, - Name: "TEGP", - Description: "Tallgrass Energy GP, LP Cl A", - Symbol: "TEGP", - Precision: 5, - Type: Stock, - AlternateId: "874696107"}, - 832554496049652: &Security{ - SecurityId: 832554496049652, - Name: "TEP", - Description: "Tallgrass Energy Partners L.P.", - Symbol: "TEP", - Precision: 5, - Type: Stock, - AlternateId: "874697105"}, - 832558470020964: &Security{ - SecurityId: 832558470020964, - Name: "TLMR", - Description: "Talmer Bancorp, Inc.", - Symbol: "TLMR", - Precision: 5, - Type: Stock, - AlternateId: "87482X101"}, - 832626200536272: &Security{ - SecurityId: 832626200536272, - Name: "TNDM", - Description: "Tandem Diabetes Care, Inc.", - Symbol: "TNDM", - Precision: 5, - Type: Stock, - AlternateId: "875372104"}, - 832626313070580: &Security{ - SecurityId: 832626313070580, - Name: "TLF", - Description: "Tandy Leather Factory, Inc. (The)", - Symbol: "TLF", - Precision: 5, - Type: Stock, - AlternateId: "87538X105"}, - 832628321891352: &Security{ - SecurityId: 832628321891352, - Name: "SKT", - Description: "Tanger Factory Outlet Centers, Inc.", - Symbol: "SKT", - Precision: 5, - Type: Stock, - AlternateId: "875465106"}, - 832636835864928: &Security{ - SecurityId: 832636835864928, - Name: "TNGO", - Description: "Tangoe, Inc.", - Symbol: "TNGO", - Precision: 5, - Type: Stock, - AlternateId: "87582Y108"}, - 832697658119376: &Security{ - SecurityId: 832697658119376, - Name: "TRX", - Description: "Tanzanian Royalty Exploration Corp.", - Symbol: "TRX", - Precision: 5, - Type: Stock, - AlternateId: "87600U104"}, - 832699797950052: &Security{ - SecurityId: 832699797950052, - Name: "TEDU", - Description: "Tarena International, Inc.", - Symbol: "TEDU", - Precision: 5, - Type: Stock, - AlternateId: "876108101"}, - 832699900406772: &Security{ - SecurityId: 832699900406772, - Name: "NGLS", - Description: "Targa Resources Partners, L.P.", - Symbol: "NGLS", - Precision: 5, - Type: Stock, - AlternateId: "87611X105"}, - 832699928960280: &Security{ - SecurityId: 832699928960280, - Name: "TGT", - Description: "Target Corp.", - Symbol: "TGT", - Precision: 5, - Type: Stock, - AlternateId: "87612E106"}, - 832699932319332: &Security{ - SecurityId: 832699932319332, - Name: "TRGP", - Description: "Targa Resources Corp.", - Symbol: "TRGP", - Precision: 5, - Type: Stock, - AlternateId: "87612G101"}, - 832708570584528: &Security{ - SecurityId: 832708570584528, - Name: "TASR", - Description: "TASER Intl, Inc.", - Symbol: "TASR", - Precision: 5, - Type: Stock, - AlternateId: "87651B104"}, - 832708553788440: &Security{ - SecurityId: 832708553788440, - Name: "TGB", - Description: "Taseko Mines Ltd", - Symbol: "TGB", - Precision: 5, - Type: Stock, - AlternateId: "876511106"}, - 832708631050668: &Security{ - SecurityId: 832708631050668, - Name: "TAS", - Description: "Tasman Metals Ltd", - Symbol: "TAS", - Precision: 5, - Type: Stock, - AlternateId: "87652B103"}, - 832708868063112: &Security{ - SecurityId: 832708868063112, - Name: "TTM", - Description: "Tata Motors Ltd ADR", - Symbol: "TTM", - Precision: 5, - Type: Stock, - AlternateId: "876568502"}, - 832711037940396: &Security{ - SecurityId: 832711037940396, - Name: "TCO", - Description: "Taubman Centers, Inc.", - Symbol: "TCO", - Precision: 5, - Type: Stock, - AlternateId: "876664103"}, - 832778516513268: &Security{ - SecurityId: 832778516513268, - Name: "TAYD", - Description: "Taylor Devices, Inc.", - Symbol: "TAYD", - Precision: 5, - Type: Stock, - AlternateId: "877163105"}, - 832780609314840: &Security{ - SecurityId: 832780609314840, - Name: "TMHC", - Description: "Taylor Morrison Home Corp.", - Symbol: "TMHC", - Precision: 5, - Type: Stock, - AlternateId: "87724P106"}, - 832856823570240: &Security{ - SecurityId: 832856823570240, - Name: "TISI", - Description: "Team, Inc.", - Symbol: "TISI", - Precision: 5, - Type: Stock, - AlternateId: "878155100"}, - 832856952900924: &Security{ - SecurityId: 832856952900924, - Name: "TMH", - Description: "Team Health Holdings, Inc.", - Symbol: "TMH", - Precision: 5, - Type: Stock, - AlternateId: "87817A107"}, - 832857062075748: &Security{ - SecurityId: 832857062075748, - Name: "TEAR", - Description: "Tearlab Corp.", - Symbol: "TEAR", - Precision: 5, - Type: Stock, - AlternateId: "878193101"}, - 832858882779672: &Security{ - SecurityId: 832858882779672, - Name: "TECD", - Description: "Tech Data Corp.", - Symbol: "TECD", - Precision: 5, - Type: Stock, - AlternateId: "878237106"}, - 832863058304868: &Security{ - SecurityId: 832863058304868, - Name: "TCCO", - Description: "Technical Communications Corp.", - Symbol: "TCCO", - Precision: 5, - Type: Stock, - AlternateId: "878409101"}, - 832869818806032: &Security{ - SecurityId: 832869818806032, - Name: "TCK", - Description: "Teck Resources Ltd", - Symbol: "TCK", - Precision: 5, - Type: Stock, - AlternateId: "878742204"}, - 832869978369444: &Security{ - SecurityId: 832869978369444, - Name: "TGEN", - Description: "Tecogen, Inc.", - Symbol: "TGEN", - Precision: 5, - Type: Stock, - AlternateId: "87876P201"}, - 832932792602100: &Security{ - SecurityId: 832932792602100, - Name: "TGNA", - Description: "TEGNA, Inc.", - Symbol: "TGNA", - Precision: 5, - Type: Stock, - AlternateId: "87901J105"}, - 832933183952772: &Security{ - SecurityId: 832933183952772, - Name: "TRC", - Description: "Tejon Ranch Co.", - Symbol: "TRC", - Precision: 5, - Type: Stock, - AlternateId: "879080109"}, - 832934885403600: &Security{ - SecurityId: 832934885403600, - Name: "THQ", - Description: "Tekla Healthcare Opportunities Fund", - Symbol: "THQ", - Precision: 5, - Type: Stock, - AlternateId: "879105104"}, - 832934972743776: &Security{ - SecurityId: 832934972743776, - Name: "THW", - Description: "Tekla World Healthcare Fund", - Symbol: "THW", - Precision: 5, - Type: Stock, - AlternateId: "87911L108"}, - 832935248247420: &Security{ - SecurityId: 832935248247420, - Name: "TIK", - Description: "Tel-Instrument Electronics Corp.", - Symbol: "TIK", - Precision: 5, - Type: Stock, - AlternateId: "879165207"}, - 832935377531124: &Security{ - SecurityId: 832935377531124, - Name: "TDOC", - Description: "Teladoc, Inc.", - Symbol: "TDOC", - Precision: 5, - Type: Stock, - AlternateId: "87918A105"}, - 832937534204580: &Security{ - SecurityId: 832937534204580, - Name: "TIA", - Description: "Telecom Italia S.P.A.", - Symbol: "TIA", - Precision: 5, - Type: Stock, - AlternateId: "87927Y201"}, - 832937482136772: &Security{ - SecurityId: 832937482136772, - Name: "TEO", - Description: "Telecom Argentina S.A. ADR", - Symbol: "TEO", - Precision: 5, - Type: Stock, - AlternateId: "879273209"}, - 832937629896108: &Security{ - SecurityId: 832937629896108, - Name: "TSYS", - Description: "TeleCommunication Systems, Inc.", - Symbol: "TSYS", - Precision: 5, - Type: Stock, - AlternateId: "87929J103"}, - 832939593367284: &Security{ - SecurityId: 832939593367284, - Name: "TDY", - Description: "Teledyne Technologies, Inc.", - Symbol: "TDY", - Precision: 5, - Type: Stock, - AlternateId: "879360105"}, - 832939608483864: &Security{ - SecurityId: 832939608483864, - Name: "TFX", - Description: "Teleflex, Inc.", - Symbol: "TFX", - Precision: 5, - Type: Stock, - AlternateId: "879369106"}, - 832941594119268: &Security{ - SecurityId: 832941594119268, - Name: "TDS", - Description: "Telephone and Data Systems, Inc.", - Symbol: "TDS", - Precision: 5, - Type: Stock, - AlternateId: "879433829"}, - 832941718081452: &Security{ - SecurityId: 832941718081452, - Name: "TNAV", - Description: "Telenav, Inc.", - Symbol: "TNAV", - Precision: 5, - Type: Stock, - AlternateId: "879455103"}, - 832945814664912: &Security{ - SecurityId: 832945814664912, - Name: "TLGT", - Description: "Teligent, Inc.", - Symbol: "TLGT", - Precision: 5, - Type: Stock, - AlternateId: "87960W104"}, - 832952487779352: &Security{ - SecurityId: 832952487779352, - Name: "TTEC", - Description: "TeleTech Holdings, Inc.", - Symbol: "TTEC", - Precision: 5, - Type: Stock, - AlternateId: "879939106"}, - 835051241874276: &Security{ - SecurityId: 835051241874276, - Name: "TDF", - Description: "Templeton Dragon Fund, Inc.", - Symbol: "TDF", - Precision: 5, - Type: Stock, - AlternateId: "88018T101"}, - 835051255311204: &Security{ - SecurityId: 835051255311204, - Name: "EMF", - Description: "Templeton Emerging Markets Fund, Inc.", - Symbol: "EMF", - Precision: 5, - Type: Stock, - AlternateId: "880191101"}, - 835051256991108: &Security{ - SecurityId: 835051256991108, - Name: "TEI", - Description: "Templeton Emerging Markets Income Fund, Inc.", - Symbol: "TEI", - Precision: 5, - Type: Stock, - AlternateId: "880192109"}, - 835051267068696: &Security{ - SecurityId: 835051267068696, - Name: "GIM", - Description: "Templeton Global Income Fund, Inc.", - Symbol: "GIM", - Precision: 5, - Type: Stock, - AlternateId: "880198106"}, - 835053118005348: &Security{ - SecurityId: 835053118005348, - Name: "TPX", - Description: "Tempur Sealy International, Inc.", - Symbol: "TPX", - Precision: 5, - Type: Stock, - AlternateId: "88023U101"}, - 835055160418692: &Security{ - SecurityId: 835055160418692, - Name: "TS", - Description: "Tenaris S.A. ADR", - Symbol: "TS", - Precision: 5, - Type: Stock, - AlternateId: "88031M109"}, - 835055219204928: &Security{ - SecurityId: 835055219204928, - Name: "TENX", - Description: "Tenax Therapeutics, Inc.", - Symbol: "TENX", - Precision: 5, - Type: Stock, - AlternateId: "88032L100"}, - 835055271413244: &Security{ - SecurityId: 835055271413244, - Name: "THC", - Description: "Tenet Healthcare Corp.", - Symbol: "THC", - Precision: 5, - Type: Stock, - AlternateId: "88033G407"}, - 835055313263532: &Security{ - SecurityId: 835055313263532, - Name: "TNC", - Description: "Tennant Co.", - Symbol: "TNC", - Precision: 5, - Type: Stock, - AlternateId: "880345103"}, - 835055319982068: &Security{ - SecurityId: 835055319982068, - Name: "TEN", - Description: "Tenneco, Inc.", - Symbol: "TEN", - Precision: 5, - Type: Stock, - AlternateId: "880349105"}, - 835064186674860: &Security{ - SecurityId: 835064186674860, - Name: "TDC", - Description: "Teradata Corp.", - Symbol: "TDC", - Precision: 5, - Type: Stock, - AlternateId: "88076W103"}, - 835064193393288: &Security{ - SecurityId: 835064193393288, - Name: "TER", - Description: "Teradyne, Inc.", - Symbol: "TER", - Precision: 5, - Type: Stock, - AlternateId: "880770102"}, - 835064208509868: &Security{ - SecurityId: 835064208509868, - Name: "TEX", - Description: "Terex Corp.", - Symbol: "TEX", - Precision: 5, - Type: Stock, - AlternateId: "880779103"}, - 835066491108192: &Security{ - SecurityId: 835066491108192, - Name: "TX", - Description: "Ternium S.A.", - Symbol: "TX", - Precision: 5, - Type: Stock, - AlternateId: "880890108"}, - 835126905262500: &Security{ - SecurityId: 835126905262500, - Name: "TNH", - Description: "Terra Nitrogen Co., L.P.", - Symbol: "TNH", - Precision: 5, - Type: Stock, - AlternateId: "881005201"}, - 835127175634020: &Security{ - SecurityId: 835127175634020, - Name: "GLBL", - Description: "TerraForm Global, Inc. Cl A", - Symbol: "GLBL", - Precision: 5, - Type: Stock, - AlternateId: "88104M101"}, - 835127180672976: &Security{ - SecurityId: 835127180672976, - Name: "TRTL", - Description: "Terrapin 3 Acquisition Corp.", - Symbol: "TRTL", - Precision: 5, - Type: Stock, - AlternateId: "88104P104"}, - 835127180719596: &Security{ - SecurityId: 835127180719596, - Name: "TRTLU", - Description: "Terrapin 3 Acquisition Corp. Units", - Symbol: "TRTLU", - Precision: 5, - Type: Stock, - AlternateId: "88104P203"}, - 835127184032064: &Security{ - SecurityId: 835127184032064, - Name: "TERP", - Description: "TerraForm Power, Inc.", - Symbol: "TERP", - Precision: 5, - Type: Stock, - AlternateId: "88104R100"}, - 835136003695716: &Security{ - SecurityId: 835136003695716, - Name: "TRNO", - Description: "Terreno Realty Corp.", - Symbol: "TRNO", - Precision: 5, - Type: Stock, - AlternateId: "88146M101"}, - 835138158643260: &Security{ - SecurityId: 835138158643260, - Name: "TSRO", - Description: "Tesaro, Inc.", - Symbol: "TSRO", - Precision: 5, - Type: Stock, - AlternateId: "881569107"}, - 835138237584996: &Security{ - SecurityId: 835138237584996, - Name: "TESO", - Description: "Tesco Corp.", - Symbol: "TESO", - Precision: 5, - Type: Stock, - AlternateId: "88157K101"}, - 835140002861412: &Security{ - SecurityId: 835140002861412, - Name: "TSLA", - Description: "Tesla Motors, Inc.", - Symbol: "TSLA", - Precision: 5, - Type: Stock, - AlternateId: "88160R101"}, - 835140006220860: &Security{ - SecurityId: 835140006220860, - Name: "TLLP", - Description: "Tesoro Logistics L.P.", - Symbol: "TLLP", - Precision: 5, - Type: Stock, - AlternateId: "88160T107"}, - 835139972628324: &Security{ - SecurityId: 835139972628324, - Name: "TSO", - Description: "Tesoro Corp.", - Symbol: "TSO", - Precision: 5, - Type: Stock, - AlternateId: "881609101"}, - 835140103638516: &Security{ - SecurityId: 835140103638516, - Name: "TTI", - Description: "TETRA Technologies, Inc.", - Symbol: "TTI", - Precision: 5, - Type: Stock, - AlternateId: "88162F105"}, - 835140105318060: &Security{ - SecurityId: 835140105318060, - Name: "TTEK", - Description: "Tetra Tech, Inc.", - Symbol: "TTEK", - Precision: 5, - Type: Stock, - AlternateId: "88162G103"}, - 835140085209540: &Security{ - SecurityId: 835140085209540, - Name: "TEVA", - Description: "Teva Pharmaceutical Industries Ltd.", - Symbol: "TEVA", - Precision: 5, - Type: Stock, - AlternateId: "881624209"}, - 835140298473972: &Security{ - SecurityId: 835140298473972, - Name: "TTPH", - Description: "Tetraphase Pharmaceuticals, Inc.", - Symbol: "TTPH", - Precision: 5, - Type: Stock, - AlternateId: "88165N105"}, - 835140310231428: &Security{ - SecurityId: 835140310231428, - Name: "TLOG", - Description: "TetraLogic Pharmaceuticals Corp.", - Symbol: "TLOG", - Precision: 5, - Type: Stock, - AlternateId: "88165U109"}, - 835140337105032: &Security{ - SecurityId: 835140337105032, - Name: "CORN", - Description: "Teucrium Corn Fund", - Symbol: "CORN", - Precision: 5, - Type: Stock, - AlternateId: "88166A102"}, - 835140337245252: &Security{ - SecurityId: 835140337245252, - Name: "CANE", - Description: "Teucrium Sugar Fund", - Symbol: "CANE", - Precision: 5, - Type: Stock, - AlternateId: "88166A409"}, - 835140337291872: &Security{ - SecurityId: 835140337291872, - Name: "WEAT", - Description: "Teucrium Wheat Fund", - Symbol: "WEAT", - Precision: 5, - Type: Stock, - AlternateId: "88166A508"}, - 835140337338492: &Security{ - SecurityId: 835140337338492, - Name: "SOYB", - Description: "Teucrium Soybean Fund", - Symbol: "SOYB", - Precision: 5, - Type: Stock, - AlternateId: "88166A607"}, - 835140337385112: &Security{ - SecurityId: 835140337385112, - Name: "TAGS", - Description: "Teucrium Agricultural Fund", - Symbol: "TAGS", - Precision: 5, - Type: Stock, - AlternateId: "88166A706"}, - 835209900081468: &Security{ - SecurityId: 835209900081468, - Name: "TCBI", - Description: "Texas Capital Bancshares, Inc.", - Symbol: "TCBI", - Precision: 5, - Type: Stock, - AlternateId: "88224Q107"}, - 835216158330576: &Security{ - SecurityId: 835216158330576, - Name: "TXN", - Description: "Texas Instruments, Inc.", - Symbol: "TXN", - Precision: 5, - Type: Stock, - AlternateId: "882508104"}, - 835218382142304: &Security{ - SecurityId: 835218382142304, - Name: "TPL", - Description: "Texas Pacific Land Trust", - Symbol: "TPL", - Precision: 5, - Type: Stock, - AlternateId: "882610108"}, - 835218807085188: &Security{ - SecurityId: 835218807085188, - Name: "TXRH", - Description: "Texas Roadhouse. Inc.", - Symbol: "TXRH", - Precision: 5, - Type: Stock, - AlternateId: "882681109"}, - 835224858741492: &Security{ - SecurityId: 835224858741492, - Name: "TTF", - Description: "Thai Fund, Inc. (The)", - Symbol: "TTF", - Precision: 5, - Type: Stock, - AlternateId: "882904105"}, - 835287983749476: &Security{ - SecurityId: 835287983749476, - Name: "TXT", - Description: "Textron, Inc.", - Symbol: "TXT", - Precision: 5, - Type: Stock, - AlternateId: "883203101"}, - 835288040856528: &Security{ - SecurityId: 835288040856528, - Name: "TXTR", - Description: "Textura Corp.", - Symbol: "TXTR", - Precision: 5, - Type: Stock, - AlternateId: "883211104"}, - 835288143313248: &Security{ - SecurityId: 835288143313248, - Name: "TGTX", - Description: "TG Therapeutics, Inc.", - Symbol: "TGTX", - Precision: 5, - Type: Stock, - AlternateId: "88322Q108"}, - 835290612348624: &Security{ - SecurityId: 835290612348624, - Name: "NCTY", - Description: "The9 Ltd", - Symbol: "NCTY", - Precision: 5, - Type: Stock, - AlternateId: "88337K104"}, - 835290672814764: &Security{ - SecurityId: 835290672814764, - Name: "STKS", - Description: "ONE Group Hospitality, Inc. (The)", - Symbol: "STKS", - Precision: 5, - Type: Stock, - AlternateId: "88338K103"}, - 835290677853756: &Security{ - SecurityId: 835290677853756, - Name: "TXMD", - Description: "TherapeuticsMD, Inc.", - Symbol: "TXMD", - Precision: 5, - Type: Stock, - AlternateId: "88338N107"}, - 835294821466248: &Security{ - SecurityId: 835294821466248, - Name: "TMO", - Description: "Thermo Fisher Scientific, Inc.", - Symbol: "TMO", - Precision: 5, - Type: Stock, - AlternateId: "883556102"}, - 835296855481260: &Security{ - SecurityId: 835296855481260, - Name: "THR", - Description: "Thermon Group Holdings, Inc.", - Symbol: "THR", - Precision: 5, - Type: Stock, - AlternateId: "88362T103"}, - 835297213239468: &Security{ - SecurityId: 835297213239468, - Name: "TST", - Description: "TheStreet, Inc.", - Symbol: "TST", - Precision: 5, - Type: Stock, - AlternateId: "88368Q103"}, - 835377603020424: &Security{ - SecurityId: 835377603020424, - Name: "TCPTF", - Description: "Thompson Creek Metals Co., Inc.", - Symbol: "TCPTF", - Precision: 5, - Type: Stock, - AlternateId: "884768102"}, - 835381585390068: &Security{ - SecurityId: 835381585390068, - Name: "TRI", - Description: "Thomson Corp. (The)", - Symbol: "TRI", - Precision: 5, - Type: Stock, - AlternateId: "884903105"}, - 835442893053540: &Security{ - SecurityId: 835442893053540, - Name: "THO", - Description: "Thor Industries, Inc.", - Symbol: "THO", - Precision: 5, - Type: Stock, - AlternateId: "885160101"}, - 835451501132340: &Security{ - SecurityId: 835451501132340, - Name: "DDD", - Description: "3D Systems Corp.", - Symbol: "DDD", - Precision: 5, - Type: Stock, - AlternateId: "88554D205"}, - 835456192253028: &Security{ - SecurityId: 835456192253028, - Name: "MMM", - Description: "3M Company", - Symbol: "MMM", - Precision: 5, - Type: Stock, - AlternateId: "88579Y101"}, - 835457779536984: &Security{ - SecurityId: 835457779536984, - Name: "THLD", - Description: "Threshold Pharmaceuticals, Inc.", - Symbol: "THLD", - Precision: 5, - Type: Stock, - AlternateId: "885807206"}, - 835527550738824: &Security{ - SecurityId: 835527550738824, - Name: "TDW", - Description: "Tidewater, Inc.", - Symbol: "TDW", - Precision: 5, - Type: Stock, - AlternateId: "886423102"}, - 835529653664928: &Security{ - SecurityId: 835529653664928, - Name: "TIER", - Description: "TIER REIT, Inc.", - Symbol: "TIER", - Precision: 5, - Type: Stock, - AlternateId: "88650V208"}, - 835529855172192: &Security{ - SecurityId: 835529855172192, - Name: "TIF", - Description: "Tiffany & Co.", - Symbol: "TIF", - Precision: 5, - Type: Stock, - AlternateId: "886547108"}, - 835534845311076: &Security{ - SecurityId: 835534845311076, - Name: "TIGR", - Description: "TigerLogic Corp.", - Symbol: "TIGR", - Precision: 5, - Type: Stock, - AlternateId: "8867EQ101"}, - 835534422048132: &Security{ - SecurityId: 835534422048132, - Name: "TTS", - Description: "Tile Shop Holdings, Inc.", - Symbol: "TTS", - Precision: 5, - Type: Stock, - AlternateId: "88677Q109"}, - 835536624024456: &Security{ - SecurityId: 835536624024456, - Name: "TLYS", - Description: "Tilly's, Inc.", - Symbol: "TLYS", - Precision: 5, - Type: Stock, - AlternateId: "886885102"}, - 835597639434852: &Security{ - SecurityId: 835597639434852, - Name: "TSBK", - Description: "Timberland Bancorp, Inc.", - Symbol: "TSBK", - Precision: 5, - Type: Stock, - AlternateId: "887098101"}, - 835599445068852: &Security{ - SecurityId: 835599445068852, - Name: "TLR", - Description: "Timberline Resources Corp.", - Symbol: "TLR", - Precision: 5, - Type: Stock, - AlternateId: "887133205"}, - 835601569736400: &Security{ - SecurityId: 835601569736400, - Name: "TIME", - Description: "Time, Inc.", - Symbol: "TIME", - Precision: 5, - Type: Stock, - AlternateId: "887228104"}, - 835603684466220: &Security{ - SecurityId: 835603684466220, - Name: "TWX", - Description: "Time Warner, Inc.", - Symbol: "TWX", - Precision: 5, - Type: Stock, - AlternateId: "887317303"}, - 835603765041276: &Security{ - SecurityId: 835603765041276, - Name: "TWC", - Description: "Time Warner Cable, Inc.", - Symbol: "TWC", - Precision: 5, - Type: Stock, - AlternateId: "88732J207"}, - 835604110995408: &Security{ - SecurityId: 835604110995408, - Name: "TKR", - Description: "Timken Co. (The)", - Symbol: "TKR", - Precision: 5, - Type: Stock, - AlternateId: "887389104"}, - 835604171461548: &Security{ - SecurityId: 835604171461548, - Name: "TMST", - Description: "TimkenSteel Corp.", - Symbol: "TMST", - Precision: 5, - Type: Stock, - AlternateId: "887399103"}, - 835605891388332: &Security{ - SecurityId: 835605891388332, - Name: "TGD", - Description: "Timmins Gold Corp.", - Symbol: "TGD", - Precision: 5, - Type: Stock, - AlternateId: "88741P103"}, - 835679964133548: &Security{ - SecurityId: 835679964133548, - Name: "TIPT", - Description: "Tiptree Financial Inc. Class A", - Symbol: "TIPT", - Precision: 5, - Type: Stock, - AlternateId: "88822Q103"}, - 835682013265032: &Security{ - SecurityId: 835682013265032, - Name: "TWI", - Description: "Titan Intl, Inc.", - Symbol: "TWI", - Precision: 5, - Type: Stock, - AlternateId: "88830M102"}, - 835682043591684: &Security{ - SecurityId: 835682043591684, - Name: "TTNP", - Description: "Titan Pharmaceuticals, Inc.", - Symbol: "TTNP", - Precision: 5, - Type: Stock, - AlternateId: "888314309"}, - 835690693520736: &Security{ - SecurityId: 835690693520736, - Name: "TIVO", - Description: "TiVo, Inc.", - Symbol: "TIVO", - Precision: 5, - Type: Stock, - AlternateId: "888706108"}, - 835693083614052: &Security{ - SecurityId: 835693083614052, - Name: "TBRA", - Description: "Tobira Therapeutics, Inc.", - Symbol: "TBRA", - Precision: 5, - Type: Stock, - AlternateId: "88883P101"}, - 835754191403508: &Security{ - SecurityId: 835754191403508, - Name: "TOF", - Description: "Tofutti Brands, Inc.", - Symbol: "TOF", - Precision: 5, - Type: Stock, - AlternateId: "88906B105"}, - 835754265306684: &Security{ - SecurityId: 835754265306684, - Name: "TKAI", - Description: "Tokai Pharmaceuticals, Inc.", - Symbol: "TKAI", - Precision: 5, - Type: Stock, - AlternateId: "88907J107"}, - 835762953960108: &Security{ - SecurityId: 835762953960108, - Name: "TOL", - Description: "Toll Brothers, Inc.", - Symbol: "TOL", - Precision: 5, - Type: Stock, - AlternateId: "889478103"}, - 837871879809924: &Security{ - SecurityId: 837871879809924, - Name: "TMP", - Description: "Tompkins Financial Corp.", - Symbol: "TMP", - Precision: 5, - Type: Stock, - AlternateId: "890110109"}, - 837880597016892: &Security{ - SecurityId: 837880597016892, - Name: "TR", - Description: "Tootsie Roll Industries, Inc.", - Symbol: "TR", - Precision: 5, - Type: Stock, - AlternateId: "890516107"}, - 837880853997996: &Security{ - SecurityId: 837880853997996, - Name: "BLD", - Description: "TopBuild Corp.", - Symbol: "BLD", - Precision: 5, - Type: Stock, - AlternateId: "89055F103"}, - 837887493613572: &Security{ - SecurityId: 837887493613572, - Name: "TORM", - Description: "TOR Minerals Intl, Inc.", - Symbol: "TORM", - Precision: 5, - Type: Stock, - AlternateId: "890878309"}, - 837948178046124: &Security{ - SecurityId: 837948178046124, - Name: "TRCH", - Description: "Torchlight Energy Resources, Inc.", - Symbol: "TRCH", - Precision: 5, - Type: Stock, - AlternateId: "89102U103"}, - 837948139414992: &Security{ - SecurityId: 837948139414992, - Name: "TMK", - Description: "Torchmark Corp.", - Symbol: "TMK", - Precision: 5, - Type: Stock, - AlternateId: "891027104"}, - 837948554280288: &Security{ - SecurityId: 837948554280288, - Name: "TTC", - Description: "Toro Co. (The)", - Symbol: "TTC", - Precision: 5, - Type: Stock, - AlternateId: "891092108"}, - 837957172389696: &Security{ - SecurityId: 837957172389696, - Name: "TYG", - Description: "Tortoise Energy Infrastructure Corp.", - Symbol: "TYG", - Precision: 5, - Type: Stock, - AlternateId: "89147L100"}, - 837957192545232: &Security{ - SecurityId: 837957192545232, - Name: "TPZ", - Description: "Tortoise Power and Energy Infrastructure Fund, Inc.", - Symbol: "TPZ", - Precision: 5, - Type: Stock, - AlternateId: "89147X104"}, - 837957216059748: &Security{ - SecurityId: 837957216059748, - Name: "NTG", - Description: "Tortoise MLP Fund, Inc.", - Symbol: "NTG", - Precision: 5, - Type: Stock, - AlternateId: "89148B101"}, - 837957226137696: &Security{ - SecurityId: 837957226137696, - Name: "TTP", - Description: "Tortoise Pipeline & Energy Fund", - Symbol: "TTP", - Precision: 5, - Type: Stock, - AlternateId: "89148H108"}, - 837957231176292: &Security{ - SecurityId: 837957231176292, - Name: "NDP", - Description: "Tortoise Energy Independence Fund, Inc.", - Symbol: "NDP", - Precision: 5, - Type: Stock, - AlternateId: "89148K101"}, - 837958974617988: &Security{ - SecurityId: 837958974617988, - Name: "TOT", - Description: "Total S.A. ADR", - Symbol: "TOT", - Precision: 5, - Type: Stock, - AlternateId: "89151E109"}, - 837965551994244: &Security{ - SecurityId: 837965551994244, - Name: "TOWR", - Description: "Tower International, Inc.", - Symbol: "TOWR", - Precision: 5, - Type: Stock, - AlternateId: "891826109"}, - 837967607844228: &Security{ - SecurityId: 837967607844228, - Name: "TSS", - Description: "Total System Services, Inc.", - Symbol: "TSS", - Precision: 5, - Type: Stock, - AlternateId: "891906109"}, - 838028806332552: &Security{ - SecurityId: 838028806332552, - Name: "CLUB", - Description: "Town Sports International Holdings, Inc.", - Symbol: "CLUB", - Precision: 5, - Type: Stock, - AlternateId: "89214A102"}, - 838028831527044: &Security{ - SecurityId: 838028831527044, - Name: "TOWN", - Description: "TowneBank (VA)", - Symbol: "TOWN", - Precision: 5, - Type: Stock, - AlternateId: "89214P109"}, - 838030907532132: &Security{ - SecurityId: 838030907532132, - Name: "TSQ", - Description: "Townsquare Media, Inc.", - Symbol: "TSQ", - Precision: 5, - Type: Stock, - AlternateId: "892231101"}, - 838033084407996: &Security{ - SecurityId: 838033084407996, - Name: "TM", - Description: "Toyota Motor Corp. ADR", - Symbol: "TM", - Precision: 5, - Type: Stock, - AlternateId: "892331307"}, - 838033213645080: &Security{ - SecurityId: 838033213645080, - Name: "TSCO", - Description: "Tractor Supply Co.", - Symbol: "TSCO", - Precision: 5, - Type: Stock, - AlternateId: "892356106"}, - 838033353052992: &Security{ - SecurityId: 838033353052992, - Name: "TCON", - Description: "TRACON Pharmaceuticals, Inc.", - Symbol: "TCON", - Precision: 5, - Type: Stock, - AlternateId: "89237H100"}, - 838046035833516: &Security{ - SecurityId: 838046035833516, - Name: "TACT", - Description: "TransAct Technologies, Inc.", - Symbol: "TACT", - Precision: 5, - Type: Stock, - AlternateId: "892918103"}, - 838111671867456: &Security{ - SecurityId: 838111671867456, - Name: "TWMC", - Description: "Trans World Entertainment Corp.", - Symbol: "TWMC", - Precision: 5, - Type: Stock, - AlternateId: "89336Q100"}, - 838113826815036: &Security{ - SecurityId: 838113826815036, - Name: "TAC", - Description: "TransAlta Corp.", - Symbol: "TAC", - Precision: 5, - Type: Stock, - AlternateId: "89346D107"}, - 838115822198844: &Security{ - SecurityId: 838115822198844, - Name: "TRP", - Description: "TransCanada Corp.", - Symbol: "TRP", - Precision: 5, - Type: Stock, - AlternateId: "89353D107"}, - 838117868017860: &Security{ - SecurityId: 838117868017860, - Name: "TCI", - Description: "Transcontinental Realty Investors, Inc.", - Symbol: "TCI", - Precision: 5, - Type: Stock, - AlternateId: "893617209"}, - 838118039291712: &Security{ - SecurityId: 838118039291712, - Name: "TDG", - Description: "TransDigm Group, Inc.", - Symbol: "TDG", - Precision: 5, - Type: Stock, - AlternateId: "893641100"}, - 838118161903896: &Security{ - SecurityId: 838118161903896, - Name: "TGA", - Description: "TransGlobe Energy Corp.", - Symbol: "TGA", - Precision: 5, - Type: Stock, - AlternateId: "893662106"}, - 838120387394880: &Security{ - SecurityId: 838120387394880, - Name: "TLP", - Description: "TransMontaigne Partners, L.P.", - Symbol: "TLP", - Precision: 5, - Type: Stock, - AlternateId: "89376V100"}, - 838122572622096: &Security{ - SecurityId: 838122572622096, - Name: "PAM", - Description: "Pampa Energia S.A.", - Symbol: "PAM", - Precision: 5, - Type: Stock, - AlternateId: "893870204"}, - 838185722777988: &Security{ - SecurityId: 838185722777988, - Name: "TRV", - Description: "Travelers Companies, Inc. (The)", - Symbol: "TRV", - Precision: 5, - Type: Stock, - AlternateId: "89417E109"}, - 838185705981540: &Security{ - SecurityId: 838185705981540, - Name: "TA", - Description: "TravelCenters of America LLC", - Symbol: "TA", - Precision: 5, - Type: Stock, - AlternateId: "894174101"}, - 838187556965172: &Security{ - SecurityId: 838187556965172, - Name: "TZOO", - Description: "Travelzoo, Inc.", - Symbol: "TZOO", - Precision: 5, - Type: Stock, - AlternateId: "89421Q205"}, - 838196415213264: &Security{ - SecurityId: 838196415213264, - Name: "TREC", - Description: "Trecora Resources", - Symbol: "TREC", - Precision: 5, - Type: Stock, - AlternateId: "894648104"}, - 838196462242368: &Security{ - SecurityId: 838196462242368, - Name: "TG", - Description: "Tredegar Corp.", - Symbol: "TG", - Precision: 5, - Type: Stock, - AlternateId: "894650100"}, - 838196720903376: &Security{ - SecurityId: 838196720903376, - Name: "THS", - Description: "TreeHouse Foods, Inc.", - Symbol: "THS", - Precision: 5, - Type: Stock, - AlternateId: "89469A104"}, - 838200799010880: &Security{ - SecurityId: 838200799010880, - Name: "TRMR", - Description: "Tremor Video, Inc.", - Symbol: "TRMR", - Precision: 5, - Type: Stock, - AlternateId: "89484Q100"}, - 838268096185332: &Security{ - SecurityId: 838268096185332, - Name: "TREX", - Description: "Trex Co., Inc.", - Symbol: "TREX", - Precision: 5, - Type: Stock, - AlternateId: "89531P105"}, - 838268138175876: &Security{ - SecurityId: 838268138175876, - Name: "TRVN", - Description: "Trevena, Inc.", - Symbol: "TRVN", - Precision: 5, - Type: Stock, - AlternateId: "89532E109"}, - 838270361987244: &Security{ - SecurityId: 838270361987244, - Name: "TY", - Description: "Tri-Continental Corp.", - Symbol: "TY", - Precision: 5, - Type: Stock, - AlternateId: "895436103"}, - 838279132942212: &Security{ - SecurityId: 838279132942212, - Name: "TCAP", - Description: "Triangle Capital Corp.", - Symbol: "TCAP", - Precision: 5, - Type: Stock, - AlternateId: "895848109"}, - 838340081354412: &Security{ - SecurityId: 838340081354412, - Name: "TRCO", - Description: "Tribune Media Co. Cl A", - Symbol: "TRCO", - Precision: 5, - Type: Stock, - AlternateId: "896047503"}, - 838340314634448: &Security{ - SecurityId: 838340314634448, - Name: "TPUB", - Description: "Tribune Publishing Co.", - Symbol: "TPUB", - Precision: 5, - Type: Stock, - AlternateId: "896082104"}, - 838340380139544: &Security{ - SecurityId: 838340380139544, - Name: "TCBK", - Description: "TriCo Bancshares", - Symbol: "TCBK", - Precision: 5, - Type: Stock, - AlternateId: "896095106"}, - 838344236724504: &Security{ - SecurityId: 838344236724504, - Name: "TRIL", - Description: "Trillium Therapeutics, Inc.", - Symbol: "TRIL", - Precision: 5, - Type: Stock, - AlternateId: "89620X506"}, - 838344250021572: &Security{ - SecurityId: 838344250021572, - Name: "TRS", - Description: "Trimas Corp.", - Symbol: "TRS", - Precision: 5, - Type: Stock, - AlternateId: "896215209"}, - 838344377625408: &Security{ - SecurityId: 838344377625408, - Name: "TRMB", - Description: "Trimble Navigation Ltd", - Symbol: "TRMB", - Precision: 5, - Type: Stock, - AlternateId: "896239100"}, - 838344688354512: &Security{ - SecurityId: 838344688354512, - Name: "TSL", - Description: "Trina Solar Ltd", - Symbol: "TSL", - Precision: 5, - Type: Stock, - AlternateId: "89628E104"}, - 838344718634220: &Security{ - SecurityId: 838344718634220, - Name: "FCFI", - Description: "TrimTabs Intl Free-Cash Flow ETF", - Symbol: "FCFI", - Precision: 5, - Type: Stock, - AlternateId: "89628W203"}, - 838344678276924: &Security{ - SecurityId: 838344678276924, - Name: "TNET", - Description: "TriNet Group, Inc.", - Symbol: "TNET", - Precision: 5, - Type: Stock, - AlternateId: "896288107"}, - 838348729603992: &Security{ - SecurityId: 838348729603992, - Name: "TRIB", - Description: "Trinity Biotech plc ADR", - Symbol: "TRIB", - Precision: 5, - Type: Stock, - AlternateId: "896438306"}, - 838350835749252: &Security{ - SecurityId: 838350835749252, - Name: "TRN", - Description: "Trinity Industries, Inc.", - Symbol: "TRN", - Precision: 5, - Type: Stock, - AlternateId: "896522109"}, - 838351096089444: &Security{ - SecurityId: 838351096089444, - Name: "TPHS", - Description: "Trinity Place Holdings, Inc.", - Symbol: "TPHS", - Precision: 5, - Type: Stock, - AlternateId: "89656D101"}, - 838355128894260: &Security{ - SecurityId: 838355128894260, - Name: "TRT", - Description: "Trio-Tech Intl", - Symbol: "TRT", - Precision: 5, - Type: Stock, - AlternateId: "896712205"}, - 838355322003552: &Security{ - SecurityId: 838355322003552, - Name: "GTS", - Description: "Triple-S Management Corp.", - Symbol: "GTS", - Precision: 5, - Type: Stock, - AlternateId: "896749108"}, - 838355545392192: &Security{ - SecurityId: 838355545392192, - Name: "TPVG", - Description: "TriplePoint Venture Growth BDC Corp.", - Symbol: "TPVG", - Precision: 5, - Type: Stock, - AlternateId: "89677Y100"}, - 838355573945664: &Security{ - SecurityId: 838355573945664, - Name: "TSC", - Description: "Tristate Capital Holdings, Inc.", - Symbol: "TSC", - Precision: 5, - Type: Stock, - AlternateId: "89678F100"}, - 838357315707492: &Security{ - SecurityId: 838357315707492, - Name: "TGI", - Description: "Triumph Group, Inc.", - Symbol: "TGI", - Precision: 5, - Type: Stock, - AlternateId: "896818101"}, - 838357560931464: &Security{ - SecurityId: 838357560931464, - Name: "TRIV", - Description: "TriVascular Technologies, Inc.", - Symbol: "TRIV", - Precision: 5, - Type: Stock, - AlternateId: "89685A102"}, - 838359668896164: &Security{ - SecurityId: 838359668896164, - Name: "QVCB", - Description: "Liberty Interactive Corp. Series B QVC Group", - Symbol: "QVCB", - Precision: 5, - Type: Stock, - AlternateId: "896945201"}, - 838435943571516: &Security{ - SecurityId: 838435943571516, - Name: "TRUE", - Description: "TrueCar, Inc.", - Symbol: "TRUE", - Precision: 5, - Type: Stock, - AlternateId: "89785L107"}, - 838435963726692: &Security{ - SecurityId: 838435963726692, - Name: "TBI", - Description: "TrueBlue, Inc.", - Symbol: "TBI", - Precision: 5, - Type: Stock, - AlternateId: "89785X101"}, - 838436030911620: &Security{ - SecurityId: 838436030911620, - Name: "THST", - Description: "Truett-Hurst, Inc.", - Symbol: "THST", - Precision: 5, - Type: Stock, - AlternateId: "897871109"}, - 838500912797976: &Security{ - SecurityId: 838500912797976, - Name: "TRUP", - Description: "Trupanion, Inc.", - Symbol: "TRUP", - Precision: 5, - Type: Stock, - AlternateId: "898202106"}, - 838503343202292: &Security{ - SecurityId: 838503343202292, - Name: "TRST", - Description: "TrustCo Bank Corp. NY", - Symbol: "TRST", - Precision: 5, - Type: Stock, - AlternateId: "898349105"}, - 838505266362504: &Security{ - SecurityId: 838505266362504, - Name: "TRMK", - Description: "Trustmark Corp.", - Symbol: "TRMK", - Precision: 5, - Type: Stock, - AlternateId: "898402102"}, - 838507656456144: &Security{ - SecurityId: 838507656456144, - Name: "TTOO", - Description: "T2 Biosystems, Inc.", - Symbol: "TTOO", - Precision: 5, - Type: Stock, - AlternateId: "89853L104"}, - 838507863048984: &Security{ - SecurityId: 838507863048984, - Name: "TUBE", - Description: "TubeMogul, Inc.", - Symbol: "TUBE", - Precision: 5, - Type: Stock, - AlternateId: "898570106"}, - 838510172567640: &Security{ - SecurityId: 838510172567640, - Name: "TCX", - Description: "Tucows, Inc.", - Symbol: "TCX", - Precision: 5, - Type: Stock, - AlternateId: "898697206"}, - 838575110021364: &Security{ - SecurityId: 838575110021364, - Name: "TUES", - Description: "Tuesday Morning Corp.", - Symbol: "TUES", - Precision: 5, - Type: Stock, - AlternateId: "899035505"}, - 838588568597712: &Security{ - SecurityId: 838588568597712, - Name: "TUMI", - Description: "Tumi Holdings, Inc.", - Symbol: "TUMI", - Precision: 5, - Type: Stock, - AlternateId: "89969Q104"}, - 838590622768152: &Security{ - SecurityId: 838590622768152, - Name: "TOUR", - Description: "Tuniu Corp.", - Symbol: "TOUR", - Precision: 5, - Type: Stock, - AlternateId: "89977P106"}, - 838592888570064: &Security{ - SecurityId: 838592888570064, - Name: "TUP", - Description: "Tupperware Brands Corp.", - Symbol: "TUP", - Precision: 5, - Type: Stock, - AlternateId: "899896104"}, - 914041849037328: &Security{ - SecurityId: 914041849037328, - Name: "TKC", - Description: "Turkcell Iletisim Hizmeteri A.S.", - Symbol: "TKC", - Precision: 5, - Type: Stock, - AlternateId: "900111204"}, - 914042037107628: &Security{ - SecurityId: 914042037107628, - Name: "TKF", - Description: "Turkish Investment Fund, Inc. (The)", - Symbol: "TKF", - Precision: 5, - Type: Stock, - AlternateId: "900145103"}, - 914048619522876: &Security{ - SecurityId: 914048619522876, - Name: "HEAR", - Description: "Turtle Beach Corp.", - Symbol: "HEAR", - Precision: 5, - Type: Stock, - AlternateId: "900450107"}, - 914120166125664: &Security{ - SecurityId: 914120166125664, - Name: "TPC", - Description: "Tutor Perini Corporation", - Symbol: "TPC", - Precision: 5, - Type: Stock, - AlternateId: "901109108"}, - 914124521369700: &Security{ - SecurityId: 914124521369700, - Name: "FOXA", - Description: "Twenty-First Century Fox, Inc. (Class A)", - Symbol: "FOXA", - Precision: 5, - Type: Stock, - AlternateId: "90130A101"}, - 914124521416320: &Security{ - SecurityId: 914124521416320, - Name: "FOX", - Description: "Twenty-First Century Fox, Inc., (Class B)", - Symbol: "FOX", - Precision: 5, - Type: Stock, - AlternateId: "90130A200"}, - 914135665621896: &Security{ - SecurityId: 914135665621896, - Name: "TWTR", - Description: "Twitter, Inc.", - Symbol: "TWTR", - Precision: 5, - Type: Stock, - AlternateId: "90184L102"}, - 914135830224228: &Security{ - SecurityId: 914135830224228, - Name: "TWO", - Description: "Two Harbors Investment Corp.", - Symbol: "TWO", - Precision: 5, - Type: Stock, - AlternateId: "90187B101"}, - 914198521891680: &Security{ - SecurityId: 914198521891680, - Name: "IIVI", - Description: "II-VI, Inc.", - Symbol: "IIVI", - Precision: 5, - Type: Stock, - AlternateId: "902104108"}, - 914198788950372: &Security{ - SecurityId: 914198788950372, - Name: "TWOU", - Description: "2U, Inc.", - Symbol: "TWOU", - Precision: 5, - Type: Stock, - AlternateId: "90214J101"}, - 914200997645556: &Security{ - SecurityId: 914200997645556, - Name: "TYL", - Description: "Tyler Technologies, Inc.", - Symbol: "TYL", - Precision: 5, - Type: Stock, - AlternateId: "902252105"}, - 914205596434092: &Security{ - SecurityId: 914205596434092, - Name: "TSN", - Description: "Tyson Foods, Inc.", - Symbol: "TSN", - Precision: 5, - Type: Stock, - AlternateId: "902494103"}, - 914205596527332: &Security{ - SecurityId: 914205596527332, - Name: "TSNU", - Description: "Tyson Foods, Inc., 4.75% Tangible Equity Units", - Symbol: "TSNU", - Precision: 5, - Type: Stock, - AlternateId: "902494301"}, - 914209642826208: &Security{ - SecurityId: 914209642826208, - Name: "BDCS", - Description: "UBS ETRACS Linked to the Wells Fargo Bus Development Co. Index ETN due 4/26/2041", - Symbol: "BDCS", - Precision: 5, - Type: Stock, - AlternateId: "902641588"}, - 914209642827432: &Security{ - SecurityId: 914209642827432, - Name: "XVIX", - Description: "UBS ETRACS Daily Long-Short VIX ETN due 11/30/2040", - Symbol: "XVIX", - Precision: 5, - Type: Stock, - AlternateId: "902641596"}, - 914209642863576: &Security{ - SecurityId: 914209642863576, - Name: "MLPS", - Description: "ETRACS 1xMonthly Short Alerian MLP Infrastructure TR Index due 10/1/2040", - Symbol: "MLPS", - Precision: 5, - Type: Stock, - AlternateId: "902641612"}, - 914209642864800: &Security{ - SecurityId: 914209642864800, - Name: "MLPG", - Description: "UBS ETRACS Alerian Natural Gas MLP Index due 7/9/2040", - Symbol: "MLPG", - Precision: 5, - Type: Stock, - AlternateId: "902641620"}, - 914209642867608: &Security{ - SecurityId: 914209642867608, - Name: "MLPI", - Description: "UBS ETRACS Alerian MLP Infrastructure Index ETN due 4/2/2040", - Symbol: "MLPI", - Precision: 5, - Type: Stock, - AlternateId: "902641646"}, - 914209642870020: &Security{ - SecurityId: 914209642870020, - Name: "SPGH", - Description: "UBS E-TRACS S&P 500 Gold Hedged Index ETN due 1/30/2040", - Symbol: "SPGH", - Precision: 5, - Type: Stock, - AlternateId: "902641661"}, - 914209642871604: &Security{ - SecurityId: 914209642871604, - Name: "DJCI", - Description: "E-TRACS Linked to the Bloomberg Commodity Index Total Return ETN due 10/31/2039", - Symbol: "DJCI", - Precision: 5, - Type: Stock, - AlternateId: "902641679"}, - 914209642913004: &Security{ - SecurityId: 914209642913004, - Name: "FUD", - Description: "UBS ETRACS CMCI Food Total Return ETN due 4/5/2038", - Symbol: "FUD", - Precision: 5, - Type: Stock, - AlternateId: "902641737"}, - 914209642914228: &Security{ - SecurityId: 914209642914228, - Name: "UBN", - Description: "UBS E-TRACS Bloomberg CMCI Energy ETN due 4/5/2038", - Symbol: "UBN", - Precision: 5, - Type: Stock, - AlternateId: "902641745"}, - 914209642915416: &Security{ - SecurityId: 914209642915416, - Name: "UBM", - Description: "UBS ETRACS CMCI Industrial Metals Total Return ETN due 4/5/2038", - Symbol: "UBM", - Precision: 5, - Type: Stock, - AlternateId: "902641752"}, - 914209642916640: &Security{ - SecurityId: 914209642916640, - Name: "UAG", - Description: "UBS ETRACS CMCI Agriculture Total Return ETN due 4/5/2038", - Symbol: "UAG", - Precision: 5, - Type: Stock, - AlternateId: "902641760"}, - 914209642918224: &Security{ - SecurityId: 914209642918224, - Name: "UCI", - Description: "UBS ETRACS CMCI Total Return ETN due 4/5/2038", - Symbol: "UCI", - Precision: 5, - Type: Stock, - AlternateId: "902641778"}, - 914209642919448: &Security{ - SecurityId: 914209642919448, - Name: "PTM", - Description: "UBS ETRACS CMCI Long Platinum Total Return ETN due 5/14/2018", - Symbol: "PTM", - Precision: 5, - Type: Stock, - AlternateId: "902641786"}, - 914209642920672: &Security{ - SecurityId: 914209642920672, - Name: "USV", - Description: "UBS ETRACS CMCI Silver Total Return ETN due 4/5/2038", - Symbol: "USV", - Precision: 5, - Type: Stock, - AlternateId: "902641794"}, - 914209642956816: &Security{ - SecurityId: 914209642956816, - Name: "UBG", - Description: "UBS ETRACS CMCI Gold Total Return ETN due 4/5/2038", - Symbol: "UBG", - Precision: 5, - Type: Stock, - AlternateId: "902641810"}, - 914209642958400: &Security{ - SecurityId: 914209642958400, - Name: "UBC", - Description: "UBS ETRACS CMCI Livestock Total Return due 4/5/2038", - Symbol: "UBC", - Precision: 5, - Type: Stock, - AlternateId: "902641828"}, - 914209706454480: &Security{ - SecurityId: 914209706454480, - Name: "UDR", - Description: "UDR, Inc.", - Symbol: "UDR", - Precision: 5, - Type: Stock, - AlternateId: "902653104"}, - 914209768646784: &Security{ - SecurityId: 914209768646784, - Name: "MLPL", - Description: "ETRACS 2xMonthly Leveraged Long Alerian MLP Infrastructure Index due 7/9/2040", - Symbol: "MLPL", - Precision: 5, - Type: Stock, - AlternateId: "902664200"}, - 914209768740384: &Security{ - SecurityId: 914209768740384, - Name: "MLPW", - Description: "UBS E-TRACS Wells Fargo MLP Index ETN due 10/29/2040", - Symbol: "MLPW", - Precision: 5, - Type: Stock, - AlternateId: "902664408"}, - 914209841067336: &Security{ - SecurityId: 914209841067336, - Name: "AMU", - Description: "ETRACS Alerian MLP Index ETN due July 18, 2042", - Symbol: "AMU", - Precision: 5, - Type: Stock, - AlternateId: "90267B682"}, - 914209841111508: &Security{ - SecurityId: 914209841111508, - Name: "BDCL", - Description: "UBS ETRACS 2xLeveraged Long Wells Fargo BDC Index due 5/24/2041", - Symbol: "BDCL", - Precision: 5, - Type: Stock, - AlternateId: "90267B765"}, - 914209857760068: &Security{ - SecurityId: 914209857760068, - Name: "SDYL", - Description: "ETRACS Monthly Pay 2xLeveraged S&P Dividend ETN", - Symbol: "SDYL", - Precision: 5, - Type: Stock, - AlternateId: "90267L409"}, - 914209857946548: &Security{ - SecurityId: 914209857946548, - Name: "DVHI", - Description: "ETRACS Diversified High Income ETN", - Symbol: "DVHI", - Precision: 5, - Type: Stock, - AlternateId: "90267L805"}, - 914209827386760: &Security{ - SecurityId: 914209827386760, - Name: "UFPT", - Description: "UFP Technologies, Inc.", - Symbol: "UFPT", - Precision: 5, - Type: Stock, - AlternateId: "902673102"}, - 914209834395456: &Security{ - SecurityId: 914209834395456, - Name: "FBGX", - Description: "UBS AG FI Enhanced Large Cap Growth ETN", - Symbol: "FBGX", - Precision: 5, - Type: Stock, - AlternateId: "902677780"}, - 914209899851484: &Security{ - SecurityId: 914209899851484, - Name: "RWXL", - Description: "ETRACS Monthly Pay 2xLeveraged DJ Int'l Real Estate ETN due 3/19/2042", - Symbol: "RWXL", - Precision: 5, - Type: Stock, - AlternateId: "90268A667"}, - 914209909921404: &Security{ - SecurityId: 914209909921404, - Name: "DVYL", - Description: "ETRACS Monthly Pay 2xLeveraged DJ Select Dividend Index ETN", - Symbol: "DVYL", - Precision: 5, - Type: Stock, - AlternateId: "90268G607"}, - 914209884493812: &Security{ - SecurityId: 914209884493812, - Name: "UGI", - Description: "UGI Corp.", - Symbol: "UGI", - Precision: 5, - Type: Stock, - AlternateId: "902681105"}, - 914209960169736: &Security{ - SecurityId: 914209960169736, - Name: "MORL", - Description: "ETRACS Monthly Pay 2xLeveraged Mortgage REIT ETN", - Symbol: "MORL", - Precision: 5, - Type: Stock, - AlternateId: "90269A302"}, - 914211611430552: &Security{ - SecurityId: 914211611430552, - Name: "SPLX", - Description: "ETRACS Monthly Reset 2xLeveraged S&P 500 total Return ETN", - Symbol: "SPLX", - Precision: 5, - Type: Stock, - AlternateId: "90270L792"}, - 914211611470728: &Security{ - SecurityId: 914211611470728, - Name: "CEFL", - Description: "ETRACS Monthly Pay 2xLeveraged Closed-End Fund ETN", - Symbol: "CEFL", - Precision: 5, - Type: Stock, - AlternateId: "90270L842"}, - 914211611472276: &Security{ - SecurityId: 914211611472276, - Name: "DVHL", - Description: "ETRACS Monthly Pay 2xLeveraged Diversified High Income ETN", - Symbol: "DVHL", - Precision: 5, - Type: Stock, - AlternateId: "90270L859"}, - 914211774108540: &Security{ - SecurityId: 914211774108540, - Name: "LMLP", - Description: "ETRACS Monthly Pay 2xLeveraged Wells Fargo MLP Ex-Energy ETN", - Symbol: "LMLP", - Precision: 5, - Type: Stock, - AlternateId: "90273A207"}, - 914211839669184: &Security{ - SecurityId: 914211839669184, - Name: "AMUB", - Description: "ETRACS Alerian MLP Index ETN Series B due 7/18/2042", - Symbol: "AMUB", - Precision: 5, - Type: Stock, - AlternateId: "90274D374"}, - 914211839670408: &Security{ - SecurityId: 914211839670408, - Name: "MLPB", - Description: "ETRACS Alerian MLP Infrastructure Index ETN Series B due 4/2/2040", - Symbol: "MLPB", - Precision: 5, - Type: Stock, - AlternateId: "90274D382"}, - 914211839671632: &Security{ - SecurityId: 914211839671632, - Name: "UCIB", - Description: "ETRACS UBS Bloomberg Constant Maturity Commodity Index Total Return due 4/5/2038", - Symbol: "UCIB", - Precision: 5, - Type: Stock, - AlternateId: "90274D390"}, - 914211839708136: &Security{ - SecurityId: 914211839708136, - Name: "BDCZ", - Description: "ETRACS Wells Fargo Business Development Company Index ETN Series B due 4/26/2041", - Symbol: "BDCZ", - Precision: 5, - Type: Stock, - AlternateId: "90274D416"}, - 914211839709360: &Security{ - SecurityId: 914211839709360, - Name: "LBDC", - Description: "ETRACS 2xLeveraged Long Wells Fargo Business Dev Co. Index ETN Ser B due 5/24/41", - Symbol: "LBDC", - Precision: 5, - Type: Stock, - AlternateId: "90274D424"}, - 914211839710584: &Security{ - SecurityId: 914211839710584, - Name: "MRRL", - Description: "ETRACS Monthly Pay 2xLeveraged Mortgage REIT ETN Series B due 10/16/2042", - Symbol: "MRRL", - Precision: 5, - Type: Stock, - AlternateId: "90274D432"}, - 914211839757204: &Security{ - SecurityId: 914211839757204, - Name: "MLPV", - Description: "ETRACS 2xMonthly Leveraged S&P MLP Index ETN due 7/14/2045", - Symbol: "MLPV", - Precision: 5, - Type: Stock, - AlternateId: "90274D531"}, - 914211839846772: &Security{ - SecurityId: 914211839846772, - Name: "VQTS", - Description: "ETRACS S&P 500 Veqtor Switch Index ETN due 12/2/2044", - Symbol: "VQTS", - Precision: 5, - Type: Stock, - AlternateId: "90274D705"}, - 914211839897424: &Security{ - SecurityId: 914211839897424, - Name: "SMHD", - Description: "ETRACS Monthly Pay 2xLeveraged US Small Cap High Dividend ETN due 2/6/2045", - Symbol: "SMHD", - Precision: 5, - Type: Stock, - AlternateId: "90274D838"}, - 914211859815432: &Security{ - SecurityId: 914211859815432, - Name: "HOML", - Description: "ETRACS Monthly Reset 2xLeveraged ISE Exclusively Homebuilders ETN", - Symbol: "HOML", - Precision: 5, - Type: Stock, - AlternateId: "90274P302"}, - 914211859816656: &Security{ - SecurityId: 914211859816656, - Name: "HOMX", - Description: "ETRACS ISE Exclusively Homebuilders ETN", - Symbol: "HOMX", - Precision: 5, - Type: Stock, - AlternateId: "90274P310"}, - 914211863081280: &Security{ - SecurityId: 914211863081280, - Name: "LRET", - Description: "ETRACS Monthly Pay 2xLeveraged MSCI US REIT Index ETN due May 5, 2045", - Symbol: "LRET", - Precision: 5, - Type: Stock, - AlternateId: "90274R100"}, - 914212073033568: &Security{ - SecurityId: 914212073033568, - Name: "UMBF", - Description: "UMB Financial Corp.", - Symbol: "UMBF", - Precision: 5, - Type: Stock, - AlternateId: "902788108"}, - 914215968063108: &Security{ - SecurityId: 914215968063108, - Name: "USAC", - Description: "USA Compression Partners, L.P.", - Symbol: "USAC", - Precision: 5, - Type: Stock, - AlternateId: "90290N109"}, - 914215978140696: &Security{ - SecurityId: 914215978140696, - Name: "TOFR", - Description: "Stock Split Index Fund ETF", - Symbol: "TOFR", - Precision: 5, - Type: Stock, - AlternateId: "90290T106"}, - 914216058762264: &Security{ - SecurityId: 914216058762264, - Name: "USAK", - Description: "USA Truck, Inc.", - Symbol: "USAK", - Precision: 5, - Type: Stock, - AlternateId: "902925106"}, - 914216235121728: &Security{ - SecurityId: 914216235121728, - Name: "GROW", - Description: "U.S. Global Investors, Inc.", - Symbol: "GROW", - Precision: 5, - Type: Stock, - AlternateId: "902952100"}, - 914216357827152: &Security{ - SecurityId: 914216357827152, - Name: "USB", - Description: "U.S. Bancorp", - Symbol: "USB", - Precision: 5, - Type: Stock, - AlternateId: "902973304"}, - 914274705914028: &Security{ - SecurityId: 914274705914028, - Name: "UMH", - Description: "UMH Properties, Inc.", - Symbol: "UMH", - Precision: 5, - Type: Stock, - AlternateId: "903002103"}, - 914274705960648: &Security{ - SecurityId: 914274705960648, - Name: "UMH-A", - Description: "UMH Properties, 8.25% Series A Cumulative Redeemable Preferred Stock", - Symbol: "UMH-A", - Precision: 5, - Type: Stock, - AlternateId: "903002202"}, - 914279121624600: &Security{ - SecurityId: 914279121624600, - Name: "UQM", - Description: "UQM Technologies, Inc.", - Symbol: "UQM", - Precision: 5, - Type: Stock, - AlternateId: "903213106"}, - 914279576800572: &Security{ - SecurityId: 914279576800572, - Name: "USNA", - Description: "USANA Health Sciences, Inc.", - Symbol: "USNA", - Precision: 5, - Type: Stock, - AlternateId: "90328M107"}, - 914279586924780: &Security{ - SecurityId: 914279586924780, - Name: "USATP", - Description: "USA Technologies Inc., $1.50 Convertible Preferred Stock Series A", - Symbol: "USATP", - Precision: 5, - Type: Stock, - AlternateId: "90328S203"}, - 914279587064640: &Security{ - SecurityId: 914279587064640, - Name: "USAT", - Description: "USA Technologies, Inc.", - Symbol: "USAT", - Precision: 5, - Type: Stock, - AlternateId: "90328S500"}, - 914279605493940: &Security{ - SecurityId: 914279605493940, - Name: "USG", - Description: "USG Corp.", - Symbol: "USG", - Precision: 5, - Type: Stock, - AlternateId: "903293405"}, - 914281298406864: &Security{ - SecurityId: 914281298406864, - Name: "USMD", - Description: "USMD Holdings, Inc.", - Symbol: "USMD", - Precision: 5, - Type: Stock, - AlternateId: "903313104"}, - 914281306804908: &Security{ - SecurityId: 914281306804908, - Name: "USDP", - Description: "USD Partners LP", - Symbol: "USDP", - Precision: 5, - Type: Stock, - AlternateId: "903318103"}, - 914281691437152: &Security{ - SecurityId: 914281691437152, - Name: "USPH", - Description: "U.S. Physical Therapy, Inc.", - Symbol: "USPH", - Precision: 5, - Type: Stock, - AlternateId: "90337L108"}, - 914281763660424: &Security{ - SecurityId: 914281763660424, - Name: "HTM", - Description: "U.S. Geothermal, Inc.", - Symbol: "HTM", - Precision: 5, - Type: Stock, - AlternateId: "90338S102"}, - 914283824549364: &Security{ - SecurityId: 914283824549364, - Name: "UBIC", - Description: "UBIC, Inc.", - Symbol: "UBIC", - Precision: 5, - Type: Stock, - AlternateId: "90346V105"}, - 914283849743424: &Security{ - SecurityId: 914283849743424, - Name: "UBNT", - Description: "Ubiquiti Networks, Inc.", - Symbol: "UBNT", - Precision: 5, - Type: Stock, - AlternateId: "90347A100"}, - 914292440979516: &Security{ - SecurityId: 914292440979516, - Name: "ULTI", - Description: "Ultimate Software Group, Inc. (The)", - Symbol: "ULTI", - Precision: 5, - Type: Stock, - AlternateId: "90385D107"}, - 914292471212604: &Security{ - SecurityId: 914292471212604, - Name: "UCTT", - Description: "Ultra Clean Holdings, Inc.", - Symbol: "UCTT", - Precision: 5, - Type: Stock, - AlternateId: "90385V107"}, - 914292676125576: &Security{ - SecurityId: 914292676125576, - Name: "ULBI", - Description: "Ultralife Corporation", - Symbol: "ULBI", - Precision: 5, - Type: Stock, - AlternateId: "903899102"}, - 914294360780676: &Security{ - SecurityId: 914294360780676, - Name: "UPL", - Description: "Ultra Petroleum Corp.", - Symbol: "UPL", - Precision: 5, - Type: Stock, - AlternateId: "903914109"}, - 914353088554080: &Security{ - SecurityId: 914353088554080, - Name: "RARE", - Description: "Ultragenyx Pharmaceutical, Inc.", - Symbol: "RARE", - Precision: 5, - Type: Stock, - AlternateId: "90400D108"}, - 914353108709220: &Security{ - SecurityId: 914353108709220, - Name: "UGP", - Description: "Ultrapar Participacoes S.A. ADR", - Symbol: "UGP", - Precision: 5, - Type: Stock, - AlternateId: "90400P101"}, - 914353254835956: &Security{ - SecurityId: 914353254835956, - Name: "UTEK", - Description: "Ultratech Inc.", - Symbol: "UTEK", - Precision: 5, - Type: Stock, - AlternateId: "904034105"}, - 914357487468204: &Security{ - SecurityId: 914357487468204, - Name: "UMPQ", - Description: "Umpqua Holdings Corp.", - Symbol: "UMPQ", - Precision: 5, - Type: Stock, - AlternateId: "904214103"}, - 914359659211836: &Security{ - SecurityId: 914359659211836, - Name: "UA", - Description: "Under Armour, Inc.", - Symbol: "UA", - Precision: 5, - Type: Stock, - AlternateId: "904311107"}, - 914364377299692: &Security{ - SecurityId: 914364377299692, - Name: "UNXL", - Description: "Uni-Pixel, Inc.", - Symbol: "UNXL", - Precision: 5, - Type: Stock, - AlternateId: "904572203"}, - 914366139170400: &Security{ - SecurityId: 914366139170400, - Name: "UNAM", - Description: "Unico American Corp.", - Symbol: "UNAM", - Precision: 5, - Type: Stock, - AlternateId: "904607108"}, - 914366562480000: &Security{ - SecurityId: 914366562480000, - Name: "UFI", - Description: "Unifi, Inc.", - Symbol: "UFI", - Precision: 5, - Type: Stock, - AlternateId: "904677200"}, - 914368317632208: &Security{ - SecurityId: 914368317632208, - Name: "UNF", - Description: "UniFirst Corp.", - Symbol: "UNF", - Precision: 5, - Type: Stock, - AlternateId: "904708104"}, - 914368811439276: &Security{ - SecurityId: 914368811439276, - Name: "UNIS", - Description: "Unilife Corp.", - Symbol: "UNIS", - Precision: 5, - Type: Stock, - AlternateId: "90478E103"}, - 914368794923268: &Security{ - SecurityId: 914368794923268, - Name: "UN", - Description: "Unilever N.V. ADR", - Symbol: "UN", - Precision: 5, - Type: Stock, - AlternateId: "904784709"}, - 914438537338500: &Security{ - SecurityId: 914438537338500, - Name: "UBSH", - Description: "Union Bankshares Corp.", - Symbol: "UBSH", - Precision: 5, - Type: Stock, - AlternateId: "90539J109"}, - 914440138012476: &Security{ - SecurityId: 914440138012476, - Name: "UNB", - Description: "Union Bankshares, Inc.", - Symbol: "UNB", - Precision: 5, - Type: Stock, - AlternateId: "905400107"}, - 914605647373152: &Security{ - SecurityId: 914605647373152, - Name: "UNP", - Description: "Union Pacific Corp.", - Symbol: "UNP", - Precision: 5, - Type: Stock, - AlternateId: "907818108"}, - 914747398565292: &Security{ - SecurityId: 914747398565292, - Name: "UFAB", - Description: "Unique Fabricating, Inc.", - Symbol: "UFAB", - Precision: 5, - Type: Stock, - AlternateId: "90915J103"}, - 914749308382104: &Security{ - SecurityId: 914749308382104, - Name: "UIS", - Description: "Unisys Corp.", - Symbol: "UIS", - Precision: 5, - Type: Stock, - AlternateId: "909214306"}, - 914749315007364: &Security{ - SecurityId: 914749315007364, - Name: "UNT", - Description: "Unit Corp.", - Symbol: "UNT", - Precision: 5, - Type: Stock, - AlternateId: "909218109"}, - 914753910436452: &Security{ - SecurityId: 914753910436452, - Name: "UBOH", - Description: "United Bancshares, Inc. (OH)", - Symbol: "UBOH", - Precision: 5, - Type: Stock, - AlternateId: "909458101"}, - 914762498313096: &Security{ - SecurityId: 914762498313096, - Name: "UCFC", - Description: "United Community Financial Corp.", - Symbol: "UCFC", - Precision: 5, - Type: Stock, - AlternateId: "909839102"}, - 914762585746476: &Security{ - SecurityId: 914762585746476, - Name: "UCBI", - Description: "United Community Banks, Inc.", - Symbol: "UCBI", - Precision: 5, - Type: Stock, - AlternateId: "90984P303"}, - 914762589012324: &Security{ - SecurityId: 914762589012324, - Name: "UCBA", - Description: "United Community Bancorp", - Symbol: "UCBA", - Precision: 5, - Type: Stock, - AlternateId: "90984R101"}, - 914764490337852: &Security{ - SecurityId: 914764490337852, - Name: "UBSI", - Description: "United Bankshares, Inc.", - Symbol: "UBSI", - Precision: 5, - Type: Stock, - AlternateId: "909907107"}, - 914764540726404: &Security{ - SecurityId: 914764540726404, - Name: "UBCP", - Description: "United Bancorp, Inc.", - Symbol: "UBCP", - Precision: 5, - Type: Stock, - AlternateId: "909911109"}, - 916860973592196: &Security{ - SecurityId: 916860973592196, - Name: "UAL", - Description: "United Continental Holdings, Inc,", - Symbol: "UAL", - Precision: 5, - Type: Stock, - AlternateId: "910047109"}, - 916863392239020: &Security{ - SecurityId: 916863392239020, - Name: "UDF", - Description: "United Development Funding IV", - Symbol: "UDF", - Precision: 5, - Type: Stock, - AlternateId: "910187103"}, - 916867257035472: &Security{ - SecurityId: 916867257035472, - Name: "UBNK", - Description: "United Financial Bancorp, Inc.", - Symbol: "UBNK", - Precision: 5, - Type: Stock, - AlternateId: "910304104"}, - 916872028824672: &Security{ - SecurityId: 916872028824672, - Name: "UG", - Description: "United-Guardian, Inc.", - Symbol: "UG", - Precision: 5, - Type: Stock, - AlternateId: "910571108"}, - 916876017912456: &Security{ - SecurityId: 916876017912456, - Name: "HCI", - Description: "HCI Group, Inc.", - Symbol: "HCI", - Precision: 5, - Type: Stock, - AlternateId: "910710102"}, - 916878562670772: &Security{ - SecurityId: 916878562670772, - Name: "UMC", - Description: "United Microelectronics Corp. ADR", - Symbol: "UMC", - Precision: 5, - Type: Stock, - AlternateId: "910873405"}, - 916941628752300: &Security{ - SecurityId: 916941628752300, - Name: "UNFI", - Description: "United Natural Foods, Inc.", - Symbol: "UNFI", - Precision: 5, - Type: Stock, - AlternateId: "911163103"}, - 916943813979588: &Security{ - SecurityId: 916943813979588, - Name: "UNTD", - Description: "United Online, Inc.", - Symbol: "UNTD", - Precision: 5, - Type: Stock, - AlternateId: "911268209"}, - 916945678306584: &Security{ - SecurityId: 916945678306584, - Name: "UPS", - Description: "United Parcel Service, Inc.", - Symbol: "UPS", - Precision: 5, - Type: Stock, - AlternateId: "911312106"}, - 916945982317188: &Security{ - SecurityId: 916945982317188, - Name: "URI", - Description: "Unitek Global Services, Inc.", - Symbol: "URI", - Precision: 5, - Type: Stock, - AlternateId: "911363109"}, - 916948108710900: &Security{ - SecurityId: 916948108710900, - Name: "USBI", - Description: "United Security Bancshares, Inc.", - Symbol: "USBI", - Precision: 5, - Type: Stock, - AlternateId: "911459105"}, - 916948154060460: &Security{ - SecurityId: 916948154060460, - Name: "UBFO", - Description: "United Security Bancshares", - Symbol: "UBFO", - Precision: 5, - Type: Stock, - AlternateId: "911460103"}, - 916950225026988: &Security{ - SecurityId: 916950225026988, - Name: "UAMY", - Description: "United States Antimony Corp.", - Symbol: "UAMY", - Precision: 5, - Type: Stock, - AlternateId: "911549103"}, - 916952611761216: &Security{ - SecurityId: 916952611761216, - Name: "BNO", - Description: "United States Brent Oil Fund, L.P.", - Symbol: "BNO", - Precision: 5, - Type: Stock, - AlternateId: "91167Q100"}, - 916952635276128: &Security{ - SecurityId: 916952635276128, - Name: "USM", - Description: "United States Cellular Corp.", - Symbol: "USM", - Precision: 5, - Type: Stock, - AlternateId: "911684108"}, - 916954393834008: &Security{ - SecurityId: 916954393834008, - Name: "USCI", - Description: "United States Commodity Index Fund", - Symbol: "USCI", - Precision: 5, - Type: Stock, - AlternateId: "911717106"}, - 916954395513552: &Security{ - SecurityId: 916954395513552, - Name: "CPER", - Description: "United States Copper Index Fund", - Symbol: "CPER", - Precision: 5, - Type: Stock, - AlternateId: "911718104"}, - 916954395560172: &Security{ - SecurityId: 916954395560172, - Name: "USAG", - Description: "United States Agriculture Index Fund", - Symbol: "USAG", - Precision: 5, - Type: Stock, - AlternateId: "911718203"}, - 916954810378848: &Security{ - SecurityId: 916954810378848, - Name: "UHN", - Description: "United States Diesel-Heating Oil Fund, LP", - Symbol: "UHN", - Precision: 5, - Type: Stock, - AlternateId: "911783108"}, - 916956506791044: &Security{ - SecurityId: 916956506791044, - Name: "USEG", - Description: "U.S. Energy Corp.", - Symbol: "USEG", - Precision: 5, - Type: Stock, - AlternateId: "911805109"}, - 916958799466632: &Security{ - SecurityId: 916958799466632, - Name: "USLM", - Description: "United States Lime & Minerals, Inc.", - Symbol: "USLM", - Precision: 5, - Type: Stock, - AlternateId: "911922102"}, - 917017557473160: &Security{ - SecurityId: 917017557473160, - Name: "UGA", - Description: "United States Gasoline Fund LP", - Symbol: "UGA", - Precision: 5, - Type: Stock, - AlternateId: "91201T102"}, - 917024052594852: &Security{ - SecurityId: 917024052594852, - Name: "UNG", - Description: "United States Natural Gas Fund LP", - Symbol: "UNG", - Precision: 5, - Type: Stock, - AlternateId: "912318201"}, - 917024138208864: &Security{ - SecurityId: 917024138208864, - Name: "USO", - Description: "United States Oil Fund LP", - Symbol: "USO", - Precision: 5, - Type: Stock, - AlternateId: "91232N108"}, - 917030574543924: &Security{ - SecurityId: 917030574543924, - Name: "DNO", - Description: "United States Short Oil Fund L.P.", - Symbol: "DNO", - Precision: 5, - Type: Stock, - AlternateId: "912613205"}, - 917035398354348: &Security{ - SecurityId: 917035398354348, - Name: "USL", - Description: "United States 12 Month Oil Fund, LP", - Symbol: "USL", - Precision: 5, - Type: Stock, - AlternateId: "91288V103"}, - 917035401713796: &Security{ - SecurityId: 917035401713796, - Name: "UNL", - Description: "United States 12 Month Natural Gas Fund L.P.", - Symbol: "UNL", - Precision: 5, - Type: Stock, - AlternateId: "91288X109"}, - 917037054455904: &Security{ - SecurityId: 917037054455904, - Name: "X", - Description: "United States Steel Corp.", - Symbol: "X", - Precision: 5, - Type: Stock, - AlternateId: "912909108"}, - 917095884685956: &Security{ - SecurityId: 917095884685956, - Name: "UTX", - Description: "United Technologies Corp.", - Symbol: "UTX", - Precision: 5, - Type: Stock, - AlternateId: "913017109"}, - 917096255880840: &Security{ - SecurityId: 917096255880840, - Name: "UTHR", - Description: "United Therapeutics Corp.", - Symbol: "UTHR", - Precision: 5, - Type: Stock, - AlternateId: "91307C102"}, - 917100449881992: &Security{ - SecurityId: 917100449881992, - Name: "UNH", - Description: "UnitedHealth Group, Inc.", - Symbol: "UNH", - Precision: 5, - Type: Stock, - AlternateId: "91324P102"}, - 917100483474492: &Security{ - SecurityId: 917100483474492, - Name: "UTL", - Description: "Unitil Corp.", - Symbol: "UTL", - Precision: 5, - Type: Stock, - AlternateId: "913259107"}, - 917100710222472: &Security{ - SecurityId: 917100710222472, - Name: "UNTY", - Description: "Unity Bancorp, Inc.", - Symbol: "UNTY", - Precision: 5, - Type: Stock, - AlternateId: "913290102"}, - 917102740878396: &Security{ - SecurityId: 917102740878396, - Name: "UNVR", - Description: "Univar, Inc.", - Symbol: "UNVR", - Precision: 5, - Type: Stock, - AlternateId: "91336L107"}, - 917102850053220: &Security{ - SecurityId: 917102850053220, - Name: "UAM", - Description: "Universal American Corp.", - Symbol: "UAM", - Precision: 5, - Type: Stock, - AlternateId: "91338E101"}, - 917104832000388: &Security{ - SecurityId: 917104832000388, - Name: "UVV", - Description: "Universal Corp.", - Symbol: "UVV", - Precision: 5, - Type: Stock, - AlternateId: "913456109"}, - 917104984845300: &Security{ - SecurityId: 917104984845300, - Name: "OLED", - Description: "Universal Display Corp.", - Symbol: "OLED", - Precision: 5, - Type: Stock, - AlternateId: "91347P105"}, - 917105008359852: &Security{ - SecurityId: 917105008359852, - Name: "UEIC", - Description: "Universal Electronics, Inc.", - Symbol: "UEIC", - Precision: 5, - Type: Stock, - AlternateId: "913483103"}, - 917106943277520: &Security{ - SecurityId: 917106943277520, - Name: "UFPI", - Description: "Universal Forest Products, Inc.", - Symbol: "UFPI", - Precision: 5, - Type: Stock, - AlternateId: "913543104"}, - 917107264084212: &Security{ - SecurityId: 917107264084212, - Name: "UHT", - Description: "Universal Health Realty Income Trust", - Symbol: "UHT", - Precision: 5, - Type: Stock, - AlternateId: "91359E105"}, - 917107292637756: &Security{ - SecurityId: 917107292637756, - Name: "UVE", - Description: "Universal Insurance Holdings, Inc.", - Symbol: "UVE", - Precision: 5, - Type: Stock, - AlternateId: "91359V107"}, - 917113349426184: &Security{ - SecurityId: 917113349426184, - Name: "UUU", - Description: "Universal Security Instruments, Inc.", - Symbol: "UUU", - Precision: 5, - Type: Stock, - AlternateId: "913821302"}, - 917113419876672: &Security{ - SecurityId: 917113419876672, - Name: "USAP", - Description: "Universal Stainless & Alloy Products, Inc.", - Symbol: "USAP", - Precision: 5, - Type: Stock, - AlternateId: "913837100"}, - 917113752440820: &Security{ - SecurityId: 917113752440820, - Name: "UACL", - Description: "Universal Truckload Services, Inc.", - Symbol: "UACL", - Precision: 5, - Type: Stock, - AlternateId: "91388P105"}, - 917115408542016: &Security{ - SecurityId: 917115408542016, - Name: "UHS", - Description: "Universal Health Services, Inc. (Class B)", - Symbol: "UHS", - Precision: 5, - Type: Stock, - AlternateId: "913903100"}, - 917115472367568: &Security{ - SecurityId: 917115472367568, - Name: "UTI", - Description: "Universal Technical Institute, Inc.", - Symbol: "UTI", - Precision: 5, - Type: Stock, - AlternateId: "913915104"}, - 917257319297856: &Security{ - SecurityId: 917257319297856, - Name: "UVSP", - Description: "Univest Corp. of Pennsylvania", - Symbol: "UVSP", - Precision: 5, - Type: Stock, - AlternateId: "915271100"}, - 917257495657752: &Security{ - SecurityId: 917257495657752, - Name: "UNM", - Description: "Unum Group", - Symbol: "UNM", - Precision: 5, - Type: Stock, - AlternateId: "91529Y106"}, - 917348848292448: &Security{ - SecurityId: 917348848292448, - Name: "URG", - Description: "Ur-Energy, Inc.", - Symbol: "URG", - Precision: 5, - Type: Stock, - AlternateId: "91688R108"}, - 917348873486508: &Security{ - SecurityId: 917348873486508, - Name: "UEC", - Description: "Uranium Energy Corp.", - Symbol: "UEC", - Precision: 5, - Type: Stock, - AlternateId: "916896103"}, - 917409536177616: &Security{ - SecurityId: 917409536177616, - Name: "UE", - Description: "Urban Edge Properties", - Symbol: "UE", - Precision: 5, - Type: Stock, - AlternateId: "91704F104"}, - 917409522740616: &Security{ - SecurityId: 917409522740616, - Name: "URBN", - Description: "Urban Outfitters, Inc.", - Symbol: "URBN", - Precision: 5, - Type: Stock, - AlternateId: "917047102"}, - 917414116490520: &Security{ - SecurityId: 917414116490520, - Name: "UBP", - Description: "Urstadt Biddle Properties, Inc.", - Symbol: "UBP", - Precision: 5, - Type: Stock, - AlternateId: "917286106"}, - 917414116537140: &Security{ - SecurityId: 917414116537140, - Name: "UBA", - Description: "Urstadt Biddle Properties, Inc. Cl A", - Symbol: "UBA", - Precision: 5, - Type: Stock, - AlternateId: "917286205"}, - 917414116817220: &Security{ - SecurityId: 917414116817220, - Name: "UBP-G", - Description: "Urstadt Biddle Properties, 6.75% Series G Cumulative Redeemable Preferred Stock", - Symbol: "UBP-G", - Precision: 5, - Type: Stock, - AlternateId: "917286809"}, - 917415952310664: &Security{ - SecurityId: 917415952310664, - Name: "ECOL", - Description: "US Ecology, Inc.", - Symbol: "ECOL", - Precision: 5, - Type: Stock, - AlternateId: "91732J102"}, - 917418473414496: &Security{ - SecurityId: 917418473414496, - Name: "UTMD", - Description: "Utah Medical Products, Inc.", - Symbol: "UTMD", - Precision: 5, - Type: Stock, - AlternateId: "917488108"}, - 917490360979044: &Security{ - SecurityId: 917490360979044, - Name: "WOOF", - Description: "VCA, Inc.", - Symbol: "WOOF", - Precision: 5, - Type: Stock, - AlternateId: "918194101"}, - 917491993566048: &Security{ - SecurityId: 917491993566048, - Name: "VFC", - Description: "V.F. Corp.", - Symbol: "VFC", - Precision: 5, - Type: Stock, - AlternateId: "918204108"}, - 917492477295168: &Security{ - SecurityId: 917492477295168, - Name: "VSEC", - Description: "VSE Corp.", - Symbol: "VSEC", - Precision: 5, - Type: Stock, - AlternateId: "918284100"}, - 917492549518764: &Security{ - SecurityId: 917492549518764, - Name: "VOC", - Description: "VOC Energy Trust", - Symbol: "VOC", - Precision: 5, - Type: Stock, - AlternateId: "91829B103"}, - 917492556237264: &Security{ - SecurityId: 917492556237264, - Name: "VOXX", - Description: "VOXX International Corp.", - Symbol: "VOXX", - Precision: 5, - Type: Stock, - AlternateId: "91829F104"}, - 917494655757300: &Security{ - SecurityId: 917494655757300, - Name: "VTVT", - Description: "vTv Therapeutics, Inc.", - Symbol: "VTVT", - Precision: 5, - Type: Stock, - AlternateId: "918385105"}, - 917496557082540: &Security{ - SecurityId: 917496557082540, - Name: "VWR", - Description: "VWR Corp.", - Symbol: "VWR", - Precision: 5, - Type: Stock, - AlternateId: "91843L103"}, - 917498597862564: &Security{ - SecurityId: 917498597862564, - Name: "EGY", - Description: "VAALCO Energy, Inc.", - Symbol: "EGY", - Precision: 5, - Type: Stock, - AlternateId: "91851C201"}, - 917503458624900: &Security{ - SecurityId: 917503458624900, - Name: "MTN", - Description: "Vail Resorts, Inc.", - Symbol: "MTN", - Precision: 5, - Type: Stock, - AlternateId: "91879Q109"}, - 917507232721728: &Security{ - SecurityId: 917507232721728, - Name: "VHI", - Description: "Valhi, Inc.", - Symbol: "VHI", - Precision: 5, - Type: Stock, - AlternateId: "918905100"}, - 917568268287624: &Security{ - SecurityId: 917568268287624, - Name: "VRX", - Description: "Valeant Pharmaceuticals Intl, Inc.", - Symbol: "VRX", - Precision: 5, - Type: Stock, - AlternateId: "91911K102"}, - 917568318722832: &Security{ - SecurityId: 917568318722832, - Name: "VALE", - Description: "Vale S.A. ADR", - Symbol: "VALE", - Precision: 5, - Type: Stock, - AlternateId: "91912E204"}, - 917568412734528: &Security{ - SecurityId: 917568412734528, - Name: "VLO", - Description: "Valero Energy Corp.", - Symbol: "VLO", - Precision: 5, - Type: Stock, - AlternateId: "91913Y100"}, - 917568448006536: &Security{ - SecurityId: 917568448006536, - Name: "VLP", - Description: "Valero Energy Partners LP", - Symbol: "VLP", - Precision: 5, - Type: Stock, - AlternateId: "91914J102"}, - 917581785837372: &Security{ - SecurityId: 917581785837372, - Name: "VLY", - Description: "Valley National Bancorp", - Symbol: "VLY", - Precision: 5, - Type: Stock, - AlternateId: "919794107"}, - 919686490811748: &Security{ - SecurityId: 919686490811748, - Name: "VMI", - Description: "Valmont Industries, Inc.", - Symbol: "VMI", - Precision: 5, - Type: Stock, - AlternateId: "920253101"}, - 919688670953424: &Security{ - SecurityId: 919688670953424, - Name: "VAL", - Description: "Valspar Corp. (The)", - Symbol: "VAL", - Precision: 5, - Type: Stock, - AlternateId: "920355104"}, - 919690730162496: &Security{ - SecurityId: 919690730162496, - Name: "VALU", - Description: "Value Line, Inc.", - Symbol: "VALU", - Precision: 5, - Type: Stock, - AlternateId: "920437100"}, - 919760630741604: &Security{ - SecurityId: 919760630741604, - Name: "OUNZ", - Description: "Van Eck Merk Gold Trust", - Symbol: "OUNZ", - Precision: 5, - Type: Stock, - AlternateId: "921078101"}, - 919779798851280: &Security{ - SecurityId: 919779798851280, - Name: "VIG", - Description: "Vanguard Dividend Appreciation ETF", - Symbol: "VIG", - Precision: 5, - Type: Stock, - AlternateId: "921908844"}, - 919779800486976: &Security{ - SecurityId: 919779800486976, - Name: "VXUS", - Description: "Vanguard Total International Stock ETF", - Symbol: "VXUS", - Precision: 5, - Type: Stock, - AlternateId: "921909768"}, - 919779845828868: &Security{ - SecurityId: 919779845828868, - Name: "EDV", - Description: "Vanguard Extended Duration Treasury ETF", - Symbol: "EDV", - Precision: 5, - Type: Stock, - AlternateId: "921910709"}, - 919779845876712: &Security{ - SecurityId: 919779845876712, - Name: "MGK", - Description: "Vanguard Mega Cap 300 Growth Index ETF", - Symbol: "MGK", - Precision: 5, - Type: Stock, - AlternateId: "921910816"}, - 919779845880384: &Security{ - SecurityId: 919779845880384, - Name: "MGV", - Description: "Vanguard Mega Cap Value Index ETF", - Symbol: "MGV", - Precision: 5, - Type: Stock, - AlternateId: "921910840"}, - 919779845884380: &Security{ - SecurityId: 919779845884380, - Name: "MGC", - Description: "Vanguard Mega Cap Index ETF", - Symbol: "MGC", - Precision: 5, - Type: Stock, - AlternateId: "921910873"}, - 919779970026996: &Security{ - SecurityId: 919779970026996, - Name: "VOOG", - Description: "Vanguard S&P 500 Growth ETF", - Symbol: "VOOG", - Precision: 5, - Type: Stock, - AlternateId: "921932505"}, - 919779970120236: &Security{ - SecurityId: 919779970120236, - Name: "VOOV", - Description: "Vanguard S&P 500 Value ETF", - Symbol: "VOOV", - Precision: 5, - Type: Stock, - AlternateId: "921932703"}, - 919779970129488: &Security{ - SecurityId: 919779970129488, - Name: "VIOV", - Description: "Vanguard S&P Small-Cap 600 Value ETF", - Symbol: "VIOV", - Precision: 5, - Type: Stock, - AlternateId: "921932778"}, - 919779970131936: &Security{ - SecurityId: 919779970131936, - Name: "VIOG", - Description: "Vanguard S&P Small-Cap 600 Growth ETF", - Symbol: "VIOG", - Precision: 5, - Type: Stock, - AlternateId: "921932794"}, - 919779970169664: &Security{ - SecurityId: 919779970169664, - Name: "VIOO", - Description: "Vanguard S&P Small-Cap 600 ETF", - Symbol: "VIOO", - Precision: 5, - Type: Stock, - AlternateId: "921932828"}, - 919779970172112: &Security{ - SecurityId: 919779970172112, - Name: "IVOV", - Description: "Vanguard S&P Mid-Cap 400 Value ETF", - Symbol: "IVOV", - Precision: 5, - Type: Stock, - AlternateId: "921932844"}, - 919779970174884: &Security{ - SecurityId: 919779970174884, - Name: "IVOG", - Description: "Vanguard S&P Mid-Cap 400 Growth ETF", - Symbol: "IVOG", - Precision: 5, - Type: Stock, - AlternateId: "921932869"}, - 919779970177332: &Security{ - SecurityId: 919779970177332, - Name: "IVOO", - Description: "Vanguard S&P Mid-Cap 400 ETF", - Symbol: "IVOO", - Precision: 5, - Type: Stock, - AlternateId: "921932885"}, - 919779978529980: &Security{ - SecurityId: 919779978529980, - Name: "BLV", - Description: "Vanguard Long-Term Bond ETF", - Symbol: "BLV", - Precision: 5, - Type: Stock, - AlternateId: "921937793"}, - 919779978566484: &Security{ - SecurityId: 919779978566484, - Name: "BIV", - Description: "Vanguard Intermediate-Term Bond ETF", - Symbol: "BIV", - Precision: 5, - Type: Stock, - AlternateId: "921937819"}, - 919779978567708: &Security{ - SecurityId: 919779978567708, - Name: "BSV", - Description: "Vanguard Short-Term Bond ETF", - Symbol: "BSV", - Precision: 5, - Type: Stock, - AlternateId: "921937827"}, - 919779978568932: &Security{ - SecurityId: 919779978568932, - Name: "BND", - Description: "Vanguard Total Bond Market ETF", - Symbol: "BND", - Precision: 5, - Type: Stock, - AlternateId: "921937835"}, - 919780032319344: &Security{ - SecurityId: 919780032319344, - Name: "VEA", - Description: "Vanguard FTSE Developed Markets ETF", - Symbol: "VEA", - Precision: 5, - Type: Stock, - AlternateId: "921943858"}, - 919780037165016: &Security{ - SecurityId: 919780037165016, - Name: "VYM", - Description: "Vanguard High Dividend Yield ETF", - Symbol: "VYM", - Precision: 5, - Type: Stock, - AlternateId: "921946406"}, - 919780037361972: &Security{ - SecurityId: 919780037361972, - Name: "VWOB", - Description: "Vanguard Emerging Markets Government Bond ETF", - Symbol: "VWOB", - Precision: 5, - Type: Stock, - AlternateId: "921946885"}, - 919838679464628: &Security{ - SecurityId: 919838679464628, - Name: "VTIP", - Description: "Vanguard Short-Term Inflation-Protected Securities Index Fund", - Symbol: "VTIP", - Precision: 5, - Type: Stock, - AlternateId: "922020805"}, - 919838771656956: &Security{ - SecurityId: 919838771656956, - Name: "BNDX", - Description: "Vanguard Total International Bond ETF", - Symbol: "BNDX", - Precision: 5, - Type: Stock, - AlternateId: "92203J407"}, - 919838816866656: &Security{ - SecurityId: 919838816866656, - Name: "VCR", - Description: "Vanguard Consumer Discretionary ETF", - Symbol: "VCR", - Precision: 5, - Type: Stock, - AlternateId: "92204A108"}, - 919838816913276: &Security{ - SecurityId: 919838816913276, - Name: "VDC", - Description: "Vanguard Consumer Staples ETF", - Symbol: "VDC", - Precision: 5, - Type: Stock, - AlternateId: "92204A207"}, - 919838816959896: &Security{ - SecurityId: 919838816959896, - Name: "VDE", - Description: "Vanguard Energy ETF", - Symbol: "VDE", - Precision: 5, - Type: Stock, - AlternateId: "92204A306"}, - 919838817006516: &Security{ - SecurityId: 919838817006516, - Name: "VFH", - Description: "Vanguard Financials ETF", - Symbol: "VFH", - Precision: 5, - Type: Stock, - AlternateId: "92204A405"}, - 919838817053136: &Security{ - SecurityId: 919838817053136, - Name: "VHT", - Description: "Vanguard Health Care ETF", - Symbol: "VHT", - Precision: 5, - Type: Stock, - AlternateId: "92204A504"}, - 919838817099756: &Security{ - SecurityId: 919838817099756, - Name: "VIS", - Description: "Vanguard Industrials ETF", - Symbol: "VIS", - Precision: 5, - Type: Stock, - AlternateId: "92204A603"}, - 919838817146376: &Security{ - SecurityId: 919838817146376, - Name: "VGT", - Description: "Vanguard Information Technology ETF", - Symbol: "VGT", - Precision: 5, - Type: Stock, - AlternateId: "92204A702"}, - 919838817192996: &Security{ - SecurityId: 919838817192996, - Name: "VAW", - Description: "Vanguard Materials ETF", - Symbol: "VAW", - Precision: 5, - Type: Stock, - AlternateId: "92204A801"}, - 919838817202248: &Security{ - SecurityId: 919838817202248, - Name: "VPU", - Description: "Vanguard Utilities ETF", - Symbol: "VPU", - Precision: 5, - Type: Stock, - AlternateId: "92204A876"}, - 919838817203472: &Security{ - SecurityId: 919838817203472, - Name: "VOX", - Description: "Vanguard Telecommunications Services ETF", - Symbol: "VOX", - Precision: 5, - Type: Stock, - AlternateId: "92204A884"}, - 919838803672008: &Security{ - SecurityId: 919838803672008, - Name: "VNQI", - Description: "Vanguard Global ex-U.S. Real Estate ETF", - Symbol: "VNQI", - Precision: 5, - Type: Stock, - AlternateId: "922042676"}, - 919838803710960: &Security{ - SecurityId: 919838803710960, - Name: "VSS", - Description: "Vanguard FTSE All-World ex US Small Cap Index Fund ETF", - Symbol: "VSS", - Precision: 5, - Type: Stock, - AlternateId: "922042718"}, - 919838803718628: &Security{ - SecurityId: 919838803718628, - Name: "VEU", - Description: "Vanguard FTSE All-World ex-US ETF", - Symbol: "VEU", - Precision: 5, - Type: Stock, - AlternateId: "922042775"}, - 919838803762800: &Security{ - SecurityId: 919838803762800, - Name: "VWO", - Description: "Vanguard FTSE Emerging Markets ETF", - Symbol: "VWO", - Precision: 5, - Type: Stock, - AlternateId: "922042858"}, - 919838803764024: &Security{ - SecurityId: 919838803764024, - Name: "VPL", - Description: "Vanguard MSCI Pacific ETF", - Symbol: "VPL", - Precision: 5, - Type: Stock, - AlternateId: "922042866"}, - 919838803765248: &Security{ - SecurityId: 919838803765248, - Name: "VGK", - Description: "Vanguard FTSE Europe ETF", - Symbol: "VGK", - Precision: 5, - Type: Stock, - AlternateId: "922042874"}, - 919838885730840: &Security{ - SecurityId: 919838885730840, - Name: "VNR", - Description: "Vanguard Natural Resources, LLC", - Symbol: "VNR", - Precision: 5, - Type: Stock, - AlternateId: "92205F106"}, - 919838941158024: &Security{ - SecurityId: 919838941158024, - Name: "VGSH", - Description: "Vanguard Short-Term Government Bond Index Fund", - Symbol: "VGSH", - Precision: 5, - Type: Stock, - AlternateId: "92206C102"}, - 919838941298244: &Security{ - SecurityId: 919838941298244, - Name: "VCSH", - Description: "Vanguard Short-Term Corporate Bond Index Fund", - Symbol: "VCSH", - Precision: 5, - Type: Stock, - AlternateId: "92206C409"}, - 919838941356564: &Security{ - SecurityId: 919838941356564, - Name: "VTHR", - Description: "Vanguard Russell 3000 ETF", - Symbol: "VTHR", - Precision: 5, - Type: Stock, - AlternateId: "92206C599"}, - 919838941393932: &Security{ - SecurityId: 919838941393932, - Name: "VTWG", - Description: "Vanguard Russell 2000 Growth ETF", - Symbol: "VTWG", - Precision: 5, - Type: Stock, - AlternateId: "92206C623"}, - 919838941396740: &Security{ - SecurityId: 919838941396740, - Name: "VTWV", - Description: "Vanguard Russell 2000 Value ETF", - Symbol: "VTWV", - Precision: 5, - Type: Stock, - AlternateId: "92206C649"}, - 919838941399152: &Security{ - SecurityId: 919838941399152, - Name: "VTWO", - Description: "Vanguard Russell 2000 ETF", - Symbol: "VTWO", - Precision: 5, - Type: Stock, - AlternateId: "92206C664"}, - 919838941401600: &Security{ - SecurityId: 919838941401600, - Name: "VONG", - Description: "Vanguard Russell 1000 Growth ETF", - Symbol: "VONG", - Precision: 5, - Type: Stock, - AlternateId: "92206C680"}, - 919838941438104: &Security{ - SecurityId: 919838941438104, - Name: "VGIT", - Description: "Vanguard Intermediate-Term Government Bond Index Fund", - Symbol: "VGIT", - Precision: 5, - Type: Stock, - AlternateId: "92206C706"}, - 919838941439328: &Security{ - SecurityId: 919838941439328, - Name: "VONV", - Description: "Vanguard Russell 1000 Value ETF", - Symbol: "VONV", - Precision: 5, - Type: Stock, - AlternateId: "92206C714"}, - 919838941441776: &Security{ - SecurityId: 919838941441776, - Name: "VONE", - Description: "Vanguard Russell 1000 ETF", - Symbol: "VONE", - Precision: 5, - Type: Stock, - AlternateId: "92206C730"}, - 919838941446996: &Security{ - SecurityId: 919838941446996, - Name: "VMBS", - Description: "Vanguard Mortgage-Backed Securities Index Fund", - Symbol: "VMBS", - Precision: 5, - Type: Stock, - AlternateId: "92206C771"}, - 919838941485948: &Security{ - SecurityId: 919838941485948, - Name: "VCLT", - Description: "Vanguard Long-Term Corporate Bond Index Fund", - Symbol: "VCLT", - Precision: 5, - Type: Stock, - AlternateId: "92206C813"}, - 919838941489980: &Security{ - SecurityId: 919838941489980, - Name: "VGLT", - Description: "Vanguard Long-Term Government Bond Index Fund", - Symbol: "VGLT", - Precision: 5, - Type: Stock, - AlternateId: "92206C847"}, - 919838941493616: &Security{ - SecurityId: 919838941493616, - Name: "VCIT", - Description: "Vanguard Intermediate-Term Corporate Bond Index Fund", - Symbol: "VCIT", - Precision: 5, - Type: Stock, - AlternateId: "92206C870"}, - 919839117611088: &Security{ - SecurityId: 919839117611088, - Name: "VPCO", - Description: "Vapor Corp.", - Symbol: "VPCO", - Precision: 5, - Type: Stock, - AlternateId: "922099304"}, - 919840763541492: &Security{ - SecurityId: 919840763541492, - Name: "VNTV", - Description: "Vantiv, Inc.", - Symbol: "VNTV", - Precision: 5, - Type: Stock, - AlternateId: "92210H105"}, - 919842953760756: &Security{ - SecurityId: 919842953760756, - Name: "VAR", - Description: "Varian Medical Systems, Inc.", - Symbol: "VAR", - Precision: 5, - Type: Stock, - AlternateId: "92220P105"}, - 919843395499656: &Security{ - SecurityId: 919843395499656, - Name: "VRNS", - Description: "Varonis Systems, Inc.", - Symbol: "VRNS", - Precision: 5, - Type: Stock, - AlternateId: "922280102"}, - 919845145659600: &Security{ - SecurityId: 919845145659600, - Name: "VDSI", - Description: "VASCO Data Security Intl, Inc.", - Symbol: "VDSI", - Precision: 5, - Type: Stock, - AlternateId: "92230Y104"}, - 919845185970564: &Security{ - SecurityId: 919845185970564, - Name: "VASC", - Description: "Vascular Solutions, Inc.", - Symbol: "VASC", - Precision: 5, - Type: Stock, - AlternateId: "92231M109"}, - 919847292208740: &Security{ - SecurityId: 919847292208740, - Name: "VVC", - Description: "Vectren Corp.", - Symbol: "VVC", - Precision: 5, - Type: Stock, - AlternateId: "92240G101"}, - 919847302286688: &Security{ - SecurityId: 919847302286688, - Name: "VGR", - Description: "Vector Group Ltd", - Symbol: "VGR", - Precision: 5, - Type: Stock, - AlternateId: "92240M108"}, - 919847337558336: &Security{ - SecurityId: 919847337558336, - Name: "VECO", - Description: "Veeco Instruments, Inc.", - Symbol: "VECO", - Precision: 5, - Type: Stock, - AlternateId: "922417100"}, - 919847434976100: &Security{ - SecurityId: 919847434976100, - Name: "VEC", - Description: "Vectrus, Inc.", - Symbol: "VEC", - Precision: 5, - Type: Stock, - AlternateId: "92242T101"}, - 919847443374144: &Security{ - SecurityId: 919847443374144, - Name: "VEDL", - Description: "Vedanta Ltd.", - Symbol: "VEDL", - Precision: 5, - Type: Stock, - AlternateId: "92242Y100"}, - 919847696996448: &Security{ - SecurityId: 919847696996448, - Name: "VEEV", - Description: "Veeva Systems, Inc.", - Symbol: "VEEV", - Precision: 5, - Type: Stock, - AlternateId: "922475108"}, - 919851756628284: &Security{ - SecurityId: 919851756628284, - Name: "APPY", - Description: "Venaxis, Inc.", - Symbol: "APPY", - Precision: 5, - Type: Stock, - AlternateId: "92262A107"}, - 919854183673152: &Security{ - SecurityId: 919854183673152, - Name: "VTR", - Description: "Ventas, Inc.", - Symbol: "VTR", - Precision: 5, - Type: Stock, - AlternateId: "92276F100"}, - 919858161289176: &Security{ - SecurityId: 919858161289176, - Name: "VTEB", - Description: "Vanguard Tax-Exempt Bond ETF", - Symbol: "VTEB", - Precision: 5, - Type: Stock, - AlternateId: "922907746"}, - 919858162784652: &Security{ - SecurityId: 919858162784652, - Name: "VOO", - Description: "Vanguard S&P 500 ETF", - Symbol: "VOO", - Precision: 5, - Type: Stock, - AlternateId: "922908363"}, - 919858162871448: &Security{ - SecurityId: 919858162871448, - Name: "VOE", - Description: "Vanguard Mid-Cap Value ETF", - Symbol: "VOE", - Precision: 5, - Type: Stock, - AlternateId: "922908512"}, - 919858162874256: &Security{ - SecurityId: 919858162874256, - Name: "VOT", - Description: "Vanguard Mid-Cap Growth ETF", - Symbol: "VOT", - Precision: 5, - Type: Stock, - AlternateId: "922908538"}, - 919858162876668: &Security{ - SecurityId: 919858162876668, - Name: "VNQ", - Description: "Vanguard REIT ETF", - Symbol: "VNQ", - Precision: 5, - Type: Stock, - AlternateId: "922908553"}, - 919858162881924: &Security{ - SecurityId: 919858162881924, - Name: "VBK", - Description: "Vanguard Small-Cap Growth ETF", - Symbol: "VBK", - Precision: 5, - Type: Stock, - AlternateId: "922908595"}, - 919858162918068: &Security{ - SecurityId: 919858162918068, - Name: "VBR", - Description: "Vanguard Small-Cap Value ETF", - Symbol: "VBR", - Precision: 5, - Type: Stock, - AlternateId: "922908611"}, - 919858162919652: &Security{ - SecurityId: 919858162919652, - Name: "VO", - Description: "Vanguard Mid-Cap ETF", - Symbol: "VO", - Precision: 5, - Type: Stock, - AlternateId: "922908629"}, - 919858162920876: &Security{ - SecurityId: 919858162920876, - Name: "VV", - Description: "Vanguard Large-Cap ETF", - Symbol: "VV", - Precision: 5, - Type: Stock, - AlternateId: "922908637"}, - 919858162923288: &Security{ - SecurityId: 919858162923288, - Name: "VXF", - Description: "Vanguard Extended Market ETF", - Symbol: "VXF", - Precision: 5, - Type: Stock, - AlternateId: "922908652"}, - 919858162967496: &Security{ - SecurityId: 919858162967496, - Name: "VUG", - Description: "Vanguard Growth ETF", - Symbol: "VUG", - Precision: 5, - Type: Stock, - AlternateId: "922908736"}, - 919858162968720: &Security{ - SecurityId: 919858162968720, - Name: "VTV", - Description: "Vanguard Value ETF", - Symbol: "VTV", - Precision: 5, - Type: Stock, - AlternateId: "922908744"}, - 919858162969908: &Security{ - SecurityId: 919858162969908, - Name: "VB", - Description: "Vanguard Small-Cap ETF", - Symbol: "VB", - Precision: 5, - Type: Stock, - AlternateId: "922908751"}, - 919858162971492: &Security{ - SecurityId: 919858162971492, - Name: "VTI", - Description: "Vanguard Total Stock Market ETF", - Symbol: "VTI", - Precision: 5, - Type: Stock, - AlternateId: "922908769"}, - 919923775203096: &Security{ - SecurityId: 919923775203096, - Name: "VRA", - Description: "Vera Bradley, Inc.", - Symbol: "VRA", - Precision: 5, - Type: Stock, - AlternateId: "92335C106"}, - 919923896135376: &Security{ - SecurityId: 919923896135376, - Name: "VSTM", - Description: "Verastem, Inc.", - Symbol: "VSTM", - Precision: 5, - Type: Stock, - AlternateId: "92337C104"}, - 919923901174332: &Security{ - SecurityId: 919923901174332, - Name: "VCYT", - Description: "Veracyte, Inc.", - Symbol: "VCYT", - Precision: 5, - Type: Stock, - AlternateId: "92337F107"}, - 919924048980288: &Security{ - SecurityId: 919924048980288, - Name: "VER", - Description: "VEREIT, Inc.", - Symbol: "VER", - Precision: 5, - Type: Stock, - AlternateId: "92339V100"}, - 919925807538564: &Security{ - SecurityId: 919925807538564, - Name: "PAY", - Description: "VeriFone Systems, Inc.", - Symbol: "PAY", - Precision: 5, - Type: Stock, - AlternateId: "92342Y109"}, - 919925834412168: &Security{ - SecurityId: 919925834412168, - Name: "VRSN", - Description: "VeriSign, Inc.", - Symbol: "VRSN", - Precision: 5, - Type: Stock, - AlternateId: "92343E102"}, - 919925862965712: &Security{ - SecurityId: 919925862965712, - Name: "VZ", - Description: "Verizon Communications, Inc.", - Symbol: "VZ", - Precision: 5, - Type: Stock, - AlternateId: "92343V104"}, - 919925866324800: &Security{ - SecurityId: 919925866324800, - Name: "VRNT", - Description: "Comverse Technology, Inc.", - Symbol: "VRNT", - Precision: 5, - Type: Stock, - AlternateId: "92343X100"}, - 919925988936984: &Security{ - SecurityId: 919925988936984, - Name: "VRSK", - Description: "Verisk Analytics, Inc.", - Symbol: "VRSK", - Precision: 5, - Type: Stock, - AlternateId: "92345Y106"}, - 919925933509728: &Security{ - SecurityId: 919925933509728, - Name: "VBTX", - Description: "Veritex Holdings, Inc.", - Symbol: "VBTX", - Precision: 5, - Type: Stock, - AlternateId: "923451108"}, - 919925938548360: &Security{ - SecurityId: 919925938548360, - Name: "VRTV", - Description: "Veritiv Corp.", - Symbol: "VRTV", - Precision: 5, - Type: Stock, - AlternateId: "923454102"}, - 919932289176564: &Security{ - SecurityId: 919932289176564, - Name: "VET", - Description: "Vermilion Energy, Inc.", - Symbol: "VET", - Precision: 5, - Type: Stock, - AlternateId: "923725105"}, - 919995746795352: &Security{ - SecurityId: 919995746795352, - Name: "VRML", - Description: "Vermillion, Inc.", - Symbol: "VRML", - Precision: 5, - Type: Stock, - AlternateId: "92407M206"}, - 920078583730056: &Security{ - SecurityId: 920078583730056, - Name: "VSAR", - Description: "Versartis, Inc.", - Symbol: "VSAR", - Precision: 5, - Type: Stock, - AlternateId: "92529L102"}, - 920078560215468: &Security{ - SecurityId: 920078560215468, - Name: "VSR", - Description: "Versar, Inc.", - Symbol: "VSR", - Precision: 5, - Type: Stock, - AlternateId: "925297103"}, - 920080327171392: &Security{ - SecurityId: 920080327171392, - Name: "VRTX", - Description: "Vertex Pharmaceuticals, Inc.", - Symbol: "VRTX", - Precision: 5, - Type: Stock, - AlternateId: "92532F100"}, - 920080456502076: &Security{ - SecurityId: 920080456502076, - Name: "VTNR", - Description: "Verttex Energy, Inc.", - Symbol: "VTNR", - Precision: 5, - Type: Stock, - AlternateId: "92534K107"}, - 920082957543360: &Security{ - SecurityId: 920082957543360, - Name: "VRTB", - Description: "Vestin Realty Mortgage II, Inc.", - Symbol: "VRTB", - Precision: 5, - Type: Stock, - AlternateId: "92549X300"}, - 920082902069484: &Security{ - SecurityId: 920082902069484, - Name: "VRTA", - Description: "Vestin Realty Mortgage I, Inc.", - Symbol: "VRTA", - Precision: 5, - Type: Stock, - AlternateId: "925490203"}, - 920084701031640: &Security{ - SecurityId: 920084701031640, - Name: "VVI", - Description: "Viad Corp.", - Symbol: "VVI", - Precision: 5, - Type: Stock, - AlternateId: "92552R406"}, - 920084707609920: &Security{ - SecurityId: 920084707609920, - Name: "VSAT", - Description: "ViaSat, Inc.", - Symbol: "VSAT", - Precision: 5, - Type: Stock, - AlternateId: "92552V100"}, - 920084757998472: &Security{ - SecurityId: 920084757998472, - Name: "VIA", - Description: "Viacom, Inc. Cl A", - Symbol: "VIA", - Precision: 5, - Type: Stock, - AlternateId: "92553P102"}, - 920084758045092: &Security{ - SecurityId: 920084758045092, - Name: "VIAB", - Description: "Viacom, Inc. Cl B", - Symbol: "VIAB", - Precision: 5, - Type: Stock, - AlternateId: "92553P201"}, - 920086714751184: &Security{ - SecurityId: 920086714751184, - Name: "VICL", - Description: "Vical, Inc.", - Symbol: "VICL", - Precision: 5, - Type: Stock, - AlternateId: "925602104"}, - 920091127102308: &Security{ - SecurityId: 920091127102308, - Name: "VII", - Description: "Vicon Fiber Optics Corp.", - Symbol: "VII", - Precision: 5, - Type: Stock, - AlternateId: "925811101"}, - 920091133820808: &Security{ - SecurityId: 920091133820808, - Name: "VICR", - Description: "Vicor Corp.", - Symbol: "VICR", - Precision: 5, - Type: Stock, - AlternateId: "925815102"}, - 920161184173560: &Security{ - SecurityId: 920161184173560, - Name: "CFA", - Description: "Victory CEMP US 500 Volatility Weighted Index ETF", - Symbol: "CFA", - Precision: 5, - Type: Stock, - AlternateId: "92647N766"}, - 920161184174784: &Security{ - SecurityId: 920161184174784, - Name: "CSF", - Description: "Victory CEMP US Discovery Enhanced Volatility Weighted Index ETF", - Symbol: "CSF", - Precision: 5, - Type: Stock, - AlternateId: "92647N774"}, - 920161184176008: &Security{ - SecurityId: 920161184176008, - Name: "CFO", - Description: "Victory CEMP US 500 Enhanced Volatility Weighted Index ETF", - Symbol: "CFO", - Precision: 5, - Type: Stock, - AlternateId: "92647N782"}, - 920161184213736: &Security{ - SecurityId: 920161184213736, - Name: "CIZ", - Description: "Victory CEMP Developed Enhanced Volatility Wtd Index ETF", - Symbol: "CIZ", - Precision: 5, - Type: Stock, - AlternateId: "92647N816"}, - 920161184214960: &Security{ - SecurityId: 920161184214960, - Name: "CDC", - Description: "Victory CEMP US EQ Income Enhanced Volatility Wtd Index ETF", - Symbol: "CDC", - Precision: 5, - Type: Stock, - AlternateId: "92647N824"}, - 920161184217408: &Security{ - SecurityId: 920161184217408, - Name: "CIL", - Description: "Victory CEMP International Volatility Wtd Index ETF", - Symbol: "CIL", - Precision: 5, - Type: Stock, - AlternateId: "92647N840"}, - 920161184220180: &Security{ - SecurityId: 920161184220180, - Name: "CDL", - Description: "Victory CEMP US Large Cap High Div Volatility Wtd Index ETF", - Symbol: "CDL", - Precision: 5, - Type: Stock, - AlternateId: "92647N865"}, - 920161184221404: &Security{ - SecurityId: 920161184221404, - Name: "CSB", - Description: "Victory CEMP US Small Cap High Dividend Volatility Weighted Index ETF", - Symbol: "CSB", - Precision: 5, - Type: Stock, - AlternateId: "92647N873"}, - 920161184222628: &Security{ - SecurityId: 920161184222628, - Name: "CID", - Description: "Victory CEMP International High Dividend Volatility Weighted Index ETF", - Symbol: "CID", - Precision: 5, - Type: Stock, - AlternateId: "92647N881"}, - 920163353949540: &Security{ - SecurityId: 920163353949540, - Name: "VDTH", - Description: "Videocon d2h Ltd.", - Symbol: "VDTH", - Precision: 5, - Type: Stock, - AlternateId: "92657J101"}, - 920169823830552: &Security{ - SecurityId: 920169823830552, - Name: "VKTX", - Description: "Viking Therapeutics, Inc.", - Symbol: "VKTX", - Precision: 5, - Type: Stock, - AlternateId: "92686J106"}, - 920230730112384: &Security{ - SecurityId: 920230730112384, - Name: "VBFC", - Description: "Village Bank & Trust Financial Corp.", - Symbol: "VBFC", - Precision: 5, - Type: Stock, - AlternateId: "92705T200"}, - 920232567705924: &Security{ - SecurityId: 920232567705924, - Name: "VLGEA", - Description: "Village Super Market, Inc.", - Symbol: "VLGEA", - Precision: 5, - Type: Stock, - AlternateId: "927107409"}, - 920233116800280: &Security{ - SecurityId: 920233116800280, - Name: "VIP", - Description: "VimpelCom Ltd.", - Symbol: "VIP", - Precision: 5, - Type: Stock, - AlternateId: "92719A106"}, - 920233153751904: &Security{ - SecurityId: 920233153751904, - Name: "VNCE", - Description: "Vince Holding Corp.", - Symbol: "VNCE", - Precision: 5, - Type: Stock, - AlternateId: "92719W108"}, - 920233101683736: &Security{ - SecurityId: 920233101683736, - Name: "VCO", - Description: "Vina Concha y Toro S.A. (ADR)", - Symbol: "VCO", - Precision: 5, - Type: Stock, - AlternateId: "927191106"}, - 920243637914724: &Security{ - SecurityId: 920243637914724, - Name: "VMEM", - Description: "Violin Memory, Inc.", - Symbol: "VMEM", - Precision: 5, - Type: Stock, - AlternateId: "92763A101"}, - 920243658070260: &Security{ - SecurityId: 920243658070260, - Name: "VNOM", - Description: "Viper Energy Partners LP", - Symbol: "VNOM", - Precision: 5, - Type: Stock, - AlternateId: "92763M105"}, - 920243797525152: &Security{ - SecurityId: 920243797525152, - Name: "VA", - Description: "Virgin America, Inc.", - Symbol: "VA", - Precision: 5, - Type: Stock, - AlternateId: "92765X208"}, - 920243743730820: &Security{ - SecurityId: 920243743730820, - Name: "VIRC", - Description: "Virco Manufacturing Corp.", - Symbol: "VIRC", - Precision: 5, - Type: Stock, - AlternateId: "927651109"}, - 920250101170476: &Security{ - SecurityId: 920250101170476, - Name: "VGZ", - Description: "Vista Gold Corp.", - Symbol: "VGZ", - Precision: 5, - Type: Stock, - AlternateId: "927926303"}, - 920313405804132: &Security{ - SecurityId: 920313405804132, - Name: "VIRT", - Description: "Virtu Financial, Inc.", - Symbol: "VIRT", - Precision: 5, - Type: Stock, - AlternateId: "928254101"}, - 920313480038004: &Security{ - SecurityId: 920313480038004, - Name: "V", - Description: "Visa, Inc.", - Symbol: "V", - Precision: 5, - Type: Stock, - AlternateId: "92826C839"}, - 920313474715296: &Security{ - SecurityId: 920313474715296, - Name: "VSCP", - Description: "VirtualScopics, Inc.", - Symbol: "VSCP", - Precision: 5, - Type: Stock, - AlternateId: "928269208"}, - 920313562008456: &Security{ - SecurityId: 920313562008456, - Name: "VRTU", - Description: "Virtusa Corp.", - Symbol: "VRTU", - Precision: 5, - Type: Stock, - AlternateId: "92827P102"}, - 920313624154500: &Security{ - SecurityId: 920313624154500, - Name: "VRTS", - Description: "Virtus Investment Partners, Inc.", - Symbol: "VRTS", - Precision: 5, - Type: Stock, - AlternateId: "92828Q109"}, - 920313657746604: &Security{ - SecurityId: 920313657746604, - Name: "DCA", - Description: "Virtus Total Return Fund", - Symbol: "DCA", - Precision: 5, - Type: Stock, - AlternateId: "92829A103"}, - 920313659426148: &Security{ - SecurityId: 920313659426148, - Name: "VGI", - Description: "Virtus Global Multi-Sector Income Fund", - Symbol: "VGI", - Precision: 5, - Type: Stock, - AlternateId: "92829B101"}, - 920313654387552: &Security{ - SecurityId: 920313654387552, - Name: "VSH", - Description: "Vishay Intertechnology, Inc.", - Symbol: "VSH", - Precision: 5, - Type: Stock, - AlternateId: "928298108"}, - 920315609460396: &Security{ - SecurityId: 920315609460396, - Name: "VPG", - Description: "Vishay Precision Group, Inc.", - Symbol: "VPG", - Precision: 5, - Type: Stock, - AlternateId: "92835K103"}, - 920315708557632: &Security{ - SecurityId: 920315708557632, - Name: "VSTO", - Description: "Vista Outdoor, Inc.", - Symbol: "VSTO", - Precision: 5, - Type: Stock, - AlternateId: "928377100"}, - 920315868168024: &Security{ - SecurityId: 920315868168024, - Name: "VC", - Description: "Visteon Corp.", - Symbol: "VC", - Precision: 5, - Type: Stock, - AlternateId: "92839U206"}, - 920317912213932: &Security{ - SecurityId: 920317912213932, - Name: "VTAE", - Description: "Vitae Pharmaceuticals, Inc.", - Symbol: "VTAE", - Precision: 5, - Type: Stock, - AlternateId: "92847N103"}, - 920317918932432: &Security{ - SecurityId: 920317918932432, - Name: "VTL", - Description: "Vital Therapies, Inc.", - Symbol: "VTL", - Precision: 5, - Type: Stock, - AlternateId: "92847R104"}, - 920318018029668: &Security{ - SecurityId: 920318018029668, - Name: "VSI", - Description: "Vitamin Shoppe, Inc.", - Symbol: "VSI", - Precision: 5, - Type: Stock, - AlternateId: "92849E101"}, - 920319912636696: &Security{ - SecurityId: 920319912636696, - Name: "VSLR", - Description: "Vivint Solar, Inc.", - Symbol: "VSLR", - Precision: 5, - Type: Stock, - AlternateId: "92854Q106"}, - 920319931112256: &Security{ - SecurityId: 920319931112256, - Name: "VVUS", - Description: "VIVUS, Inc.", - Symbol: "VVUS", - Precision: 5, - Type: Stock, - AlternateId: "928551100"}, - 920319995077704: &Security{ - SecurityId: 920319995077704, - Name: "VMW", - Description: "VMware, Inc.", - Symbol: "VMW", - Precision: 5, - Type: Stock, - AlternateId: "928563402"}, - 920320075559484: &Security{ - SecurityId: 920320075559484, - Name: "VCRA", - Description: "Vocera Communications, Inc.", - Symbol: "VCRA", - Precision: 5, - Type: Stock, - AlternateId: "92857F107"}, - 920320104206304: &Security{ - SecurityId: 920320104206304, - Name: "VOD", - Description: "Vodafone Group plc ADR", - Symbol: "VOD", - Precision: 5, - Type: Stock, - AlternateId: "92857W308"}, - 920322168361020: &Security{ - SecurityId: 920322168361020, - Name: "VNRX", - Description: "VolitionRX Ltd.", - Symbol: "VNRX", - Precision: 5, - Type: Stock, - AlternateId: "928661107"}, - 920324036187396: &Security{ - SecurityId: 920324036187396, - Name: "VLTC", - Description: "Voltari Corp.", - Symbol: "VLTC", - Precision: 5, - Type: Stock, - AlternateId: "92870X309"}, - 920323985705532: &Security{ - SecurityId: 920323985705532, - Name: "VISI", - Description: "Volt Information Sciences, Inc.", - Symbol: "VISI", - Precision: 5, - Type: Stock, - AlternateId: "928703107"}, - 920326569001380: &Security{ - SecurityId: 920326569001380, - Name: "VG", - Description: "Vonage Holdings Corp.", - Symbol: "VG", - Precision: 5, - Type: Stock, - AlternateId: "92886T201"}, - 920328760853856: &Security{ - SecurityId: 920328760853856, - Name: "WILN", - Description: "WI-LAN, Inc.", - Symbol: "WILN", - Precision: 5, - Type: Stock, - AlternateId: "928972108"}, - 920387352578436: &Security{ - SecurityId: 920387352578436, - Name: "VNO", - Description: "Vornado Realty Trust", - Symbol: "VNO", - Precision: 5, - Type: Stock, - AlternateId: "929042109"}, - 920389383327240: &Security{ - SecurityId: 920389383327240, - Name: "VRNG", - Description: "Vringo, Inc.", - Symbol: "VRNG", - Precision: 5, - Type: Stock, - AlternateId: "92911N302"}, - 920389436981640: &Security{ - SecurityId: 920389436981640, - Name: "IAE", - Description: "Voya Asia Pacific High Dividend Equity Income Fund", - Symbol: "IAE", - Precision: 5, - Type: Stock, - AlternateId: "92912J102"}, - 920389440341052: &Security{ - SecurityId: 920389440341052, - Name: "VJET", - Description: "voxeljet AG", - Symbol: "VJET", - Precision: 5, - Type: Stock, - AlternateId: "92912L107"}, - 920389447059552: &Security{ - SecurityId: 920389447059552, - Name: "IHD", - Description: "Voya Emerging Markets High Dividend Equity Fund", - Symbol: "IHD", - Precision: 5, - Type: Stock, - AlternateId: "92912P108"}, - 920389450418640: &Security{ - SecurityId: 920389450418640, - Name: "IGA", - Description: "Voya Global Advantage and Premium Opportunity Fund", - Symbol: "IGA", - Precision: 5, - Type: Stock, - AlternateId: "92912R104"}, - 920389460496228: &Security{ - SecurityId: 920389460496228, - Name: "IDE", - Description: "Voya Infrastructure, Industrials and Materials Fund", - Symbol: "IDE", - Precision: 5, - Type: Stock, - AlternateId: "92912X101"}, - 920389462176132: &Security{ - SecurityId: 920389462176132, - Name: "IID", - Description: "Voya International High Dividend Equity Income Fund", - Symbol: "IID", - Precision: 5, - Type: Stock, - AlternateId: "92912Y109"}, - 920389482331200: &Security{ - SecurityId: 920389482331200, - Name: "PPR", - Description: "Voya Prime Rate Trust", - Symbol: "PPR", - Precision: 5, - Type: Stock, - AlternateId: "92913A100"}, - 920389485690648: &Security{ - SecurityId: 920389485690648, - Name: "IRR", - Description: "Voya Natural Resources Equity Income Fund", - Symbol: "IRR", - Precision: 5, - Type: Stock, - AlternateId: "92913C106"}, - 920389646933892: &Security{ - SecurityId: 920389646933892, - Name: "VMC", - Description: "Vulcan Materials Co.", - Symbol: "VMC", - Precision: 5, - Type: Stock, - AlternateId: "929160109"}, - 920391575226048: &Security{ - SecurityId: 920391575226048, - Name: "VUZI", - Description: "Vuzix Corp.", - Symbol: "VUZI", - Precision: 5, - Type: Stock, - AlternateId: "92921W300"}, - 920391623841816: &Security{ - SecurityId: 920391623841816, - Name: "WTI", - Description: "W&T Offshore, Inc.", - Symbol: "WTI", - Precision: 5, - Type: Stock, - AlternateId: "92922P106"}, - 920391662799612: &Security{ - SecurityId: 920391662799612, - Name: "WCIC", - Description: "WCI Communities, Inc.", - Symbol: "WCIC", - Precision: 5, - Type: Stock, - AlternateId: "92923C807"}, - 920391652395324: &Security{ - SecurityId: 920391652395324, - Name: "WDFC", - Description: "WD-40 Co.", - Symbol: "WDFC", - Precision: 5, - Type: Stock, - AlternateId: "929236107"}, - 920391727978008: &Security{ - SecurityId: 920391727978008, - Name: "WGL", - Description: "WGL Holdings, Inc.", - Symbol: "WGL", - Precision: 5, - Type: Stock, - AlternateId: "92924F106"}, - 920391917774472: &Security{ - SecurityId: 920391917774472, - Name: "WBC", - Description: "WABCO Holdings, Inc.", - Symbol: "WBC", - Precision: 5, - Type: Stock, - AlternateId: "92927K102"}, - 920393733579300: &Security{ - SecurityId: 920393733579300, - Name: "WPCS", - Description: "WPCS Intl, Inc.", - Symbol: "WPCS", - Precision: 5, - Type: Stock, - AlternateId: "92931L401"}, - 920393802303624: &Security{ - SecurityId: 920393802303624, - Name: "WSCI", - Description: "WSI Industries, Inc.", - Symbol: "WSCI", - Precision: 5, - Type: Stock, - AlternateId: "92932Q102"}, - 920393772070536: &Security{ - SecurityId: 920393772070536, - Name: "WSFS", - Description: "WSFS Financial Corp.", - Symbol: "WSFS", - Precision: 5, - Type: Stock, - AlternateId: "929328102"}, - 920393953469316: &Security{ - SecurityId: 920393953469316, - Name: "WVFC", - Description: "WVS Financial Corp.", - Symbol: "WVFC", - Precision: 5, - Type: Stock, - AlternateId: "929358109"}, - 920394042488640: &Security{ - SecurityId: 920394042488640, - Name: "WMIH", - Description: "WMIH Corp.", - Symbol: "WMIH", - Precision: 5, - Type: Stock, - AlternateId: "92936P100"}, - 920394050887044: &Security{ - SecurityId: 920394050887044, - Name: "WPC", - Description: "W.P. Carey, Inc.", - Symbol: "WPC", - Precision: 5, - Type: Stock, - AlternateId: "92936U109"}, - 920394203778540: &Security{ - SecurityId: 920394203778540, - Name: "WLRH", - Description: "WL Ross Holding Corp.", - Symbol: "WLRH", - Precision: 5, - Type: Stock, - AlternateId: "92939D203"}, - 920398364140860: &Security{ - SecurityId: 920398364140860, - Name: "WNC", - Description: "Wabash National Corp.", - Symbol: "WNC", - Precision: 5, - Type: Stock, - AlternateId: "929566107"}, - 920402586695520: &Security{ - SecurityId: 920402586695520, - Name: "WAB", - Description: "Westinghouse Air Brake Technologies Corp.", - Symbol: "WAB", - Precision: 5, - Type: Stock, - AlternateId: "929740108"}, - 922503257232192: &Security{ - SecurityId: 922503257232192, - Name: "WDR", - Description: "Waddell & Reed Financial, Inc.", - Symbol: "WDR", - Precision: 5, - Type: Stock, - AlternateId: "930059100"}, - 922511779604100: &Security{ - SecurityId: 922511779604100, - Name: "WAGE", - Description: "WageWorks, Inc.", - Symbol: "WAGE", - Precision: 5, - Type: Stock, - AlternateId: "930427109"}, - 922583725955244: &Security{ - SecurityId: 922583725955244, - Name: "WMT", - Description: "Wal-Mart Stores, Inc.", - Symbol: "WMT", - Precision: 5, - Type: Stock, - AlternateId: "931142103"}, - 922590143768160: &Security{ - SecurityId: 922590143768160, - Name: "WBA", - Description: "Walgreens Boots Alliance", - Symbol: "WBA", - Precision: 5, - Type: Stock, - AlternateId: "931427108"}, - 922590536798088: &Security{ - SecurityId: 922590536798088, - Name: "WD", - Description: "Walker & Dunlop, Inc.", - Symbol: "WD", - Precision: 5, - Type: Stock, - AlternateId: "93148P102"}, - 922740686070408: &Security{ - SecurityId: 922740686070408, - Name: "WAC", - Description: "Walter Investment Management Corp.", - Symbol: "WAC", - Precision: 5, - Type: Stock, - AlternateId: "93317W102"}, - 922908079960128: &Security{ - SecurityId: 922908079960128, - Name: "WRES", - Description: "Warren Resources, Inc.", - Symbol: "WRES", - Precision: 5, - Type: Stock, - AlternateId: "93564A100"}, - 923147395007364: &Security{ - SecurityId: 923147395007364, - Name: "WAFD", - Description: "Washington Federal, Inc.", - Symbol: "WAFD", - Precision: 5, - Type: Stock, - AlternateId: "938824109"}, - 923221585325412: &Security{ - SecurityId: 923221585325412, - Name: "WRE", - Description: "Washington Real Estate Investment Trust", - Symbol: "WRE", - Precision: 5, - Type: Stock, - AlternateId: "939653101"}, - 925337170852704: &Security{ - SecurityId: 925337170852704, - Name: "WASH", - Description: "Washington Trust Bancorp, Inc.", - Symbol: "WASH", - Precision: 5, - Type: Stock, - AlternateId: "940610108"}, - 925339468567248: &Security{ - SecurityId: 925339468567248, - Name: "WFBI", - Description: "WashingtonFirst Bankshare, Inc.", - Symbol: "WFBI", - Precision: 5, - Type: Stock, - AlternateId: "940730104"}, - 925402721226048: &Security{ - SecurityId: 925402721226048, - Name: "WCN", - Description: "Waste Connections, Inc.", - Symbol: "WCN", - Precision: 5, - Type: Stock, - AlternateId: "941053100"}, - 925402811925636: &Security{ - SecurityId: 925402811925636, - Name: "WM", - Description: "Waste Management, Inc.", - Symbol: "WM", - Precision: 5, - Type: Stock, - AlternateId: "94106L109"}, - 925420083416748: &Security{ - SecurityId: 925420083416748, - Name: "WAT", - Description: "Waters Corp.", - Symbol: "WAT", - Precision: 5, - Type: Stock, - AlternateId: "941848103"}, - 925493963006052: &Security{ - SecurityId: 925493963006052, - Name: "WSO.B", - Description: "Watsco, Inc. Cl B Conv", - Symbol: "WSO.B", - Precision: 5, - Type: Stock, - AlternateId: "942622101"}, - 925493963052672: &Security{ - SecurityId: 925493963052672, - Name: "WSO", - Description: "Watsco, Inc.", - Symbol: "WSO", - Precision: 5, - Type: Stock, - AlternateId: "942622200"}, - 925496272478088: &Security{ - SecurityId: 925496272478088, - Name: "WTS", - Description: "Watts Water Technologies, Inc.", - Symbol: "WTS", - Precision: 5, - Type: Stock, - AlternateId: "942749102"}, - 925565741395812: &Security{ - SecurityId: 925565741395812, - Name: "WPP", - Description: "Wausau Paper Corp.", - Symbol: "WPP", - Precision: 5, - Type: Stock, - AlternateId: "943315101"}, - 925570157339808: &Security{ - SecurityId: 925570157339808, - Name: "WAVX", - Description: "Wave Systems Corp.", - Symbol: "WAVX", - Precision: 5, - Type: Stock, - AlternateId: "943526608"}, - 925640262598500: &Security{ - SecurityId: 925640262598500, - Name: "W", - Description: "Wayfair, Inc. (Class A)", - Symbol: "W", - Precision: 5, - Type: Stock, - AlternateId: "94419L101"}, - 925798873776228: &Security{ - SecurityId: 925798873776228, - Name: "WAYN", - Description: "Wayne Savings Bancshares, Inc.", - Symbol: "WAYN", - Precision: 5, - Type: Stock, - AlternateId: "94624Q101"}, - 925809834950388: &Security{ - SecurityId: 925809834950388, - Name: "WSTG", - Description: "Wayside Technology Group, Inc.", - Symbol: "WSTG", - Precision: 5, - Type: Stock, - AlternateId: "946760105"}, - 925879327382736: &Security{ - SecurityId: 925879327382736, - Name: "WSPI", - Description: "Web.com Group, Inc.", - Symbol: "WSPI", - Precision: 5, - Type: Stock, - AlternateId: "94733A104"}, - 925887888385416: &Security{ - SecurityId: 925887888385416, - Name: "WBMD", - Description: "WebMD Health Corp.", - Symbol: "WBMD", - Precision: 5, - Type: Stock, - AlternateId: "94770V102"}, - 925890557295492: &Security{ - SecurityId: 925890557295492, - Name: "WBS", - Description: "Webster Financial Corp.", - Symbol: "WBS", - Precision: 5, - Type: Stock, - AlternateId: "947890109"}, - 925962401189988: &Security{ - SecurityId: 925962401189988, - Name: "WB", - Description: "Weibo Corp.", - Symbol: "WB", - Precision: 5, - Type: Stock, - AlternateId: "948596101"}, - 925964154709272: &Security{ - SecurityId: 925964154709272, - Name: "WTW", - Description: "Weight Watchers Intl, Inc.", - Symbol: "WTW", - Precision: 5, - Type: Stock, - AlternateId: "948626106"}, - 925966444025772: &Security{ - SecurityId: 925966444025772, - Name: "WRI", - Description: "Weingarten Realty Investors", - Symbol: "WRI", - Precision: 5, - Type: Stock, - AlternateId: "948741103"}, - 925968634245072: &Security{ - SecurityId: 925968634245072, - Name: "WMK", - Description: "Weis Markets, Inc.", - Symbol: "WMK", - Precision: 5, - Type: Stock, - AlternateId: "948849104"}, - 926038445804568: &Security{ - SecurityId: 926038445804568, - Name: "WCG", - Description: "WellCare Health Plans, Inc.", - Symbol: "WCG", - Precision: 5, - Type: Stock, - AlternateId: "94946T106"}, - 926038526426136: &Security{ - SecurityId: 926038526426136, - Name: "WEBK", - Description: "Wellesley Bancorp, Inc.", - Symbol: "WEBK", - Precision: 5, - Type: Stock, - AlternateId: "949485106"}, - 926044816587876: &Security{ - SecurityId: 926044816587876, - Name: "WFC", - Description: "Wells Fargo & Co.", - Symbol: "WFC", - Precision: 5, - Type: Stock, - AlternateId: "949746101"}, - 926044816914576: &Security{ - SecurityId: 926044816914576, - Name: "WFC-L", - Description: "Wells Fargo & Co., 7.50% Non-Cumul Perp Conv Cl A Preferred Stock, Series L", - Symbol: "WFC-L", - Precision: 5, - Type: Stock, - AlternateId: "949746804"}, - 926047183166964: &Security{ - SecurityId: 926047183166964, - Name: "EAD", - Description: "Wells Fargo Income Opportunities Fund", - Symbol: "EAD", - Precision: 5, - Type: Stock, - AlternateId: "94987B105"}, - 926047184846508: &Security{ - SecurityId: 926047184846508, - Name: "EOD", - Description: "Wells Fargo Global Dividend Opportunity Fund", - Symbol: "EOD", - Precision: 5, - Type: Stock, - AlternateId: "94987C103"}, - 926047186526052: &Security{ - SecurityId: 926047186526052, - Name: "ERC", - Description: "Wells Fargo Multi-Sector Income Fund", - Symbol: "ERC", - Precision: 5, - Type: Stock, - AlternateId: "94987D101"}, - 926047188205956: &Security{ - SecurityId: 926047188205956, - Name: "ERH", - Description: "Wells Fargo Utilities and High Income Fund", - Symbol: "ERH", - Precision: 5, - Type: Stock, - AlternateId: "94987E109"}, - 928156580988480: &Security{ - SecurityId: 928156580988480, - Name: "WEN", - Description: "Wendy's Company (The)", - Symbol: "WEN", - Precision: 5, - Type: Stock, - AlternateId: "95058W100"}, - 928160707805280: &Security{ - SecurityId: 928160707805280, - Name: "WERN", - Description: "Werner Enterprises, Inc.", - Symbol: "WERN", - Precision: 5, - Type: Stock, - AlternateId: "950755108"}, - 928162634324580: &Security{ - SecurityId: 928162634324580, - Name: "WSBC", - Description: "WesBanco, Inc.", - Symbol: "WSBC", - Precision: 5, - Type: Stock, - AlternateId: "950810101"}, - 928162736781300: &Security{ - SecurityId: 928162736781300, - Name: "WCC", - Description: "WESCO Intl, Inc.", - Symbol: "WCC", - Precision: 5, - Type: Stock, - AlternateId: "95082P105"}, - 928228100717592: &Security{ - SecurityId: 928228100717592, - Name: "WTBA", - Description: "West Bancorporation, Inc.", - Symbol: "WTBA", - Precision: 5, - Type: Stock, - AlternateId: "95123P106"}, - 928308729050640: &Security{ - SecurityId: 928308729050640, - Name: "WSTC", - Description: "West Corp.", - Symbol: "WSTC", - Precision: 5, - Type: Stock, - AlternateId: "952355204"}, - 928463159617596: &Security{ - SecurityId: 928463159617596, - Name: "WMAR", - Description: "West Marine, Inc.", - Symbol: "WMAR", - Precision: 5, - Type: Stock, - AlternateId: "954235107"}, - 928543520845044: &Security{ - SecurityId: 928543520845044, - Name: "WST", - Description: "West Pharmaceutical Services, Inc.", - Symbol: "WST", - Precision: 5, - Type: Stock, - AlternateId: "955306105"}, - 928694301652800: &Security{ - SecurityId: 928694301652800, - Name: "WR", - Description: "Westar Energy, Inc.", - Symbol: "WR", - Precision: 5, - Type: Stock, - AlternateId: "95709T100"}, - 928694252944044: &Security{ - SecurityId: 928694252944044, - Name: "WABC", - Description: "Westamerica Bancorporation", - Symbol: "WABC", - Precision: 5, - Type: Stock, - AlternateId: "957090103"}, - 928704836204532: &Security{ - SecurityId: 928704836204532, - Name: "WSTL", - Description: "Westell Technologies, Inc.", - Symbol: "WSTL", - Precision: 5, - Type: Stock, - AlternateId: "957541105"}, - 928706964278148: &Security{ - SecurityId: 928706964278148, - Name: "WAL", - Description: "Western Alliance Bancorporation", - Symbol: "WAL", - Precision: 5, - Type: Stock, - AlternateId: "957638109"}, - 928707149035620: &Security{ - SecurityId: 928707149035620, - Name: "ESD", - Description: "Western Asset Emerging Markets Debt Fund", - Symbol: "ESD", - Precision: 5, - Type: Stock, - AlternateId: "95766A101"}, - 928707150715524: &Security{ - SecurityId: 928707150715524, - Name: "EHI", - Description: "Western Asset Global High Income Fund", - Symbol: "EHI", - Precision: 5, - Type: Stock, - AlternateId: "95766B109"}, - 928707155754156: &Security{ - SecurityId: 928707155754156, - Name: "EMD", - Description: "Western Asset Emerging Markets Income Fund", - Symbol: "EMD", - Precision: 5, - Type: Stock, - AlternateId: "95766E103"}, - 928707159113568: &Security{ - SecurityId: 928707159113568, - Name: "GDF", - Description: "Western Asset Global Partners Income Fund", - Symbol: "GDF", - Precision: 5, - Type: Stock, - AlternateId: "95766G108"}, - 928707164152200: &Security{ - SecurityId: 928707164152200, - Name: "HIX", - Description: "Western Asset High Income Fund II", - Symbol: "HIX", - Precision: 5, - Type: Stock, - AlternateId: "95766J102"}, - 928707165832068: &Security{ - SecurityId: 928707165832068, - Name: "HIO", - Description: "Western Asset High Income Opportunity Fund", - Symbol: "HIO", - Precision: 5, - Type: Stock, - AlternateId: "95766K109"}, - 928707167511612: &Security{ - SecurityId: 928707167511612, - Name: "MHY", - Description: "Western Asset Managed High Income Fund", - Symbol: "MHY", - Precision: 5, - Type: Stock, - AlternateId: "95766L107"}, - 928707169191156: &Security{ - SecurityId: 928707169191156, - Name: "MMU", - Description: "Western Asset Managed Municipals Fund", - Symbol: "MMU", - Precision: 5, - Type: Stock, - AlternateId: "95766M105"}, - 928707170870700: &Security{ - SecurityId: 928707170870700, - Name: "MHF", - Description: "Western Asset Municipal High Income Fund", - Symbol: "MHF", - Precision: 5, - Type: Stock, - AlternateId: "95766N103"}, - 928707174230112: &Security{ - SecurityId: 928707174230112, - Name: "MNP", - Description: "Western Asset Municipal Partners Fund", - Symbol: "MNP", - Precision: 5, - Type: Stock, - AlternateId: "95766P108"}, - 928707175909656: &Security{ - SecurityId: 928707175909656, - Name: "WIA", - Description: "Western Asset/Claymore Inflation-Linked Securities & Income Fund", - Symbol: "WIA", - Precision: 5, - Type: Stock, - AlternateId: "95766Q106"}, - 928707177589200: &Security{ - SecurityId: 928707177589200, - Name: "WIW", - Description: "Western Asset/Claymore Inflation-Linked Opportunities & Income Fund", - Symbol: "WIW", - Precision: 5, - Type: Stock, - AlternateId: "95766R104"}, - 928707180948288: &Security{ - SecurityId: 928707180948288, - Name: "PAI", - Description: "Western Asset Income Fund", - Symbol: "PAI", - Precision: 5, - Type: Stock, - AlternateId: "95766T100"}, - 928707138958068: &Security{ - SecurityId: 928707138958068, - Name: "WEA", - Description: "Western Asset Premier Bond Fund", - Symbol: "WEA", - Precision: 5, - Type: Stock, - AlternateId: "957664105"}, - 928707143997024: &Security{ - SecurityId: 928707143997024, - Name: "GFY", - Description: "Western Asset Variable Rate Strategic Fund", - Symbol: "GFY", - Precision: 5, - Type: Stock, - AlternateId: "957667108"}, - 928707145676568: &Security{ - SecurityId: 928707145676568, - Name: "SBW", - Description: "Western Asset Worldwide Income Fund", - Symbol: "SBW", - Precision: 5, - Type: Stock, - AlternateId: "957668106"}, - 928707269968260: &Security{ - SecurityId: 928707269968260, - Name: "MTT", - Description: "Western Asset Municipal Defined Opportunity Trust", - Symbol: "MTT", - Precision: 5, - Type: Stock, - AlternateId: "95768A109"}, - 928707271647804: &Security{ - SecurityId: 928707271647804, - Name: "HYI", - Description: "Western Asset High Yield Defined Opportunity Fund", - Symbol: "HYI", - Precision: 5, - Type: Stock, - AlternateId: "95768B107"}, - 928713316585572: &Security{ - SecurityId: 928713316585572, - Name: "IGI", - Description: "Western Asset Investment Grade Defined Opportunity Trust", - Symbol: "IGI", - Precision: 5, - Type: Stock, - AlternateId: "95790A101"}, - 928713318265476: &Security{ - SecurityId: 928713318265476, - Name: "DMO", - Description: "Western Asset Mortgage Defined Opportunity Fund", - Symbol: "DMO", - Precision: 5, - Type: Stock, - AlternateId: "95790B109"}, - 928713319945020: &Security{ - SecurityId: 928713319945020, - Name: "GDO", - Description: "Western Asset Global Corporate Defined Opportunity Fund", - Symbol: "GDO", - Precision: 5, - Type: Stock, - AlternateId: "95790C107"}, - 928713321624564: &Security{ - SecurityId: 928713321624564, - Name: "WMC", - Description: "Western Asset Mortgage Capital Corp.", - Symbol: "WMC", - Precision: 5, - Type: Stock, - AlternateId: "95790D105"}, - 928774253054196: &Security{ - SecurityId: 928774253054196, - Name: "WDC", - Description: "Western Digital Corp.", - Symbol: "WDC", - Precision: 5, - Type: Stock, - AlternateId: "958102105"}, - 928776774157740: &Security{ - SecurityId: 928776774157740, - Name: "WGP", - Description: "Western Gas Equity Partners, L.P.", - Symbol: "WGP", - Precision: 5, - Type: Stock, - AlternateId: "95825R103"}, - 928776735526608: &Security{ - SecurityId: 928776735526608, - Name: "WES", - Description: "Western Gas Partners, L.P.", - Symbol: "WES", - Precision: 5, - Type: Stock, - AlternateId: "958254104"}, - 928780969838724: &Security{ - SecurityId: 928780969838724, - Name: "SBI", - Description: "Western Asset Intermediate Muni Fund", - Symbol: "SBI", - Precision: 5, - Type: Stock, - AlternateId: "958435109"}, - 928857071606580: &Security{ - SecurityId: 928857071606580, - Name: "WNRL", - Description: "Western Refining Logistics, LP", - Symbol: "WNRL", - Precision: 5, - Type: Stock, - AlternateId: "95931Q205"}, - 928857043006416: &Security{ - SecurityId: 928857043006416, - Name: "WNR", - Description: "Western Refining, Inc.", - Symbol: "WNR", - Precision: 5, - Type: Stock, - AlternateId: "959319104"}, - 928867854694788: &Security{ - SecurityId: 928867854694788, - Name: "WU", - Description: "Western Union Co. (The)", - Symbol: "WU", - Precision: 5, - Type: Stock, - AlternateId: "959802109"}, - 930975042141576: &Security{ - SecurityId: 930975042141576, - Name: "WLK", - Description: "Westlake Chemical Corp.", - Symbol: "WLK", - Precision: 5, - Type: Stock, - AlternateId: "960413102"}, - 930975048860076: &Security{ - SecurityId: 930975048860076, - Name: "WLKP", - Description: "Westlake Chemical Partners LP", - Symbol: "WLKP", - Precision: 5, - Type: Stock, - AlternateId: "960417103"}, - 930984120466200: &Security{ - SecurityId: 930984120466200, - Name: "WLB", - Description: "Westmoreland Coal Co.", - Symbol: "WLB", - Precision: 5, - Type: Stock, - AlternateId: "960878106"}, - 931053664966644: &Security{ - SecurityId: 931053664966644, - Name: "WRK", - Description: "Westrock Co.", - Symbol: "WRK", - Precision: 5, - Type: Stock, - AlternateId: "96145D105"}, - 931060242342864: &Security{ - SecurityId: 931060242342864, - Name: "WHG", - Description: "Westwood Holdings Group, Inc.", - Symbol: "WHG", - Precision: 5, - Type: Stock, - AlternateId: "961765104"}, - 931123530273744: &Security{ - SecurityId: 931123530273744, - Name: "WEX", - Description: "WEX, Inc.", - Symbol: "WEX", - Precision: 5, - Type: Stock, - AlternateId: "96208T104"}, - 931125431598912: &Security{ - SecurityId: 931125431598912, - Name: "WEYS", - Description: "Weyco Group, Inc.", - Symbol: "WEYS", - Precision: 5, - Type: Stock, - AlternateId: "962149100"}, - 931125547492560: &Security{ - SecurityId: 931125547492560, - Name: "WY", - Description: "Weyerhaeuser Co.", - Symbol: "WY", - Precision: 5, - Type: Stock, - AlternateId: "962166104"}, - 931125547828152: &Security{ - SecurityId: 931125547828152, - Name: "WY-A", - Description: "Weyerhaeuser Co., 6.375% Mandatory Convertible Preference Shares Series A", - Symbol: "WY-A", - Precision: 5, - Type: Stock, - AlternateId: "962166872"}, - 931201491329892: &Security{ - SecurityId: 931201491329892, - Name: "WHLR", - Description: "Wheeler Real Estate Investment Trust, Inc.", - Symbol: "WHLR", - Precision: 5, - Type: Stock, - AlternateId: "963025101"}, - 931201491331476: &Security{ - SecurityId: 931201491331476, - Name: "WHLRW", - Description: "Wheeler Real Estate Investment Trust, Warrants expire approximately 4/28/2019", - Symbol: "WHLRW", - Precision: 5, - Type: Stock, - AlternateId: "963025119"}, - 931201491423492: &Security{ - SecurityId: 931201491423492, - Name: "WHLRP", - Description: "Wheeler Real Estate Investment Trust, 9.00% Series B Cumul Conv Preferred Stock", - Symbol: "WHLRP", - Precision: 5, - Type: Stock, - AlternateId: "963025309"}, - 931208013279000: &Security{ - SecurityId: 931208013279000, - Name: "WHR", - Description: "Whirlpool Corp.", - Symbol: "WHR", - Precision: 5, - Type: Stock, - AlternateId: "963320106"}, - 931362737825304: &Security{ - SecurityId: 931362737825304, - Name: "WHF", - Description: "WhiteHorse Finance, Inc.", - Symbol: "WHF", - Precision: 5, - Type: Stock, - AlternateId: "96524V106"}, - 931436944986384: &Security{ - SecurityId: 931436944986384, - Name: "WSR", - Description: "Whitestone REIT", - Symbol: "WSR", - Precision: 5, - Type: Stock, - AlternateId: "966084204"}, - 931441056639732: &Security{ - SecurityId: 931441056639732, - Name: "WWAV", - Description: "Whitewave Foods Co. (The)", - Symbol: "WWAV", - Precision: 5, - Type: Stock, - AlternateId: "966244105"}, - 931443480325512: &Security{ - SecurityId: 931443480325512, - Name: "WLL", - Description: "Whiting Petroleum Corp.", - Symbol: "WLL", - Precision: 5, - Type: Stock, - AlternateId: "966387102"}, - 931443482005056: &Security{ - SecurityId: 931443482005056, - Name: "WHZT", - Description: "Whiting USA Trust II", - Symbol: "WHZT", - Precision: 5, - Type: Stock, - AlternateId: "966388100"}, - 931454061906456: &Security{ - SecurityId: 931454061906456, - Name: "WFM", - Description: "Whole Foods Market, Inc.", - Symbol: "WFM", - Precision: 5, - Type: Stock, - AlternateId: "966837106"}, - 931526246763072: &Security{ - SecurityId: 931526246763072, - Name: "WYY", - Description: "WidePoint Corp.", - Symbol: "WYY", - Precision: 5, - Type: Stock, - AlternateId: "967590100"}, - 931597662402648: &Security{ - SecurityId: 931597662402648, - Name: "JW.A", - Description: "John Wiley & Sons, Inc. Cl A", - Symbol: "JW.A", - Precision: 5, - Type: Stock, - AlternateId: "968223206"}, - 931597662449268: &Security{ - SecurityId: 931597662449268, - Name: "JW.B", - Description: "John Wiley & Sons, Inc. Cl B", - Symbol: "JW.B", - Precision: 5, - Type: Stock, - AlternateId: "968223305"}, - 931673915242560: &Security{ - SecurityId: 931673915242560, - Name: "WVVI", - Description: "Willamette Valley Vineyards, Inc.", - Symbol: "WVVI", - Precision: 5, - Type: Stock, - AlternateId: "969136100"}, - 931675905587808: &Security{ - SecurityId: 931675905587808, - Name: "WG", - Description: "Willbros Group, Inc.", - Symbol: "WG", - Precision: 5, - Type: Stock, - AlternateId: "969203108"}, - 931680568201536: &Security{ - SecurityId: 931680568201536, - Name: "WMB", - Description: "Williams Cos., Inc. (The)", - Symbol: "WMB", - Precision: 5, - Type: Stock, - AlternateId: "969457100"}, - 931680798308964: &Security{ - SecurityId: 931680798308964, - Name: "CWEI", - Description: "Clayton Williams Energy, Inc.", - Symbol: "CWEI", - Precision: 5, - Type: Stock, - AlternateId: "969490101"}, - 931691144743524: &Security{ - SecurityId: 931691144743524, - Name: "WSM", - Description: "Williams-Sonoma, Inc.", - Symbol: "WSM", - Precision: 5, - Type: Stock, - AlternateId: "969904101"}, - 933800692051188: &Security{ - SecurityId: 933800692051188, - Name: "WLFC", - Description: "Willis Lease Finance Corp.", - Symbol: "WLFC", - Precision: 5, - Type: Stock, - AlternateId: "970646105"}, - 934040023940736: &Security{ - SecurityId: 934040023940736, - Name: "WIN", - Description: "Windstream Holdings, Inc.", - Symbol: "WIN", - Precision: 5, - Type: Stock, - AlternateId: "97382A200"}, - 934103323582380: &Security{ - SecurityId: 934103323582380, - Name: "WING", - Description: "Wingstop, Inc.", - Symbol: "WING", - Precision: 5, - Type: Stock, - AlternateId: "974155103"}, - 934105491966600: &Security{ - SecurityId: 934105491966600, - Name: "WINA", - Description: "Winmark Corp.", - Symbol: "WINA", - Precision: 5, - Type: Stock, - AlternateId: "974250102"}, - 934114089920832: &Security{ - SecurityId: 934114089920832, - Name: "WGO", - Description: "Winnebago Industries, Inc.", - Symbol: "WGO", - Precision: 5, - Type: Stock, - AlternateId: "974637100"}, - 934264640714688: &Security{ - SecurityId: 934264640714688, - Name: "FUR", - Description: "Winthrop Realty Trust", - Symbol: "FUR", - Precision: 5, - Type: Stock, - AlternateId: "976391300"}, - 934268545728900: &Security{ - SecurityId: 934268545728900, - Name: "WIT", - Description: "Wipro Ltd ADR", - Symbol: "WIT", - Precision: 5, - Type: Stock, - AlternateId: "97651M109"}, - 934338570599376: &Security{ - SecurityId: 934338570599376, - Name: "WETF", - Description: "WisdomTree Investments, Inc.", - Symbol: "WETF", - Precision: 5, - Type: Stock, - AlternateId: "97717P104"}, - 934338582356868: &Security{ - SecurityId: 934338582356868, - Name: "DTD", - Description: "WisdomTree Total Dividend Fund", - Symbol: "DTD", - Precision: 5, - Type: Stock, - AlternateId: "97717W109"}, - 934338582359316: &Security{ - SecurityId: 934338582359316, - Name: "WDTI", - Description: "WisdomTree Managed Futures Strategy Fund", - Symbol: "WDTI", - Precision: 5, - Type: Stock, - AlternateId: "97717W125"}, - 934338582360540: &Security{ - SecurityId: 934338582360540, - Name: "CEW", - Description: "WisdomTree Emerging Currency Strategy Fund", - Symbol: "CEW", - Precision: 5, - Type: Stock, - AlternateId: "97717W133"}, - 934338582364536: &Security{ - SecurityId: 934338582364536, - Name: "ICN", - Description: "WisdomTree Indian Rupee Strategy Fund", - Symbol: "ICN", - Precision: 5, - Type: Stock, - AlternateId: "97717W166"}, - 934338582366984: &Security{ - SecurityId: 934338582366984, - Name: "CYB", - Description: "WisdomTree Chinese Yuan Strategy Fund", - Symbol: "CYB", - Precision: 5, - Type: Stock, - AlternateId: "97717W182"}, - 934338582403488: &Security{ - SecurityId: 934338582403488, - Name: "DHS", - Description: "WisdomTree Equity Income Fund", - Symbol: "DHS", - Precision: 5, - Type: Stock, - AlternateId: "97717W208"}, - 934338582404712: &Security{ - SecurityId: 934338582404712, - Name: "AUNZ", - Description: "WisdomTree Dreyfus Australia & New Zealand Debt Fund", - Symbol: "AUNZ", - Precision: 5, - Type: Stock, - AlternateId: "97717W216"}, - 934338582408384: &Security{ - SecurityId: 934338582408384, - Name: "BZF", - Description: "WisdomTree Brazilian Real Strategy Fund", - Symbol: "BZF", - Precision: 5, - Type: Stock, - AlternateId: "97717W240"}, - 934338582413604: &Security{ - SecurityId: 934338582413604, - Name: "DGS", - Description: "WisdomTree Emerging Markets SmallCap Dividend Fund", - Symbol: "DGS", - Precision: 5, - Type: Stock, - AlternateId: "97717W281"}, - 934338582415188: &Security{ - SecurityId: 934338582415188, - Name: "JGBB", - Description: "WisdomTree Japan Interest Rate Strategy Fund", - Symbol: "JGBB", - Precision: 5, - Type: Stock, - AlternateId: "97717W299"}, - 934338582450108: &Security{ - SecurityId: 934338582450108, - Name: "DLN", - Description: "WisdomTree LargeCap Dividend Fund", - Symbol: "DLN", - Precision: 5, - Type: Stock, - AlternateId: "97717W307"}, - 934338582451332: &Security{ - SecurityId: 934338582451332, - Name: "DEM", - Description: "WisdomTree Emerging Markets Equity Income Fund", - Symbol: "DEM", - Precision: 5, - Type: Stock, - AlternateId: "97717W315"}, - 934338582452556: &Security{ - SecurityId: 934338582452556, - Name: "DGRE", - Description: "WisdomTree Emerging Markets Dividend Growth Fund", - Symbol: "DGRE", - Precision: 5, - Type: Stock, - AlternateId: "97717W323"}, - 934338582453780: &Security{ - SecurityId: 934338582453780, - Name: "DRW", - Description: "WisdomTree Global ex-U.S. Real Estate Fund", - Symbol: "DRW", - Precision: 5, - Type: Stock, - AlternateId: "97717W331"}, - 934338582455364: &Security{ - SecurityId: 934338582455364, - Name: "DXPS", - Description: "WisdomTree United Kingdom Hedged Equity Fund", - Symbol: "DXPS", - Precision: 5, - Type: Stock, - AlternateId: "97717W349"}, - 934338582456552: &Security{ - SecurityId: 934338582456552, - Name: "DXJC", - Description: "WisdomTree Japan Hedged Capital Goods Fund", - Symbol: "DXJC", - Precision: 5, - Type: Stock, - AlternateId: "97717W356"}, - 934338582457776: &Security{ - SecurityId: 934338582457776, - Name: "AGND", - Description: "WisdomTree Barclays U.S. Aggregate Bond Negative Duration Fund", - Symbol: "AGND", - Precision: 5, - Type: Stock, - AlternateId: "97717W364"}, - 934338582459000: &Security{ - SecurityId: 934338582459000, - Name: "DXKW", - Description: "WisdomTree Korea Hedged Equity Fund", - Symbol: "DXKW", - Precision: 5, - Type: Stock, - AlternateId: "97717W372"}, - 934338582460224: &Security{ - SecurityId: 934338582460224, - Name: "AGZD", - Description: "WisdomTree Barclays U.S. Aggregate Bond Zero Duration Fund", - Symbol: "AGZD", - Precision: 5, - Type: Stock, - AlternateId: "97717W380"}, - 934338582461808: &Security{ - SecurityId: 934338582461808, - Name: "HYND", - Description: "WisdomTree BofA Merrill Lynch High Yield Bond Negative Duration Fund", - Symbol: "HYND", - Precision: 5, - Type: Stock, - AlternateId: "97717W398"}, - 934338582496728: &Security{ - SecurityId: 934338582496728, - Name: "DTN", - Description: "WisdomTree Dividend ex-Financials Fund", - Symbol: "DTN", - Precision: 5, - Type: Stock, - AlternateId: "97717W406"}, - 934338582499176: &Security{ - SecurityId: 934338582499176, - Name: "EPI", - Description: "WisdomTree India Earnings Fund", - Symbol: "EPI", - Precision: 5, - Type: Stock, - AlternateId: "97717W422"}, - 934338582500400: &Security{ - SecurityId: 934338582500400, - Name: "HYZD", - Description: "WisdomTree BofA Merrill Lynch High Yield Bond Zero Duration Fund", - Symbol: "HYZD", - Precision: 5, - Type: Stock, - AlternateId: "97717W430"}, - 934338582501984: &Security{ - SecurityId: 934338582501984, - Name: "DXGE", - Description: "WisdomTree Germany Hedged Equity Fund", - Symbol: "DXGE", - Precision: 5, - Type: Stock, - AlternateId: "97717W448"}, - 934338582504396: &Security{ - SecurityId: 934338582504396, - Name: "DXJF", - Description: "WisdomTree Japan Hedged Financials Fund", - Symbol: "DXJF", - Precision: 5, - Type: Stock, - AlternateId: "97717W463"}, - 934338582505620: &Security{ - SecurityId: 934338582505620, - Name: "USDU", - Description: "WisdomTree Bloomberg U.S. Dollar Bullish Fund", - Symbol: "USDU", - Precision: 5, - Type: Stock, - AlternateId: "97717W471"}, - 934338582507204: &Security{ - SecurityId: 934338582507204, - Name: "DXJT", - Description: "WisdomTree Japan Hedged Tech, Media & Telecom Fund", - Symbol: "DXJT", - Precision: 5, - Type: Stock, - AlternateId: "97717W489"}, - 934338582543348: &Security{ - SecurityId: 934338582543348, - Name: "DON", - Description: "WisdomTree MidCap Dividend Fund", - Symbol: "DON", - Precision: 5, - Type: Stock, - AlternateId: "97717W505"}, - 934338582545796: &Security{ - SecurityId: 934338582545796, - Name: "DXJS", - Description: "WisdomTree Japan Hedged SmallCap Equity Fund", - Symbol: "DXJS", - Precision: 5, - Type: Stock, - AlternateId: "97717W521"}, - 934338582547380: &Security{ - SecurityId: 934338582547380, - Name: "EMCG", - Description: "WisdomTree Emerging Markets Consumer Growth Fund", - Symbol: "EMCG", - Precision: 5, - Type: Stock, - AlternateId: "97717W539"}, - 934338582548604: &Security{ - SecurityId: 934338582548604, - Name: "EZY", - Description: "WisdomTree LargeCap Value Fund", - Symbol: "EZY", - Precision: 5, - Type: Stock, - AlternateId: "97717W547"}, - 934338582551016: &Security{ - SecurityId: 934338582551016, - Name: "EES", - Description: "WisdomTree SmallCap Earnings Fund", - Symbol: "EES", - Precision: 5, - Type: Stock, - AlternateId: "97717W562"}, - 934338582552240: &Security{ - SecurityId: 934338582552240, - Name: "EZM", - Description: "WisdomTree MidCap Earnings Fund", - Symbol: "EZM", - Precision: 5, - Type: Stock, - AlternateId: "97717W570"}, - 934338582553824: &Security{ - SecurityId: 934338582553824, - Name: "EPS", - Description: "WisdomTree Earnings 500 Fund", - Symbol: "EPS", - Precision: 5, - Type: Stock, - AlternateId: "97717W588"}, - 934338582555048: &Security{ - SecurityId: 934338582555048, - Name: "EXT", - Description: "WisdomTree Total Earnings Fund", - Symbol: "EXT", - Precision: 5, - Type: Stock, - AlternateId: "97717W596"}, - 934338582589968: &Security{ - SecurityId: 934338582589968, - Name: "DES", - Description: "WisdomTree SmallCap Dividend Fund", - Symbol: "DES", - Precision: 5, - Type: Stock, - AlternateId: "97717W604"}, - 934338582594000: &Security{ - SecurityId: 934338582594000, - Name: "DXJR", - Description: "WisdomTree Japan Hedged Real Estate Fund", - Symbol: "DXJR", - Precision: 5, - Type: Stock, - AlternateId: "97717W638"}, - 934338582596412: &Security{ - SecurityId: 934338582596412, - Name: "DBU", - Description: "WisdomTree Global ex-U.S. Utilities Fund", - Symbol: "DBU", - Precision: 5, - Type: Stock, - AlternateId: "97717W653"}, - 934338582636588: &Security{ - SecurityId: 934338582636588, - Name: "DWM", - Description: "WisdomTree DEFA Fund", - Symbol: "DWM", - Precision: 5, - Type: Stock, - AlternateId: "97717W703"}, - 934338582637812: &Security{ - SecurityId: 934338582637812, - Name: "GNAT", - Description: "WisdomTree Global Natural Resources Fund", - Symbol: "GNAT", - Precision: 5, - Type: Stock, - AlternateId: "97717W711"}, - 934338582643032: &Security{ - SecurityId: 934338582643032, - Name: "CCXE", - Description: "WisdomTree Commodity Country Equity Fund", - Symbol: "CCXE", - Precision: 5, - Type: Stock, - AlternateId: "97717W752"}, - 934338582644256: &Security{ - SecurityId: 934338582644256, - Name: "DLS", - Description: "WisdomTree International SmallCap Dividend Fund", - Symbol: "DLS", - Precision: 5, - Type: Stock, - AlternateId: "97717W760"}, - 934338582645840: &Security{ - SecurityId: 934338582645840, - Name: "DIM", - Description: "WisdomTree International MidCap Dividend Fund", - Symbol: "DIM", - Precision: 5, - Type: Stock, - AlternateId: "97717W778"}, - 934338582647064: &Security{ - SecurityId: 934338582647064, - Name: "DOO", - Description: "WisdomTree International Dividend ex-Financials Fund", - Symbol: "DOO", - Precision: 5, - Type: Stock, - AlternateId: "97717W786"}, - 934338582648288: &Security{ - SecurityId: 934338582648288, - Name: "DOL", - Description: "WisdomTree International LargeCap Dividend Fund", - Symbol: "DOL", - Precision: 5, - Type: Stock, - AlternateId: "97717W794"}, - 934338582683208: &Security{ - SecurityId: 934338582683208, - Name: "DTH", - Description: "WisdomTree DEFA Equity Income Fund", - Symbol: "DTH", - Precision: 5, - Type: Stock, - AlternateId: "97717W802"}, - 934338582684432: &Security{ - SecurityId: 934338582684432, - Name: "AUSE", - Description: "WisdomTree Australia Dividend Fund", - Symbol: "AUSE", - Precision: 5, - Type: Stock, - AlternateId: "97717W810"}, - 934338582686016: &Security{ - SecurityId: 934338582686016, - Name: "AXJL", - Description: "WisdomTree Asia Pacific ex-Japan Fund", - Symbol: "AXJL", - Precision: 5, - Type: Stock, - AlternateId: "97717W828"}, - 934338582687240: &Security{ - SecurityId: 934338582687240, - Name: "DFJ", - Description: "WisdomTree Japan SmallCap Dividend Fund", - Symbol: "DFJ", - Precision: 5, - Type: Stock, - AlternateId: "97717W836"}, - 934338582688464: &Security{ - SecurityId: 934338582688464, - Name: "DNL", - Description: "WisdomTree Global ex-U.S. Dividend Growth Fund", - Symbol: "DNL", - Precision: 5, - Type: Stock, - AlternateId: "97717W844"}, - 934338582689652: &Security{ - SecurityId: 934338582689652, - Name: "DXJ", - Description: "WisdomTree Japan Hedged Equity Fund", - Symbol: "DXJ", - Precision: 5, - Type: Stock, - AlternateId: "97717W851"}, - 934338582691236: &Security{ - SecurityId: 934338582691236, - Name: "DFE", - Description: "WisdomTree Europe SmallCap Dividend Fund", - Symbol: "DFE", - Precision: 5, - Type: Stock, - AlternateId: "97717W869"}, - 934338582692460: &Security{ - SecurityId: 934338582692460, - Name: "DEW", - Description: "WisdomTree Global Equity Income Fund", - Symbol: "DEW", - Precision: 5, - Type: Stock, - AlternateId: "97717W877"}, - 934338584094732: &Security{ - SecurityId: 934338584094732, - Name: "DYB", - Description: "WisdomTree Dynamic Bearish U.S. Equity Fund", - Symbol: "DYB", - Precision: 5, - Type: Stock, - AlternateId: "97717X297"}, - 934338584129652: &Security{ - SecurityId: 934338584129652, - Name: "GULF", - Description: "WisdomTree Middle East Dividend Fund", - Symbol: "GULF", - Precision: 5, - Type: Stock, - AlternateId: "97717X305"}, - 934338584130876: &Security{ - SecurityId: 934338584130876, - Name: "DYLS", - Description: "WisdomTree Dynamic Long/Short U.S. Equity Fund", - Symbol: "DYLS", - Precision: 5, - Type: Stock, - AlternateId: "97717X313"}, - 934338584178720: &Security{ - SecurityId: 934338584178720, - Name: "HGSD", - Description: "WisdomTree Global Hedged SmallCap Dividend Fund", - Symbol: "HGSD", - Precision: 5, - Type: Stock, - AlternateId: "97717X420"}, - 934338584182716: &Security{ - SecurityId: 934338584182716, - Name: "USWD", - Description: "WisdomTree Weak Dollar U.S. Equity Fund", - Symbol: "USWD", - Precision: 5, - Type: Stock, - AlternateId: "97717X453"}, - 934338584183940: &Security{ - SecurityId: 934338584183940, - Name: "JDG", - Description: "WisdomTree Japan Dividend Growth Fund", - Symbol: "JDG", - Precision: 5, - Type: Stock, - AlternateId: "97717X461"}, - 934338584185524: &Security{ - SecurityId: 934338584185524, - Name: "UBND", - Description: "WisdomTree Western Asset Unconstrained Bond Fund", - Symbol: "UBND", - Precision: 5, - Type: Stock, - AlternateId: "97717X479"}, - 934338584187972: &Security{ - SecurityId: 934338584187972, - Name: "USSD", - Description: "WisdomTree Strong Dollar U.S. Equity Fund", - Symbol: "USSD", - Precision: 5, - Type: Stock, - AlternateId: "97717X495"}, - 934338584222892: &Security{ - SecurityId: 934338584222892, - Name: "DXJH", - Description: "WisdomTree Japan Hedged Health Care Fund", - Symbol: "DXJH", - Precision: 5, - Type: Stock, - AlternateId: "97717X503"}, - 934338584224116: &Security{ - SecurityId: 934338584224116, - Name: "AGGY", - Description: "WisdomTree Trust WisdomTree Barclays U.S. Aggregate Bond Enhanced Yield Fund", - Symbol: "AGGY", - Precision: 5, - Type: Stock, - AlternateId: "97717X511"}, - 934338584225700: &Security{ - SecurityId: 934338584225700, - Name: "HDLS", - Description: "WisdomTree International Hedged SmallCap Dividend Fund", - Symbol: "HDLS", - Precision: 5, - Type: Stock, - AlternateId: "97717X529"}, - 934338584226924: &Security{ - SecurityId: 934338584226924, - Name: "HDWM", - Description: "WisdomTree Trust WisdomTree International Hedged Equity Fund", - Symbol: "HDWM", - Precision: 5, - Type: Stock, - AlternateId: "97717X537"}, - 934338584228148: &Security{ - SecurityId: 934338584228148, - Name: "DXUS", - Description: "WisdomTree Global ex-U.S. Hedged Dividend Fund", - Symbol: "DXUS", - Precision: 5, - Type: Stock, - AlternateId: "97717X545"}, - 934338584229336: &Security{ - SecurityId: 934338584229336, - Name: "EUSC", - Description: "WisdomTree Europe Hedged SmallCap Equity Fund", - Symbol: "EUSC", - Precision: 5, - Type: Stock, - AlternateId: "97717X552"}, - 934338584232144: &Security{ - SecurityId: 934338584232144, - Name: "XSOE", - Description: "WisdomTree Emerging Markets Ex-State Owned Enterprises Fund", - Symbol: "XSOE", - Precision: 5, - Type: Stock, - AlternateId: "97717X578"}, - 934338584233368: &Security{ - SecurityId: 934338584233368, - Name: "JHDG", - Description: "WisdomTree Japan Hedged Dividend Growth Fund", - Symbol: "JHDG", - Precision: 5, - Type: Stock, - AlternateId: "97717X586"}, - 934338584234592: &Security{ - SecurityId: 934338584234592, - Name: "IHDG", - Description: "WisdomTree International Hedged Dividend Growth Fund", - Symbol: "IHDG", - Precision: 5, - Type: Stock, - AlternateId: "97717X594"}, - 934338584270736: &Security{ - SecurityId: 934338584270736, - Name: "EUDG", - Description: "WisdomTree Europe Dividend Growth Fund", - Symbol: "EUDG", - Precision: 5, - Type: Stock, - AlternateId: "97717X610"}, - 934338584272320: &Security{ - SecurityId: 934338584272320, - Name: "USFR", - Description: "WisdomTree Bloomberg Floating Rate Treasury Fund", - Symbol: "USFR", - Precision: 5, - Type: Stock, - AlternateId: "97717X628"}, - 934338584275956: &Security{ - SecurityId: 934338584275956, - Name: "DGRS", - Description: "WisdomTree U.S. SmallCap Dividend Growth Fund", - Symbol: "DGRS", - Precision: 5, - Type: Stock, - AlternateId: "97717X651"}, - 934338584277540: &Security{ - SecurityId: 934338584277540, - Name: "DGRW", - Description: "WisdomTree U.S. Dividend Growth Fund", - Symbol: "DGRW", - Precision: 5, - Type: Stock, - AlternateId: "97717X669"}, - 934338584281212: &Security{ - SecurityId: 934338584281212, - Name: "CRDT", - Description: "WisdomTree Strategic Corporate Bond Fund", - Symbol: "CRDT", - Precision: 5, - Type: Stock, - AlternateId: "97717X693"}, - 934338584316132: &Security{ - SecurityId: 934338584316132, - Name: "HEDJ", - Description: "WisdomTree Europe Hedged Equity Fund", - Symbol: "HEDJ", - Precision: 5, - Type: Stock, - AlternateId: "97717X701"}, - 934338584317716: &Security{ - SecurityId: 934338584317716, - Name: "CXSE", - Description: "WisdomTree China ex-State-Owned Enterprises Fund", - Symbol: "CXSE", - Precision: 5, - Type: Stock, - AlternateId: "97717X719"}, - 934338584326608: &Security{ - SecurityId: 934338584326608, - Name: "EMCB", - Description: "WisdomTree Emerging Markets Corporate Bond Fund", - Symbol: "EMCB", - Precision: 5, - Type: Stock, - AlternateId: "97717X784"}, - 934338584368008: &Security{ - SecurityId: 934338584368008, - Name: "ALD", - Description: "WisdomTree Asia Local Debt Fund", - Symbol: "ALD", - Precision: 5, - Type: Stock, - AlternateId: "97717X842"}, - 934338584369556: &Security{ - SecurityId: 934338584369556, - Name: "CCX", - Description: "WisdomTree Commodity Currency Strategy Fund", - Symbol: "CCX", - Precision: 5, - Type: Stock, - AlternateId: "97717X859"}, - 934338584370780: &Security{ - SecurityId: 934338584370780, - Name: "ELD", - Description: "WisdomTree Emerging Markets Local Debt Fund", - Symbol: "ELD", - Precision: 5, - Type: Stock, - AlternateId: "97717X867"}, - 934338584373228: &Security{ - SecurityId: 934338584373228, - Name: "RRF", - Description: "WisdomTree Global Real Return Fund", - Symbol: "RRF", - Precision: 5, - Type: Stock, - AlternateId: "97717X883"}, - 934353826551468: &Security{ - SecurityId: 934353826551468, - Name: "WBKC", - Description: "Wolverine Bancorp, Inc.", - Symbol: "WBKC", - Precision: 5, - Type: Stock, - AlternateId: "977880103"}, - 934414848680364: &Security{ - SecurityId: 934414848680364, - Name: "WWW", - Description: "Wolverine World Wide, Inc.", - Symbol: "WWW", - Precision: 5, - Type: Stock, - AlternateId: "978097103"}, - 936623977061292: &Security{ - SecurityId: 936623977061292, - Name: "WWD", - Description: "Woodward, Inc.", - Symbol: "WWD", - Precision: 5, - Type: Stock, - AlternateId: "980745103"}, - 936693896116068: &Security{ - SecurityId: 936693896116068, - Name: "WDAY", - Description: "Workday, Inc.", - Symbol: "WDAY", - Precision: 5, - Type: Stock, - AlternateId: "98138H101"}, - 936693944825076: &Security{ - SecurityId: 936693944825076, - Name: "WK", - Description: "Workiva, Inc. Cl A", - Symbol: "WK", - Precision: 5, - Type: Stock, - AlternateId: "98139A105"}, - 936695636198352: &Security{ - SecurityId: 936695636198352, - Name: "WRLD", - Description: "World Acceptance Corp.", - Symbol: "WRLD", - Precision: 5, - Type: Stock, - AlternateId: "981419104"}, - 936695992277016: &Security{ - SecurityId: 936695992277016, - Name: "INT", - Description: "World Fuel Services Corp.", - Symbol: "INT", - Precision: 5, - Type: Stock, - AlternateId: "981475106"}, - 936698143865184: &Security{ - SecurityId: 936698143865184, - Name: "WWE", - Description: "World Wrestling Entertainment, Inc.", - Symbol: "WWE", - Precision: 5, - Type: Stock, - AlternateId: "98156Q108"}, - 936698308467516: &Security{ - SecurityId: 936698308467516, - Name: "WPT", - Description: "World Point Terminals, LP", - Symbol: "WPT", - Precision: 5, - Type: Stock, - AlternateId: "98159G107"}, - 936704329890696: &Security{ - SecurityId: 936704329890696, - Name: "WOR", - Description: "Worthington Industries, Inc.", - Symbol: "WOR", - Precision: 5, - Type: Stock, - AlternateId: "981811102"}, - 936767533840812: &Security{ - SecurityId: 936767533840812, - Name: "WPX", - Description: "WPX Energy, Inc.", - Symbol: "WPX", - Precision: 5, - Type: Stock, - AlternateId: "98212B103"}, - 936767533887432: &Security{ - SecurityId: 936767533887432, - Name: "WPXP", - Description: "WPX Energy, 6.25% Series A Mandatory Convertible Cumulative Preferred Stock", - Symbol: "WPXP", - Precision: 5, - Type: Stock, - AlternateId: "98212B202"}, - 936767550636900: &Security{ - SecurityId: 936767550636900, - Name: "WOWO", - Description: "WoWo Ltd.", - Symbol: "WOWO", - Precision: 5, - Type: Stock, - AlternateId: "98212L101"}, - 936845812344672: &Security{ - SecurityId: 936845812344672, - Name: "WYN", - Description: "Wyndham Worldwide Corp.", - Symbol: "WYN", - Precision: 5, - Type: Stock, - AlternateId: "98310W108"}, - 936845946713916: &Security{ - SecurityId: 936845946713916, - Name: "WYNN", - Description: "Wynn Resorts Ltd", - Symbol: "WYNN", - Precision: 5, - Type: Stock, - AlternateId: "983134107"}, - 936858957206076: &Security{ - SecurityId: 936858957206076, - Name: "XGTI", - Description: "xG Technology, Inc.", - Symbol: "XGTI", - Precision: 5, - Type: Stock, - AlternateId: "98372A507"}, - 936859245913296: &Security{ - SecurityId: 936859245913296, - Name: "XOXO", - Description: "XO Group, Inc.", - Symbol: "XOXO", - Precision: 5, - Type: Stock, - AlternateId: "983772104"}, - 936859368525120: &Security{ - SecurityId: 936859368525120, - Name: "XPO", - Description: "XPO Logistics, Inc.", - Symbol: "XPO", - Precision: 5, - Type: Stock, - AlternateId: "983793100"}, - 936861394142052: &Security{ - SecurityId: 936861394142052, - Name: "XTLY", - Description: "Xactly Corp.", - Symbol: "XTLY", - Precision: 5, - Type: Stock, - AlternateId: "98386L101"}, - 936861558744384: &Security{ - SecurityId: 936861558744384, - Name: "XEL", - Description: "Xcel Energy, Inc.", - Symbol: "XEL", - Precision: 5, - Type: Stock, - AlternateId: "98389B100"}, - 936863248438116: &Security{ - SecurityId: 936863248438116, - Name: "XLNX", - Description: "Xilinx, Inc.", - Symbol: "XLNX", - Precision: 5, - Type: Stock, - AlternateId: "983919101"}, - 936863475466176: &Security{ - SecurityId: 936863475466176, - Name: "XPLR", - Description: "Xplore Technologies Corp.", - Symbol: "XPLR", - Precision: 5, - Type: Stock, - AlternateId: "983950700"}, - 936921974531976: &Security{ - SecurityId: 936921974531976, - Name: "XBIT", - Description: "Xbiotech, Inc.", - Symbol: "XBIT", - Precision: 5, - Type: Stock, - AlternateId: "98400H102"}, - 936921977891424: &Security{ - SecurityId: 936921977891424, - Name: "XCRA", - Description: "Xcerra Corp.", - Symbol: "XCRA", - Precision: 5, - Type: Stock, - AlternateId: "98400J108"}, - 936921982930020: &Security{ - SecurityId: 936921982930020, - Name: "XELB", - Description: "XCel Brands, Inc.", - Symbol: "XELB", - Precision: 5, - Type: Stock, - AlternateId: "98400M101"}, - 936922031639028: &Security{ - SecurityId: 936922031639028, - Name: "XNCR", - Description: "Xencor, Inc.", - Symbol: "XNCR", - Precision: 5, - Type: Stock, - AlternateId: "98401F105"}, - 936922018202028: &Security{ - SecurityId: 936922018202028, - Name: "XHR", - Description: "Xenia Hotels & Resorts, Inc.", - Symbol: "XHR", - Precision: 5, - Type: Stock, - AlternateId: "984017103"}, - 936924178188276: &Security{ - SecurityId: 936924178188276, - Name: "XBKS", - Description: "Xenith Bankshares, Inc.", - Symbol: "XBKS", - Precision: 5, - Type: Stock, - AlternateId: "98410X105"}, - 936924203382336: &Security{ - SecurityId: 936924203382336, - Name: "XNPT", - Description: "XenoPort, Inc.", - Symbol: "XNPT", - Precision: 5, - Type: Stock, - AlternateId: "98411C100"}, - 936924245372844: &Security{ - SecurityId: 936924245372844, - Name: "XRX", - Description: "Xerox Corp.", - Symbol: "XRX", - Precision: 5, - Type: Stock, - AlternateId: "984121103"}, - 936924448699584: &Security{ - SecurityId: 936924448699584, - Name: "XCOM", - Description: "Xtera Communications, Inc.", - Symbol: "XCOM", - Precision: 5, - Type: Stock, - AlternateId: "98415E300"}, - 936924588014580: &Security{ - SecurityId: 936924588014580, - Name: "XIN", - Description: "Xinyuan Real Estate Co. Ltd", - Symbol: "XIN", - Precision: 5, - Type: Stock, - AlternateId: "98417P105"}, - 936924690471264: &Security{ - SecurityId: 936924690471264, - Name: "XNET", - Description: "Xunlei Ltd.", - Symbol: "XNET", - Precision: 5, - Type: Stock, - AlternateId: "98419E108"}, - 936924703907904: &Security{ - SecurityId: 936924703907904, - Name: "XYL", - Description: "Xylem, Inc.", - Symbol: "XYL", - Precision: 5, - Type: Stock, - AlternateId: "98419M100"}, - 936926338174452: &Security{ - SecurityId: 936926338174452, - Name: "XENE", - Description: "Xenon Pharmaceuticals, Inc.", - Symbol: "XENE", - Precision: 5, - Type: Stock, - AlternateId: "98420N105"}, - 936926351611452: &Security{ - SecurityId: 936926351611452, - Name: "MESG", - Description: "Xura, Inc.", - Symbol: "MESG", - Precision: 5, - Type: Stock, - AlternateId: "98420V107"}, - 936926549805888: &Security{ - SecurityId: 936926549805888, - Name: "REPYY", - Description: "Repsol S.A. ADR", - Symbol: "REPYY", - Precision: 5, - Type: Stock, - AlternateId: "984245100"}, - 936926556757884: &Security{ - SecurityId: 936926556757884, - Name: "YRCW", - Description: "YRC Worldwide, Inc.", - Symbol: "YRCW", - Precision: 5, - Type: Stock, - AlternateId: "984249607"}, - 936926711049240: &Security{ - SecurityId: 936926711049240, - Name: "YY", - Description: "YY, Inc. (ADR)", - Symbol: "YY", - Precision: 5, - Type: Stock, - AlternateId: "98426T106"}, - 936928484723592: &Security{ - SecurityId: 936928484723592, - Name: "YDKN", - Description: "Yadkin Financial Corp.", - Symbol: "YDKN", - Precision: 5, - Type: Stock, - AlternateId: "984305102"}, - 936928661083416: &Security{ - SecurityId: 936928661083416, - Name: "YHOO", - Description: "Yahoo!, Inc.", - Symbol: "YHOO", - Precision: 5, - Type: Stock, - AlternateId: "984332106"}, - 936935184711744: &Security{ - SecurityId: 936935184711744, - Name: "AUY", - Description: "Yamana Gold, Inc.", - Symbol: "AUY", - Precision: 5, - Type: Stock, - AlternateId: "98462Y100"}, - 937017796624884: &Security{ - SecurityId: 937017796624884, - Name: "YELP", - Description: "Yelp, Inc.", - Symbol: "YELP", - Precision: 5, - Type: Stock, - AlternateId: "985817105"}, - 937017984741804: &Security{ - SecurityId: 937017984741804, - Name: "YGE", - Description: "Yingli Green Energy Holding Co. Ltd ADR", - Symbol: "YGE", - Precision: 5, - Type: Stock, - AlternateId: "98584B103"}, - 937159705701216: &Security{ - SecurityId: 937159705701216, - Name: "YORW", - Description: "York Water Co. (The)", - Symbol: "YORW", - Precision: 5, - Type: Stock, - AlternateId: "987184108"}, - 937165851462780: &Security{ - SecurityId: 937165851462780, - Name: "YOD", - Description: "You On Demand Holdings, Inc.", - Symbol: "YOD", - Precision: 5, - Type: Stock, - AlternateId: "98741R207"}, - 937165916920896: &Security{ - SecurityId: 937165916920896, - Name: "YOKU", - Description: "Youku Todou, Inc.", - Symbol: "YOKU", - Precision: 5, - Type: Stock, - AlternateId: "98742U100"}, - 937244667396708: &Security{ - SecurityId: 937244667396708, - Name: "YUM", - Description: "YUM! Brands, Inc.", - Symbol: "YUM", - Precision: 5, - Type: Stock, - AlternateId: "988498101"}, - 937250779519440: &Security{ - SecurityId: 937250779519440, - Name: "YUME", - Description: "YuMe, Inc.", - Symbol: "YUME", - Precision: 5, - Type: Stock, - AlternateId: "98872B104"}, - 937250784558432: &Security{ - SecurityId: 937250784558432, - Name: "YUMA", - Description: "Yuma Energy, Inc.", - Symbol: "YUMA", - Precision: 5, - Type: Stock, - AlternateId: "98872E108"}, - 937250784605052: &Security{ - SecurityId: 937250784605052, - Name: "YUMA-A", - Description: "Yuma Energy, 9.25% Series A Cumulative Redeemable Preferred Stock", - Symbol: "YUMA-A", - Precision: 5, - Type: Stock, - AlternateId: "98872E207"}, - 937253109146976: &Security{ - SecurityId: 937253109146976, - Name: "ZAGG", - Description: "Zagg, Inc.", - Symbol: "ZAGG", - Precision: 5, - Type: Stock, - AlternateId: "98884U108"}, - 937253142739116: &Security{ - SecurityId: 937253142739116, - Name: "ZFGN", - Description: "Zafgen, Inc.", - Symbol: "ZFGN", - Precision: 5, - Type: Stock, - AlternateId: "98885E103"}, - 937253213283168: &Security{ - SecurityId: 937253213283168, - Name: "ZFC", - Description: "ZAIS Financial Corp.", - Symbol: "ZFC", - Precision: 5, - Type: Stock, - AlternateId: "98886K108"}, - 937253267030808: &Security{ - SecurityId: 937253267030808, - Name: "ZAIS", - Description: "ZAIS Group Holdings, Inc.", - Symbol: "ZAIS", - Precision: 5, - Type: Stock, - AlternateId: "98887G106"}, - 937316536625916: &Security{ - SecurityId: 937316536625916, - Name: "ZAZA", - Description: "Zaza Energy Corp.", - Symbol: "ZAZA", - Precision: 5, - Type: Stock, - AlternateId: "98919T407"}, - 937316539845108: &Security{ - SecurityId: 937316539845108, - Name: "ZAYO", - Description: "Zayo Group Holdings, Inc.", - Symbol: "ZAYO", - Precision: 5, - Type: Stock, - AlternateId: "98919V105"}, - 937318132121076: &Security{ - SecurityId: 937318132121076, - Name: "ZBRA", - Description: "Zebra Technologies Corp.", - Symbol: "ZBRA", - Precision: 5, - Type: Stock, - AlternateId: "989207105"}, - 937320522214752: &Security{ - SecurityId: 937320522214752, - Name: "ZLTQ", - Description: "Zeltiq Aesthetics, Inc.", - Symbol: "ZLTQ", - Precision: 5, - Type: Stock, - AlternateId: "98933Q108"}, - 937320691855716: &Security{ - SecurityId: 937320691855716, - Name: "ZEN", - Description: "Zendesk, Inc.", - Symbol: "ZEN", - Precision: 5, - Type: Stock, - AlternateId: "98936J101"}, - 937324927847340: &Security{ - SecurityId: 937324927847340, - Name: "ZPIN", - Description: "Zhaopin Ltd.", - Symbol: "ZPIN", - Precision: 5, - Type: Stock, - AlternateId: "98954L103"}, - 937324929526884: &Security{ - SecurityId: 937324929526884, - Name: "ZG", - Description: "Zillow Group, Inc. Cl A", - Symbol: "ZG", - Precision: 5, - Type: Stock, - AlternateId: "98954M101"}, - 937324929573504: &Security{ - SecurityId: 937324929573504, - Name: "Z", - Description: "Zillow Group, Inc. Cl C", - Symbol: "Z", - Precision: 5, - Type: Stock, - AlternateId: "98954M200"}, - 937325055498120: &Security{ - SecurityId: 937325055498120, - Name: "ZBH", - Description: "Zimmer Biomet Holdings, Inc.", - Symbol: "ZBH", - Precision: 5, - Type: Stock, - AlternateId: "98956P102"}, - 937327381766532: &Security{ - SecurityId: 937327381766532, - Name: "ZN", - Description: "Zion Oil & Gas, Inc.", - Symbol: "ZN", - Precision: 5, - Type: Stock, - AlternateId: "989696109"}, - 937329005955132: &Security{ - SecurityId: 937329005955132, - Name: "ZION", - Description: "Zions Bancorporation", - Symbol: "ZION", - Precision: 5, - Type: Stock, - AlternateId: "989701107"}, - 937329005956356: &Security{ - SecurityId: 937329005956356, - Name: "ZIONW", - Description: "Zions Bancorporation, Warrant 5/21/2020", - Symbol: "ZIONW", - Precision: 5, - Type: Stock, - AlternateId: "989701115"}, - 937329288130368: &Security{ - SecurityId: 937329288130368, - Name: "ZIXI", - Description: "Zix Corp", - Symbol: "ZIXI", - Precision: 5, - Type: Stock, - AlternateId: "98974P100"}, - 937329523323408: &Security{ - SecurityId: 937329523323408, - Name: "ZGNX", - Description: "Zogenix, Inc.", - Symbol: "ZGNX", - Precision: 5, - Type: Stock, - AlternateId: "98978L204"}, - 937329540072876: &Security{ - SecurityId: 937329540072876, - Name: "ZTS", - Description: "Zoetis, Inc.", - Symbol: "ZTS", - Precision: 5, - Type: Stock, - AlternateId: "98978V103"}, - 937329577024428: &Security{ - SecurityId: 937329577024428, - Name: "ZSAN", - Description: "Zosano Pharma Corp.", - Symbol: "ZSAN", - Precision: 5, - Type: Stock, - AlternateId: "98979H103"}, - 937329580383876: &Security{ - SecurityId: 937329580383876, - Name: "ZOES", - Description: "Zoe's Kitchen, Inc.", - Symbol: "ZOES", - Precision: 5, - Type: Stock, - AlternateId: "98979J109"}, - 937331253281124: &Security{ - SecurityId: 937331253281124, - Name: "ZUMZ", - Description: "Zumiez, Inc.", - Symbol: "ZUMZ", - Precision: 5, - Type: Stock, - AlternateId: "989817101"}, - 937331369221428: &Security{ - SecurityId: 937331369221428, - Name: "ZF", - Description: "Zweig Fund, Inc. (The)", - Symbol: "ZF", - Precision: 5, - Type: Stock, - AlternateId: "989834205"}, - 937331374260384: &Security{ - SecurityId: 937331374260384, - Name: "ZTR", - Description: "Zweig Total Return Fund, Inc. (The)", - Symbol: "ZTR", - Precision: 5, - Type: Stock, - AlternateId: "989837208"}, - 937331592563808: &Security{ - SecurityId: 937331592563808, - Name: "ZNGA", - Description: "Zynga, Inc.", - Symbol: "ZNGA", - Precision: 5, - Type: Stock, - AlternateId: "98986T108"}, - 937331599282308: &Security{ - SecurityId: 937331599282308, - Name: "ZYNE", - Description: "Zynerba Pharmaceuticals, Inc.", - Symbol: "ZYNE", - Precision: 5, - Type: Stock, - AlternateId: "98986X109"}, - */ -} - -var security_list []*Security - -func init() { - for _, value := range security_map { - security_list = append(security_list, value) - } -} - -func GetSecurity(securityid int64) *Security { - s := security_map[securityid] - if s != nil { - return s - } - return nil -} - -func GetSecurityByName(name string) (*Security, error) { - for _, value := range security_map { - if value.Name == name { - return value, nil - } - } - return nil, fmt.Errorf("Invalid Security Name: \"%s\"", name) -} - -func GetSecurityByNameAndType(name string, _type int64) (*Security, error) { - for _, value := range security_map { - if value.Name == name && value.Type == _type { - return value, nil - } - } - return nil, fmt.Errorf("Invalid Security Name (%s) or Type (%d)", name, _type) -} - -func GetSecurities() []*Security { - return security_list +func (s *Security) Read(json_str string) error { + dec := json.NewDecoder(strings.NewReader(json_str)) + return dec.Decode(s) } func (s *Security) Write(w http.ResponseWriter) error { @@ -55729,32 +58,258 @@ func (sl *SecurityList) Write(w http.ResponseWriter) error { return enc.Encode(sl) } +func SearchSecurityTemplates(search string, _type int64) []*Security { + upperSearch := strings.ToUpper(search) + var results []*Security + for i, security := range SecurityTemplates { + if strings.Contains(strings.ToUpper(security.Name), upperSearch) || + strings.Contains(strings.ToUpper(security.Description), upperSearch) || + strings.Contains(strings.ToUpper(security.Symbol), upperSearch) { + if _type == 0 || _type == security.Type { + results = append(results, &SecurityTemplates[i]) + } + } + } + return results +} + +func GetSecurity(securityid int64, userid int64) (*Security, error) { + var s Security + + err := DB.SelectOne(&s, "SELECT * from securities where UserId=? AND SecurityId=?", userid, securityid) + if err != nil { + return nil, err + } + return &s, nil +} + +func GetSecurities(userid int64) (*[]*Security, error) { + var securities []*Security + + _, err := DB.Select(&securities, "SELECT * from securities where UserId=?", userid) + if err != nil { + return nil, err + } + return &securities, nil +} + +func InsertSecurity(s *Security) error { + err := DB.Insert(s) + if err != nil { + return err + } + return nil +} + +func UpdateSecurity(s *Security) error { + transaction, err := DB.Begin() + if err != nil { + return err + } + + count, err := transaction.Update(s) + if err != nil { + transaction.Rollback() + return err + } + if count != 1 { + transaction.Rollback() + return errors.New("Updated more than one security") + } + + err = transaction.Commit() + if err != nil { + transaction.Rollback() + return err + } + + return nil +} + +func DeleteSecurity(s *Security) error { + transaction, err := DB.Begin() + if err != nil { + return err + } + + // First, ensure no accounts are using this security + accounts, err := transaction.SelectInt("SELECT count(*) from accounts where UserId=? and SecurityId=?", s.UserId, s.SecurityId) + + if accounts != 0 { + transaction.Rollback() + return errors.New("One or more accounts still use this security") + } + + count, err := transaction.Delete(s) + if err != nil { + transaction.Rollback() + return err + } + if count != 1 { + transaction.Rollback() + return errors.New("Deleted more than one security") + } + + err = transaction.Commit() + if err != nil { + transaction.Rollback() + return err + } + + return nil +} + +func GetSecurityByName(name string) (*Security, error) { + return nil, fmt.Errorf("unimplemented") +} + +func GetSecurityByNameAndType(name string, _type int64) (*Security, error) { + return nil, fmt.Errorf("unimplemented") +} + func SecurityHandler(w http.ResponseWriter, r *http.Request) { - if r.Method == "GET" { - securityid, err := GetURLID(r.URL.Path) - if err == nil { - security := GetSecurity(securityid) - if security == nil { - WriteError(w, 3 /*Invalid Request*/) + user, err := GetUserFromSession(r) + if err != nil { + WriteError(w, 1 /*Not Signed In*/) + return + } + + if r.Method == "POST" { + security_json := r.PostFormValue("security") + if security_json == "" { + WriteError(w, 3 /*Invalid Request*/) + return + } + + var security Security + err := security.Read(security_json) + if err != nil { + WriteError(w, 3 /*Invalid Request*/) + return + } + security.SecurityId = -1 + security.UserId = user.UserId + + err = InsertSecurity(&security) + if err != nil { + WriteError(w, 999 /*Internal Error*/) + log.Print(err) + return + } + + w.WriteHeader(201 /*Created*/) + err = security.Write(w) + if err != nil { + WriteError(w, 999 /*Internal Error*/) + log.Print(err) + return + } + } else if r.Method == "GET" { + var securityid int64 + n, err := GetURLPieces(r.URL.Path, "/security/%d", &securityid) + + if err != nil || n != 1 { + //Return all securities + var sl SecurityList + + securities, err := GetSecurities(user.UserId) + if err != nil { + WriteError(w, 999 /*Internal Error*/) + log.Print(err) return } - err := security.Write(w) + + sl.Securities = securities + err = (&sl).Write(w) if err != nil { WriteError(w, 999 /*Internal Error*/) log.Print(err) return } } else { - var sl SecurityList - securities := GetSecurities() - sl.Securities = &securities - err := (&sl).Write(w) + security, err := GetSecurity(securityid, user.UserId) + if err != nil { + WriteError(w, 3 /*Invalid Request*/) + return + } + + err = security.Write(w) if err != nil { WriteError(w, 999 /*Internal Error*/) log.Print(err) return } } + } else { + securityid, err := GetURLID(r.URL.Path) + if err != nil { + WriteError(w, 3 /*Invalid Request*/) + return + } + if r.Method == "PUT" { + security_json := r.PostFormValue("security") + if security_json == "" { + WriteError(w, 3 /*Invalid Request*/) + return + } + + var security Security + err := security.Read(security_json) + if err != nil || security.SecurityId != securityid { + WriteError(w, 3 /*Invalid Request*/) + return + } + security.UserId = user.UserId + + err = UpdateSecurity(&security) + if err != nil { + WriteError(w, 999 /*Internal Error*/) + log.Print(err) + return + } + + err = security.Write(w) + if err != nil { + WriteError(w, 999 /*Internal Error*/) + log.Print(err) + return + } + } else if r.Method == "DELETE" { + security, err := GetSecurity(securityid, user.UserId) + if err != nil { + WriteError(w, 3 /*Invalid Request*/) + return + } + + err = DeleteSecurity(security) + if err != nil { + WriteError(w, 999 /*Internal Error*/) + log.Print(err) + return + } + + WriteSuccess(w) + } + } +} + +func SecurityTemplateHandler(w http.ResponseWriter, r *http.Request) { + if r.Method == "GET" { + var sl SecurityList + + query, _ := url.ParseQuery(r.URL.RawQuery) + search := query.Get("search") + _type := GetSecurityType(query.Get("type")) + + securities := SearchSecurityTemplates(search, _type) + + sl.Securities = &securities + err := (&sl).Write(w) + if err != nil { + WriteError(w, 999 /*Internal Error*/) + log.Print(err) + return + } } else { WriteError(w, 3 /*Invalid Request*/) } diff --git a/transactions.go b/transactions.go index b772910..1d7e0f2 100644 --- a/transactions.go +++ b/transactions.go @@ -294,6 +294,7 @@ func InsertTransactionTx(transaction *gorp.Transaction, t *Transaction, user *Us return nil } + func InsertTransaction(t *Transaction, user *User) error { transaction, err := DB.Begin() if err != nil { @@ -692,7 +693,10 @@ func GetAccountTransactions(user *User, accountid int64, sort string, page uint6 } atl.TotalTransactions = count - security := GetSecurity(atl.Account.SecurityId) + security, err := GetSecurity(atl.Account.SecurityId, user.UserId) + if err != nil { + return nil, err + } if security == nil { return nil, errors.New("Security not found") }