Mercurial > public > lazybear
changeset 21:12af515592b2
New repository
line wrap: on
line diff
--- a/.gitignore Mon Jan 11 15:12:44 2021 +0000 +++ b/.gitignore Tue Jan 12 21:32:39 2021 +0000 @@ -1,9 +1,2 @@ .DS_Store -Tests -Config.swift -Assets.xcassets -Configuration.storekit -Info.plist -Preview Content -Data -Config.xcconfig +lazybear/Config.swift
--- a/About.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,85 +0,0 @@ -// -// Settings.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 27/12/20. -// - -import SwiftUI - -struct About: View { - @Environment(\.presentationMode) var aboutPresentation - - var body: some View { - NavigationView { - VStack(alignment:.leading) { - AppInfo() - - List { - NavigationLink(destination: WhatsNew() - .navigationBarTitle("What's new") - ) { - AboutButton(image: "sparkles", name: "What's new") - } - Button(action: openUrl(url: "https://apps.apple.com/es/app/lazybear-insider-trading/id1534612943?l=en")) { - AboutButton(image: "plus.circle.fill", name: "Rate Lazybear") - } - /* - - NavigationLink(destination: TipJar()) { - AboutButton(image: "gift.fill", name: "Tip jar") - } - */ - Button(action: openUrl(url: "https://twitter.com/LazybearApp")) { - AboutButton(image: "at.circle.fill", name: "@Lazybear") - } - Button(action: openUrl(url: "https://twitter.com/dennisconcep")) { - AboutButton(image: "at.circle.fill", name: "@DennisConcep") - } - Button(action: openUrl(url: "https://github.com/denniscm190/lazybear-iOS")) { - AboutButton(image: "star.fill", name: "Github") - } - Button(action: openUrl(url: "https://lazybear.app")) { - AboutButton(image: "link.circle.fill", name: "Website") - } - /* - Button(action: { }) { - AboutButton(image: "filemenu.and.selection", name: "Terms & Privacy policy") - } - Button(action: { }) { - AboutButton(image: "envelope.circle.fill", name: "Contact") - } - */ - } - } - .padding() - .navigationTitle("About") - .navigationBarItems(leading: - Button(action: {self.aboutPresentation.wrappedValue.dismiss()}) { - Image(systemName: "multiply") - .resizable() - .frame(width: 25, height: 25) - } - ) - - } - .navigationViewStyle(StackNavigationViewStyle()) - } - - func openUrl(url: String) -> () -> () { - return { - if let url = URL(string: url) { - UIApplication.shared.open(url) - } - } - } -} - -struct About_Previews: PreviewProvider { - static var previews: some View { - NavigationView { - About() - } - .navigationViewStyle(StackNavigationViewStyle()) - } -}
--- a/Company.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,47 +0,0 @@ -// -// Company.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 29/12/20. -// - -import SwiftUI - -struct Company: View { - // Company arguments - var cik: Int - var symbol: String - var name: String - - @State public var showingInsiders: Bool = false - @State public var showingStocks: Bool = true - - var body: some View { - GeometryReader { geo in - VStack { - if showingStocks { - Stock(cik: cik, symbol: symbol, name: name) - } - else { - Insiders(cik: cik, symbol: symbol, name: name) - } - - // Start bottom selection - Rectangle() - .foregroundColor(.white) - .edgesIgnoringSafeArea(.bottom) - .frame(height: geo.size.height * 0.1) - .overlay( - Selection(showingInsiders: $showingInsiders, showingStocks: $showingStocks) - ) - } - .background(Color(.systemGray6).edgesIgnoringSafeArea(.all)) - } - } -} - -struct Company_Previews: PreviewProvider { - static var previews: some View { - Company(cik: 320193, symbol: "aapl", name: "apple inc") - } -}
--- a/ContentView.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,87 +0,0 @@ -// -// ContentView.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 27/09/2020. -// - -import SwiftUI - -struct ContentView: View { - @State var searchedCompany: String = "" - @State var showingSettings = false - @State var showingUser = false - @State public var showingSearch: Bool = false // Search Bar - - var body: some View { - VStack { - if showingSearch == false { - // Setting and user - HStack { - Button(action: {self.showingSettings.toggle()} - ) { - Image(systemName: "gear") - .imageIconModifier() - }.sheet(isPresented: $showingSettings) { - About() - } - - Spacer() - /* - Button(action: {self.showingUser.toggle() - }) { - Image(systemName: "person") - .imageIconModifier() - }.sheet(isPresented: $showingUser) { - User() - } - */ - } - .transition(.move(edge: .top)) - .animation(.default) - .padding() - } - - SearchBar(searchedText: $searchedCompany, placeholder: "Search ...", showingSearch: $showingSearch) - - if showingSearch == false { - Companies() - .transition(.move(edge: .bottom)) - .animation(.default) - - } else { - if searchedCompany.count > 2 { - Spacer() - List { - ForEach(companiesData.filter({ searchedCompany.isEmpty ? true : $0.name.localizedStandardContains(searchedCompany) }), id: \.cik) { company in - CompanyRow(company: company) - } - } - .edgesIgnoringSafeArea(.bottom) - .cornerRadius(20) - .id(UUID()) // Increase speed in search the list - } - Spacer() - } - } - .navigationBarHidden(true) - } -} -extension Image { - func imageIconModifier() -> some View { - self - .resizable() - .aspectRatio(contentMode: .fit) - .frame(maxWidth: 30) - } -} - - -struct ContentView_Previews: PreviewProvider { - static var previews: some View { - NavigationView { - ContentView() - } - .navigationViewStyle(StackNavigationViewStyle()) - } -}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Favourite+CoreDataClass.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,15 @@ +// +// Favourite+CoreDataClass.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 12/1/21. +// +// + +import Foundation +import CoreData + +@objc(Favourite) +public class Favourite: NSManagedObject { + +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Favourite+CoreDataProperties.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,26 @@ +// +// Favourite+CoreDataProperties.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 12/1/21. +// +// + +import Foundation +import CoreData + + +extension Favourite { + + @nonobjc public class func fetchRequest() -> NSFetchRequest<Favourite> { + return NSFetchRequest<Favourite>(entityName: "Favourite") + } + + @NSManaged public var cik: Int16 + @NSManaged public var isFavourite: Bool + +} + +extension Favourite : Identifiable { + +}
--- a/Functions/Price.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,51 +0,0 @@ -// -// RequestPrices.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 3/1/21. -// - -import SwiftUI - -class Price: ObservableObject { - @Published var result = [PriceModel]() - @Published var showingView = false - @Published var showingAlert = false - - func request(symbol: String) { - guard let url = URL(string: priceUrl(symbol: symbol, sandbox: true)) else { // Change sandbox when production - print("Invalid URL") - return - } - let request = URLRequest(url: url) - URLSession.shared.dataTask(with: request) { data, response, error in - if let data = data { - if let decodedResponse = try? JSONDecoder().decode([PriceModel].self, from: data) { - // we have good data – go back to the main thread - DispatchQueue.main.async { - // update our UI - self.result = decodedResponse - print("API request ok") - - // Check if data is empty - if self.result.isEmpty || self.result.count <= 1 { - print("Data is empty") - self.showingView = false - self.showingAlert = true - } else { - print("Showing view...") - self.showingView = true - } - - } - - // everything is good, so we can exit - return - } - } - - // if we're still here it means there was a problem - print("Fetch failed: \(error?.localizedDescription ?? "Unknown error")") - }.resume() - } -}
--- a/Functions/ReadJson.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -// -// ReadJson.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 31/12/20. -// - -import SwiftUI - -import SwiftUI - -// With this function I parse the local JSON file to read it and create a list with its items. -let companiesData: [CompanyData] = load("companies.json") - -func load<T: Decodable>(_ filename: String) -> T { - let data: Data - - guard let file = Bundle.main.url(forResource: filename, withExtension: nil) - else { - fatalError("Couldn't find \(filename) in main bundle.") - } - - do { - data = try Data(contentsOf: file) - } catch { - fatalError("Couldn't load \(filename) from main bundle:\n\(error)") - } - - do { - let decoder = JSONDecoder() - return try decoder.decode(T.self, from: data) - } catch { - fatalError("Couldn't parse \(filename) as \(T.self):\n\(error)") - } -}
--- a/Functions/Transaction.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,51 +0,0 @@ -// -// Insiders.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 4/1/21. -// - -import SwiftUI - -class Transaction: ObservableObject { - @Published var result = [TransactionModel]() - @Published var showingView = false - @Published var showingAlert = false - - func request(cik: String, date: String) { - guard let url = URL(string: transactionUrl(cik: cik, date: date)) else { // Change sandbox when production - print("Invalid URL") - return - } - let request = URLRequest(url: url) - URLSession.shared.dataTask(with: request) { data, response, error in - if let data = data { - if let decodedResponse = try? JSONDecoder().decode([TransactionModel].self, from: data) { - // we have good data – go back to the main thread - DispatchQueue.main.async { - // update our UI - self.result = decodedResponse - print("API request ok") - - // Check if data is empty - if self.result.isEmpty || self.result.count <= 1 { - print("Data is empty") - self.showingView = false - self.showingAlert = true - } else { - print("Showing view...") - self.showingView = true - } - - } - - // everything is good, so we can exit - return - } - } - - // if we're still here it means there was a problem - print("Fetch failed: \(error?.localizedDescription ?? "Unknown error")") - }.resume() - } -}
--- a/Insiders.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,109 +0,0 @@ -// -// Insiders.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 2/1/21. -// - -import SwiftUI -import SwiftUICharts - -struct Insiders: View { - // Company arguments - var cik: Int - var symbol: String - var name: String - - @ObservedObject var transaction = Transaction() - - // Picker - var dateFormatter: DateFormatter { - let formatter = DateFormatter() - formatter.dateFormat = "yyyy-MM-dd" - return formatter - } - - @State private var selectedDate = Date().addingTimeInterval(-6*30*24*60*60) // month*days*hours*minutes*seconds - - var body: some View { - if transaction.showingView { - GeometryReader { geo in - VStack { - // Graph - let cumBuys = cumSum(array: getTransactions(acquisitionOrDisposition: "A")) - let cumSells = cumSum(array: getTransactions(acquisitionOrDisposition: "D")) - let green = GradientColor(start: .green, end: .green) - let red = GradientColor(start: .red, end: .red) - - let width = geo.size.height*0.6 - MultiLineChartView(data: [(cumBuys, green), (cumSells, red)], title: "Buys and sells", form: CGSize(width: width, height: width/2.3), rateValue: pct(buy: cumBuys.last!, sell: cumSells.last!)) - .padding() - - DatePicker(selection: $selectedDate, in: ...Date(), displayedComponents: .date) { Text("Transactions since").font(.headline) } - .padding([.leading, .top, .trailing]) - .onChange(of: self.selectedDate, perform: { date in - transaction.request(cik: String(cik), date: dateFormatter.string(from: selectedDate)) - }) - - List { - ForEach(transaction.result, id:\.self) { trans in - TransactionRow(trans: trans) - } - } - .offset(y: 10) - } - } - } - else { - VStack { - Spacer() - ProgressView() - Spacer() - } - .onAppear { - transaction.request(cik: String(cik), date: dateFormatter.string(from: selectedDate)) - } - .alert(isPresented: $transaction.showingAlert) { - Alert(title: Text("There is no data available"), - message: Text("We have no data about this company. Try another one."), - dismissButton: .default(Text("Got it!"))) - } - } - } - // Function to sum an array and return a cumulative sum array - func cumSum(array: [Double]) -> [Double] { - var iterateArray = [Double]() - var cumSumArray = [Double]() - for value in array { - iterateArray.append(value) - cumSumArray.append(iterateArray.reduce(0, +)) - } - return cumSumArray - } - // Return two arrays with buys and sells - func getTransactions(acquisitionOrDisposition: String) -> [Double] { - var result = [Double]() - - for trans in transaction.result { - if trans.acquisition_disposition == acquisitionOrDisposition { - result.append(Double(trans.number_securities_transacted)) - } - } - - return result - } - // Get pct of net buys over sells - func pct(buy: Double, sell: Double) -> Int { - let pctOfBuys = buy / (buy+sell) - let pctOfSells = sell / (buy+sell) - let pct = pctOfBuys - pctOfSells - - return Int(pct*100) - } -} - -struct Insiders_Previews: PreviewProvider { - static var previews: some View { - Insiders(cik: 320193, symbol: "aapl", name: "apple inc") - } -}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LazyBear.xcodeproj/project.pbxproj Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,546 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 52; + objects = { + +/* Begin PBXBuildFile section */ + 95002580256D17D9008FFD28 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9500257F256D17D9008FFD28 /* StoreKit.framework */; }; + 9521A8BD259B93200000D417 /* Company.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9521A8BC259B93200000D417 /* Company.swift */; }; + 954D992225A2105F001F7F60 /* companies.json in Resources */ = {isa = PBXBuildFile; fileRef = 954D992125A2105F001F7F60 /* companies.json */; }; + 954D992525A2123B001F7F60 /* PriceModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 954D992425A2123B001F7F60 /* PriceModel.swift */; }; + 954D996D25A2461B001F7F60 /* SwiftUICharts in Frameworks */ = {isa = PBXBuildFile; productRef = 954D996C25A2461B001F7F60 /* SwiftUICharts */; }; + 954D997125A253A9001F7F60 /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 954D997025A253A9001F7F60 /* Config.swift */; }; + 954D998325A27571001F7F60 /* Price.swift in Sources */ = {isa = PBXBuildFile; fileRef = 954D998225A27571001F7F60 /* Price.swift */; }; + 955AD1F425AE2BDC00965D42 /* TestFavourites.swift in Sources */ = {isa = PBXBuildFile; fileRef = 955AD1F325AE2BDC00965D42 /* TestFavourites.swift */; }; + 95612C472598D17F00F7698F /* User.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95612C462598D17F00F7698F /* User.swift */; }; + 95612C4A2598D1F800F7698F /* About.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95612C492598D1F800F7698F /* About.swift */; }; + 95612C502598D48200F7698F /* Companies.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95612C4E2598D48200F7698F /* Companies.swift */; }; + 95612C512598D48200F7698F /* SearchBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95612C4F2598D48200F7698F /* SearchBar.swift */; }; + 956AACC7259CA8EF00CB9F16 /* Selection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 956AACC6259CA8EF00CB9F16 /* Selection.swift */; }; + 957954F125AE208F001FB4EC /* Favourite+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 957954EF25AE208F001FB4EC /* Favourite+CoreDataClass.swift */; }; + 957954F225AE208F001FB4EC /* Favourite+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 957954F025AE208F001FB4EC /* Favourite+CoreDataProperties.swift */; }; + 958DF3D825A08F4E00D10D22 /* Stock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 958DF3D725A08F4E00D10D22 /* Stock.swift */; }; + 958DF3DB25A08F8600D10D22 /* Insiders.swift in Sources */ = {isa = PBXBuildFile; fileRef = 958DF3DA25A08F8600D10D22 /* Insiders.swift */; }; + 95A1ECAF25A36127001D4A21 /* Transaction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95A1ECAE25A36127001D4A21 /* Transaction.swift */; }; + 95A1ECB225A36230001D4A21 /* TransactionModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95A1ECB125A36230001D4A21 /* TransactionModel.swift */; }; + 95A1ECC525A37541001D4A21 /* TransactionRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95A1ECC425A37541001D4A21 /* TransactionRow.swift */; }; + 95AB4A7A259DCBAE0064C9C1 /* ReadJson.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95AB4A79259DCBAE0064C9C1 /* ReadJson.swift */; }; + 95AB4A7D259DCC0C0064C9C1 /* CompanyData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95AB4A7C259DCC0C0064C9C1 /* CompanyData.swift */; }; + 95AB4A90259DD66D0064C9C1 /* CompanyRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95AB4A8F259DD66D0064C9C1 /* CompanyRow.swift */; }; + 95B04EB325212369000AD27F /* LazyBearApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95B04EB225212369000AD27F /* LazyBearApp.swift */; }; + 95B04EB525212369000AD27F /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95B04EB425212369000AD27F /* ContentView.swift */; }; + 95B04EB72521236A000AD27F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 95B04EB62521236A000AD27F /* Assets.xcassets */; }; + 95D1BF4925ADCF7700E5D063 /* Persistence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95D1BF4825ADCF7700E5D063 /* Persistence.swift */; }; + 95D1BF4C25ADD08500E5D063 /* Main.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95D1BF4B25ADD08500E5D063 /* Main.swift */; }; + 95DF5194259DDC45003790B2 /* AboutButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95DF5193259DDC45003790B2 /* AboutButton.swift */; }; + 95DF5197259DDD68003790B2 /* AppInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95DF5196259DDD68003790B2 /* AppInfo.swift */; }; + 95DF519A259DE0E2003790B2 /* WhatsNew.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95DF5199259DE0E2003790B2 /* WhatsNew.swift */; }; + 95DF519D259DE118003790B2 /* TipJar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95DF519C259DE118003790B2 /* TipJar.swift */; }; + 95F7CAF625ADC7B7009E0E7C /* LazyBear.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = 95F7CAF425ADC7B7009E0E7C /* LazyBear.xcdatamodeld */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 95002578256D1564008FFD28 /* Configuration.storekit */ = {isa = PBXFileReference; lastKnownFileType = text; path = Configuration.storekit; sourceTree = "<group>"; }; + 9500257F256D17D9008FFD28 /* StoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = StoreKit.framework; path = System/Library/Frameworks/StoreKit.framework; sourceTree = SDKROOT; }; + 9521A8BC259B93200000D417 /* Company.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Company.swift; path = lazybear/Company.swift; sourceTree = SOURCE_ROOT; }; + 954D992125A2105F001F7F60 /* companies.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = companies.json; path = lazybear/Data/companies.json; sourceTree = SOURCE_ROOT; }; + 954D992425A2123B001F7F60 /* PriceModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = PriceModel.swift; path = lazybear/Models/PriceModel.swift; sourceTree = SOURCE_ROOT; }; + 954D997025A253A9001F7F60 /* Config.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Config.swift; path = lazybear/Config.swift; sourceTree = SOURCE_ROOT; }; + 954D998225A27571001F7F60 /* Price.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Price.swift; path = lazybear/Functions/Price.swift; sourceTree = SOURCE_ROOT; }; + 955AD1F325AE2BDC00965D42 /* TestFavourites.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = TestFavourites.swift; path = lazybear/Tests/TestFavourites.swift; sourceTree = SOURCE_ROOT; }; + 95612C462598D17F00F7698F /* User.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = User.swift; path = lazybear/User.swift; sourceTree = SOURCE_ROOT; }; + 95612C492598D1F800F7698F /* About.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = About.swift; path = lazybear/About.swift; sourceTree = SOURCE_ROOT; }; + 95612C4E2598D48200F7698F /* Companies.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Companies.swift; sourceTree = "<group>"; }; + 95612C4F2598D48200F7698F /* SearchBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SearchBar.swift; sourceTree = "<group>"; }; + 956AACC6259CA8EF00CB9F16 /* Selection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Selection.swift; sourceTree = "<group>"; }; + 957954EF25AE208F001FB4EC /* Favourite+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Favourite+CoreDataClass.swift"; sourceTree = "<group>"; }; + 957954F025AE208F001FB4EC /* Favourite+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Favourite+CoreDataProperties.swift"; sourceTree = "<group>"; }; + 958DF3D725A08F4E00D10D22 /* Stock.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Stock.swift; path = lazybear/Stock.swift; sourceTree = SOURCE_ROOT; }; + 958DF3DA25A08F8600D10D22 /* Insiders.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Insiders.swift; path = lazybear/Insiders.swift; sourceTree = SOURCE_ROOT; }; + 95A1ECAE25A36127001D4A21 /* Transaction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Transaction.swift; path = lazybear/Functions/Transaction.swift; sourceTree = SOURCE_ROOT; }; + 95A1ECB125A36230001D4A21 /* TransactionModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = TransactionModel.swift; path = lazybear/Models/TransactionModel.swift; sourceTree = SOURCE_ROOT; }; + 95A1ECC425A37541001D4A21 /* TransactionRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TransactionRow.swift; sourceTree = "<group>"; }; + 95AB4A79259DCBAE0064C9C1 /* ReadJson.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = ReadJson.swift; path = lazybear/Functions/ReadJson.swift; sourceTree = SOURCE_ROOT; }; + 95AB4A7C259DCC0C0064C9C1 /* CompanyData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = CompanyData.swift; path = lazybear/Models/CompanyData.swift; sourceTree = SOURCE_ROOT; }; + 95AB4A8F259DD66D0064C9C1 /* CompanyRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CompanyRow.swift; sourceTree = "<group>"; }; + 95B04EAF25212369000AD27F /* LazyBear.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LazyBear.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 95B04EB225212369000AD27F /* LazyBearApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LazyBearApp.swift; sourceTree = "<group>"; }; + 95B04EB425212369000AD27F /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; }; + 95B04EB62521236A000AD27F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; }; + 95B04EBB2521236A000AD27F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; + 95D1BF4825ADCF7700E5D063 /* Persistence.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Persistence.swift; path = "LazyBear/Core Data/Persistence.swift"; sourceTree = SOURCE_ROOT; }; + 95D1BF4B25ADD08500E5D063 /* Main.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Main.swift; path = lazybear/Main.swift; sourceTree = SOURCE_ROOT; }; + 95DF5193259DDC45003790B2 /* AboutButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AboutButton.swift; sourceTree = "<group>"; }; + 95DF5196259DDD68003790B2 /* AppInfo.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppInfo.swift; sourceTree = "<group>"; }; + 95DF5199259DE0E2003790B2 /* WhatsNew.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WhatsNew.swift; sourceTree = "<group>"; }; + 95DF519C259DE118003790B2 /* TipJar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TipJar.swift; sourceTree = "<group>"; }; + 95F7CAF525ADC7B7009E0E7C /* LazyBear.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = LazyBear.xcdatamodel; sourceTree = "<group>"; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 95B04EAC25212369000AD27F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 95002580256D17D9008FFD28 /* StoreKit.framework in Frameworks */, + 954D996D25A2461B001F7F60 /* SwiftUICharts in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 9500257E256D17D9008FFD28 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 9500257F256D17D9008FFD28 /* StoreKit.framework */, + ); + name = Frameworks; + sourceTree = "<group>"; + }; + 952F791C2598B1CD00FF929F /* Tests */ = { + isa = PBXGroup; + children = ( + 955AD1F325AE2BDC00965D42 /* TestFavourites.swift */, + ); + path = Tests; + sourceTree = "<group>"; + }; + 95612C4D2598D48200F7698F /* Supply */ = { + isa = PBXGroup; + children = ( + 95612C4E2598D48200F7698F /* Companies.swift */, + 95612C4F2598D48200F7698F /* SearchBar.swift */, + 956AACC6259CA8EF00CB9F16 /* Selection.swift */, + 95AB4A8F259DD66D0064C9C1 /* CompanyRow.swift */, + 95DF5193259DDC45003790B2 /* AboutButton.swift */, + 95DF5196259DDD68003790B2 /* AppInfo.swift */, + 95DF5199259DE0E2003790B2 /* WhatsNew.swift */, + 95DF519C259DE118003790B2 /* TipJar.swift */, + 95A1ECC425A37541001D4A21 /* TransactionRow.swift */, + ); + name = Supply; + path = lazybear/Supply; + sourceTree = SOURCE_ROOT; + }; + 95855384259CD9800081CF24 /* Functions */ = { + isa = PBXGroup; + children = ( + 95AB4A79259DCBAE0064C9C1 /* ReadJson.swift */, + 954D998225A27571001F7F60 /* Price.swift */, + 95A1ECAE25A36127001D4A21 /* Transaction.swift */, + ); + path = Functions; + sourceTree = "<group>"; + }; + 9592F496259D29F1005AB6F1 /* Models */ = { + isa = PBXGroup; + children = ( + 95AB4A7C259DCC0C0064C9C1 /* CompanyData.swift */, + 954D992425A2123B001F7F60 /* PriceModel.swift */, + 95A1ECB125A36230001D4A21 /* TransactionModel.swift */, + ); + path = Models; + sourceTree = "<group>"; + }; + 95AB4A71259DCAB20064C9C1 /* Data */ = { + isa = PBXGroup; + children = ( + 954D992125A2105F001F7F60 /* companies.json */, + ); + path = Data; + sourceTree = "<group>"; + }; + 95B04EA625212369000AD27F = { + isa = PBXGroup; + children = ( + 957954EF25AE208F001FB4EC /* Favourite+CoreDataClass.swift */, + 957954F025AE208F001FB4EC /* Favourite+CoreDataProperties.swift */, + 95B04EB125212369000AD27F /* LazyBear */, + 95B04EB025212369000AD27F /* Products */, + 9500257E256D17D9008FFD28 /* Frameworks */, + ); + sourceTree = "<group>"; + }; + 95B04EB025212369000AD27F /* Products */ = { + isa = PBXGroup; + children = ( + 95B04EAF25212369000AD27F /* LazyBear.app */, + ); + name = Products; + sourceTree = "<group>"; + }; + 95B04EB125212369000AD27F /* LazyBear */ = { + isa = PBXGroup; + children = ( + 95D1BF4E25ADD2BA00E5D063 /* Core Data */, + 95B04EB62521236A000AD27F /* Assets.xcassets */, + 95B04EBB2521236A000AD27F /* Info.plist */, + 95002578256D1564008FFD28 /* Configuration.storekit */, + 95F7CAF425ADC7B7009E0E7C /* LazyBear.xcdatamodeld */, + 954D997025A253A9001F7F60 /* Config.swift */, + 95B04EB225212369000AD27F /* LazyBearApp.swift */, + 95B04EB425212369000AD27F /* ContentView.swift */, + 95D1BF4B25ADD08500E5D063 /* Main.swift */, + 95612C492598D1F800F7698F /* About.swift */, + 95612C462598D17F00F7698F /* User.swift */, + 9521A8BC259B93200000D417 /* Company.swift */, + 958DF3D725A08F4E00D10D22 /* Stock.swift */, + 958DF3DA25A08F8600D10D22 /* Insiders.swift */, + 95612C4D2598D48200F7698F /* Supply */, + 95855384259CD9800081CF24 /* Functions */, + 9592F496259D29F1005AB6F1 /* Models */, + 95AB4A71259DCAB20064C9C1 /* Data */, + 952F791C2598B1CD00FF929F /* Tests */, + ); + path = LazyBear; + sourceTree = "<group>"; + }; + 95D1BF4E25ADD2BA00E5D063 /* Core Data */ = { + isa = PBXGroup; + children = ( + 95D1BF4825ADCF7700E5D063 /* Persistence.swift */, + ); + path = "Core Data"; + sourceTree = "<group>"; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 95B04EAE25212369000AD27F /* LazyBear */ = { + isa = PBXNativeTarget; + buildConfigurationList = 95B04EBE2521236A000AD27F /* Build configuration list for PBXNativeTarget "LazyBear" */; + buildPhases = ( + 95B04EAB25212369000AD27F /* Sources */, + 95B04EAC25212369000AD27F /* Frameworks */, + 95B04EAD25212369000AD27F /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = LazyBear; + packageProductDependencies = ( + 954D996C25A2461B001F7F60 /* SwiftUICharts */, + ); + productName = LazyBear; + productReference = 95B04EAF25212369000AD27F /* LazyBear.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 95B04EA725212369000AD27F /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 1200; + LastUpgradeCheck = 1200; + TargetAttributes = { + 95B04EAE25212369000AD27F = { + CreatedOnToolsVersion = 12.0.1; + }; + }; + }; + buildConfigurationList = 95B04EAA25212369000AD27F /* Build configuration list for PBXProject "LazyBear" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 95B04EA625212369000AD27F; + packageReferences = ( + 954D996B25A2461B001F7F60 /* XCRemoteSwiftPackageReference "ChartView" */, + ); + productRefGroup = 95B04EB025212369000AD27F /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 95B04EAE25212369000AD27F /* LazyBear */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 95B04EAD25212369000AD27F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 95B04EB72521236A000AD27F /* Assets.xcassets in Resources */, + 954D992225A2105F001F7F60 /* companies.json in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 95B04EAB25212369000AD27F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 95AB4A7A259DCBAE0064C9C1 /* ReadJson.swift in Sources */, + 95DF5194259DDC45003790B2 /* AboutButton.swift in Sources */, + 95612C512598D48200F7698F /* SearchBar.swift in Sources */, + 955AD1F425AE2BDC00965D42 /* TestFavourites.swift in Sources */, + 95A1ECC525A37541001D4A21 /* TransactionRow.swift in Sources */, + 95B04EB525212369000AD27F /* ContentView.swift in Sources */, + 95AB4A90259DD66D0064C9C1 /* CompanyRow.swift in Sources */, + 95D1BF4925ADCF7700E5D063 /* Persistence.swift in Sources */, + 95612C472598D17F00F7698F /* User.swift in Sources */, + 95D1BF4C25ADD08500E5D063 /* Main.swift in Sources */, + 95612C4A2598D1F800F7698F /* About.swift in Sources */, + 95B04EB325212369000AD27F /* LazyBearApp.swift in Sources */, + 958DF3D825A08F4E00D10D22 /* Stock.swift in Sources */, + 956AACC7259CA8EF00CB9F16 /* Selection.swift in Sources */, + 954D998325A27571001F7F60 /* Price.swift in Sources */, + 95AB4A7D259DCC0C0064C9C1 /* CompanyData.swift in Sources */, + 95A1ECB225A36230001D4A21 /* TransactionModel.swift in Sources */, + 95DF519A259DE0E2003790B2 /* WhatsNew.swift in Sources */, + 958DF3DB25A08F8600D10D22 /* Insiders.swift in Sources */, + 95612C502598D48200F7698F /* Companies.swift in Sources */, + 95DF5197259DDD68003790B2 /* AppInfo.swift in Sources */, + 954D997125A253A9001F7F60 /* Config.swift in Sources */, + 957954F225AE208F001FB4EC /* Favourite+CoreDataProperties.swift in Sources */, + 95A1ECAF25A36127001D4A21 /* Transaction.swift in Sources */, + 9521A8BD259B93200000D417 /* Company.swift in Sources */, + 954D992525A2123B001F7F60 /* PriceModel.swift in Sources */, + 95F7CAF625ADC7B7009E0E7C /* LazyBear.xcdatamodeld in Sources */, + 95DF519D259DE118003790B2 /* TipJar.swift in Sources */, + 957954F125AE208F001FB4EC /* Favourite+CoreDataClass.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 95B04EBC2521236A000AD27F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 14.0; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 95B04EBD2521236A000AD27F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 14.0; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 95B04EBF2521236A000AD27F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_ENTITLEMENTS = ""; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_ASSET_PATHS = LazyBear/Assets.xcassets; + DEVELOPMENT_TEAM = MTX83R5H8X; + ENABLE_PREVIEWS = YES; + INFOPLIST_FILE = LazyBear/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 14.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MACOSX_DEPLOYMENT_TARGET = 14; + MARKETING_VERSION = 3.0; + PRODUCT_BUNDLE_IDENTIFIER = dennis.LazyBear; + PRODUCT_NAME = "$(TARGET_NAME)"; + SUPPORTS_MACCATALYST = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 95B04EC02521236A000AD27F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_ENTITLEMENTS = ""; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_ASSET_PATHS = LazyBear/Assets.xcassets; + DEVELOPMENT_TEAM = MTX83R5H8X; + ENABLE_PREVIEWS = YES; + INFOPLIST_FILE = LazyBear/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 14.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MACOSX_DEPLOYMENT_TARGET = 14; + MARKETING_VERSION = 3.0; + PRODUCT_BUNDLE_IDENTIFIER = dennis.LazyBear; + PRODUCT_NAME = "$(TARGET_NAME)"; + SUPPORTS_MACCATALYST = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 95B04EAA25212369000AD27F /* Build configuration list for PBXProject "LazyBear" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 95B04EBC2521236A000AD27F /* Debug */, + 95B04EBD2521236A000AD27F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 95B04EBE2521236A000AD27F /* Build configuration list for PBXNativeTarget "LazyBear" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 95B04EBF2521236A000AD27F /* Debug */, + 95B04EC02521236A000AD27F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + +/* Begin XCRemoteSwiftPackageReference section */ + 954D996B25A2461B001F7F60 /* XCRemoteSwiftPackageReference "ChartView" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/AppPear/ChartView.git"; + requirement = { + kind = upToNextMajorVersion; + minimumVersion = 1.5.4; + }; + }; +/* End XCRemoteSwiftPackageReference section */ + +/* Begin XCSwiftPackageProductDependency section */ + 954D996C25A2461B001F7F60 /* SwiftUICharts */ = { + isa = XCSwiftPackageProductDependency; + package = 954D996B25A2461B001F7F60 /* XCRemoteSwiftPackageReference "ChartView" */; + productName = SwiftUICharts; + }; +/* End XCSwiftPackageProductDependency section */ + +/* Begin XCVersionGroup section */ + 95F7CAF425ADC7B7009E0E7C /* LazyBear.xcdatamodeld */ = { + isa = XCVersionGroup; + children = ( + 95F7CAF525ADC7B7009E0E7C /* LazyBear.xcdatamodel */, + ); + currentVersion = 95F7CAF525ADC7B7009E0E7C /* LazyBear.xcdatamodel */; + path = LazyBear.xcdatamodeld; + sourceTree = "<group>"; + versionGroupType = wrapper.xcdatamodel; + }; +/* End XCVersionGroup section */ + }; + rootObject = 95B04EA725212369000AD27F /* Project object */; +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LazyBear.xcodeproj/project.xcworkspace/contents.xcworkspacedata Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<Workspace + version = "1.0"> + <FileRef + location = "self:"> + </FileRef> +</Workspace>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LazyBear.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>IDEDidComputeMac32BitWarning</key> + <true/> +</dict> +</plist>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LazyBear.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,16 @@ +{ + "object": { + "pins": [ + { + "package": "SwiftUICharts", + "repositoryURL": "https://github.com/AppPear/ChartView.git", + "state": { + "branch": null, + "revision": "4699847a9ac0c694666cea3acef133498952566e", + "version": "1.5.4" + } + } + ] + }, + "version": 1 +}
Binary file LazyBear.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate has changed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LazyBear.xcodeproj/xcshareddata/xcschemes/LazyBear.xcscheme Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,81 @@ +<?xml version="1.0" encoding="UTF-8"?> +<Scheme + LastUpgradeVersion = "1220" + version = "1.3"> + <BuildAction + parallelizeBuildables = "YES" + buildImplicitDependencies = "YES"> + <BuildActionEntries> + <BuildActionEntry + buildForTesting = "YES" + buildForRunning = "YES" + buildForProfiling = "YES" + buildForArchiving = "YES" + buildForAnalyzing = "YES"> + <BuildableReference + BuildableIdentifier = "primary" + BlueprintIdentifier = "95B04EAE25212369000AD27F" + BuildableName = "LazyBear.app" + BlueprintName = "LazyBear" + ReferencedContainer = "container:LazyBear.xcodeproj"> + </BuildableReference> + </BuildActionEntry> + </BuildActionEntries> + </BuildAction> + <TestAction + buildConfiguration = "Debug" + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" + shouldUseLaunchSchemeArgsEnv = "YES"> + <Testables> + </Testables> + </TestAction> + <LaunchAction + buildConfiguration = "Debug" + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" + launchStyle = "0" + useCustomWorkingDirectory = "NO" + ignoresPersistentStateOnLaunch = "NO" + debugDocumentVersioning = "YES" + debugServiceExtension = "internal" + allowLocationSimulation = "YES"> + <BuildableProductRunnable + runnableDebuggingMode = "0"> + <BuildableReference + BuildableIdentifier = "primary" + BlueprintIdentifier = "95B04EAE25212369000AD27F" + BuildableName = "LazyBear.app" + BlueprintName = "LazyBear" + ReferencedContainer = "container:LazyBear.xcodeproj"> + </BuildableReference> + </BuildableProductRunnable> + <StoreKitConfigurationFileReference + identifier = "../../LazyBear/Configuration.storekit"> + </StoreKitConfigurationFileReference> + </LaunchAction> + <ProfileAction + buildConfiguration = "Release" + shouldUseLaunchSchemeArgsEnv = "YES" + savedToolIdentifier = "" + useCustomWorkingDirectory = "NO" + debugDocumentVersioning = "YES"> + <BuildableProductRunnable + runnableDebuggingMode = "0"> + <BuildableReference + BuildableIdentifier = "primary" + BlueprintIdentifier = "95B04EAE25212369000AD27F" + BuildableName = "LazyBear.app" + BlueprintName = "LazyBear" + ReferencedContainer = "container:LazyBear.xcodeproj"> + </BuildableReference> + </BuildableProductRunnable> + </ProfileAction> + <AnalyzeAction + buildConfiguration = "Debug"> + </AnalyzeAction> + <ArchiveAction + buildConfiguration = "Release" + revealArchiveInOrganizer = "YES"> + </ArchiveAction> +</Scheme>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LazyBear.xcodeproj/xcuserdata/dennis.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<Bucket + uuid = "79016611-2452-4690-9A7B-E8F21B52487D" + type = "1" + version = "2.0"> +</Bucket>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LazyBear.xcodeproj/xcuserdata/dennis.xcuserdatad/xcschemes/xcschememanagement.plist Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>SchemeUserState</key> + <dict> + <key>LazyBear.xcscheme_^#shared#^_</key> + <dict> + <key>orderHint</key> + <integer>0</integer> + </dict> + </dict> + <key>SuppressBuildableAutocreation</key> + <dict> + <key>95B04EAE25212369000AD27F</key> + <dict> + <key>primary</key> + <true/> + </dict> + </dict> +</dict> +</plist>
--- a/LazyBearApp.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -// -// LazyBearApp.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 27/09/2020. -// - -import SwiftUI -import StoreKit - -@main -struct LazyBearApp: App { - - var body: some Scene { - WindowGroup { - NavigationView { - Env1() - } - .navigationViewStyle(StackNavigationViewStyle()) - } - } -}
--- a/Models/CompanyData.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,14 +0,0 @@ -// -// CompanyData.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 31/12/20. -// - -import SwiftUI - -struct CompanyData: Hashable, Codable { - var cik: Int - var symbol: String - var name: String -}
--- a/Models/PriceModel.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,16 +0,0 @@ -// -// Prices.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 3/1/21. -// - -import SwiftUI - -struct PriceModel: Codable { - var close: Double - var date: String - var symbol: String - var volume: Float - var changePercent: Double -}
--- a/Models/TransactionModel.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,16 +0,0 @@ -// -// Insiders.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 4/1/21. -// - -import SwiftUI - -struct TransactionModel: Codable, Hashable { - var acquisition_disposition: String - var transaction_date: String - var reporting_owner: String - var transaction_type: String - var number_securities_transacted: Int -}
--- a/Stock.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,102 +0,0 @@ -// -// Stock.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 2/1/21. -// - -import SwiftUI -import SwiftUICharts - -struct Stock: View { - // Company arguments - var cik: Int - var symbol: String - var name: String - - @ObservedObject var price = Price() - - var body: some View { - if price.showingView { - GeometryReader { geo in - VStack { - HStack { - Text("$ " + String(price.result.last!.close)) - .font(.title) - .fontWeight(.bold) - - let pct = price.result.last!.changePercent * 100 - Text(String(format: "%.2f", pct) + " %") - .font(.headline) - .foregroundColor(whichColor()) - - Spacer() - } - .padding([.leading, .top, .trailing]) - - HStack { - Text(String(price.result.last!.date) + " last price") - .font(.caption) - .padding([.leading]) - .opacity(0.5) - - Spacer() - } - - // Stock Price - let width = geo.size.height*0.6 - let prices = price.result.map { $0.close } // Get an array of a variable in the struct - LineChartView(data: prices, title: "Stock price", legend: "Last 20 days", form: CGSize(width: width, height: width/1.8), rateValue: nil) - .padding() - - Spacer() - - // Volume - let volume = price.result.map { $0.volume } - BarChartView(data: ChartData(points: volume), title: "Volume", form: CGSize(width: width, height: width/1.6)) - .padding() - - } - } - } - else { - VStack{ - Spacer() - ProgressView() - Spacer() - } - .onAppear { - print(symbol) - price.request(symbol: symbol) - } - .alert(isPresented: $price.showingAlert) { - Alert(title: Text("There is no data available"), - message: Text("We have no data about this company. Try another one."), - dismissButton: .default(Text("Got it!"))) - } - } - } - - func whichColor() -> Color { - if price.result.last!.changePercent < 0 { - return Color(.red) - } - else { - return Color(.green) - } - } -} -extension Image { - func favouriteIcon() -> some View { - self - .resizable() - .frame(width: 25, height: 25) - .foregroundColor(.yellow) - } -} - -struct Stock_Previews: PreviewProvider { - static var previews: some View { - Stock(cik: 320193, symbol: "aapl", name: "apple inc") - } -}
--- a/Supply/AboutButton.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,30 +0,0 @@ -// -// AboutButton.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 31/12/20. -// - -import SwiftUI - -struct AboutButton: View { - @State var image: String - @State var name: String - - var body: some View { - HStack { - Image(systemName: image) - .renderingMode(.original) - .resizable() - .frame(width: 25, height: 25) - - Text(name) - } - } -} - -struct AboutButton_Previews: PreviewProvider { - static var previews: some View { - AboutButton(image: "sparkles", name: "What's new") - } -}
--- a/Supply/AppInfo.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -// -// AppInfo.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 31/12/20. -// - -import SwiftUI - -struct AppInfo: View { - var body: some View { - HStack { - Spacer() - Image("launchLogo") - .resizable() - .frame(width: /*@START_MENU_TOKEN@*/100/*@END_MENU_TOKEN@*/, height: /*@START_MENU_TOKEN@*/100/*@END_MENU_TOKEN@*/, alignment: /*@START_MENU_TOKEN@*/.center/*@END_MENU_TOKEN@*/) - - VStack { - Text("Lazybear " + getVersion()) - .fontWeight(/*@START_MENU_TOKEN@*/.bold/*@END_MENU_TOKEN@*/) - - Text("By Dennis Concepción") - } - Spacer() - } - .padding() - } - - // Get app version - func getVersion() -> String { - let dictionary = Bundle.main.infoDictionary! - let version = dictionary["CFBundleShortVersionString"] as! String - return version - } -} - -struct AppInfo_Previews: PreviewProvider { - static var previews: some View { - AppInfo() - } -}
--- a/Supply/Companies.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,52 +0,0 @@ -// -// Companies.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 27/12/20. -// - -import SwiftUI - -struct Companies: View { - var colours = [Color(.systemBlue), Color(.systemYellow), Color(.systemRed), Color(.systemGreen), Color(.systemIndigo), Color(.systemOrange), Color(.systemPink), Color(.systemPurple), Color(.systemTeal), Color(.systemRed)] - - var names = ["adobe", "amazon", "apple", "facebook", "google", "jp", "netflix", "paypal", "salesforce", "tesla"] - var ciks = [796343, 1018724, 320193, 1326801, 1652044, 19617, 1065280, 1633917, 1108524, 1318605] - var symbols = ["adbe", "amzn", "aapl", "fb", "googl", "amj", "nflx", "pypl", "crm", "tsla"] - - let columns = [ - GridItem(.flexible()), - GridItem(.flexible()) - ] - - var body: some View { - ScrollView { - LazyVGrid(columns: columns, spacing: 20) { // Create ScrollView with two columns per row - ForEach((0...9), id: \.self) { index in - NavigationLink(destination: Company(cik: 796343, symbol: symbols[index], name: names[index]) - .navigationBarTitle(names[index].capitalized) - ) { - VStack { - Image(names[index]) - .resizable() - .aspectRatio(contentMode: .fit) - - Text(names[index].capitalized) - .foregroundColor(.white) - .fontWeight(.bold) - } - .padding(40) - .background(colours[index].cornerRadius(20)) - } - } - } - .padding() - } - } -} - -struct Companies_Previews: PreviewProvider { - static var previews: some View { - Companies() - } -}
--- a/Supply/CompanyRow.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,28 +0,0 @@ -// -// CompanyRown.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 31/12/20. -// - -import SwiftUI - -struct CompanyRow: View { - var company: CompanyData - - var body: some View { - HStack { - NavigationLink(destination: Company(cik: company.cik, symbol: company.symbol, name: company.name) - .navigationBarTitle(company.name.capitalized) - ) { - Text(company.name.capitalized) - } - } - } -} - -struct CompanyRown_Previews: PreviewProvider { - static var previews: some View { - CompanyRow(company: companiesData[0]) - } -}
--- a/Supply/SearchBar.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,74 +0,0 @@ -// -// SearchBar.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 27/12/20. -// - -import SwiftUI - -struct SearchBar: View { - - // Text field - @Binding var searchedText: String - @State var searchBarIsEditing = false - @State var placeholder: String - @Binding var showingSearch: Bool // Content View - - var body: some View { - HStack { - TextField(placeholder, text: $searchedText) - .padding(10) - .padding(.horizontal, 45) - .overlay( - HStack { - Image(systemName: "globe") - .frame(minWidth: 0, maxWidth: .infinity, alignment: .leading) - .padding(.leading) - .foregroundColor(Color("placeholder")) - - if searchBarIsEditing { - Button(action: { - self.searchedText = "" - }) { - Image(systemName: "multiply.circle.fill") - .foregroundColor(Color("placeholder")) - .padding(.trailing) - } - } - } - ) - .background(Color(.systemGray6)) - .cornerRadius(10) - .onTapGesture { - self.searchBarIsEditing = true - withAnimation { - self.showingSearch = true // Content View - } - - } - - if searchBarIsEditing { - Button(action: { - self.searchedText = "" - self.searchBarIsEditing = false - withAnimation { - self.showingSearch = false // Content View - } - // Force hide keyboard - UIApplication.shared.sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil) - - }) { - Text("Cancel") - } - } - } - .padding() - } -} - -struct SearchBar_Previews: PreviewProvider { - static var previews: some View { - SearchBar(searchedText: .constant(""), placeholder: "Placeholder", showingSearch: .constant(true)) - } -}
--- a/Supply/Selection.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,75 +0,0 @@ -// -// Selection.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 30/12/20. -// - -import SwiftUI - -struct Selection: View { - @Binding var showingInsiders: Bool - @Binding var showingStocks: Bool - - var body: some View { - // Buttons - HStack { - Group { - // Insiders - Button(action: {toggle(type: "insider")}) { - if showingInsiders { - Image(systemName: "person.fill") - .resizable() - .frame(width: 35, height: 35) - } else { - Image(systemName: "person") - .resizable() - .frame(width: 35, height: 35) - } - } - - // Stock - Button(action: {toggle(type: "stock")}) { - if showingStocks { - Image(systemName: "dollarsign.square.fill") - .resizable() - .frame(width: 35, height: 35) - - } else { - Image(systemName: "dollarsign.square") - .resizable() - .frame(width: 35, height: 35) - } - } - } - .padding().padding().padding() - } - } - - func toggle(type: String) { - if type == "insider" { - self.showingStocks = false - self.showingInsiders = true - } - - if type == "stock" { - self.showingStocks = true - self.showingInsiders = false - } - - if type == "description" { - self.showingStocks = false - self.showingInsiders = false - } - } -} - -struct Selection_Previews: PreviewProvider { - static var previews: some View { - Selection(showingInsiders: .constant(false), showingStocks: .constant(true)) - } -} - -/* - - */
--- a/Supply/TipJar.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,20 +0,0 @@ -// -// TipJar.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 31/12/20. -// - -import SwiftUI - -struct TipJar: View { - var body: some View { - Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) - } -} - -struct TipJar_Previews: PreviewProvider { - static var previews: some View { - TipJar() - } -}
--- a/Supply/TransactionRow.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,44 +0,0 @@ -// -// TransactionRow.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 4/1/21. -// - -import SwiftUI - -struct TransactionRow: View { - var trans: TransactionModel - - var body: some View { - VStack(alignment: .leading) { - HStack { - Image(systemName: "person.fill") - Text(trans.reporting_owner.capitalized) - Spacer() - Text(String(trans.number_securities_transacted)) - .foregroundColor(colourShares(type: trans.acquisition_disposition)) - } - HStack { - Image(systemName: "calendar") - Text(trans.transaction_date) - } - } - .padding() - } - - func colourShares(type: String) -> Color { - if type == "A" { // If aquisition_disposition == A, means "Acquisition" -> buy - return Color(.green) - } - else { - return Color(.red) - } - } -} - -struct TransactionRow_Previews: PreviewProvider { - static var previews: some View { - TransactionRow(trans: TransactionModel(acquisition_disposition: "A", transaction_date: "2020-01-01", reporting_owner: "steve jobs", transaction_type: "F-SomeStuff", number_securities_transacted: 12345)) - } -}
--- a/Supply/WhatsNew.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,63 +0,0 @@ -// -// WhatsNew.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 31/12/20. -// - -import SwiftUI -import SwiftUICharts - -struct WhatsNew: View { - var body: some View { - GeometryReader { geo in - ScrollView { - VStack(alignment: .leading, spacing: 20) { - let intro = "This new version comes with lots of changes and many cool stuff. I've been working hard to improve the backend efficiency, deploy a new API and other boring stuff that you probably are not interested in. So let's talk about the cool stuff." - Text(intro) - - let title1 = "New design" - let text1 = "As you can see, there is a completely new design, more clean, colourful, and simple. Now you can check the date for the company you want in three clicks. Less is more." - Text(title1 + " 😎") - .title() - - Text(text1) - - let title2 = "Charts! A bunch!" - let text2 = "Look how cool they are" - Text(title2) - .title() - - Text(text2 + " 😁") - HStack { - Spacer() - let width = geo.size.height*0.4 - LineChartView(data: [8,23,54,32,12,37,7,23,43], title: "Some cool title", form: CGSize(width: width, height: width/2), rateValue: 14) - Spacer() - } - - let title3 = "Stock prices" - let text3 = "Finally I found a not-so-expensive method to show stock prices. In this version you can see the latest stock price from the previous day, but I promise you in future versions I am going to add real-time stock prices." - Text(title3) - .title() - - Text(text3) - } - .padding() - } - } - } -} -extension Text { - func title() -> some View { - self - .font(/*@START_MENU_TOKEN@*/.title/*@END_MENU_TOKEN@*/) - .fontWeight(.semibold) - } -} - -struct WhatsNew_Previews: PreviewProvider { - static var previews: some View { - WhatsNew() - } -}
--- a/User.swift Mon Jan 11 15:12:44 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,49 +0,0 @@ -// -// User.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 27/12/20. -// - -import SwiftUI - -struct User: View { - @Environment(\.presentationMode) var userPresentation - - var body: some View { - VStack(alignment:.leading) { - HStack { - Button(action: {self.userPresentation.wrappedValue.dismiss() - }) { - Image(systemName: "multiply") - .resizable() - .frame(width: 25, height: 25) - - Spacer() - } - } - - Text("My favourites") - .font(.largeTitle) - .fontWeight(/*@START_MENU_TOKEN@*/.bold/*@END_MENU_TOKEN@*/) - - List { - HStack { - Image(systemName: "star") - .renderingMode(.original) - .resizable() - .frame(width: 25, height: 25) - - Text("Company 1") - } - } - } - .padding() - } -} - -struct User_Previews: PreviewProvider { - static var previews: some View { - User() - } -}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/About.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,85 @@ +// +// Settings.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 27/12/20. +// + +import SwiftUI + +struct About: View { + @Environment(\.presentationMode) var aboutPresentation + + var body: some View { + NavigationView { + VStack(alignment:.leading) { + AppInfo() + + List { + NavigationLink(destination: WhatsNew() + .navigationBarTitle("What's new") + ) { + AboutButton(image: "sparkles", name: "What's new") + } + Button(action: openUrl(url: "https://apps.apple.com/es/app/lazybear-insider-trading/id1534612943?l=en")) { + AboutButton(image: "plus.circle.fill", name: "Rate Lazybear") + } + /* + + NavigationLink(destination: TipJar()) { + AboutButton(image: "gift.fill", name: "Tip jar") + } + */ + Button(action: openUrl(url: "https://twitter.com/LazybearApp")) { + AboutButton(image: "at.circle.fill", name: "@Lazybear") + } + Button(action: openUrl(url: "https://twitter.com/dennisconcep")) { + AboutButton(image: "at.circle.fill", name: "@DennisConcep") + } + Button(action: openUrl(url: "https://github.com/denniscm190/lazybear-iOS")) { + AboutButton(image: "star.fill", name: "Github") + } + Button(action: openUrl(url: "https://lazybear.app")) { + AboutButton(image: "link.circle.fill", name: "Website") + } + /* + Button(action: { }) { + AboutButton(image: "filemenu.and.selection", name: "Terms & Privacy policy") + } + Button(action: { }) { + AboutButton(image: "envelope.circle.fill", name: "Contact") + } + */ + } + } + .padding() + .navigationTitle("About") + .navigationBarItems(leading: + Button(action: {self.aboutPresentation.wrappedValue.dismiss()}) { + Image(systemName: "multiply") + .resizable() + .frame(width: 25, height: 25) + } + ) + + } + .navigationViewStyle(StackNavigationViewStyle()) + } + + func openUrl(url: String) -> () -> () { + return { + if let url = URL(string: url) { + UIApplication.shared.open(url) + } + } + } +} + +struct About_Previews: PreviewProvider { + static var previews: some View { + NavigationView { + About() + } + .navigationViewStyle(StackNavigationViewStyle()) + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/AppIcon.appiconset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,116 @@ +{ + "images" : [ + { + "filename" : "40.jpg", + "idiom" : "iphone", + "scale" : "2x", + "size" : "20x20" + }, + { + "filename" : "60.jpg", + "idiom" : "iphone", + "scale" : "3x", + "size" : "20x20" + }, + { + "filename" : "58.jpg", + "idiom" : "iphone", + "scale" : "2x", + "size" : "29x29" + }, + { + "filename" : "87.jpg", + "idiom" : "iphone", + "scale" : "3x", + "size" : "29x29" + }, + { + "filename" : "80.jpg", + "idiom" : "iphone", + "scale" : "2x", + "size" : "40x40" + }, + { + "filename" : "120.jpg", + "idiom" : "iphone", + "scale" : "3x", + "size" : "40x40" + }, + { + "filename" : "120-1.jpg", + "idiom" : "iphone", + "scale" : "2x", + "size" : "60x60" + }, + { + "filename" : "180.jpg", + "idiom" : "iphone", + "scale" : "3x", + "size" : "60x60" + }, + { + "filename" : "20.jpg", + "idiom" : "ipad", + "scale" : "1x", + "size" : "20x20" + }, + { + "filename" : "40-1.jpg", + "idiom" : "ipad", + "scale" : "2x", + "size" : "20x20" + }, + { + "filename" : "29.jpg", + "idiom" : "ipad", + "scale" : "1x", + "size" : "29x29" + }, + { + "filename" : "58-1.jpg", + "idiom" : "ipad", + "scale" : "2x", + "size" : "29x29" + }, + { + "filename" : "40-2.jpg", + "idiom" : "ipad", + "scale" : "1x", + "size" : "40x40" + }, + { + "filename" : "80-1.jpg", + "idiom" : "ipad", + "scale" : "2x", + "size" : "40x40" + }, + { + "filename" : "76.jpg", + "idiom" : "ipad", + "scale" : "1x", + "size" : "76x76" + }, + { + "filename" : "152.jpg", + "idiom" : "ipad", + "scale" : "2x", + "size" : "76x76" + }, + { + "filename" : "167.jpg", + "idiom" : "ipad", + "scale" : "2x", + "size" : "83.5x83.5" + }, + { + "filename" : "1024.jpg", + "idiom" : "ios-marketing", + "scale" : "1x", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/CompaniesLogos/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/CompaniesLogos/adobe.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "Adobe.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/CompaniesLogos/amazon.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "AmazonLogo.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/CompaniesLogos/apple.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "AppleLogo.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/CompaniesLogos/facebook.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "facebook.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/CompaniesLogos/google.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "GoogleLogo.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/CompaniesLogos/jp.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "JP.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/CompaniesLogos/netflix.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "Netflix.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/CompaniesLogos/paypal.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "Paypal.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/CompaniesLogos/salesforce.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "Salesforce.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/CompaniesLogos/tesla.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "tesla.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/Custom Colors/AccentColor.colorset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,33 @@ +{ + "colors" : [ + { + "color" : { + "platform" : "ios", + "reference" : "linkColor" + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "1.000", + "green" : "1.000", + "red" : "1.000" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/Custom Colors/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/Custom Colors/launch.colorset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "1.000", + "green" : "1.000", + "red" : "1.000" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "31", + "green" : "30", + "red" : "34" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/Custom Colors/placeholder.colorset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "204", + "green" : "202", + "red" : "202" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "1.000", + "green" : "1.000", + "red" : "1.000" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/Logos/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/Logos/darkLogoLaunch.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,24 @@ +{ + "images" : [ + { + "filename" : "darkLogoLaunch.jpg", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "localizable" : true + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/alabama.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "alabama.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/alaska.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "alaska.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/arizona.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "arizona.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/arkansas.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "arkansas.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/california.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "california.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/colorado.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "colorado.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/connecticut.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "connecticut.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/delaware.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "delaware.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/florida.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "florida.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/georgia.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "georgia.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/hawaii.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "hawaii.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/idaho.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "idaho.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/illinois.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "illinois.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/indiana.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "indiana.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/iowa.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "iowa.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/kansas.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "kansas.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/kentucky.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "kentucky.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/louisiana.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "louisiana.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/maine.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "maine.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/maryland.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "maryland.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/massachusetts.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "massachusetts.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/michigan.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "michigan.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/minnesota.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "minnesota.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/mississippi.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "mississippi.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/missouri.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "missouri.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/montana.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "montana.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/nebraska.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "nebraska.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/nevada.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "nevada.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/newHampshire.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "newHampshire.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/newJersey.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "newJersey.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/newMexico.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "newMexico.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/newYork.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "newYork.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/northCarolina.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "northCarolina.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/northDakota.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "northDakota.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/ohio.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "ohio.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/oklahoma.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "oklahoma.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/oregon.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "oregon.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/pennsylvania.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "penssylvania.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/puertoRico.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "puertoRico.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/rhodeIsland.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "rhodeIsland.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/southCarolina.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "southCarolina.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/southDakota.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "southDakota.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/tennessee.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "tennessee.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/texas.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "texas.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/utah.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "utah.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/vermont.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "vermont.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/virginia.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "virginia.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/washington.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "washington.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/westVirginia.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "westVirginia.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/wisconsin.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "wisconsin.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/UStates/wyoming.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "wyoming.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Assets.xcassets/launchLogo.imageset/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,85 @@ +{ + "images" : [ + { + "idiom" : "universal", + "scale" : "1x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "light" + } + ], + "filename" : "launchLogo.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "filename" : "white.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "light" + } + ], + "idiom" : "universal", + "scale" : "2x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "light" + } + ], + "idiom" : "universal", + "scale" : "3x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "localizable" : true + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Company.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,47 @@ +// +// Company.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 29/12/20. +// + +import SwiftUI + +struct Company: View { + // Company arguments + var cik: Int + var symbol: String + var name: String + + @State public var showingInsiders: Bool = false + @State public var showingStocks: Bool = true + + var body: some View { + GeometryReader { geo in + VStack { + if showingStocks { + Stock(cik: cik, symbol: symbol, name: name) + } + else { + Insiders(cik: cik, symbol: symbol, name: name) + } + + // Start bottom selection + Rectangle() + .foregroundColor(.white) + .edgesIgnoringSafeArea(.bottom) + .frame(height: geo.size.height * 0.1) + .overlay( + Selection(showingInsiders: $showingInsiders, showingStocks: $showingStocks) + ) + } + .background(Color(.systemGray6).edgesIgnoringSafeArea(.all)) + } + } +} + +struct Company_Previews: PreviewProvider { + static var previews: some View { + Company(cik: 320193, symbol: "aapl", name: "apple inc") + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Configuration.storekit Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,15 @@ +{ + "products" : [ + + ], + "settings" : { + + }, + "subscriptionGroups" : [ + + ], + "version" : { + "major" : 1, + "minor" : 0 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/ContentView.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,26 @@ +// +// ContentView.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 27/09/2020. +// + +import SwiftUI +import CoreData + +struct ContentView: View { + @Environment(\.managedObjectContext) private var viewContext + @FetchRequest(entity: Favourite.entity(), sortDescriptors: []) + var favourites: FetchedResults<Favourite> + + var body: some View { + Main() + } +} + +struct ContentView_Previews: PreviewProvider { + static var previews: some View { + ContentView() + .environment(\.managedObjectContext, PersistenceController.preview.container.viewContext) + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Core Data/Persistence.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,57 @@ +// +// Persistence.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 12/1/21. +// + +import CoreData + +struct PersistenceController { + static let shared = PersistenceController() + + static var preview: PersistenceController = { + let result = PersistenceController(inMemory: true) + let viewContext = result.container.viewContext + for _ in 0..<10 { + let newItem = Favourite(context: viewContext) + newItem.cik = 123 + newItem.isFavourite = true + + } + do { + try viewContext.save() + } catch { + // Replace this implementation with code to handle the error appropriately. + // fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development. + let nsError = error as NSError + fatalError("Unresolved error \(nsError), \(nsError.userInfo)") + } + return result + }() + + let container: NSPersistentContainer + + init(inMemory: Bool = false) { + container = NSPersistentContainer(name: "LazyBear") + if inMemory { + container.persistentStoreDescriptions.first!.url = URL(fileURLWithPath: "/dev/null") + } + container.loadPersistentStores(completionHandler: { (storeDescription, error) in + if let error = error as NSError? { + // Replace this implementation with code to handle the error appropriately. + // fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development. + + /* + Typical reasons for an error here include: + * The parent directory does not exist, cannot be created, or disallows writing. + * The persistent store is not accessible, due to permissions or data protection when the device is locked. + * The device is out of space. + * The store could not be migrated to the current model version. + Check the error message to determine what the actual problem was. + */ + fatalError("Unresolved error \(error), \(error.userInfo)") + } + }) + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Data/companies.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,43192 @@ +[ + { + "cik": 789019, + "symbol": "msft", + "name": "microsoft corp" + }, + { + "cik": 1018724, + "symbol": "amzn", + "name": "amazon com inc" + }, + { + "cik": 1652044, + "symbol": "googl", + "name": "alphabet inc" + }, + { + "cik": 1326801, + "symbol": "fb", + "name": "facebook inc" + }, + { + "cik": 1293451, + "symbol": "tctzf", + "name": "tencent holdings ltd" + }, + { + "cik": 1577552, + "symbol": "baba", + "name": "alibaba group holding ltd" + }, + { + "cik": 1318605, + "symbol": "tsla", + "name": "tesla inc" + }, + { + "cik": 1046179, + "symbol": "tsm", + "name": "taiwan semiconductor manufacturing co ltd" + }, + { + "cik": 1403161, + "symbol": "v", + "name": "visa inc" + }, + { + "cik": 104169, + "symbol": "wmt", + "name": "walmart inc" + }, + { + "cik": 200406, + "symbol": "jnj", + "name": "johnson & johnson" + }, + { + "cik": 19617, + "symbol": "amj", + "name": "jpmorgan chase & co" + }, + { + "cik": 80424, + "symbol": "pg", + "name": "procter & gamble co" + }, + { + "cik": 884394, + "symbol": "spy", + "name": "spdr s&p 500 etf trust" + }, + { + "cik": 1141391, + "symbol": "ma", + "name": "mastercard inc" + }, + { + "cik": 1045810, + "symbol": "nvda", + "name": "nvidia corp" + }, + { + "cik": 731766, + "symbol": "unh", + "name": "unitedhealth group inc" + }, + { + "cik": 1744489, + "symbol": "dis", + "name": "walt disney co" + }, + { + "cik": 824046, + "symbol": "lvmhf", + "name": "lvmh moet hennessy louis vuitton" + }, + { + "cik": 354950, + "symbol": "hd", + "name": "home depot inc" + }, + { + "cik": 1633917, + "symbol": "pypl", + "name": "paypal holdings inc" + }, + { + "cik": 1445468, + "symbol": "idcbf", + "name": "industrial & commercial bank of china" + }, + { + "cik": 70858, + "symbol": "bac", + "name": "bank of america corp de" + }, + { + "cik": 732712, + "symbol": "vz", + "name": "verizon communications inc" + }, + { + "cik": 796343, + "symbol": "adbe", + "name": "adobe inc" + }, + { + "cik": 1065280, + "symbol": "nflx", + "name": "netflix inc" + }, + { + "cik": 1166691, + "symbol": "ccz", + "name": "comcast corp" + }, + { + "cik": 21344, + "symbol": "ko", + "name": "coca cola co" + }, + { + "cik": 320187, + "symbol": "nke", + "name": "nike inc" + }, + { + "cik": 1108524, + "symbol": "crm", + "name": "salesforcecom inc" + }, + { + "cik": 1094517, + "symbol": "tm", + "name": "toyota motor corp" + }, + { + "cik": 78003, + "symbol": "pfe", + "name": "pfizer inc" + }, + { + "cik": 732717, + "symbol": "tbc", + "name": "at&t inc" + }, + { + "cik": 1114448, + "symbol": "nvs", + "name": "novartis ag" + }, + { + "cik": 310158, + "symbol": "mrk", + "name": "merck & co inc" + }, + { + "cik": 937966, + "symbol": "asml", + "name": "asml holding nv" + }, + { + "cik": 1341439, + "symbol": "orcl", + "name": "oracle corp" + }, + { + "cik": 77476, + "symbol": "pep", + "name": "pepsico inc" + }, + { + "cik": 1800, + "symbol": "abt", + "name": "abbott laboratories" + }, + { + "cik": 50863, + "symbol": "intc", + "name": "intel corp" + }, + { + "cik": 858877, + "symbol": "csco", + "name": "cisco systems inc" + }, + { + "cik": 97745, + "symbol": "tmo", + "name": "thermo fisher scientific inc" + }, + { + "cik": 1445474, + "symbol": "cichf", + "name": "china construction bank corp" + }, + { + "cik": 1551152, + "symbol": "abbv", + "name": "abbvie inc" + }, + { + "cik": 1730168, + "symbol": "avgop", + "name": "broadcom inc" + }, + { + "cik": 34088, + "symbol": "xom", + "name": "exxon mobil corp" + }, + { + "cik": 1467373, + "symbol": "acn", + "name": "accenture plc" + }, + { + "cik": 1737806, + "symbol": "pdd", + "name": "pinduoduo inc" + }, + { + "cik": 804328, + "symbol": "qcom", + "name": "qualcomm inc de" + }, + { + "cik": 1501437, + "symbol": "acgbf", + "name": "agricultural bank of china limited adr" + }, + { + "cik": 811809, + "symbol": "bhp", + "name": "bhp group ltd" + }, + { + "cik": 353278, + "symbol": "nvo", + "name": "novo nordisk a s" + }, + { + "cik": 1283699, + "symbol": "tmusr", + "name": "t-mobile us inc" + }, + { + "cik": 93410, + "symbol": "cvx", + "name": "chevron corp" + }, + { + "cik": 909832, + "symbol": "cost", + "name": "costco wholesale corp new" + }, + { + "cik": 1495688, + "symbol": "cihhf", + "name": "china merchants bank co ltd adr" + }, + { + "cik": 59478, + "symbol": "lly", + "name": "eli lilly & co" + }, + { + "cik": 313616, + "symbol": "dhr", + "name": "danaher corp de" + }, + { + "cik": 63908, + "symbol": "mcd", + "name": "mcdonalds corp" + }, + { + "cik": 1594805, + "symbol": "shop", + "name": "shopify inc" + }, + { + "cik": 1613103, + "symbol": "mdt", + "name": "medtronic plc" + }, + { + "cik": 217410, + "symbol": "ul", + "name": "unilever plc" + }, + { + "cik": 1000184, + "symbol": "sap", + "name": "sap se" + }, + { + "cik": 1090727, + "symbol": "ups", + "name": "united parcel service inc" + }, + { + "cik": 97476, + "symbol": "txn", + "name": "texas instruments inc" + }, + { + "cik": 1065521, + "symbol": "sfbqf", + "name": "softbank group corp" + }, + { + "cik": 753308, + "symbol": "nxegu", + "name": "nextera energy inc" + }, + { + "cik": 773840, + "symbol": "hon", + "name": "honeywell international inc" + }, + { + "cik": 887028, + "symbol": "rtntf", + "name": "rio tinto ltd" + }, + { + "cik": 14272, + "symbol": "bmy", + "name": "bristol myers squibb co" + }, + { + "cik": 1668717, + "symbol": "bud", + "name": "anheuser-busch inbev sa nv" + }, + { + "cik": 100885, + "symbol": "unp", + "name": "union pacific corp" + }, + { + "cik": 1268896, + "symbol": "lfc", + "name": "china life insurance co ltd" + }, + { + "cik": 1171264, + "symbol": "bbl", + "name": "bhp group plc" + }, + { + "cik": 1707925, + "symbol": "lin", + "name": "linde plc" + }, + { + "cik": 1378999, + "symbol": "bachf", + "name": "bank of china ltd" + }, + { + "cik": 901832, + "symbol": "azn", + "name": "astrazeneca plc" + }, + { + "cik": 318154, + "symbol": "amgn", + "name": "amgen inc" + }, + { + "cik": 1091667, + "symbol": "chtr", + "name": "charter communications inc mo" + }, + { + "cik": 1413329, + "symbol": "pm", + "name": "philip morris international inc" + }, + { + "cik": 1549802, + "symbol": "jdcmf", + "name": "jdcom inc" + }, + { + "cik": 12927, + "symbol": "ba", + "name": "boeing co" + }, + { + "cik": 831001, + "symbol": "ugbp", + "name": "citigroup inc" + }, + { + "cik": 1067839, + "symbol": "qqq", + "name": "invesco qqq trust series 1" + }, + { + "cik": 1121404, + "symbol": "sny", + "name": "sanofi" + }, + { + "cik": 60667, + "symbol": "low", + "name": "lowes companies inc" + }, + { + "cik": 895421, + "symbol": "urr", + "name": "morgan stanley" + }, + { + "cik": 829224, + "symbol": "sbux", + "name": "starbucks corp" + }, + { + "cik": 313838, + "symbol": "sne", + "name": "sony corp" + }, + { + "cik": 72971, + "symbol": "wfc", + "name": "wells fargo & company mn" + }, + { + "cik": 1585521, + "symbol": "zm", + "name": "zoom video communications inc" + }, + { + "cik": 1117795, + "symbol": "chl", + "name": "china mobile ltd adr" + }, + { + "cik": 1000275, + "symbol": "ry", + "name": "royal bank of canada" + }, + { + "cik": 879764, + "symbol": "tot", + "name": "total se" + }, + { + "cik": 2488, + "symbol": "amd", + "name": "advanced micro devices inc" + }, + { + "cik": 51143, + "symbol": "ibm", + "name": "international business machines corp" + }, + { + "cik": 1373715, + "symbol": "now", + "name": "servicenow inc" + }, + { + "cik": 1436949, + "symbol": "hesaf", + "name": "hermes international sca" + }, + { + "cik": 1512673, + "symbol": "sq", + "name": "square inc" + }, + { + "cik": 1108329, + "symbol": "ptr", + "name": "petrochina co ltd" + }, + { + "cik": 1364742, + "symbol": "blk", + "name": "blackrock inc" + }, + { + "cik": 101829, + "symbol": "rtx", + "name": "raytheon technologies corp" + }, + { + "cik": 896878, + "symbol": "intu", + "name": "intuit inc" + }, + { + "cik": 1089113, + "symbol": "hsbc", + "name": "hsbc holdings plc" + }, + { + "cik": 1144967, + "symbol": "hdb", + "name": "hdfc bank ltd" + }, + { + "cik": 66740, + "symbol": "mmm", + "name": "3m co" + }, + { + "cik": 947263, + "symbol": "td", + "name": "toronto dominion bank" + }, + { + "cik": 1703399, + "symbol": "se", + "name": "sea ltd" + }, + { + "cik": 1053507, + "symbol": "amt", + "name": "american tower corp ma" + }, + { + "cik": 1559720, + "symbol": "abnb", + "name": "airbnb inc" + }, + { + "cik": 936468, + "symbol": "lmt", + "name": "lockheed martin corp" + }, + { + "cik": 316709, + "symbol": "schw", + "name": "schwab charles corp" + }, + { + "cik": 1640147, + "symbol": "snow", + "name": "snowflake inc" + }, + { + "cik": 1450488, + "symbol": "chdrf", + "name": "christian dior se adr" + }, + { + "cik": 18230, + "symbol": "cat", + "name": "caterpillar inc" + }, + { + "cik": 1035267, + "symbol": "isrg", + "name": "intuitive surgical inc" + }, + { + "cik": 1543151, + "symbol": "uber", + "name": "uber technologies inc" + }, + { + "cik": 863064, + "symbol": "rio", + "name": "rio tinto plc" + }, + { + "cik": 1001250, + "symbol": "el", + "name": "estee lauder companies inc" + }, + { + "cik": 40545, + "symbol": "ge", + "name": "general electric co" + }, + { + "cik": 4962, + "symbol": "axp", + "name": "american express co" + }, + { + "cik": 835403, + "symbol": "deo", + "name": "diageo plc" + }, + { + "cik": 1131399, + "symbol": "gsk", + "name": "glaxosmithkline plc" + }, + { + "cik": 310764, + "symbol": "syk", + "name": "stryker corp" + }, + { + "cik": 64803, + "symbol": "cvs", + "name": "cvs health corp" + }, + { + "cik": 27419, + "symbol": "tgt", + "name": "target corp" + }, + { + "cik": 1099590, + "symbol": "meli", + "name": "mercadolibre inc" + }, + { + "cik": 917851, + "symbol": "vale", + "name": "vale sa" + }, + { + "cik": 886982, + "symbol": "gcec", + "name": "goldman sachs group inc" + }, + { + "cik": 1445465, + "symbol": "ppruf", + "name": "kering" + }, + { + "cik": 315189, + "symbol": "de", + "name": "deere & co" + }, + { + "cik": 1378580, + "symbol": "eadsf", + "name": "airbus se adr" + }, + { + "cik": 1075531, + "symbol": "bkng", + "name": "booking holdings inc" + }, + { + "cik": 1136893, + "symbol": "fis", + "name": "fidelity national information services inc" + }, + { + "cik": 1446595, + "symbol": "frcof", + "name": "fast retailing co ltd" + }, + { + "cik": 1303523, + "symbol": "bti", + "name": "british american tobacco plc" + }, + { + "cik": 1103982, + "symbol": "mdlz", + "name": "mondelez international inc" + }, + { + "cik": 1679771, + "symbol": "dogef", + "name": "orsted a s adr" + }, + { + "cik": 109198, + "symbol": "tjx", + "name": "tjx companies inc de" + }, + { + "cik": 1453934, + "symbol": "chgcf", + "name": "chugai pharmaceutical co ltd adr" + }, + { + "cik": 1809587, + "symbol": "beke", + "name": "ke holdings inc" + }, + { + "cik": 923734, + "symbol": "sbgsf", + "name": "schneider electric sa" + }, + { + "cik": 764180, + "symbol": "mo", + "name": "altria group inc" + }, + { + "cik": 723125, + "symbol": "mu", + "name": "micron technology inc" + }, + { + "cik": 6951, + "symbol": "amat", + "name": "applied materials inc de" + }, + { + "cik": 1564408, + "symbol": "snap", + "name": "snap inc" + }, + { + "cik": 16868, + "symbol": "cni", + "name": "canadian national railway co" + }, + { + "cik": 1555280, + "symbol": "zts", + "name": "zoetis inc" + }, + { + "cik": 1161167, + "symbol": "aiquf", + "name": "l air liquide sa fi" + }, + { + "cik": 64040, + "symbol": "spgi", + "name": "s&p global inc" + }, + { + "cik": 8670, + "symbol": "adp", + "name": "automatic data processing inc" + }, + { + "cik": 1156039, + "symbol": "antm", + "name": "anthem inc" + }, + { + "cik": 1736541, + "symbol": "nio", + "name": "nio inc" + }, + { + "cik": 1067318, + "symbol": "ddaif", + "name": "daimler ag" + }, + { + "cik": 798354, + "symbol": "fisv", + "name": "fiserv inc" + }, + { + "cik": 1445162, + "symbol": "byddf", + "name": "byd co ltd" + }, + { + "cik": 1048911, + "symbol": "fdx", + "name": "fedex corp" + }, + { + "cik": 21665, + "symbol": "cl", + "name": "colgate palmolive co" + }, + { + "cik": 1045609, + "symbol": "pld", + "name": "prologis inc" + }, + { + "cik": 10795, + "symbol": "bdxb", + "name": "becton dickinson & co" + }, + { + "cik": 882095, + "symbol": "gild", + "name": "gilead sciences inc" + }, + { + "cik": 1158967, + "symbol": "njdcy", + "name": "nidec corp" + }, + { + "cik": 1067491, + "symbol": "infy", + "name": "infosys ltd" + }, + { + "cik": 313807, + "symbol": "bp", + "name": "bp plc" + }, + { + "cik": 1739940, + "symbol": "ci", + "name": "cigna corp" + }, + { + "cik": 1119639, + "symbol": "pbr", + "name": "petrobras - petroleo brasileiro sa" + }, + { + "cik": 1123658, + "symbol": "snp", + "name": "china petroleum & chemical corp" + }, + { + "cik": 1442651, + "symbol": "shecf", + "name": "shin-etsu chemical co ltd" + }, + { + "cik": 718877, + "symbol": "atvi", + "name": "activision blizzard inc" + }, + { + "cik": 707549, + "symbol": "lrcx", + "name": "lam research corp" + }, + { + "cik": 36104, + "symbol": "usb", + "name": "us bancorp de" + }, + { + "cik": 1085922, + "symbol": "eslof", + "name": "essilor international fi" + }, + { + "cik": 277948, + "symbol": "csx", + "name": "csx corp" + }, + { + "cik": 896159, + "symbol": "cb", + "name": "chubb ltd" + }, + { + "cik": 89800, + "symbol": "shw", + "name": "sherwin williams co" + }, + { + "cik": 769397, + "symbol": "adsk", + "name": "autodesk inc" + }, + { + "cik": 1106215, + "symbol": "kddif", + "name": "kddi corp" + }, + { + "cik": 1051470, + "symbol": "cci", + "name": "crown castle international corp" + }, + { + "cik": 1326160, + "symbol": "dukb", + "name": "duke energy corp" + }, + { + "cik": 1329099, + "symbol": "bidu", + "name": "baidu inc" + }, + { + "cik": 1156375, + "symbol": "cme", + "name": "cme group inc" + }, + { + "cik": 895728, + "symbol": "enba", + "name": "enbridge inc" + }, + { + "cik": 310732, + "symbol": "bnpqf", + "name": "bnp paribas" + }, + { + "cik": 1445476, + "symbol": "hkxcf", + "name": "hong kong exchanges & clearing ltd" + }, + { + "cik": 9631, + "symbol": "bns", + "name": "bank of nova scotia" + }, + { + "cik": 49826, + "symbol": "itw", + "name": "illinois tool works inc" + }, + { + "cik": 1101239, + "symbol": "eqix", + "name": "equinix inc" + }, + { + "cik": 1571949, + "symbol": "ice", + "name": "intercontinental exchange inc" + }, + { + "cik": 92122, + "symbol": "soln", + "name": "southern co" + }, + { + "cik": 1110646, + "symbol": "ntes", + "name": "netease inc" + }, + { + "cik": 1446519, + "symbol": "dkilf", + "name": "daikin industries ltd" + }, + { + "cik": 92230, + "symbol": "tfc", + "name": "truist financial corp" + }, + { + "cik": 1420798, + "symbol": "rbgpf", + "name": "reckitt benckiser group plc" + }, + { + "cik": 1327811, + "symbol": "wday", + "name": "workday inc" + }, + { + "cik": 1650372, + "symbol": "team", + "name": "atlassian corp plc" + }, + { + "cik": 31462, + "symbol": "ecl", + "name": "ecolab inc" + }, + { + "cik": 875320, + "symbol": "vrtx", + "name": "vertex pharmaceuticals inc ma" + }, + { + "cik": 1639920, + "symbol": "spot", + "name": "spotify technology sa" + }, + { + "cik": 713676, + "symbol": "pnc", + "name": "pnc financial services group inc" + }, + { + "cik": 1689565, + "symbol": "pstvy", + "name": "postal savings bank of china co ltd adr" + }, + { + "cik": 1364012, + "symbol": "safrf", + "name": "safran sa" + }, + { + "cik": 1001085, + "symbol": "bam", + "name": "brookfield asset management inc" + }, + { + "cik": 715957, + "symbol": "drua", + "name": "dominion energy inc" + }, + { + "cik": 1447669, + "symbol": "twlo", + "name": "twilio inc" + }, + { + "cik": 1123360, + "symbol": "gpn", + "name": "global payments inc" + }, + { + "cik": 1124610, + "symbol": "vmw", + "name": "vmware inc" + }, + { + "cik": 702165, + "symbol": "nsc", + "name": "norfolk southern corp" + }, + { + "cik": 1467858, + "symbol": "gm", + "name": "general motors co" + }, + { + "cik": 2969, + "symbol": "apd", + "name": "air products & chemicals inc de" + }, + { + "cik": 62709, + "symbol": "mmc", + "name": "marsh & mclennan companies inc" + }, + { + "cik": 80661, + "symbol": "pgr", + "name": "progressive corp oh" + }, + { + "cik": 1395064, + "symbol": "tak", + "name": "takeda pharmaceutical co ltd" + }, + { + "cik": 1648416, + "symbol": "race", + "name": "ferrari nv" + }, + { + "cik": 1091587, + "symbol": "abb", + "name": "abb ltd" + }, + { + "cik": 67088, + "symbol": "mufg", + "name": "mitsubishi ufj financial group inc" + }, + { + "cik": 1132597, + "symbol": "itub", + "name": "itau unibanco holding sa" + }, + { + "cik": 1065198, + "symbol": "vcisf", + "name": "vinci fi" + }, + { + "cik": 860730, + "symbol": "hca", + "name": "hca healthcare inc" + }, + { + "cik": 1099800, + "symbol": "ew", + "name": "edwards lifesciences corp" + }, + { + "cik": 1450468, + "symbol": "mraaf", + "name": "murata manufacturing co ltd adr" + }, + { + "cik": 1436791, + "symbol": "ntoif", + "name": "neste oyj" + }, + { + "cik": 1571996, + "symbol": "dell", + "name": "dell technologies inc" + }, + { + "cik": 1110803, + "symbol": "ilmn", + "name": "illumina inc" + }, + { + "cik": 1443276, + "symbol": "toelf", + "name": "tokyo electron ltd" + }, + { + "cik": 891478, + "symbol": "san", + "name": "banco santander sa" + }, + { + "cik": 719245, + "symbol": "wbk", + "name": "westpac banking corp" + }, + { + "cik": 6281, + "symbol": "adi", + "name": "analog devices inc" + }, + { + "cik": 1140625, + "symbol": "eqnr", + "name": "equinor asa" + }, + { + "cik": 1059556, + "symbol": "mco", + "name": "moodys corp de" + }, + { + "cik": 1545460, + "symbol": "olclf", + "name": "oriental land co ltd adr" + }, + { + "cik": 1445470, + "symbol": "cuaef", + "name": "china shenhua energy co ltd" + }, + { + "cik": 1321655, + "symbol": "pltr", + "name": "palantir technologies inc" + }, + { + "cik": 872589, + "symbol": "regn", + "name": "regeneron pharmaceuticals inc" + }, + { + "cik": 29534, + "symbol": "dg", + "name": "dollar general corp" + }, + { + "cik": 1666700, + "symbol": "dd", + "name": "dupont de nemours inc" + }, + { + "cik": 49071, + "symbol": "hum", + "name": "humana inc" + }, + { + "cik": 1528541, + "symbol": "chpxf", + "name": "china pacific insurance (group) co ltd adr" + }, + { + "cik": 948401, + "symbol": "cfrhf", + "name": "compagnie financiere richemont ag fi" + }, + { + "cik": 899108, + "symbol": "pdrdf", + "name": "pernod ricard s a fi" + }, + { + "cik": 1690820, + "symbol": "cvna", + "name": "carvana co" + }, + { + "cik": 715153, + "symbol": "hmc", + "name": "honda motor co ltd" + }, + { + "cik": 823768, + "symbol": "wm", + "name": "waste management inc" + }, + { + "cik": 1682852, + "symbol": "mrna", + "name": "moderna inc" + }, + { + "cik": 1792789, + "symbol": "dash", + "name": "doordash inc" + }, + { + "cik": 1535527, + "symbol": "crwd", + "name": "crowdstrike holdings inc" + }, + { + "cik": 1610520, + "symbol": "ubs", + "name": "ubs group ag" + }, + { + "cik": 1133421, + "symbol": "noc", + "name": "northrop grumman corp de" + }, + { + "cik": 313216, + "symbol": "phg", + "name": "koninklijke philips nv" + }, + { + "cik": 1001838, + "symbol": "scco", + "name": "southern copper corp" + }, + { + "cik": 885725, + "symbol": "bsx", + "name": "boston scientific corp" + }, + { + "cik": 927971, + "symbol": "ygrn", + "name": "bank of montreal can" + }, + { + "cik": 315293, + "symbol": "aon", + "name": "aon plc" + }, + { + "cik": 1811414, + "symbol": "kcac", + "name": "quantumscape corp" + }, + { + "cik": 753762, + "symbol": "volaf", + "name": "aktiebolaget volvo publ" + }, + { + "cik": 1164727, + "symbol": "nem", + "name": "newmont corp de" + }, + { + "cik": 1565025, + "symbol": "abev", + "name": "ambev sa" + }, + { + "cik": 32604, + "symbol": "emr", + "name": "emerson electric co" + }, + { + "cik": 1387438, + "symbol": "eciff", + "name": "electricite de france sa" + }, + { + "cik": 1639825, + "symbol": "pton", + "name": "peloton interactive inc" + }, + { + "cik": 1446711, + "symbol": "lzagf", + "name": "lonza group ag" + }, + { + "cik": 1261333, + "symbol": "docu", + "name": "docusign inc" + }, + { + "cik": 1397187, + "symbol": "lulu", + "name": "lululemon athletica inc" + }, + { + "cik": 1810806, + "symbol": "u", + "name": "unity software inc" + }, + { + "cik": 865752, + "symbol": "mnst", + "name": "monster beverage corp" + }, + { + "cik": 1116578, + "symbol": "puk", + "name": "prudential plc" + }, + { + "cik": 929869, + "symbol": "relx", + "name": "relx plc" + }, + { + "cik": 1551182, + "symbol": "etn", + "name": "eaton corp plc" + }, + { + "cik": 1129137, + "symbol": "amov", + "name": "america movil sab de cv" + }, + { + "cik": 1103838, + "symbol": "ibn", + "name": "icici bank ltd" + }, + { + "cik": 1446596, + "symbol": "fanuf", + "name": "fanuc ltd" + }, + { + "cik": 16875, + "symbol": "cp", + "name": "canadian pacific railway ltd cn" + }, + { + "cik": 1671933, + "symbol": "ttd", + "name": "trade desk inc" + }, + { + "cik": 1222333, + "symbol": "gld", + "name": "spdr gold trust" + }, + { + "cik": 870016, + "symbol": "jarlf", + "name": "jardine matheson holdings ltd fi" + }, + { + "cik": 1330306, + "symbol": "vwsyf", + "name": "vestas wind systems a s" + }, + { + "cik": 1447011, + "symbol": "bkfcf", + "name": "bank of communications co ltd" + }, + { + "cik": 55785, + "symbol": "kmb", + "name": "kimberly clark corp" + }, + { + "cik": 1428439, + "symbol": "roku", + "name": "roku inc" + }, + { + "cik": 1393818, + "symbol": "bx", + "name": "blackstone group inc" + }, + { + "cik": 1506293, + "symbol": "pins", + "name": "pinterest inc" + }, + { + "cik": 1446598, + "symbol": "dnzof", + "name": "denso corp" + }, + { + "cik": 1160330, + "symbol": "bbdo", + "name": "bank bradesco" + }, + { + "cik": 1061219, + "symbol": "epd", + "name": "enterprise products partners lp" + }, + { + "cik": 1532383, + "symbol": "vnja", + "name": "vanjia corp" + }, + { + "cik": 1766502, + "symbol": "chwy", + "name": "chewy inc" + }, + { + "cik": 839923, + "symbol": "vod", + "name": "vodafone group public ltd co" + }, + { + "cik": 1413447, + "symbol": "nxpi", + "name": "nxp semiconductors nv" + }, + { + "cik": 1418135, + "symbol": "kdp", + "name": "keurig dr pepper inc" + }, + { + "cik": 1436381, + "symbol": "wfaff", + "name": "wesfarmers ltd" + }, + { + "cik": 1418091, + "symbol": "twtr", + "name": "twitter inc" + }, + { + "cik": 927628, + "symbol": "cof", + "name": "capital one financial corp" + }, + { + "cik": 1393052, + "symbol": "veev", + "name": "veeva systems inc" + }, + { + "cik": 1058290, + "symbol": "ctsh", + "name": "cognizant technology solutions corp" + }, + { + "cik": 882835, + "symbol": "rop", + "name": "roper technologies inc" + }, + { + "cik": 1805284, + "symbol": "rkt", + "name": "rocket companies inc" + }, + { + "cik": 1300514, + "symbol": "lvs", + "name": "las vegas sands corp" + }, + { + "cik": 1048515, + "symbol": "danoy", + "name": "groupe danone" + }, + { + "cik": 874716, + "symbol": "idxx", + "name": "idexx laboratories inc de" + }, + { + "cik": 1097149, + "symbol": "algn", + "name": "align technology inc" + }, + { + "cik": 1436793, + "symbol": "knyjf", + "name": "kone oyj" + }, + { + "cik": 1637459, + "symbol": "khc", + "name": "kraft heinz co" + }, + { + "cik": 40533, + "symbol": "gd", + "name": "general dynamics corp" + }, + { + "cik": 355363, + "symbol": "itocf", + "name": "itochu corp" + }, + { + "cik": 1095595, + "symbol": "ceo", + "name": "cnooc ltd" + }, + { + "cik": 1524684, + "symbol": "glcnf", + "name": "glencore plc adr" + }, + { + "cik": 1163165, + "symbol": "cop", + "name": "conocophillips" + }, + { + "cik": 1439584, + "symbol": "ldnxf", + "name": "london stock exchange group" + }, + { + "cik": 745732, + "symbol": "rost", + "name": "ross stores inc" + }, + { + "cik": 891103, + "symbol": "mtch", + "name": "match group inc" + }, + { + "cik": 1022837, + "symbol": "smfg", + "name": "sumitomo mitsui financial group inc" + }, + { + "cik": 1499620, + "symbol": "tal", + "name": "tal education group" + }, + { + "cik": 16918, + "symbol": "stz", + "name": "constellation brands inc" + }, + { + "cik": 1048286, + "symbol": "mar", + "name": "marriott international inc md" + }, + { + "cik": 1109357, + "symbol": "exc", + "name": "exelon corp" + }, + { + "cik": 1099219, + "symbol": "met", + "name": "metlife inc" + }, + { + "cik": 1393311, + "symbol": "psa", + "name": "public storage" + }, + { + "cik": 1751788, + "symbol": "dow", + "name": "dow inc" + }, + { + "cik": 712515, + "symbol": "ea", + "name": "electronic arts inc" + }, + { + "cik": 4904, + "symbol": "aeppz", + "name": "american electric power co inc" + }, + { + "cik": 10456, + "symbol": "bax", + "name": "baxter international inc" + }, + { + "cik": 1652630, + "symbol": "vnnvf", + "name": "vonovia se adr" + }, + { + "cik": 1448987, + "symbol": "ahchf", + "name": "anhui conch cement co ltd adr" + }, + { + "cik": 1004315, + "symbol": "ngg", + "name": "national grid plc" + }, + { + "cik": 756894, + "symbol": "gold", + "name": "barrick gold corp" + }, + { + "cik": 1058090, + "symbol": "cmg", + "name": "chipotle mexican grill inc" + }, + { + "cik": 319201, + "symbol": "klac", + "name": "kla corp" + }, + { + "cik": 1075124, + "symbol": "tri", + "name": "thomson reuters corp can" + }, + { + "cik": 883241, + "symbol": "snps", + "name": "synopsys inc" + }, + { + "cik": 717826, + "symbol": "eric", + "name": "ericsson lm telephone co" + }, + { + "cik": 1297996, + "symbol": "dlr", + "name": "digital realty trust inc" + }, + { + "cik": 1045520, + "symbol": "cm", + "name": "canadian imperial bank of commerce can" + }, + { + "cik": 202058, + "symbol": "lhx", + "name": "l3harris technologies inc de" + }, + { + "cik": 1385157, + "symbol": "tel", + "name": "te connectivity ltd" + }, + { + "cik": 1232384, + "symbol": "tcanf", + "name": "tc energy corp" + }, + { + "cik": 820313, + "symbol": "aph", + "name": "amphenol corp de" + }, + { + "cik": 1121631, + "symbol": "gvdbf", + "name": "givaudan sa fi" + }, + { + "cik": 718940, + "symbol": "bceff", + "name": "bce inc" + }, + { + "cik": 1396282, + "symbol": "hmrzf", + "name": "h&m hennes & mauritz ab" + }, + { + "cik": 875045, + "symbol": "biib", + "name": "biogen inc" + }, + { + "cik": 1575851, + "symbol": "sxyay", + "name": "sika ag adr" + }, + { + "cik": 879875, + "symbol": "jdshf", + "name": "jardine strategic holdings ltd fi" + }, + { + "cik": 813672, + "symbol": "cdns", + "name": "cadence design systems inc" + }, + { + "cik": 1660134, + "symbol": "okta", + "name": "okta inc" + }, + { + "cik": 827054, + "symbol": "mchp", + "name": "microchip technology inc" + }, + { + "cik": 1598014, + "symbol": "info", + "name": "ihs markit ltd" + }, + { + "cik": 96021, + "symbol": "syy", + "name": "sysco corp" + }, + { + "cik": 1032208, + "symbol": "sre", + "name": "sempra energy" + }, + { + "cik": 723254, + "symbol": "ctas", + "name": "cintas corp" + }, + { + "cik": 1408198, + "symbol": "msci", + "name": "msci inc" + }, + { + "cik": 1002242, + "symbol": "e", + "name": "eni spa" + }, + { + "cik": 1039765, + "symbol": "isg", + "name": "ing groep nv" + }, + { + "cik": 1536278, + "symbol": "gwllf", + "name": "great wall motor co limited adr" + }, + { + "cik": 1605484, + "symbol": "fcau", + "name": "fiat chrysler automobiles nv" + }, + { + "cik": 1384905, + "symbol": "rng", + "name": "ringcentral inc" + }, + { + "cik": 1327567, + "symbol": "panw", + "name": "palo alto networks inc" + }, + { + "cik": 1090872, + "symbol": "a", + "name": "agilent technologies inc" + }, + { + "cik": 1159204, + "symbol": "mtrjf", + "name": "mtr corp ltd" + }, + { + "cik": 40704, + "symbol": "gis", + "name": "general mills inc" + }, + { + "cik": 1279967, + "symbol": "crarf", + "name": "credit agricole s a" + }, + { + "cik": 1390777, + "symbol": "bk", + "name": "bank of new york mellon corp" + }, + { + "cik": 1057352, + "symbol": "csgp", + "name": "costar group inc" + }, + { + "cik": 1065088, + "symbol": "ebayl", + "name": "ebay inc" + }, + { + "cik": 743988, + "symbol": "xlnx", + "name": "xilinx inc" + }, + { + "cik": 1816007, + "symbol": "lu", + "name": "lufax holding ltd" + }, + { + "cik": 1060736, + "symbol": "sgen", + "name": "seagen inc" + }, + { + "cik": 831259, + "symbol": "fcx", + "name": "freeport-mcmoran inc" + }, + { + "cik": 1491703, + "symbol": "schyf", + "name": "sands china ltd adr" + }, + { + "cik": 37996, + "symbol": "f", + "name": "ford motor co" + }, + { + "cik": 1127055, + "symbol": "vivef", + "name": "vivendi" + }, + { + "cik": 72903, + "symbol": "xel", + "name": "xcel energy inc" + }, + { + "cik": 723531, + "symbol": "payx", + "name": "paychex inc" + }, + { + "cik": 86312, + "symbol": "trv", + "name": "travelers companies inc" + }, + { + "cik": 76334, + "symbol": "ph", + "name": "parker hannifin corp" + }, + { + "cik": 1554394, + "symbol": "lngpf", + "name": "longfor group holdings limited adr" + }, + { + "cik": 1466258, + "symbol": "tt", + "name": "trane technologies plc" + }, + { + "cik": 79879, + "symbol": "ppg", + "name": "ppg industries inc" + }, + { + "cik": 1093557, + "symbol": "dxcm", + "name": "dexcom inc" + }, + { + "cik": 1478242, + "symbol": "iqv", + "name": "iqvia holdings inc" + }, + { + "cik": 1618921, + "symbol": "wba", + "name": "walgreens boots alliance inc" + }, + { + "cik": 1561550, + "symbol": "ddog", + "name": "datadog inc" + }, + { + "cik": 1521332, + "symbol": "aptv", + "name": "aptiv plc" + }, + { + "cik": 1071739, + "symbol": "cnc", + "name": "centene corp" + }, + { + "cik": 899866, + "symbol": "alxn", + "name": "alexion pharmaceuticals inc" + }, + { + "cik": 1086888, + "symbol": "mfc", + "name": "manulife financial corp" + }, + { + "cik": 1087423, + "symbol": "rht", + "name": "red hat inc" + }, + { + "cik": 1113169, + "symbol": "trow", + "name": "price t rowe group inc" + }, + { + "cik": 932787, + "symbol": "stm", + "name": "stmicroelectronics nv" + }, + { + "cik": 849395, + "symbol": "crh", + "name": "crh public ltd co" + }, + { + "cik": 1617640, + "symbol": "z", + "name": "zillow group inc" + }, + { + "cik": 312069, + "symbol": "bcs", + "name": "barclays plc" + }, + { + "cik": 1448817, + "symbol": "ovchf", + "name": "oversea-chinese banking corp adr" + }, + { + "cik": 26172, + "symbol": "cmi", + "name": "cummins inc" + }, + { + "cik": 948696, + "symbol": "hcmlf", + "name": "lafargeholcim ltd adr" + }, + { + "cik": 833444, + "symbol": "jci", + "name": "johnson controls international plc" + }, + { + "cik": 1783180, + "symbol": "carr", + "name": "carrier global corp" + }, + { + "cik": 898173, + "symbol": "orly", + "name": "o reilly automotive inc" + }, + { + "cik": 1442145, + "symbol": "vrsk", + "name": "verisk analytics inc" + }, + { + "cik": 1495687, + "symbol": "chbjf", + "name": "china citic bank corp limited adr" + }, + { + "cik": 1800227, + "symbol": "iac", + "name": "iac interactivecorp" + }, + { + "cik": 1294325, + "symbol": "clpbf", + "name": "coloplast a s" + }, + { + "cik": 1260221, + "symbol": "tdg", + "name": "transdigm group inc" + }, + { + "cik": 1041061, + "symbol": "yum", + "name": "yum brands inc" + }, + { + "cik": 1453056, + "symbol": "cgmbf", + "name": "china minsheng banking corp ltd" + }, + { + "cik": 103379, + "symbol": "vfc", + "name": "v f corp" + }, + { + "cik": 842180, + "symbol": "bbva", + "name": "banco bilbao vizcaya argentaria sa" + }, + { + "cik": 899051, + "symbol": "all", + "name": "allstate corp" + }, + { + "cik": 1459580, + "symbol": "zijmf", + "name": "zijin mining group co ltd adr" + }, + { + "cik": 1627168, + "symbol": "pdypf", + "name": "paddy power plc adr" + }, + { + "cik": 1471055, + "symbol": "bsbr", + "name": "banco santander (brasil) sa" + }, + { + "cik": 1335730, + "symbol": "mfg", + "name": "mizuho financial group inc" + }, + { + "cik": 1810997, + "symbol": "xpev", + "name": "xpeng inc" + }, + { + "cik": 1502104, + "symbol": "amadf", + "name": "amadeus it group sa adr" + }, + { + "cik": 1160106, + "symbol": "lyg", + "name": "lloyds banking group plc" + }, + { + "cik": 5272, + "symbol": "aig", + "name": "american international group inc" + }, + { + "cik": 1058057, + "symbol": "mrvl", + "name": "marvell technology group ltd" + }, + { + "cik": 1744676, + "symbol": "tme", + "name": "tencent music entertainment group" + }, + { + "cik": 1167379, + "symbol": "alc", + "name": "alcon inc" + }, + { + "cik": 1038143, + "symbol": "oran", + "name": "orange" + }, + { + "cik": 1136869, + "symbol": "zbh", + "name": "zimmer biomet holdings inc" + }, + { + "cik": 1506307, + "symbol": "kmi", + "name": "kinder morgan inc" + }, + { + "cik": 47217, + "symbol": "hpq", + "name": "hp inc" + }, + { + "cik": 1013462, + "symbol": "anss", + "name": "ansys inc" + }, + { + "cik": 47111, + "symbol": "hsy", + "name": "hershey co" + }, + { + "cik": 1437147, + "symbol": "dboef", + "name": "deutsche boerse" + }, + { + "cik": 943819, + "symbol": "rmd", + "name": "resmed inc" + }, + { + "cik": 1034054, + "symbol": "sbac", + "name": "sba communications corp" + }, + { + "cik": 1060391, + "symbol": "rsg", + "name": "republic services inc" + }, + { + "cik": 1446672, + "symbol": "trumf", + "name": "terumo corp" + }, + { + "cik": 1359519, + "symbol": "svndf", + "name": "seven & i holdings co ltd" + }, + { + "cik": 9389, + "symbol": "bll", + "name": "ball corp" + }, + { + "cik": 4977, + "symbol": "afl", + "name": "aflac inc" + }, + { + "cik": 1802768, + "symbol": "rprx", + "name": "royalty pharma plc" + }, + { + "cik": 1132924, + "symbol": "cht", + "name": "chunghwa telecom co ltd" + }, + { + "cik": 1489393, + "symbol": "lyb", + "name": "lyondellbasell industries nv" + }, + { + "cik": 1159510, + "symbol": "cs", + "name": "credit suisse group ag" + }, + { + "cik": 1477449, + "symbol": "tdoc", + "name": "teladoc health inc" + }, + { + "cik": 87347, + "symbol": "slb", + "name": "schlumberger limited nv" + }, + { + "cik": 1339422, + "symbol": "rdsmy", + "name": "royal dsm nv" + }, + { + "cik": 1137774, + "symbol": "prs", + "name": "prudential financial inc" + }, + { + "cik": 1723690, + "symbol": "bili", + "name": "bilibili inc" + }, + { + "cik": 1534701, + "symbol": "psx", + "name": "phillips 66" + }, + { + "cik": 75362, + "symbol": "pcar", + "name": "paccar inc" + }, + { + "cik": 1411133, + "symbol": "kbcsf", + "name": "kbc group nv" + }, + { + "cik": 900075, + "symbol": "cprt", + "name": "copart inc" + }, + { + "cik": 1755672, + "symbol": "ctva", + "name": "corteva inc" + }, + { + "cik": 885834, + "symbol": "tscdf", + "name": "tesco plc fi" + }, + { + "cik": 1483994, + "symbol": "htht", + "name": "huazhu group ltd" + }, + { + "cik": 1024478, + "symbol": "rok", + "name": "rockwell automation inc" + }, + { + "cik": 93556, + "symbol": "swt", + "name": "stanley black & decker inc" + }, + { + "cik": 72741, + "symbol": "es", + "name": "eversource energy" + }, + { + "cik": 1353283, + "symbol": "splk", + "name": "splunk inc" + }, + { + "cik": 1123799, + "symbol": "wit", + "name": "wipro ltd" + }, + { + "cik": 1585689, + "symbol": "hlt", + "name": "hilton worldwide holdings inc" + }, + { + "cik": 788784, + "symbol": "peg", + "name": "public service enterprise group inc" + }, + { + "cik": 821189, + "symbol": "eog", + "name": "eog resources inc" + }, + { + "cik": 815556, + "symbol": "fast", + "name": "fastenal co" + }, + { + "cik": 68505, + "symbol": "msi", + "name": "motorola solutions inc" + }, + { + "cik": 1781335, + "symbol": "otis", + "name": "otis worldwide corp" + }, + { + "cik": 1454471, + "symbol": "crbjf", + "name": "china resources land ltd adr" + }, + { + "cik": 1616707, + "symbol": "w", + "name": "wayfair inc" + }, + { + "cik": 1095054, + "symbol": "unchf", + "name": "unicharm corp" + }, + { + "cik": 1474968, + "symbol": "gelyf", + "name": "geely automobile holdings limited adr" + }, + { + "cik": 783325, + "symbol": "wec", + "name": "wec energy group inc" + }, + { + "cik": 1791706, + "symbol": "li", + "name": "li auto inc" + }, + { + "cik": 1462886, + "symbol": "ctryf", + "name": "country garden holdings co ltd adr" + }, + { + "cik": 1446437, + "symbol": "yahof", + "name": "yahoo! japan corp" + }, + { + "cik": 1446390, + "symbol": "alpmf", + "name": "astellas pharma inc" + }, + { + "cik": 1713683, + "symbol": "zs", + "name": "zscaler inc" + }, + { + "cik": 1638747, + "symbol": "zldsf", + "name": "zalando se adr" + }, + { + "cik": 24741, + "symbol": "glw", + "name": "corning inc ny" + }, + { + "cik": 1444406, + "symbol": "ec", + "name": "ecopetrol sa" + }, + { + "cik": 1611983, + "symbol": "lbrdp", + "name": "liberty broadband corp" + }, + { + "cik": 1063761, + "symbol": "spg", + "name": "simon property group inc de" + }, + { + "cik": 939380, + "symbol": "rweoy", + "name": "rwe ag fi" + }, + { + "cik": 1017413, + "symbol": "cnq", + "name": "canadian natural resources ltd" + }, + { + "cik": 927653, + "symbol": "mck", + "name": "mckesson corp" + }, + { + "cik": 7084, + "symbol": "adm", + "name": "archer-daniels-midland co" + }, + { + "cik": 866787, + "symbol": "azo", + "name": "autozone inc" + }, + { + "cik": 1379235, + "symbol": "arzgf", + "name": "assicurazioni generali spa" + }, + { + "cik": 1037868, + "symbol": "ame", + "name": "ametek inc" + }, + { + "cik": 1451287, + "symbol": "khngf", + "name": "kuehne & nagel international ag adr" + }, + { + "cik": 1140536, + "symbol": "wltw", + "name": "willis towers watson plc" + }, + { + "cik": 1318220, + "symbol": "wcn", + "name": "waste connections inc" + }, + { + "cik": 1253493, + "symbol": "asazf", + "name": "assa abloy ab" + }, + { + "cik": 764478, + "symbol": "bby", + "name": "best buy co inc" + }, + { + "cik": 1410636, + "symbol": "awk", + "name": "american water works company inc" + }, + { + "cik": 1590955, + "symbol": "payc", + "name": "paycom software inc" + }, + { + "cik": 1037646, + "symbol": "mtd", + "name": "mettler toledo international inc" + }, + { + "cik": 92380, + "symbol": "luv", + "name": "southwest airlines co" + }, + { + "cik": 908937, + "symbol": "siri", + "name": "sirius xm holdings inc" + }, + { + "cik": 1725964, + "symbol": "ntr", + "name": "nutrien ltd" + }, + { + "cik": 1393612, + "symbol": "dfs", + "name": "discover financial services" + }, + { + "cik": 14693, + "symbol": "bfa", + "name": "brown forman corp" + }, + { + "cik": 1477333, + "symbol": "net", + "name": "cloudflare inc" + }, + { + "cik": 1745431, + "symbol": "stne", + "name": "stoneco ltd" + }, + { + "cik": 882184, + "symbol": "dhi", + "name": "horton d r inc de" + }, + { + "cik": 1334687, + "symbol": "cjprf", + "name": "central japan railway co" + }, + { + "cik": 1061736, + "symbol": "fmx", + "name": "mexican economic development inc" + }, + { + "cik": 766704, + "symbol": "well", + "name": "welltower inc" + }, + { + "cik": 1434265, + "symbol": "gmab", + "name": "genmab a s" + }, + { + "cik": 1637120, + "symbol": "ckhuf", + "name": "ck hutchison holdings limited adr" + }, + { + "cik": 1385867, + "symbol": "coup", + "name": "coupa software inc" + }, + { + "cik": 1158089, + "symbol": "gctaf", + "name": "gamesa s a fi" + }, + { + "cik": 844150, + "symbol": "rbs", + "name": "natwest group plc" + }, + { + "cik": 1381197, + "symbol": "ibkr", + "name": "interactive brokers group inc" + }, + { + "cik": 1595085, + "symbol": "egrnf", + "name": "china evergrande group adr" + }, + { + "cik": 1510295, + "symbol": "mpc", + "name": "marathon petroleum corp" + }, + { + "cik": 935703, + "symbol": "dltr", + "name": "dollar tree inc" + }, + { + "cik": 48465, + "symbol": "hrl", + "name": "hormel foods corp de" + }, + { + "cik": 868675, + "symbol": "tu", + "name": "telus corp" + }, + { + "cik": 21076, + "symbol": "clx", + "name": "clorox co de" + }, + { + "cik": 1097362, + "symbol": "slf", + "name": "sun life financial inc" + }, + { + "cik": 1300175, + "symbol": "aonnf", + "name": "aeon co ltd" + }, + { + "cik": 311337, + "symbol": "su", + "name": "suncor energy inc" + }, + { + "cik": 107263, + "symbol": "wmb", + "name": "williams companies inc" + }, + { + "cik": 106535, + "symbol": "wy", + "name": "weyerhaeuser co" + }, + { + "cik": 1370637, + "symbol": "etsy", + "name": "etsy inc" + }, + { + "cik": 27904, + "symbol": "dal", + "name": "delta air lines inc" + }, + { + "cik": 4127, + "symbol": "swks", + "name": "skyworks solutions inc" + }, + { + "cik": 63754, + "symbol": "mkc", + "name": "mccormick & co inc" + }, + { + "cik": 93751, + "symbol": "stt", + "name": "state street corp" + }, + { + "cik": 1764925, + "symbol": "work", + "name": "slack technologies inc" + }, + { + "cik": 1262039, + "symbol": "ftnt", + "name": "fortinet inc" + }, + { + "cik": 1004980, + "symbol": "pcgu", + "name": "pg&e corp" + }, + { + "cik": 1014473, + "symbol": "vrsn", + "name": "verisign inc ca" + }, + { + "cik": 1456346, + "symbol": "fnv", + "name": "franco nevada corp" + }, + { + "cik": 1243429, + "symbol": "mt", + "name": "arcelormittal" + }, + { + "cik": 920760, + "symbol": "len", + "name": "lennar corp new" + }, + { + "cik": 1041130, + "symbol": "dia", + "name": "spdr dow jones industrial average etf trust" + }, + { + "cik": 1776985, + "symbol": "bntx", + "name": "biontech se" + }, + { + "cik": 1012037, + "symbol": "codgf", + "name": "compagnie de saint gobain" + }, + { + "cik": 908829, + "symbol": "peugf", + "name": "peugeot s a fi" + }, + { + "cik": 1333141, + "symbol": "fms", + "name": "fresenius medical care ag & co kgaa" + }, + { + "cik": 1673358, + "symbol": "yumc", + "name": "yum china holdings inc" + }, + { + "cik": 1601046, + "symbol": "keys", + "name": "keysight technologies inc" + }, + { + "cik": 1093028, + "symbol": "ejprf", + "name": "east japan railway co fi" + }, + { + "cik": 1130894, + "symbol": "tyidf", + "name": "toyota industries corp fi" + }, + { + "cik": 1441816, + "symbol": "mdb", + "name": "mongodb inc" + }, + { + "cik": 354190, + "symbol": "ajg", + "name": "arthur j gallagher & co" + }, + { + "cik": 1084656, + "symbol": "capmf", + "name": "cap gemini sa" + }, + { + "cik": 1035443, + "symbol": "are", + "name": "alexandria real estate equities inc" + }, + { + "cik": 804753, + "symbol": "cern", + "name": "cerner corp" + }, + { + "cik": 1544613, + "symbol": "otskf", + "name": "otsuka holdings co ltd adr" + }, + { + "cik": 1517231, + "symbol": "ssmxf", + "name": "sysmex corporation adr" + }, + { + "cik": 1513845, + "symbol": "yndx", + "name": "yandex nv" + }, + { + "cik": 1263521, + "symbol": "szkmf", + "name": "suzuki motor corp" + }, + { + "cik": 33185, + "symbol": "efx", + "name": "equifax inc" + }, + { + "cik": 1132979, + "symbol": "frc", + "name": "first republic bank" + }, + { + "cik": 56873, + "symbol": "kr", + "name": "kroger co" + }, + { + "cik": 1001807, + "symbol": "tlk", + "name": "perusahaan perseroan persero pt telekomunikasi indonesia tbk" + }, + { + "cik": 1651308, + "symbol": "bgne", + "name": "beigene ltd" + }, + { + "cik": 733099, + "symbol": "rci", + "name": "rogers communications inc" + }, + { + "cik": 1047862, + "symbol": "ed", + "name": "consolidated edison inc" + }, + { + "cik": 878927, + "symbol": "odfl", + "name": "old dominion freight line inc" + }, + { + "cik": 946581, + "symbol": "ttwo", + "name": "take two interactive software inc" + }, + { + "cik": 827052, + "symbol": "eix", + "name": "edison international" + }, + { + "cik": 896076, + "symbol": "mgddf", + "name": "michelin compagnie generale des etablissements michelin fi" + }, + { + "cik": 936958, + "symbol": "mdy", + "name": "spdr s&p midcap 400 etf trust" + }, + { + "cik": 743316, + "symbol": "mxim", + "name": "maxim integrated products inc" + }, + { + "cik": 1659166, + "symbol": "ftv", + "name": "fortive corp" + }, + { + "cik": 936340, + "symbol": "dtp", + "name": "dte energy co" + }, + { + "cik": 1436647, + "symbol": "cabhf", + "name": "carlsberg as" + }, + { + "cik": 1436778, + "symbol": "saxpf", + "name": "sampo oyj" + }, + { + "cik": 1121788, + "symbol": "grmn", + "name": "garmin ltd" + }, + { + "cik": 100493, + "symbol": "tsn", + "name": "tyson foods inc" + }, + { + "cik": 1191255, + "symbol": "cha", + "name": "china telecom corp ltd" + }, + { + "cik": 1404912, + "symbol": "kkr", + "name": "kkr & co inc" + }, + { + "cik": 1175454, + "symbol": "flt", + "name": "fleetcor technologies inc" + }, + { + "cik": 1552000, + "symbol": "mplxp", + "name": "mplx lp" + }, + { + "cik": 1463101, + "symbol": "enph", + "name": "enphase energy inc" + }, + { + "cik": 1787425, + "symbol": "xp", + "name": "xp inc" + }, + { + "cik": 1159508, + "symbol": "dzz", + "name": "deutsche bank aktiengesellschaft" + }, + { + "cik": 915912, + "symbol": "avb", + "name": "avalonbay communities inc" + }, + { + "cik": 1740915, + "symbol": "ftch", + "name": "farfetch ltd" + }, + { + "cik": 277135, + "symbol": "gww", + "name": "ww grainger inc" + }, + { + "cik": 1069347, + "symbol": "sgsof", + "name": "sgs societe generale de surveillance holding sa fi" + }, + { + "cik": 1596532, + "symbol": "anet", + "name": "arista networks inc" + }, + { + "cik": 1701605, + "symbol": "bkr", + "name": "baker hughes co" + }, + { + "cik": 1035002, + "symbol": "vlo", + "name": "valero energy corp tx" + }, + { + "cik": 1179029, + "symbol": "gberf", + "name": "geberit ag" + }, + { + "cik": 815097, + "symbol": "ccl", + "name": "carnival corp" + }, + { + "cik": 1269920, + "symbol": "gasnf", + "name": "gas natural sdg sa" + }, + { + "cik": 820027, + "symbol": "amp", + "name": "ameriprise financial inc" + }, + { + "cik": 1640117, + "symbol": "shmdf", + "name": "shimano inc adr" + }, + { + "cik": 1278021, + "symbol": "mktx", + "name": "marketaxess holdings inc" + }, + { + "cik": 1553473, + "symbol": "htngf", + "name": "haitong securities co ltd adr" + }, + { + "cik": 1179493, + "symbol": "nuraf", + "name": "nomura research institute ltd" + }, + { + "cik": 924613, + "symbol": "nok", + "name": "nokia corp" + }, + { + "cik": 813828, + "symbol": "viaca", + "name": "viacomcbs inc" + }, + { + "cik": 906107, + "symbol": "eqr", + "name": "equity residential" + }, + { + "cik": 313927, + "symbol": "chd", + "name": "church & dwight co inc de" + }, + { + "cik": 726728, + "symbol": "o", + "name": "realty income corp" + }, + { + "cik": 1124140, + "symbol": "exas", + "name": "exact sciences corp" + }, + { + "cik": 1038683, + "symbol": "ryaay", + "name": "ryanair holdings plc" + }, + { + "cik": 1792044, + "symbol": "vtrs", + "name": "viatris inc" + }, + { + "cik": 1120193, + "symbol": "ndaq", + "name": "nasdaq inc" + }, + { + "cik": 1450346, + "symbol": "poahf", + "name": "porsche automobil holding se adr" + }, + { + "cik": 55067, + "symbol": "k", + "name": "kellogg co" + }, + { + "cik": 1138118, + "symbol": "cbre", + "name": "cbre group inc" + }, + { + "cik": 895564, + "symbol": "baesf", + "name": "bae systems plc fi" + }, + { + "cik": 105770, + "symbol": "wst", + "name": "west pharmaceutical services inc" + }, + { + "cik": 1650107, + "symbol": "ccep", + "name": "coca-cola european partners plc" + }, + { + "cik": 850918, + "symbol": "gwlof", + "name": "great-west lifeco inc" + }, + { + "cik": 1518258, + "symbol": "ashtf", + "name": "ashtead group plc adr" + }, + { + "cik": 1446641, + "symbol": "mtsff", + "name": "mitsui fudosan co ltd" + }, + { + "cik": 16988, + "symbol": "caj", + "name": "canon inc" + }, + { + "cik": 1436740, + "symbol": "fojcf", + "name": "fortum oyj" + }, + { + "cik": 814052, + "symbol": "tef", + "name": "telefonica s a" + }, + { + "cik": 1772757, + "symbol": "dkngz", + "name": "draftkings inc" + }, + { + "cik": 1445156, + "symbol": "ztcof", + "name": "zte corp" + }, + { + "cik": 1702780, + "symbol": "atus", + "name": "altice usa inc" + }, + { + "cik": 1061574, + "symbol": "gib", + "name": "cgi inc" + }, + { + "cik": 877212, + "symbol": "zbra", + "name": "zebra technologies corp" + }, + { + "cik": 922224, + "symbol": "ppx", + "name": "ppl corp" + }, + { + "cik": 3124, + "symbol": "akzof", + "name": "akzo nobel nv" + }, + { + "cik": 1033767, + "symbol": "umc", + "name": "united microelectronics corp" + }, + { + "cik": 1438571, + "symbol": "frrvf", + "name": "cintra concesiones de infraestructuras" + }, + { + "cik": 84839, + "symbol": "rol", + "name": "rollins inc" + }, + { + "cik": 1352010, + "symbol": "epam", + "name": "epam systems inc" + }, + { + "cik": 749098, + "symbol": "mga", + "name": "magna international inc" + }, + { + "cik": 920148, + "symbol": "lh", + "name": "laboratory corp of america holdings" + }, + { + "cik": 1448613, + "symbol": "svnlf", + "name": "svenska handelsbanken ab" + }, + { + "cik": 1140859, + "symbol": "abc", + "name": "amerisourcebergen corp" + }, + { + "cik": 1290640, + "symbol": "ucbjf", + "name": "ucb sa" + }, + { + "cik": 97210, + "symbol": "ter", + "name": "teradyne inc" + }, + { + "cik": 1550635, + "symbol": "cghof", + "name": "china gas holdings ltd adr" + }, + { + "cik": 1269238, + "symbol": "tcom", + "name": "tripcom group ltd" + }, + { + "cik": 1450682, + "symbol": "tlpff", + "name": "teleperformance sa adr" + }, + { + "cik": 51434, + "symbol": "ip", + "name": "international paper co new" + }, + { + "cik": 1601712, + "symbol": "syf", + "name": "synchrony financial" + }, + { + "cik": 1809122, + "symbol": "cvac", + "name": "curevac nv" + }, + { + "cik": 889132, + "symbol": "pkx", + "name": "posco" + }, + { + "cik": 1072670, + "symbol": "imbbf", + "name": "imperial tobacco group plc" + }, + { + "cik": 879169, + "symbol": "incy", + "name": "incyte corp" + }, + { + "cik": 65984, + "symbol": "etr", + "name": "entergy corp de" + }, + { + "cik": 1404655, + "symbol": "hubs", + "name": "hubspot inc" + }, + { + "cik": 859737, + "symbol": "holx", + "name": "hologic inc" + }, + { + "cik": 35527, + "symbol": "fitbp", + "name": "fifth third bancorp" + }, + { + "cik": 1319161, + "symbol": "wmg", + "name": "warner music group corp" + }, + { + "cik": 1454175, + "symbol": "fandf", + "name": "firstrand ltd adr" + }, + { + "cik": 1722401, + "symbol": "thlef", + "name": "thales sa adr" + }, + { + "cik": 719739, + "symbol": "sivbp", + "name": "svb financial group" + }, + { + "cik": 1699150, + "symbol": "ir", + "name": "ingersoll rand inc" + }, + { + "cik": 1666175, + "symbol": "fts", + "name": "fortis inc" + }, + { + "cik": 1396009, + "symbol": "vmc", + "name": "vulcan materials co" + }, + { + "cik": 1002910, + "symbol": "aee", + "name": "ameren corp" + }, + { + "cik": 1809519, + "symbol": "gdrx", + "name": "goodrx holdings inc" + }, + { + "cik": 73124, + "symbol": "ntrso", + "name": "northern trust corp" + }, + { + "cik": 1552033, + "symbol": "tru", + "name": "transunion" + }, + { + "cik": 1604982, + "symbol": "sbmff", + "name": "sino biopharmaceutical limited adr" + }, + { + "cik": 1015922, + "symbol": "chkp", + "name": "check point software technologies ltd" + }, + { + "cik": 1402057, + "symbol": "cdw", + "name": "cdw corp" + }, + { + "cik": 1323404, + "symbol": "wpm", + "name": "wheaton precious metals corp" + }, + { + "cik": 1604778, + "symbol": "qrvo", + "name": "qorvo inc" + }, + { + "cik": 1070304, + "symbol": "ix", + "name": "orix corp" + }, + { + "cik": 1618756, + "symbol": "qsr", + "name": "restaurant brands international inc" + }, + { + "cik": 96943, + "symbol": "tfx", + "name": "teleflex inc" + }, + { + "cik": 1764046, + "symbol": "ccc", + "name": "clarivate plc" + }, + { + "cik": 740260, + "symbol": "vtr", + "name": "ventas inc" + }, + { + "cik": 54480, + "symbol": "ksu", + "name": "kansas city southern" + }, + { + "cik": 1402436, + "symbol": "ssnc", + "name": "ss&c technologies holdings inc" + }, + { + "cik": 1452191, + "symbol": "weicf", + "name": "weichai power co ltd adr" + }, + { + "cik": 1794515, + "symbol": "zi", + "name": "zoominfo technologies inc" + }, + { + "cik": 1748790, + "symbol": "amcr", + "name": "amcor plc" + }, + { + "cik": 1712807, + "symbol": "pags", + "name": "pagseguro digital ltd" + }, + { + "cik": 1437771, + "symbol": "snmrf", + "name": "snam rete gas spa" + }, + { + "cik": 1524472, + "symbol": "xyl", + "name": "xylem inc" + }, + { + "cik": 1444718, + "symbol": "syief", + "name": "symrise ag" + }, + { + "cik": 845982, + "symbol": "snn", + "name": "smith & nephew plc" + }, + { + "cik": 1526125, + "symbol": "gds", + "name": "gds holdings ltd" + }, + { + "cik": 1038357, + "symbol": "pxd", + "name": "pioneer natural resources co" + }, + { + "cik": 29905, + "symbol": "dov", + "name": "dover corp" + }, + { + "cik": 860731, + "symbol": "tyl", + "name": "tyler technologies inc" + }, + { + "cik": 1511737, + "symbol": "ui", + "name": "ubiquiti inc" + }, + { + "cik": 23217, + "symbol": "cag", + "name": "conagra brands inc" + }, + { + "cik": 1438569, + "symbol": "grfs", + "name": "grifols sa" + }, + { + "cik": 1445161, + "symbol": "cicof", + "name": "cosco shipping holdings co ltd adr" + }, + { + "cik": 916365, + "symbol": "tsco", + "name": "tractor supply co de" + }, + { + "cik": 1113866, + "symbol": "chu", + "name": "china unicom (hong kong) ltd" + }, + { + "cik": 1529192, + "symbol": "vips", + "name": "vipshop holdings ltd" + }, + { + "cik": 1276187, + "symbol": "et", + "name": "energy transfer lp" + }, + { + "cik": 1324424, + "symbol": "expe", + "name": "expedia group inc" + }, + { + "cik": 1645113, + "symbol": "nvcr", + "name": "novocure ltd" + }, + { + "cik": 12208, + "symbol": "bio", + "name": "bio-rad laboratories inc" + }, + { + "cik": 1086222, + "symbol": "akam", + "name": "akamai technologies inc" + }, + { + "cik": 711404, + "symbol": "coo", + "name": "cooper companies inc" + }, + { + "cik": 1596783, + "symbol": "ctlt", + "name": "catalent inc" + }, + { + "cik": 1246135, + "symbol": "rnecf", + "name": "nec electronics corp" + }, + { + "cik": 1278680, + "symbol": "iau", + "name": "ishares gold trust" + }, + { + "cik": 1383312, + "symbol": "br", + "name": "broadridge financial solutions inc" + }, + { + "cik": 1039684, + "symbol": "oke", + "name": "oneok inc new" + }, + { + "cik": 2809, + "symbol": "aem", + "name": "agnico eagle mines ltd" + }, + { + "cik": 874766, + "symbol": "hgh", + "name": "hartford financial services group inc" + }, + { + "cik": 916076, + "symbol": "mlm", + "name": "martin marietta materials inc" + }, + { + "cik": 1577526, + "symbol": "ai", + "name": "c3ai inc" + }, + { + "cik": 1003935, + "symbol": "nice", + "name": "nice ltd" + }, + { + "cik": 45012, + "symbol": "hal", + "name": "halliburton co" + }, + { + "cik": 1159152, + "symbol": "jhx", + "name": "james hardie industries plc" + }, + { + "cik": 1281721, + "symbol": "sgiof", + "name": "shionogi & co ltd" + }, + { + "cik": 1145197, + "symbol": "podd", + "name": "insulet corp" + }, + { + "cik": 1463172, + "symbol": "zen", + "name": "zendesk inc" + }, + { + "cik": 1169870, + "symbol": "tlsnf", + "name": "telia co ab" + }, + { + "cik": 1567094, + "symbol": "cnhi", + "name": "cnh industrial nv" + }, + { + "cik": 864749, + "symbol": "trmb", + "name": "trimble inc" + }, + { + "cik": 1062066, + "symbol": "aomff", + "name": "alstom" + }, + { + "cik": 1419612, + "symbol": "sedg", + "name": "solaredge technologies inc" + }, + { + "cik": 811156, + "symbol": "cmsd", + "name": "cms energy corp" + }, + { + "cik": 1383650, + "symbol": "cqp", + "name": "cheniere energy partners lp" + }, + { + "cik": 46619, + "symbol": "hei", + "name": "heico corp" + }, + { + "cik": 1446747, + "symbol": "ppccf", + "name": "picc property & casualty co ltd" + }, + { + "cik": 1067701, + "symbol": "uri", + "name": "united rentals inc" + }, + { + "cik": 1137789, + "symbol": "stx", + "name": "seagate technology plc" + }, + { + "cik": 877890, + "symbol": "ctxs", + "name": "citrix systems inc" + }, + { + "cik": 1022079, + "symbol": "dgx", + "name": "quest diagnostics inc" + }, + { + "cik": 1579298, + "symbol": "burl", + "name": "burlington stores inc" + }, + { + "cik": 1687229, + "symbol": "invh", + "name": "invitation homes inc" + }, + { + "cik": 1031296, + "symbol": "fe", + "name": "firstenergy corp" + }, + { + "cik": 1449594, + "symbol": "whlkf", + "name": "wheelock & co ltd" + }, + { + "cik": 1032975, + "symbol": "logi", + "name": "logitech international sa" + }, + { + "cik": 1754301, + "symbol": "fox", + "name": "fox corp" + }, + { + "cik": 1131345, + "symbol": "nvzmf", + "name": "novozymes as fi" + }, + { + "cik": 1770787, + "symbol": "txg", + "name": "10x genomics inc" + }, + { + "cik": 1450681, + "symbol": "sonvf", + "name": "sonova holding ag adr" + }, + { + "cik": 1560385, + "symbol": "batrk", + "name": "liberty media corp" + }, + { + "cik": 1178670, + "symbol": "alny", + "name": "alnylam pharmaceuticals inc" + }, + { + "cik": 1048477, + "symbol": "bmrn", + "name": "biomarin pharmaceutical inc" + }, + { + "cik": 746515, + "symbol": "expd", + "name": "expeditors international of washington inc" + }, + { + "cik": 73309, + "symbol": "nue", + "name": "nucor corp" + }, + { + "cik": 1725057, + "symbol": "cday", + "name": "ceridian hcm holding inc" + }, + { + "cik": 1015650, + "symbol": "skm", + "name": "sk telecom co ltd" + }, + { + "cik": 4447, + "symbol": "hes", + "name": "hess corp" + }, + { + "cik": 765880, + "symbol": "peak", + "name": "healthpeak properties inc" + }, + { + "cik": 1280452, + "symbol": "mpwr", + "name": "monolithic power systems inc" + }, + { + "cik": 203527, + "symbol": "var", + "name": "varian medical systems inc" + }, + { + "cik": 98246, + "symbol": "tif", + "name": "tiffany & co" + }, + { + "cik": 1445930, + "symbol": "kb", + "name": "kb financial group inc" + }, + { + "cik": 912593, + "symbol": "sui", + "name": "sun communities inc" + }, + { + "cik": 800364, + "symbol": "fujhf", + "name": "fuji heavy industries ltd fi" + }, + { + "cik": 1722482, + "symbol": "avtr", + "name": "avantor inc" + }, + { + "cik": 797468, + "symbol": "oxy", + "name": "occidental petroleum corp de" + }, + { + "cik": 721371, + "symbol": "cah", + "name": "cardinal health inc" + }, + { + "cik": 1759509, + "symbol": "lyft", + "name": "lyft inc" + }, + { + "cik": 1286681, + "symbol": "dpz", + "name": "dominos pizza inc" + }, + { + "cik": 1163653, + "symbol": "nmr", + "name": "nomura holdings inc" + }, + { + "cik": 31791, + "symbol": "pki", + "name": "perkinelmer inc" + }, + { + "cik": 906163, + "symbol": "nvr", + "name": "nvr inc" + }, + { + "cik": 884887, + "symbol": "rcl", + "name": "royal caribbean cruises ltd" + }, + { + "cik": 1757898, + "symbol": "ste", + "name": "steris plc" + }, + { + "cik": 940944, + "symbol": "dri", + "name": "darden restaurants inc" + }, + { + "cik": 1535628, + "symbol": "cixpf", + "name": "caixabank adr" + }, + { + "cik": 915913, + "symbol": "alb", + "name": "albemarle corp" + }, + { + "cik": 1348036, + "symbol": "avlr", + "name": "avalara inc" + }, + { + "cik": 36270, + "symbol": "mtb", + "name": "m&t bank corp" + }, + { + "cik": 1454948, + "symbol": "xngsf", + "name": "enn energy holdings ltd adr" + }, + { + "cik": 1590895, + "symbol": "eri", + "name": "caesars entertainment inc" + }, + { + "cik": 1263043, + "symbol": "shg", + "name": "shinhan financial group co ltd" + }, + { + "cik": 887225, + "symbol": "kep", + "name": "korea electric power corp" + }, + { + "cik": 91576, + "symbol": "key", + "name": "keycorp new" + }, + { + "cik": 1335258, + "symbol": "lyv", + "name": "live nation entertainment inc" + }, + { + "cik": 1564406, + "symbol": "osh", + "name": "oak street health inc" + }, + { + "cik": 1125259, + "symbol": "cuk", + "name": "carnival plc" + }, + { + "cik": 920522, + "symbol": "ess", + "name": "essex property trust inc" + }, + { + "cik": 1000697, + "symbol": "wat", + "name": "waters corp de" + }, + { + "cik": 940821, + "symbol": "ophlf", + "name": "ono pharmaceutical co ltd" + }, + { + "cik": 1306830, + "symbol": "ce", + "name": "celanese corp" + }, + { + "cik": 1001082, + "symbol": "dish", + "name": "dish network corp" + }, + { + "cik": 874761, + "symbol": "aes", + "name": "aes corp" + }, + { + "cik": 1436965, + "symbol": "cwycf", + "name": "china railway construction corp ltd" + }, + { + "cik": 1170010, + "symbol": "kmx", + "name": "carmax inc" + }, + { + "cik": 1576789, + "symbol": "wix", + "name": "wixcom ltd" + }, + { + "cik": 106040, + "symbol": "wdc", + "name": "western digital corp" + }, + { + "cik": 1822250, + "symbol": "wish", + "name": "contextlogic inc" + }, + { + "cik": 909327, + "symbol": "suz", + "name": "suzano sa" + }, + { + "cik": 1492426, + "symbol": "hznp", + "name": "horizon therapeutics public ltd co" + }, + { + "cik": 1645590, + "symbol": "hpe", + "name": "hewlett packard enterprise co" + }, + { + "cik": 814547, + "symbol": "fico", + "name": "fair isaac corp" + }, + { + "cik": 789570, + "symbol": "mgm", + "name": "mgm resorts international" + }, + { + "cik": 1403568, + "symbol": "ulta", + "name": "ulta beauty inc" + }, + { + "cik": 1066119, + "symbol": "viv", + "name": "telefonica brasil sa" + }, + { + "cik": 1758730, + "symbol": "tw", + "name": "tradeweb markets inc" + }, + { + "cik": 1289490, + "symbol": "exr", + "name": "extra space storage inc" + }, + { + "cik": 1400691, + "symbol": "hlbzf", + "name": "heidelbergcement ag" + }, + { + "cik": 832101, + "symbol": "iex", + "name": "idex corp de" + }, + { + "cik": 921738, + "symbol": "penn", + "name": "penn national gaming inc" + }, + { + "cik": 945841, + "symbol": "pool", + "name": "pool corp" + }, + { + "cik": 1093691, + "symbol": "plug", + "name": "plug power inc" + }, + { + "cik": 1281761, + "symbol": "rf", + "name": "regions financial corp" + }, + { + "cik": 62996, + "symbol": "mas", + "name": "masco corp de" + }, + { + "cik": 1002047, + "symbol": "ntap", + "name": "netapp inc" + }, + { + "cik": 728535, + "symbol": "jbht", + "name": "hunt j b transport services inc" + }, + { + "cik": 72127, + "symbol": "nipnf", + "name": "nec corp" + }, + { + "cik": 37785, + "symbol": "fmc", + "name": "fmc corp" + }, + { + "cik": 1406234, + "symbol": "bip", + "name": "brookfield infrastructure partners lp" + }, + { + "cik": 937556, + "symbol": "masi", + "name": "masimo corp" + }, + { + "cik": 783280, + "symbol": "dre", + "name": "duke realty corp" + }, + { + "cik": 759944, + "symbol": "cfg", + "name": "citizens financial group inc ri" + }, + { + "cik": 1437775, + "symbol": "atasf", + "name": "atlantia spa" + }, + { + "cik": 1336920, + "symbol": "ldos", + "name": "leidos holdings inc" + }, + { + "cik": 1446597, + "symbol": "dqjcf", + "name": "don quijote holdings co ltd" + }, + { + "cik": 1527249, + "symbol": "prdsf", + "name": "prada spa adr" + }, + { + "cik": 3570, + "symbol": "lng", + "name": "cheniere energy inc" + }, + { + "cik": 1697862, + "symbol": "argx", + "name": "argenx se" + }, + { + "cik": 16732, + "symbol": "cpb", + "name": "campbell soup co" + }, + { + "cik": 1037540, + "symbol": "bxp", + "name": "boston properties inc" + }, + { + "cik": 1448985, + "symbol": "cccgf", + "name": "china communications construction co" + }, + { + "cik": 1609711, + "symbol": "gddy", + "name": "godaddy inc" + }, + { + "cik": 1438844, + "symbol": "swsdf", + "name": "swiss life holding" + }, + { + "cik": 912595, + "symbol": "maa", + "name": "mid america apartment communities inc" + }, + { + "cik": 1474735, + "symbol": "gnrc", + "name": "generac holdings inc" + }, + { + "cik": 1739104, + "symbol": "elat", + "name": "elanco animal health inc" + }, + { + "cik": 40987, + "symbol": "gpc", + "name": "genuine parts co" + }, + { + "cik": 1581671, + "symbol": "ednmf", + "name": "edenred adr" + }, + { + "cik": 873303, + "symbol": "srpt", + "name": "sarepta therapeutics inc" + }, + { + "cik": 851205, + "symbol": "cgnx", + "name": "cognex corp" + }, + { + "cik": 947484, + "symbol": "acglo", + "name": "arch capital group ltd" + }, + { + "cik": 857005, + "symbol": "ptc", + "name": "ptc inc" + }, + { + "cik": 1445159, + "symbol": "hrelf", + "name": "haier electronics group co ltd adr" + }, + { + "cik": 1094285, + "symbol": "tdy", + "name": "teledyne technologies inc" + }, + { + "cik": 749251, + "symbol": "it", + "name": "gartner inc" + }, + { + "cik": 1627014, + "symbol": "bki", + "name": "black knight inc" + }, + { + "cik": 1705696, + "symbol": "vici", + "name": "vici properties inc" + }, + { + "cik": 1707753, + "symbol": "estc", + "name": "elastic nv" + }, + { + "cik": 52988, + "symbol": "j", + "name": "jacobs engineering group inc de" + }, + { + "cik": 1634997, + "symbol": "agr", + "name": "avangrid inc" + }, + { + "cik": 943452, + "symbol": "wab", + "name": "westinghouse air brake technologies corp" + }, + { + "cik": 1469367, + "symbol": "run", + "name": "sunrun inc" + }, + { + "cik": 915389, + "symbol": "emn", + "name": "eastman chemical co" + }, + { + "cik": 1690981, + "symbol": "nngpf", + "name": "nn group nv adr" + }, + { + "cik": 815094, + "symbol": "abmd", + "name": "abiomed inc" + }, + { + "cik": 1570585, + "symbol": "lbtyb", + "name": "liberty global plc" + }, + { + "cik": 1576280, + "symbol": "gh", + "name": "guardant health inc" + }, + { + "cik": 1438845, + "symbol": "swgaf", + "name": "swatch group ag adr" + }, + { + "cik": 1545772, + "symbol": "bpypo", + "name": "brookfield property partners lp" + }, + { + "cik": 1632127, + "symbol": "cabo", + "name": "cable one inc" + }, + { + "cik": 1065989, + "symbol": "ckisf", + "name": "ck infrastructure holdings limited adr" + }, + { + "cik": 1096343, + "symbol": "mkl", + "name": "markel corp" + }, + { + "cik": 20286, + "symbol": "cinf", + "name": "cincinnati financial corp" + }, + { + "cik": 49938, + "symbol": "imo", + "name": "imperial oil ltd" + }, + { + "cik": 1342237, + "symbol": "mtuaf", + "name": "mtu aero engines holding ag" + }, + { + "cik": 1776967, + "symbol": "ntco", + "name": "natura &co holding sa" + }, + { + "cik": 1546066, + "symbol": "pba", + "name": "pembina pipeline corp" + }, + { + "cik": 1101302, + "symbol": "entg", + "name": "entegris inc" + }, + { + "cik": 1219601, + "symbol": "cck", + "name": "crown holdings inc" + }, + { + "cik": 1097864, + "symbol": "on", + "name": "on semiconductor corp" + }, + { + "cik": 909037, + "symbol": "sqm", + "name": "chemical & mining co of chile inc" + }, + { + "cik": 91419, + "symbol": "sjm", + "name": "j m smucker co" + }, + { + "cik": 922621, + "symbol": "erie", + "name": "erie indemnity co" + }, + { + "cik": 1555574, + "symbol": "cjewf", + "name": "chow tai fook jewellery group limited adr" + }, + { + "cik": 1126328, + "symbol": "pfg", + "name": "principal financial group inc" + }, + { + "cik": 806968, + "symbol": "wpp", + "name": "wpp plc" + }, + { + "cik": 79282, + "symbol": "bro", + "name": "brown & brown inc" + }, + { + "cik": 927066, + "symbol": "dva", + "name": "davita inc" + }, + { + "cik": 1001290, + "symbol": "bap", + "name": "credicorp ltd" + }, + { + "cik": 29989, + "symbol": "omc", + "name": "omnicom group inc" + }, + { + "cik": 720005, + "symbol": "rjf", + "name": "raymond james financial inc" + }, + { + "cik": 1043277, + "symbol": "chrw", + "name": "c h robinson worldwide inc" + }, + { + "cik": 353991, + "symbol": "ndekf", + "name": "nitto denko corp adr" + }, + { + "cik": 40729, + "symbol": "ally", + "name": "ally financial inc" + }, + { + "cik": 1583055, + "symbol": "monoy", + "name": "monotaro co ltd adr" + }, + { + "cik": 1416039, + "symbol": "rnsdf", + "name": "renault sa unsponsored adr facility" + }, + { + "cik": 75677, + "symbol": "pkg", + "name": "packaging corp of america" + }, + { + "cik": 1001474, + "symbol": "kkpnf", + "name": "koninklijke kpn n v" + }, + { + "cik": 1768259, + "symbol": "gsx", + "name": "gsx techedu inc" + }, + { + "cik": 8818, + "symbol": "avy", + "name": "avery dennison corp" + }, + { + "cik": 46080, + "symbol": "has", + "name": "hasbro inc" + }, + { + "cik": 1163417, + "symbol": "dvdcf", + "name": "davide campari-milano nv" + }, + { + "cik": 849399, + "symbol": "nlok", + "name": "nortonlifelock inc" + }, + { + "cik": 1722608, + "symbol": "iq", + "name": "iqiyi inc" + }, + { + "cik": 1793294, + "symbol": "ppd", + "name": "ppd inc" + }, + { + "cik": 100517, + "symbol": "ual", + "name": "united airlines holdings inc" + }, + { + "cik": 1013237, + "symbol": "fds", + "name": "factset research systems inc" + }, + { + "cik": 1100682, + "symbol": "crl", + "name": "charles river laboratories international inc" + }, + { + "cik": 1773383, + "symbol": "dt", + "name": "dynatrace inc" + }, + { + "cik": 1002517, + "symbol": "nuan", + "name": "nuance communications inc" + }, + { + "cik": 352541, + "symbol": "lnt", + "name": "alliant energy corp" + }, + { + "cik": 949870, + "symbol": "sam", + "name": "boston beer co inc" + }, + { + "cik": 1703057, + "symbol": "abcl", + "name": "abcellera biologics inc" + }, + { + "cik": 1786352, + "symbol": "bill", + "name": "billcom holdings inc" + }, + { + "cik": 1041668, + "symbol": "znh", + "name": "china southern airlines co ltd" + }, + { + "cik": 1002638, + "symbol": "otex", + "name": "open text corp" + }, + { + "cik": 1462456, + "symbol": "fosuf", + "name": "fosun international ltd adr" + }, + { + "cik": 49196, + "symbol": "hbano", + "name": "huntington bancshares inc md" + }, + { + "cik": 1559460, + "symbol": "yaskf", + "name": "yaskawa electric corp adr" + }, + { + "cik": 1444714, + "symbol": "iktsf", + "name": "intertek group plc" + }, + { + "cik": 38777, + "symbol": "ben", + "name": "franklin resources inc" + }, + { + "cik": 842023, + "symbol": "tech", + "name": "bio-techne corp" + }, + { + "cik": 912505, + "symbol": "enia", + "name": "enel americas sa" + }, + { + "cik": 1025378, + "symbol": "wpc", + "name": "w p carey inc" + }, + { + "cik": 1444147, + "symbol": "szevf", + "name": "suez environnement co sa" + }, + { + "cik": 1288847, + "symbol": "fivn", + "name": "five9 inc" + }, + { + "cik": 1437107, + "symbol": "discb", + "name": "discovery inc" + }, + { + "cik": 51253, + "symbol": "ifft", + "name": "international flavors & fragrances inc" + }, + { + "cik": 1050952, + "symbol": "pgpef", + "name": "publicis groupe sa" + }, + { + "cik": 1450280, + "symbol": "aeoxf", + "name": "aeroports de paris sa adr" + }, + { + "cik": 1555207, + "symbol": "crggf", + "name": "china resources gas group limited adr" + }, + { + "cik": 1475011, + "symbol": "jbarf", + "name": "julius baer group ltd" + }, + { + "cik": 1179929, + "symbol": "moh", + "name": "molina healthcare inc" + }, + { + "cik": 1570932, + "symbol": "iliaf", + "name": "iliad sa adr" + }, + { + "cik": 1519751, + "symbol": "fbhs", + "name": "fortune brands home & security inc" + }, + { + "cik": 822416, + "symbol": "phm", + "name": "pultegroup inc mi" + }, + { + "cik": 1174922, + "symbol": "wynn", + "name": "wynn resorts ltd" + }, + { + "cik": 42888, + "symbol": "ggg", + "name": "graco inc" + }, + { + "cik": 1533945, + "symbol": "bntgf", + "name": "brenntag ag adr" + }, + { + "cik": 1674416, + "symbol": "crsp", + "name": "crispr therapeutics ag" + }, + { + "cik": 1758057, + "symbol": "gmhiw", + "name": "luminar technologies inc de" + }, + { + "cik": 1364954, + "symbol": "chgg", + "name": "chegg inc" + }, + { + "cik": 1446702, + "symbol": "ubsff", + "name": "ubisoft entertainment sa" + }, + { + "cik": 1446656, + "symbol": "kikof", + "name": "kikkoman corp" + }, + { + "cik": 1112439, + "symbol": "ranjf", + "name": "randstad holding nv fi" + }, + { + "cik": 1443646, + "symbol": "bah", + "name": "booz allen hamilton holding corp" + }, + { + "cik": 1438930, + "symbol": "amigf", + "name": "admiral group" + }, + { + "cik": 800928, + "symbol": "nwwdf", + "name": "new world development co ltd fi" + }, + { + "cik": 1576263, + "symbol": "mrtx", + "name": "mirati therapeutics inc" + }, + { + "cik": 1537547, + "symbol": "smfky", + "name": "smurfit kappa group plc adr" + }, + { + "cik": 1015820, + "symbol": "qgen", + "name": "qiagen nv" + }, + { + "cik": 1513977, + "symbol": "coihf", + "name": "croda international plc adr" + }, + { + "cik": 1711269, + "symbol": "evrg", + "name": "evergy inc" + }, + { + "cik": 925428, + "symbol": "ggdvf", + "name": "guangdong investment ltd fi" + }, + { + "cik": 1517413, + "symbol": "fsly", + "name": "fastly inc" + }, + { + "cik": 60086, + "symbol": "l", + "name": "loews corp" + }, + { + "cik": 1122411, + "symbol": "asx", + "name": "ase technology holding co ltd" + }, + { + "cik": 779152, + "symbol": "jkhy", + "name": "henry jack & associates inc" + }, + { + "cik": 1551402, + "symbol": "stmnf", + "name": "sumitomo metal mining co ltd adr" + }, + { + "cik": 813762, + "symbol": "iep", + "name": "icahn enterprises lp" + }, + { + "cik": 106640, + "symbol": "whr", + "name": "whirlpool corp de" + }, + { + "cik": 1111928, + "symbol": "ipgp", + "name": "ipg photonics corp" + }, + { + "cik": 11544, + "symbol": "wrb", + "name": "berkley w r corp" + }, + { + "cik": 1043219, + "symbol": "nly", + "name": "annaly capital management inc" + }, + { + "cik": 731802, + "symbol": "ato", + "name": "atmos energy corp" + }, + { + "cik": 1135951, + "symbol": "rdy", + "name": "dr reddys laboratories ltd" + }, + { + "cik": 110621, + "symbol": "rpm", + "name": "rpm international inc de" + }, + { + "cik": 1527636, + "symbol": "athm", + "name": "autohome inc" + }, + { + "cik": 1287865, + "symbol": "mpw", + "name": "medical properties trust inc" + }, + { + "cik": 1591698, + "symbol": "pcty", + "name": "paylocity holding corp" + }, + { + "cik": 352915, + "symbol": "uhs", + "name": "universal health services inc" + }, + { + "cik": 72331, + "symbol": "ndsn", + "name": "nordson corp" + }, + { + "cik": 1732845, + "symbol": "wrk", + "name": "westrock co" + }, + { + "cik": 4281, + "symbol": "hwm", + "name": "howmet aerospace inc" + }, + { + "cik": 1515673, + "symbol": "rare", + "name": "ultragenyx pharmaceutical inc" + }, + { + "cik": 1558633, + "symbol": "cchgy", + "name": "coca-cola hbc ag" + }, + { + "cik": 1439580, + "symbol": "psmmf", + "name": "persimmon" + }, + { + "cik": 1477038, + "symbol": "umicf", + "name": "umicore adr" + }, + { + "cik": 1487533, + "symbol": "jxhgf", + "name": "eneos holdings inc adr" + }, + { + "cik": 1786909, + "symbol": "sbysf", + "name": "sibanye stillwater ltd" + }, + { + "cik": 895419, + "symbol": "cree", + "name": "cree inc" + }, + { + "cik": 1799208, + "symbol": "dnb", + "name": "dun & bradstreet holdings inc" + }, + { + "cik": 801645, + "symbol": "maruf", + "name": "marubeni corp fi" + }, + { + "cik": 1130310, + "symbol": "cnp", + "name": "centerpoint energy inc" + }, + { + "cik": 818479, + "symbol": "xray", + "name": "dentsply sirona inc" + }, + { + "cik": 1679273, + "symbol": "lw", + "name": "lamb weston holdings inc" + }, + { + "cik": 1533232, + "symbol": "bep", + "name": "brookfield renewable partners lp" + }, + { + "cik": 1331875, + "symbol": "fnf", + "name": "fidelity national financial inc" + }, + { + "cik": 895417, + "symbol": "els", + "name": "equity lifestyle properties inc" + }, + { + "cik": 1713443, + "symbol": "kl", + "name": "kirkland lake gold ltd" + }, + { + "cik": 863344, + "symbol": "alfvf", + "name": "alfa laval ab fi" + }, + { + "cik": 1005284, + "symbol": "oled", + "name": "universal display corp pa" + }, + { + "cik": 1714899, + "symbol": "dnli", + "name": "denali therapeutics inc" + }, + { + "cik": 858446, + "symbol": "ihg", + "name": "intercontinental hotels group plc new" + }, + { + "cik": 1441683, + "symbol": "appn", + "name": "appian corp" + }, + { + "cik": 1274494, + "symbol": "fslr", + "name": "first solar inc" + }, + { + "cik": 1358071, + "symbol": "cxo", + "name": "concho resources inc" + }, + { + "cik": 1587200, + "symbol": "stbff", + "name": "suntory beverage & food limited adr" + }, + { + "cik": 825542, + "symbol": "smg", + "name": "scotts miracle-gro co" + }, + { + "cik": 1704292, + "symbol": "zlab", + "name": "zai lab ltd" + }, + { + "cik": 1819580, + "symbol": "ysg", + "name": "yatsen holding ltd" + }, + { + "cik": 78128, + "symbol": "wtrg", + "name": "essential utilities inc" + }, + { + "cik": 1013857, + "symbol": "pega", + "name": "pegasystems inc" + }, + { + "cik": 1333986, + "symbol": "eqh", + "name": "equitable holdings inc" + }, + { + "cik": 1453732, + "symbol": "siely", + "name": "shanghai electric group co ltd adr" + }, + { + "cik": 1555379, + "symbol": "siopf", + "name": "shimao group holdings limited adr" + }, + { + "cik": 1450278, + "symbol": "cnpaf", + "name": "cnp assurances sa adr" + }, + { + "cik": 1546084, + "symbol": "zliof", + "name": "zoomlion heavy industry science & technology co ltd adr" + }, + { + "cik": 74208, + "symbol": "udr", + "name": "udr inc" + }, + { + "cik": 1411494, + "symbol": "apo", + "name": "apollo global management inc" + }, + { + "cik": 1439124, + "symbol": "ebr", + "name": "brazilian electric power co" + }, + { + "cik": 1527166, + "symbol": "cg", + "name": "carlyle group inc" + }, + { + "cik": 1065696, + "symbol": "lkq", + "name": "lkq corp" + }, + { + "cik": 1636804, + "symbol": "rmsyf", + "name": "ramsay health care limited adr" + }, + { + "cik": 812011, + "symbol": "mtn", + "name": "vail resorts inc" + }, + { + "cik": 1438654, + "symbol": "rdeif", + "name": "red electrica corporacion sa adr" + }, + { + "cik": 95227, + "symbol": "smtof", + "name": "sumitomo electric industries ltd adr" + }, + { + "cik": 1048695, + "symbol": "ffiv", + "name": "f5 networks inc" + }, + { + "cik": 1158449, + "symbol": "aap", + "name": "advance auto parts inc" + }, + { + "cik": 1439404, + "symbol": "znga", + "name": "zynga inc" + }, + { + "cik": 1166003, + "symbol": "xpo", + "name": "xpo logistics inc" + }, + { + "cik": 1446251, + "symbol": "ahexf", + "name": "adecco group ag adr" + }, + { + "cik": 18926, + "symbol": "ctl", + "name": "centurylink inc" + }, + { + "cik": 217346, + "symbol": "txt", + "name": "textron inc" + }, + { + "cik": 1508669, + "symbol": "xyigf", + "name": "xinyi glass holdings limited adr" + }, + { + "cik": 1531384, + "symbol": "gjnsf", + "name": "gjensidige forsikring asa adr" + }, + { + "cik": 1528396, + "symbol": "gwre", + "name": "guidewire software inc" + }, + { + "cik": 1543727, + "symbol": "kotmf", + "name": "koito manufacturing co ltd adr" + }, + { + "cik": 730272, + "symbol": "rgen", + "name": "repligen corp" + }, + { + "cik": 1161125, + "symbol": "bch", + "name": "bank of chile" + }, + { + "cik": 701985, + "symbol": "lb", + "name": "l brands inc" + }, + { + "cik": 1031308, + "symbol": "bsy", + "name": "bentley systems inc" + }, + { + "cik": 1127248, + "symbol": "erraf", + "name": "emera inc" + }, + { + "cik": 1452190, + "symbol": "fyrty", + "name": "familymart co ltd adr" + }, + { + "cik": 818686, + "symbol": "teva", + "name": "teva pharmaceutical industries ltd" + }, + { + "cik": 1507079, + "symbol": "fnd", + "name": "floor & decor holdings inc" + }, + { + "cik": 1540755, + "symbol": "plan", + "name": "anaplan inc" + }, + { + "cik": 1069202, + "symbol": "lii", + "name": "lennox international inc" + }, + { + "cik": 1595761, + "symbol": "wb", + "name": "weibo corp" + }, + { + "cik": 1564708, + "symbol": "nws", + "name": "news corp" + }, + { + "cik": 1262823, + "symbol": "wlk", + "name": "westlake chemical corp" + }, + { + "cik": 1579241, + "symbol": "alle", + "name": "allegion plc" + }, + { + "cik": 21175, + "symbol": "cna", + "name": "cna financial corp" + }, + { + "cik": 1467623, + "symbol": "dbx", + "name": "dropbox inc" + }, + { + "cik": 1060955, + "symbol": "iclr", + "name": "icon plc" + }, + { + "cik": 100826, + "symbol": "uepco", + "name": "union electric co" + }, + { + "cik": 737758, + "symbol": "ttc", + "name": "toro co" + }, + { + "cik": 1030475, + "symbol": "cea", + "name": "china eastern airlines corp ltd" + }, + { + "cik": 1791863, + "symbol": "bepc", + "name": "brookfield renewable corp" + }, + { + "cik": 1069878, + "symbol": "trex", + "name": "trex co inc" + }, + { + "cik": 1071371, + "symbol": "cib", + "name": "bancolombia sa" + }, + { + "cik": 1437578, + "symbol": "bfam", + "name": "bright horizons family solutions inc" + }, + { + "cik": 1374310, + "symbol": "cboe", + "name": "cboe global markets inc" + }, + { + "cik": 1575965, + "symbol": "glpi", + "name": "gaming & leisure properties inc" + }, + { + "cik": 1668501, + "symbol": "koscf", + "name": "kose corporation adr" + }, + { + "cik": 1505223, + "symbol": "shwgf", + "name": "shandong weigao group medical polymer co limited adr" + }, + { + "cik": 1737927, + "symbol": "cgc", + "name": "canopy growth corp" + }, + { + "cik": 851968, + "symbol": "mhk", + "name": "mohawk industries inc" + }, + { + "cik": 24545, + "symbol": "tap", + "name": "molson coors beverage co" + }, + { + "cik": 1126975, + "symbol": "mmp", + "name": "magellan midstream partners lp" + }, + { + "cik": 1656936, + "symbol": "mgp", + "name": "mgm growth properties llc" + }, + { + "cik": 1070750, + "symbol": "hst", + "name": "host hotels & resorts inc" + }, + { + "cik": 320335, + "symbol": "gl", + "name": "globe life inc" + }, + { + "cik": 1050915, + "symbol": "pwr", + "name": "quanta services inc" + }, + { + "cik": 908255, + "symbol": "bwa", + "name": "borgwarner inc" + }, + { + "cik": 1453930, + "symbol": "cheof", + "name": "cochlear ltd adr" + }, + { + "cik": 906345, + "symbol": "cpt", + "name": "camden property trust" + }, + { + "cik": 1612042, + "symbol": "asnd", + "name": "ascendis pharma a s" + }, + { + "cik": 842162, + "symbol": "lea", + "name": "lear corp" + }, + { + "cik": 1174169, + "symbol": "agqpf", + "name": "algonquin power & utilities corp" + }, + { + "cik": 1528651, + "symbol": "hrglf", + "name": "hargreaves lansdown plc adr" + }, + { + "cik": 1604821, + "symbol": "ntra", + "name": "natera inc" + }, + { + "cik": 896262, + "symbol": "amed", + "name": "amedisys inc" + }, + { + "cik": 1528849, + "symbol": "rh", + "name": "rh" + }, + { + "cik": 6201, + "symbol": "aal", + "name": "american airlines group inc" + }, + { + "cik": 1289419, + "symbol": "morn", + "name": "morningstar inc" + }, + { + "cik": 1000228, + "symbol": "hsic", + "name": "henry schein inc" + }, + { + "cik": 1562401, + "symbol": "amh", + "name": "american homes 4 rent" + }, + { + "cik": 1190723, + "symbol": "ts", + "name": "tenaris sa" + }, + { + "cik": 1584509, + "symbol": "armk", + "name": "aramark" + }, + { + "cik": 1501134, + "symbol": "nvta", + "name": "invitae corp" + }, + { + "cik": 1067428, + "symbol": "au", + "name": "anglogold ashanti ltd" + }, + { + "cik": 1308547, + "symbol": "dlb", + "name": "dolby laboratories inc" + }, + { + "cik": 1445153, + "symbol": "efgsy", + "name": "eiffage sa" + }, + { + "cik": 1436673, + "symbol": "willf", + "name": "demant as adr" + }, + { + "cik": 1749723, + "symbol": "nfe", + "name": "new fortress energy inc" + }, + { + "cik": 886986, + "symbol": "teck", + "name": "teck resources ltd" + }, + { + "cik": 59558, + "symbol": "lnc", + "name": "lincoln national corp" + }, + { + "cik": 1448375, + "symbol": "acsaf", + "name": "acs actividades de construccion y servicios sa" + }, + { + "cik": 1027552, + "symbol": "bsac", + "name": "banco santander chile" + }, + { + "cik": 914475, + "symbol": "nbix", + "name": "neurocrine biosciences inc" + }, + { + "cik": 1454473, + "symbol": "dnfgf", + "name": "dongfeng motor group co ltd adr" + }, + { + "cik": 1795589, + "symbol": "kc", + "name": "kingsoft cloud holdings ltd" + }, + { + "cik": 1095073, + "symbol": "re", + "name": "everest re group ltd" + }, + { + "cik": 701818, + "symbol": "kgc", + "name": "kinross gold corp" + }, + { + "cik": 91440, + "symbol": "sna", + "name": "snap-on inc" + }, + { + "cik": 1062579, + "symbol": "dox", + "name": "amdocs ltd" + }, + { + "cik": 1556607, + "symbol": "surrf", + "name": "sun art retail group limited adr" + }, + { + "cik": 915191, + "symbol": "frfzf", + "name": "fairfax financial holdings ltd can" + }, + { + "cik": 1366561, + "symbol": "smar", + "name": "smartsheet inc" + }, + { + "cik": 866374, + "symbol": "flex", + "name": "flex ltd" + }, + { + "cik": 1437672, + "symbol": "prymf", + "name": "prysmian spa" + }, + { + "cik": 51644, + "symbol": "ipg", + "name": "interpublic group of companies inc" + }, + { + "cik": 916540, + "symbol": "dar", + "name": "darling ingredients inc" + }, + { + "cik": 1553023, + "symbol": "cone", + "name": "cyrusone inc" + }, + { + "cik": 1206571, + "symbol": "iaugf", + "name": "insurance australia group ltd" + }, + { + "cik": 932872, + "symbol": "sjr", + "name": "shaw communications inc" + }, + { + "cik": 1365135, + "symbol": "wu", + "name": "western union co" + }, + { + "cik": 105016, + "symbol": "wso", + "name": "watsco inc" + }, + { + "cik": 1144519, + "symbol": "bg", + "name": "bungeltd" + }, + { + "cik": 1780232, + "symbol": "gflu", + "name": "gfl environmental inc" + }, + { + "cik": 814453, + "symbol": "nwl", + "name": "newell brands inc" + }, + { + "cik": 929940, + "symbol": "azpn", + "name": "aspen technology inc de" + }, + { + "cik": 1478320, + "symbol": "adpt", + "name": "adaptive biotechnologies corp" + }, + { + "cik": 91142, + "symbol": "aos", + "name": "smith a o corp" + }, + { + "cik": 1286225, + "symbol": "rp", + "name": "realpage inc" + }, + { + "cik": 1395167, + "symbol": "grptf", + "name": "groupe eurotunnel sa" + }, + { + "cik": 910631, + "symbol": "kof", + "name": "coca cola femsa sab de cv" + }, + { + "cik": 4457, + "symbol": "uhal", + "name": "amerco nv" + }, + { + "cik": 1692819, + "symbol": "vst", + "name": "vistra corp" + }, + { + "cik": 1070494, + "symbol": "acad", + "name": "acadia pharmaceuticals inc" + }, + { + "cik": 1309108, + "symbol": "wex", + "name": "wex inc" + }, + { + "cik": 1689923, + "symbol": "ayx", + "name": "alteryx inc" + }, + { + "cik": 1557860, + "symbol": "glob", + "name": "globant sa" + }, + { + "cik": 1434316, + "symbol": "fate", + "name": "fate therapeutics inc" + }, + { + "cik": 764622, + "symbol": "pnw", + "name": "pinnacle west capital corp" + }, + { + "cik": 1480134, + "symbol": "wynmf", + "name": "wynn macau limited adr" + }, + { + "cik": 1177609, + "symbol": "five", + "name": "five below inc" + }, + { + "cik": 77360, + "symbol": "pnr", + "name": "pentair plc" + }, + { + "cik": 1538990, + "symbol": "stor", + "name": "store capital corp" + }, + { + "cik": 1780531, + "symbol": "ocft", + "name": "oneconnect financial technology co ltd" + }, + { + "cik": 896622, + "symbol": "atr", + "name": "aptargroup inc" + }, + { + "cik": 1253494, + "symbol": "sggef", + "name": "sage group plc" + }, + { + "cik": 1655210, + "symbol": "bynd", + "name": "beyond meat inc" + }, + { + "cik": 1573097, + "symbol": "hds", + "name": "hd supply holdings inc" + }, + { + "cik": 1745041, + "symbol": "iaa", + "name": "iaa inc" + }, + { + "cik": 1793862, + "symbol": "dada", + "name": "dada nexus ltd" + }, + { + "cik": 1822829, + "symbol": "ozon", + "name": "ozon holdings plc" + }, + { + "cik": 353569, + "symbol": "qdel", + "name": "quidel corp de" + }, + { + "cik": 48898, + "symbol": "hubb", + "name": "hubbell inc" + }, + { + "cik": 1020569, + "symbol": "irm", + "name": "iron mountain inc" + }, + { + "cik": 879407, + "symbol": "arwr", + "name": "arrowhead pharmaceuticals inc" + }, + { + "cik": 1161611, + "symbol": "ach", + "name": "aluminum corp of china ltd" + }, + { + "cik": 19584, + "symbol": "che", + "name": "chemed corp" + }, + { + "cik": 1232524, + "symbol": "jazz", + "name": "jazz pharmaceuticals plc" + }, + { + "cik": 1013871, + "symbol": "nrg", + "name": "nrg energy inc" + }, + { + "cik": 888491, + "symbol": "ohi", + "name": "omega healthcare investors inc" + }, + { + "cik": 1423689, + "symbol": "agncp", + "name": "agnc investment corp" + }, + { + "cik": 1382821, + "symbol": "rdfn", + "name": "redfin corp" + }, + { + "cik": 1815846, + "symbol": "mnso", + "name": "miniso group holding ltd" + }, + { + "cik": 94845, + "symbol": "levi", + "name": "levi strauss & co" + }, + { + "cik": 1370946, + "symbol": "oc", + "name": "owens corning" + }, + { + "cik": 1370418, + "symbol": "slfpf", + "name": "standard life plc" + }, + { + "cik": 89089, + "symbol": "sci", + "name": "service corp international" + }, + { + "cik": 1116132, + "symbol": "tpr", + "name": "tapestry inc" + }, + { + "cik": 1442653, + "symbol": "rohcf", + "name": "rohm co ltd" + }, + { + "cik": 790051, + "symbol": "csl", + "name": "carlisle companies inc" + }, + { + "cik": 1743881, + "symbol": "bbio", + "name": "bridgebio pharma inc" + }, + { + "cik": 1608249, + "symbol": "zayo", + "name": "zayo group holdings inc" + }, + { + "cik": 1111711, + "symbol": "ni", + "name": "nisource inc" + }, + { + "cik": 1285785, + "symbol": "mos", + "name": "mosaic co" + }, + { + "cik": 1090425, + "symbol": "lamr", + "name": "lamar advertising co new" + }, + { + "cik": 355811, + "symbol": "gntx", + "name": "gentex corp" + }, + { + "cik": 1109354, + "symbol": "brkr", + "name": "bruker corp" + }, + { + "cik": 719955, + "symbol": "wsm", + "name": "williams sonoma inc" + }, + { + "cik": 1160958, + "symbol": "iphi", + "name": "inphi corp" + }, + { + "cik": 910521, + "symbol": "deck", + "name": "deckers outdoor corp" + }, + { + "cik": 775368, + "symbol": "y", + "name": "alleghany corp de" + }, + { + "cik": 1172724, + "symbol": "gfi", + "name": "gold fields ltd" + }, + { + "cik": 1756770, + "symbol": "curlf", + "name": "curaleaf holdings inc" + }, + { + "cik": 1449217, + "symbol": "hegif", + "name": "hengan international group co ltd" + }, + { + "cik": 1397911, + "symbol": "lpla", + "name": "lpl financial holdings inc" + }, + { + "cik": 71691, + "symbol": "nyt", + "name": "new york times co" + }, + { + "cik": 874015, + "symbol": "ions", + "name": "ionis pharmaceuticals inc" + }, + { + "cik": 785161, + "symbol": "ehc", + "name": "encompass health corp" + }, + { + "cik": 1049659, + "symbol": "sid", + "name": "national steel co" + }, + { + "cik": 1049502, + "symbol": "mksi", + "name": "mks instruments inc" + }, + { + "cik": 1069183, + "symbol": "aaxn", + "name": "axon enterprise inc" + }, + { + "cik": 913144, + "symbol": "rnr", + "name": "renaissancere holdings ltd" + }, + { + "cik": 820318, + "symbol": "iivip", + "name": "ii-vi inc" + }, + { + "cik": 1581280, + "symbol": "twst", + "name": "twist bioscience corp" + }, + { + "cik": 1507385, + "symbol": "ver", + "name": "vereit inc" + }, + { + "cik": 350894, + "symbol": "seic", + "name": "sei investments co" + }, + { + "cik": 936395, + "symbol": "cien", + "name": "ciena corp" + }, + { + "cik": 1034670, + "symbol": "alv", + "name": "autoliv inc" + }, + { + "cik": 1666134, + "symbol": "bl", + "name": "blackline inc" + }, + { + "cik": 20212, + "symbol": "chdn", + "name": "churchill downs inc" + }, + { + "cik": 1330568, + "symbol": "slv", + "name": "ishares silver trust" + }, + { + "cik": 1280600, + "symbol": "xlrn", + "name": "acceleron pharma inc" + }, + { + "cik": 1450206, + "symbol": "asekf", + "name": "aisin seiki co ltd adr" + }, + { + "cik": 1477294, + "symbol": "st", + "name": "sensata technologies holding plc" + }, + { + "cik": 901684, + "symbol": "warff", + "name": "wharf holdings ltd fi" + }, + { + "cik": 1823239, + "symbol": "mrvi", + "name": "maravai lifesciences holdings inc" + }, + { + "cik": 1309035, + "symbol": "ipxhf", + "name": "inpex holdings inc" + }, + { + "cik": 1398659, + "symbol": "g", + "name": "genpact ltd" + }, + { + "cik": 1823306, + "symbol": "lspd", + "name": "lightspeed pos inc" + }, + { + "cik": 1212458, + "symbol": "pfpt", + "name": "proofpoint inc" + }, + { + "cik": 1115837, + "symbol": "mbt", + "name": "mobile telesystems pjsc" + }, + { + "cik": 800840, + "symbol": "shcaf", + "name": "sharp corp fi" + }, + { + "cik": 1527469, + "symbol": "ath", + "name": "athene holding ltd" + }, + { + "cik": 7646, + "symbol": "asglf", + "name": "agc inc adr" + }, + { + "cik": 1762301, + "symbol": "fvrr", + "name": "fiverr international ltd" + }, + { + "cik": 1613859, + "symbol": "prah", + "name": "pra health sciences inc" + }, + { + "cik": 914208, + "symbol": "ivz", + "name": "invesco ltd" + }, + { + "cik": 1436786, + "symbol": "oukpf", + "name": "outotec oyj" + }, + { + "cik": 1379481, + "symbol": "mdibf", + "name": "mediobanca - banca di credito finanziario spa" + }, + { + "cik": 1046102, + "symbol": "rba", + "name": "ritchie bros auctioneers inc" + }, + { + "cik": 1324404, + "symbol": "cf", + "name": "cf industries holdings inc" + }, + { + "cik": 1267238, + "symbol": "aizn", + "name": "assurant inc" + }, + { + "cik": 880266, + "symbol": "agco", + "name": "agco corp de" + }, + { + "cik": 1468748, + "symbol": "kod", + "name": "kodiak sciences inc" + }, + { + "cik": 1398879, + "symbol": "ccozf", + "name": "china coal energy co ltd" + }, + { + "cik": 910606, + "symbol": "reg", + "name": "regency centers corp" + }, + { + "cik": 350797, + "symbol": "ev", + "name": "eaton vance corp" + }, + { + "cik": 1037976, + "symbol": "jll", + "name": "jones lang lasalle inc" + }, + { + "cik": 1022671, + "symbol": "stld", + "name": "steel dynamics inc" + }, + { + "cik": 1566895, + "symbol": "ncno", + "name": "ncino inc" + }, + { + "cik": 1647435, + "symbol": "atdrf", + "name": "auto trader group plc adr" + }, + { + "cik": 22356, + "symbol": "cbshp", + "name": "commerce bancshares inc mo" + }, + { + "cik": 1437144, + "symbol": "magof", + "name": "man ag" + }, + { + "cik": 1822479, + "symbol": "shc", + "name": "sotera health co" + }, + { + "cik": 769218, + "symbol": "aeg", + "name": "aegon nv" + }, + { + "cik": 1504764, + "symbol": "aval", + "name": "grupo aval acciones y valores sa" + }, + { + "cik": 1516536, + "symbol": "rtmvf", + "name": "rightmove plc adr" + }, + { + "cik": 898174, + "symbol": "rza", + "name": "reinsurance group of america inc" + }, + { + "cik": 1076378, + "symbol": "cx", + "name": "cemex sab de cv" + }, + { + "cik": 1564824, + "symbol": "allk", + "name": "allakos inc" + }, + { + "cik": 28412, + "symbol": "cma", + "name": "comerica inc new" + }, + { + "cik": 1455863, + "symbol": "cold", + "name": "americold realty trust" + }, + { + "cik": 1073404, + "symbol": "ggb", + "name": "gerdau sa" + }, + { + "cik": 1576942, + "symbol": "sfix", + "name": "stitch fix inc" + }, + { + "cik": 39911, + "symbol": "gps", + "name": "gap inc" + }, + { + "cik": 108312, + "symbol": "wwd", + "name": "woodward inc" + }, + { + "cik": 1001316, + "symbol": "tgtx", + "name": "tg therapeutics inc" + }, + { + "cik": 861884, + "symbol": "rs", + "name": "reliance steel & aluminum co" + }, + { + "cik": 1646972, + "symbol": "aci", + "name": "albertsons companies inc" + }, + { + "cik": 1173382, + "symbol": "cae", + "name": "cae inc" + }, + { + "cik": 1023128, + "symbol": "lad", + "name": "lithia motors inc" + }, + { + "cik": 1801661, + "symbol": "feac", + "name": "skillz inc" + }, + { + "cik": 1633978, + "symbol": "lite", + "name": "lumentum holdings inc" + }, + { + "cik": 1043604, + "symbol": "jnpr", + "name": "juniper networks inc" + }, + { + "cik": 1783317, + "symbol": "mcfe", + "name": "mcafee corp" + }, + { + "cik": 1042046, + "symbol": "afgb", + "name": "american financial group inc" + }, + { + "cik": 1000694, + "symbol": "nvax", + "name": "novavax inc" + }, + { + "cik": 763665, + "symbol": "isuzf", + "name": "isuzu motors ltd adr" + }, + { + "cik": 1437041, + "symbol": "lndnf", + "name": "lundin petroleum ab" + }, + { + "cik": 1513761, + "symbol": "nclh", + "name": "norwegian cruise line holdings ltd" + }, + { + "cik": 926042, + "symbol": "ttm", + "name": "tata motors ltd fi" + }, + { + "cik": 1784384, + "symbol": "abmrf", + "name": "abn amro bank nv adr" + }, + { + "cik": 1610950, + "symbol": "synh", + "name": "syneos health inc" + }, + { + "cik": 1425205, + "symbol": "iova", + "name": "iovance biotherapeutics inc" + }, + { + "cik": 1665918, + "symbol": "usfd", + "name": "us foods holding corp" + }, + { + "cik": 7536, + "symbol": "arw", + "name": "arrow electronics inc" + }, + { + "cik": 868857, + "symbol": "acm", + "name": "aecom" + }, + { + "cik": 1037038, + "symbol": "rl", + "name": "ralph lauren corp" + }, + { + "cik": 1468174, + "symbol": "h", + "name": "hyatt hotels corp" + }, + { + "cik": 1029199, + "symbol": "eeft", + "name": "euronet worldwide inc" + }, + { + "cik": 1492691, + "symbol": "knx", + "name": "knight-swift transportation holdings inc" + }, + { + "cik": 884614, + "symbol": "ugi", + "name": "ugi corp pa" + }, + { + "cik": 1449614, + "symbol": "kunuf", + "name": "kunlun energy co ltd" + }, + { + "cik": 1570300, + "symbol": "shpmf", + "name": "shanghai pharmaceuticals holding co ltd adr" + }, + { + "cik": 751364, + "symbol": "nnn", + "name": "national retail properties inc" + }, + { + "cik": 1336917, + "symbol": "uaa", + "name": "under armour inc" + }, + { + "cik": 85535, + "symbol": "rgld", + "name": "royal gold inc" + }, + { + "cik": 1674534, + "symbol": "hlkhf", + "name": "hella kgaa hueck & co adr" + }, + { + "cik": 769520, + "symbol": "midd", + "name": "middleby corp" + }, + { + "cik": 1378992, + "symbol": "bery", + "name": "berry global group inc" + }, + { + "cik": 885590, + "symbol": "bhc", + "name": "bausch health companies inc" + }, + { + "cik": 29644, + "symbol": "dci", + "name": "donaldson co inc" + }, + { + "cik": 1131652, + "symbol": "tokuf", + "name": "tokyu corp" + }, + { + "cik": 1288784, + "symbol": "sbnyp", + "name": "signature bank corp" + }, + { + "cik": 1176948, + "symbol": "ares", + "name": "ares management corp" + }, + { + "cik": 315213, + "symbol": "rhi", + "name": "robert half international inc" + }, + { + "cik": 1556605, + "symbol": "shtdf", + "name": "sinopharm group co adr" + }, + { + "cik": 773917, + "symbol": "tiscf", + "name": "taisei corp ltd adr" + }, + { + "cik": 1534043, + "symbol": "fuppf", + "name": "fuchs petrolub se adr" + }, + { + "cik": 1492633, + "symbol": "nlsn", + "name": "nielsen holdings plc" + }, + { + "cik": 59527, + "symbol": "leco", + "name": "lincoln electric holdings inc" + }, + { + "cik": 1490083, + "symbol": "clpxf", + "name": "china longyuan power group corp limited adr" + }, + { + "cik": 1012100, + "symbol": "see", + "name": "sealed air corp de" + }, + { + "cik": 1535929, + "symbol": "voya", + "name": "voya financial inc" + }, + { + "cik": 1533920, + "symbol": "uvrbf", + "name": "universal robina corporation adr" + }, + { + "cik": 1553915, + "symbol": "crcby", + "name": "chongqing rural commercial bank co ltd adr" + }, + { + "cik": 1650729, + "symbol": "site", + "name": "siteone landscape supply inc" + }, + { + "cik": 1288098, + "symbol": "tdhof", + "name": "t&d holdings inc" + }, + { + "cik": 1539838, + "symbol": "fang", + "name": "diamondback energy inc" + }, + { + "cik": 1410384, + "symbol": "qtwo", + "name": "q2 holdings inc" + }, + { + "cik": 1793229, + "symbol": "ccxx", + "name": "multiplan corp" + }, + { + "cik": 1069157, + "symbol": "ewbc", + "name": "east west bancorp inc" + }, + { + "cik": 109380, + "symbol": "zionp", + "name": "zions bancorporation national association ut" + }, + { + "cik": 1597264, + "symbol": "bpmc", + "name": "blueprint medicines corp" + }, + { + "cik": 1287750, + "symbol": "afc", + "name": "ares capital corp" + }, + { + "cik": 1303313, + "symbol": "lhcg", + "name": "lhc group inc" + }, + { + "cik": 1370431, + "symbol": "vedl", + "name": "vedanta ltd" + }, + { + "cik": 1475260, + "symbol": "cve", + "name": "cenovus energy inc" + }, + { + "cik": 1807192, + "symbol": "cd", + "name": "chindata group holdings ltd" + }, + { + "cik": 1618732, + "symbol": "ntnx", + "name": "nutanix inc" + }, + { + "cik": 1689657, + "symbol": "bli", + "name": "berkeley lights inc" + }, + { + "cik": 36966, + "symbol": "fhn", + "name": "first horizon corp" + }, + { + "cik": 1481045, + "symbol": "dsecf", + "name": "daiwa securities group inc" + }, + { + "cik": 1321732, + "symbol": "pen", + "name": "penumbra inc" + }, + { + "cik": 771992, + "symbol": "paas", + "name": "pan american silver corp" + }, + { + "cik": 1826168, + "symbol": "timb", + "name": "tim sa" + }, + { + "cik": 938323, + "symbol": "pso", + "name": "pearson plc" + }, + { + "cik": 1428875, + "symbol": "tmx", + "name": "terminix global holdings inc" + }, + { + "cik": 899689, + "symbol": "vno", + "name": "vornado realty trust" + }, + { + "cik": 1446660, + "symbol": "kajmf", + "name": "kajima corp" + }, + { + "cik": 1594109, + "symbol": "grub", + "name": "grubhub inc" + }, + { + "cik": 1388658, + "symbol": "irtc", + "name": "irhythm technologies inc" + }, + { + "cik": 1671235, + "symbol": "bmrpf", + "name": "b&m european value retail sa adr" + }, + { + "cik": 1393584, + "symbol": "amwl", + "name": "american well corp" + }, + { + "cik": 1056696, + "symbol": "manh", + "name": "manhattan associates inc" + }, + { + "cik": 1703056, + "symbol": "adt", + "name": "adt inc" + }, + { + "cik": 1366235, + "symbol": "clznf", + "name": "clariant ag" + }, + { + "cik": 858470, + "symbol": "cog", + "name": "cabot oil & gas corp" + }, + { + "cik": 1801368, + "symbol": "fvac", + "name": "mp materials corp de" + }, + { + "cik": 1698287, + "symbol": "bsmx", + "name": "banco santander mexico sa institucion de banca multiple grupo financiero santander mexico" + }, + { + "cik": 1616862, + "symbol": "axta", + "name": "axalta coating systems ltd" + }, + { + "cik": 1637207, + "symbol": "plnt", + "name": "planet fitness inc" + }, + { + "cik": 1298675, + "symbol": "cube", + "name": "cubesmart" + }, + { + "cik": 1501585, + "symbol": "hii", + "name": "huntington ingalls industries inc" + }, + { + "cik": 764065, + "symbol": "clf", + "name": "cleveland-cliffs inc" + }, + { + "cik": 216228, + "symbol": "itt", + "name": "itt inc" + }, + { + "cik": 1452188, + "symbol": "vopkf", + "name": "koninklijke vopak nv adr" + }, + { + "cik": 1633931, + "symbol": "bld", + "name": "topbuild corp" + }, + { + "cik": 726958, + "symbol": "casy", + "name": "caseys general stores inc" + }, + { + "cik": 78239, + "symbol": "pvh", + "name": "pvh corp de" + }, + { + "cik": 1442656, + "symbol": "jsgcf", + "name": "js group corp" + }, + { + "cik": 34903, + "symbol": "frt", + "name": "federal realty investment trust" + }, + { + "cik": 1082554, + "symbol": "uthr", + "name": "united therapeutics corp" + }, + { + "cik": 1530950, + "symbol": "post", + "name": "post holdings inc" + }, + { + "cik": 1446707, + "symbol": "cakff", + "name": "mckesson europe ag adr" + }, + { + "cik": 1264136, + "symbol": "wf", + "name": "woori financial group inc" + }, + { + "cik": 1178879, + "symbol": "fold", + "name": "amicus therapeutics inc" + }, + { + "cik": 1670592, + "symbol": "yeti", + "name": "yeti holdings inc" + }, + { + "cik": 14930, + "symbol": "bc", + "name": "brunswick corp" + }, + { + "cik": 1731289, + "symbol": "nklaw", + "name": "nikola corp" + }, + { + "cik": 1501108, + "symbol": "snphf", + "name": "santen pharmaceutical co ltd adr" + }, + { + "cik": 1450349, + "symbol": "hocff", + "name": "hochtief ag adr" + }, + { + "cik": 1325378, + "symbol": "bgaof", + "name": "proximus" + }, + { + "cik": 1237831, + "symbol": "gmed", + "name": "globus medical inc" + }, + { + "cik": 1599962, + "symbol": "sjmhf", + "name": "sjm holdings limited adr" + }, + { + "cik": 1025996, + "symbol": "krc", + "name": "kilroy realty corp" + }, + { + "cik": 47518, + "symbol": "hrc", + "name": "hill-rom holdings inc" + }, + { + "cik": 1453015, + "symbol": "bldp", + "name": "ballard power systems inc" + }, + { + "cik": 898293, + "symbol": "jbl", + "name": "jabil inc" + }, + { + "cik": 1474432, + "symbol": "pstg", + "name": "pure storage inc" + }, + { + "cik": 1070423, + "symbol": "paa", + "name": "plains all american pipeline lp" + }, + { + "cik": 1378984, + "symbol": "vlpnf", + "name": "voestalpine ag" + }, + { + "cik": 1530721, + "symbol": "cpri", + "name": "capri holdings ltd" + }, + { + "cik": 1012620, + "symbol": "gwr", + "name": "genesee & wyoming inc" + }, + { + "cik": 1580608, + "symbol": "sc", + "name": "santander consumer usa holdings inc" + }, + { + "cik": 1705110, + "symbol": "angi", + "name": "angi homeservices inc" + }, + { + "cik": 1447647, + "symbol": "aacaf", + "name": "aac acoustic technologies holdings inc" + }, + { + "cik": 1421876, + "symbol": "glpg", + "name": "galapagos nv" + }, + { + "cik": 353990, + "symbol": "hmtlf", + "name": "hitachi metals ltd adr" + }, + { + "cik": 1409236, + "symbol": "sommf", + "name": "sumitomo chemical co ltd" + }, + { + "cik": 1530238, + "symbol": "yy", + "name": "joyy inc" + }, + { + "cik": 1571283, + "symbol": "rexr", + "name": "rexford industrial realty inc" + }, + { + "cik": 1667075, + "symbol": "bnmdf", + "name": "banca mediolanum spa adr" + }, + { + "cik": 1444380, + "symbol": "nvro", + "name": "nevro corp" + }, + { + "cik": 861878, + "symbol": "srcl", + "name": "stericycle inc" + }, + { + "cik": 1598110, + "symbol": "cybr", + "name": "cyberark software ltd" + }, + { + "cik": 1786431, + "symbol": "reyn", + "name": "reynolds consumer products inc" + }, + { + "cik": 845033, + "symbol": "ogfgf", + "name": "origin energy ltd" + }, + { + "cik": 1618673, + "symbol": "pfgc", + "name": "performance food group co" + }, + { + "cik": 1068851, + "symbol": "pb", + "name": "prosperity bancshares inc" + }, + { + "cik": 1595893, + "symbol": "tptx", + "name": "turning point therapeutics inc" + }, + { + "cik": 1077183, + "symbol": "neo", + "name": "neogenomics inc" + }, + { + "cik": 1433195, + "symbol": "appf", + "name": "appfolio inc" + }, + { + "cik": 939767, + "symbol": "exel", + "name": "exelixis inc" + }, + { + "cik": 1674101, + "symbol": "vrt", + "name": "vertiv holdings co" + }, + { + "cik": 766421, + "symbol": "alk", + "name": "alaska air group inc" + }, + { + "cik": 879101, + "symbol": "kim", + "name": "kimco realty corp" + }, + { + "cik": 831641, + "symbol": "ttek", + "name": "tetra tech inc" + }, + { + "cik": 931015, + "symbol": "pii", + "name": "polaris inc" + }, + { + "cik": 16058, + "symbol": "caci", + "name": "caci international inc de" + }, + { + "cik": 1584207, + "symbol": "omf", + "name": "onemain holdings inc" + }, + { + "cik": 1609702, + "symbol": "cdk", + "name": "cdk global inc" + }, + { + "cik": 1572910, + "symbol": "psxp", + "name": "phillips 66 partners lp" + }, + { + "cik": 318269, + "symbol": "japsy", + "name": "japan airlines co ltd adr" + }, + { + "cik": 1800667, + "symbol": "frog", + "name": "jfrog ltd" + }, + { + "cik": 1492075, + "symbol": "asomf", + "name": "asos plc" + }, + { + "cik": 1021635, + "symbol": "oge", + "name": "oge energy corp" + }, + { + "cik": 1389170, + "symbol": "trgp", + "name": "targa resources corp" + }, + { + "cik": 63276, + "symbol": "mat", + "name": "mattel inc de" + }, + { + "cik": 1417695, + "symbol": "mpfrf", + "name": "mapfre sa" + }, + { + "cik": 889331, + "symbol": "lfus", + "name": "littelfuse inc de" + }, + { + "cik": 313143, + "symbol": "hae", + "name": "haemonetics corp" + }, + { + "cik": 1347557, + "symbol": "pac", + "name": "pacific airport group" + }, + { + "cik": 1360604, + "symbol": "hta", + "name": "healthcare trust of america inc" + }, + { + "cik": 1782754, + "symbol": "azek", + "name": "azek co inc" + }, + { + "cik": 855658, + "symbol": "lscc", + "name": "lattice semiconductor corp" + }, + { + "cik": 36047, + "symbol": "clgx", + "name": "corelogic inc" + }, + { + "cik": 885639, + "symbol": "kss", + "name": "kohls corp" + }, + { + "cik": 1283630, + "symbol": "acc", + "name": "american campus communities inc" + }, + { + "cik": 1820877, + "symbol": "airc", + "name": "apartment income reit corp" + }, + { + "cik": 1585364, + "symbol": "prgo", + "name": "perrigo co plc" + }, + { + "cik": 1160951, + "symbol": "dct", + "name": "duck creek technologies inc" + }, + { + "cik": 78150, + "symbol": "phi", + "name": "pldt inc" + }, + { + "cik": 1706946, + "symbol": "spce", + "name": "virgin galactic holdings inc" + }, + { + "cik": 1637810, + "symbol": "fsv", + "name": "firstservice corp" + }, + { + "cik": 1603194, + "symbol": "osagf", + "name": "osram licht ag adr" + }, + { + "cik": 91767, + "symbol": "son", + "name": "sonoco products co" + }, + { + "cik": 1212545, + "symbol": "wal", + "name": "western alliance bancorporation" + }, + { + "cik": 1342874, + "symbol": "tx", + "name": "ternium sa" + }, + { + "cik": 1050797, + "symbol": "colm", + "name": "columbia sportswear co" + }, + { + "cik": 1611647, + "symbol": "frpt", + "name": "freshpet inc" + }, + { + "cik": 1347141, + "symbol": "sumcf", + "name": "sumco corp" + }, + { + "cik": 350698, + "symbol": "an", + "name": "autonation inc" + }, + { + "cik": 1159036, + "symbol": "halo", + "name": "halozyme therapeutics inc" + }, + { + "cik": 96223, + "symbol": "jef", + "name": "jefferies financial group inc" + }, + { + "cik": 1794669, + "symbol": "four", + "name": "shift4 payments inc" + }, + { + "cik": 794170, + "symbol": "tol", + "name": "toll brothers inc" + }, + { + "cik": 1429937, + "symbol": "btg", + "name": "b2gold corp" + }, + { + "cik": 732834, + "symbol": "clr", + "name": "continental resources inc" + }, + { + "cik": 885550, + "symbol": "cacc", + "name": "credit acceptance corp" + }, + { + "cik": 1436771, + "symbol": "wrtbf", + "name": "wartsila oyj" + }, + { + "cik": 1490978, + "symbol": "sdgr", + "name": "schrodinger inc" + }, + { + "cik": 1472787, + "symbol": "faf", + "name": "first american financial corp" + }, + { + "cik": 1748797, + "symbol": "dooo", + "name": "brp inc" + }, + { + "cik": 1423902, + "symbol": "wes", + "name": "western midstream partners lp" + }, + { + "cik": 1688568, + "symbol": "dxc", + "name": "dxc technology co" + }, + { + "cik": 1274173, + "symbol": "jhg", + "name": "janus henderson group plc" + }, + { + "cik": 944314, + "symbol": "lsi", + "name": "life storage inc" + }, + { + "cik": 1180262, + "symbol": "hlf", + "name": "herbalife nutrition ltd" + }, + { + "cik": 941221, + "symbol": "icl", + "name": "icl group ltd" + }, + { + "cik": 1170858, + "symbol": "sbs", + "name": "companhia de saneamento basico do estado de sao paulo-sabesp" + }, + { + "cik": 1604028, + "symbol": "wms", + "name": "advanced drainage systems inc" + }, + { + "cik": 98362, + "symbol": "tkr", + "name": "timken co" + }, + { + "cik": 66570, + "symbol": "msa", + "name": "msa safety inc" + }, + { + "cik": 1404123, + "symbol": "onem", + "name": "1life healthcare inc" + }, + { + "cik": 1827090, + "symbol": "cert", + "name": "certara inc" + }, + { + "cik": 1446294, + "symbol": "enggf", + "name": "enagas sa" + }, + { + "cik": 1438133, + "symbol": "tndm", + "name": "tandem diabetes care inc" + }, + { + "cik": 1756497, + "symbol": "chngu", + "name": "change healthcare inc" + }, + { + "cik": 1206264, + "symbol": "tpx", + "name": "tempur sealy international inc" + }, + { + "cik": 1786842, + "symbol": "vnt", + "name": "vontier corp" + }, + { + "cik": 775158, + "symbol": "osk", + "name": "oshkosh corp" + }, + { + "cik": 1660280, + "symbol": "tenb", + "name": "tenable holdings inc" + }, + { + "cik": 1495932, + "symbol": "expi", + "name": "exp world holdings inc" + }, + { + "cik": 74260, + "symbol": "ori", + "name": "old republic international corp" + }, + { + "cik": 916789, + "symbol": "hele", + "name": "helen of troy ltd" + }, + { + "cik": 1065837, + "symbol": "skx", + "name": "skechers usa inc" + }, + { + "cik": 1580864, + "symbol": "vrm", + "name": "vroom inc" + }, + { + "cik": 1090012, + "symbol": "dvn", + "name": "devon energy corp de" + }, + { + "cik": 1283708, + "symbol": "itvpf", + "name": "itv plc" + }, + { + "cik": 1046311, + "symbol": "chh", + "name": "choice hotels international inc de" + }, + { + "cik": 1486957, + "symbol": "bwxt", + "name": "bwx technologies inc" + }, + { + "cik": 1820721, + "symbol": "arry", + "name": "array technologies inc" + }, + { + "cik": 730263, + "symbol": "tho", + "name": "thor industries inc" + }, + { + "cik": 1691421, + "symbol": "lmnd", + "name": "lemonade inc" + }, + { + "cik": 1446128, + "symbol": "mrwsf", + "name": "wm morrison supermarkets plc" + }, + { + "cik": 1307954, + "symbol": "hun", + "name": "huntsman corp" + }, + { + "cik": 935494, + "symbol": "nati", + "name": "national instruments corp" + }, + { + "cik": 1571123, + "symbol": "saic", + "name": "science applications international corp" + }, + { + "cik": 1061894, + "symbol": "gil", + "name": "gildan activewear inc" + }, + { + "cik": 1289460, + "symbol": "txrh", + "name": "texas roadhouse inc" + }, + { + "cik": 892450, + "symbol": "kt", + "name": "kt corp" + }, + { + "cik": 1361113, + "symbol": "vrns", + "name": "varonis systems inc" + }, + { + "cik": 1594466, + "symbol": "pe", + "name": "parsley energy inc" + }, + { + "cik": 1290109, + "symbol": "lpl", + "name": "lg display co ltd" + }, + { + "cik": 798941, + "symbol": "fcncp", + "name": "first citizens bancshares inc de" + }, + { + "cik": 793952, + "symbol": "hog", + "name": "harley-davidson inc" + }, + { + "cik": 1024305, + "symbol": "coty", + "name": "coty inc" + }, + { + "cik": 933974, + "symbol": "brks", + "name": "brooks automation inc" + }, + { + "cik": 1563177, + "symbol": "hwdjf", + "name": "howden joinery group plc adr" + }, + { + "cik": 49600, + "symbol": "egp", + "name": "eastgroup properties inc" + }, + { + "cik": 1446648, + "symbol": "htcmf", + "name": "hitachi construction machinery co ltd" + }, + { + "cik": 1038074, + "symbol": "slab", + "name": "silicon laboratories inc" + }, + { + "cik": 1689813, + "symbol": "bhvn", + "name": "biohaven pharmaceutical holding co ltd" + }, + { + "cik": 937098, + "symbol": "tnet", + "name": "trinet group inc" + }, + { + "cik": 1754581, + "symbol": "futu", + "name": "futu holdings ltd" + }, + { + "cik": 1465128, + "symbol": "stwd", + "name": "starwood property trust inc" + }, + { + "cik": 58492, + "symbol": "leg", + "name": "leggett & platt inc" + }, + { + "cik": 354908, + "symbol": "flir", + "name": "flir systems inc" + }, + { + "cik": 917520, + "symbol": "iart", + "name": "integra lifesciences holdings corp" + }, + { + "cik": 19612, + "symbol": "tcf", + "name": "tcf financial corp" + }, + { + "cik": 97517, + "symbol": "tpl", + "name": "texas pacific land trust" + }, + { + "cik": 1694271, + "symbol": "cnvvf", + "name": "convatec group plc adr" + }, + { + "cik": 929058, + "symbol": "hnp", + "name": "huaneng power international inc" + }, + { + "cik": 1437352, + "symbol": "evbg", + "name": "everbridge inc" + }, + { + "cik": 921825, + "symbol": "fr", + "name": "first industrial realty trust inc" + }, + { + "cik": 1639300, + "symbol": "olli", + "name": "ollies bargain outlet holdings inc" + }, + { + "cik": 1490892, + "symbol": "cor", + "name": "coresite realty corp" + }, + { + "cik": 1027664, + "symbol": "eslt", + "name": "elbit systems ltd" + }, + { + "cik": 39263, + "symbol": "cfr", + "name": "cullen frost bankers inc" + }, + { + "cik": 314590, + "symbol": "ssl", + "name": "sasol ltd" + }, + { + "cik": 1659939, + "symbol": "enic", + "name": "enel chile sa" + }, + { + "cik": 1261759, + "symbol": "sekef", + "name": "seiko epson corp" + }, + { + "cik": 1806837, + "symbol": "verx", + "name": "vertex inc" + }, + { + "cik": 1627857, + "symbol": "sail", + "name": "sailpoint technologies holdings inc" + }, + { + "cik": 1588489, + "symbol": "gbtc", + "name": "grayscale bitcoin trust (btc)" + }, + { + "cik": 1564228, + "symbol": "shmuf", + "name": "shimizu corporation adr" + }, + { + "cik": 1378946, + "symbol": "pbct", + "name": "peoples united financial inc" + }, + { + "cik": 6769, + "symbol": "apa", + "name": "apache corp" + }, + { + "cik": 1563255, + "symbol": "diisf", + "name": "direct line insurance group plc adr" + }, + { + "cik": 1524358, + "symbol": "vac", + "name": "marriott vacations worldwide corp" + }, + { + "cik": 1378789, + "symbol": "aer", + "name": "aercap holdings nv" + }, + { + "cik": 1531152, + "symbol": "bj", + "name": "bjs wholesale club holdings inc" + }, + { + "cik": 1264089, + "symbol": "auy", + "name": "yamana gold inc" + }, + { + "cik": 317788, + "symbol": "apps", + "name": "digital turbine inc" + }, + { + "cik": 1540184, + "symbol": "mdla", + "name": "medallia inc" + }, + { + "cik": 1438927, + "symbol": "gfszf", + "name": "g4s" + }, + { + "cik": 1370880, + "symbol": "feye", + "name": "fireeye inc" + }, + { + "cik": 1046257, + "symbol": "ingr", + "name": "ingredion inc" + }, + { + "cik": 1428336, + "symbol": "hqy", + "name": "healthequity inc" + }, + { + "cik": 1475922, + "symbol": "pri", + "name": "primerica inc" + }, + { + "cik": 1009001, + "symbol": "ccj", + "name": "cameco corp" + }, + { + "cik": 853816, + "symbol": "lstr", + "name": "landstar system inc" + }, + { + "cik": 867773, + "symbol": "spwr", + "name": "sunpower corp" + }, + { + "cik": 871763, + "symbol": "man", + "name": "manpowergroup inc" + }, + { + "cik": 1757073, + "symbol": "nvst", + "name": "envista holdings corp" + }, + { + "cik": 1609550, + "symbol": "insp", + "name": "inspire medical systems inc" + }, + { + "cik": 1775625, + "symbol": "sdc", + "name": "smiledirectclub inc" + }, + { + "cik": 720672, + "symbol": "sfb", + "name": "stifel financial corp" + }, + { + "cik": 866291, + "symbol": "algm", + "name": "allegro microsystems inc" + }, + { + "cik": 1592049, + "symbol": "rykkf", + "name": "ryohin keikaku co adr" + }, + { + "cik": 14595, + "symbol": "brthf", + "name": "brother industries ltd adr" + }, + { + "cik": 1050140, + "symbol": "dsgx", + "name": "descartes systems group inc" + }, + { + "cik": 1364250, + "symbol": "dei", + "name": "douglas emmett inc" + }, + { + "cik": 1745999, + "symbol": "beam", + "name": "beam therapeutics inc" + }, + { + "cik": 1647088, + "symbol": "wsc", + "name": "willscot mobile mini holdings corp" + }, + { + "cik": 1447945, + "symbol": "asmvf", + "name": "asm pacific technology ltd" + }, + { + "cik": 67716, + "symbol": "mdu", + "name": "mdu resources group inc" + }, + { + "cik": 764038, + "symbol": "ssb", + "name": "south state corp" + }, + { + "cik": 1021860, + "symbol": "nov", + "name": "national oilwell varco inc" + }, + { + "cik": 15615, + "symbol": "mtz", + "name": "mastec inc" + }, + { + "cik": 1722684, + "symbol": "wh", + "name": "wyndham hotels & resorts inc" + }, + { + "cik": 1367644, + "symbol": "ebs", + "name": "emergent biosolutions inc" + }, + { + "cik": 25232, + "symbol": "cuz", + "name": "cousins properties inc" + }, + { + "cik": 1418819, + "symbol": "irdm", + "name": "iridium communications inc" + }, + { + "cik": 1811882, + "symbol": "psth", + "name": "pershing square tontine holdings ltd" + }, + { + "cik": 1650664, + "symbol": "edit", + "name": "editas medicine inc" + }, + { + "cik": 1803599, + "symbol": "cnxc", + "name": "concentrix corp" + }, + { + "cik": 1655888, + "symbol": "orcc", + "name": "owl rock capital corp" + }, + { + "cik": 1299130, + "symbol": "pacb", + "name": "pacific biosciences of california inc" + }, + { + "cik": 1447250, + "symbol": "feltf", + "name": "fuji electric holdings ltd" + }, + { + "cik": 1664703, + "symbol": "be", + "name": "bloom energy corp" + }, + { + "cik": 1745916, + "symbol": "pfsi", + "name": "pennymac financial services inc" + }, + { + "cik": 1451160, + "symbol": "ektaf", + "name": "elekta ab adr" + }, + { + "cik": 30697, + "symbol": "wen", + "name": "wendys co" + }, + { + "cik": 926326, + "symbol": "omcl", + "name": "omnicell inc" + }, + { + "cik": 1795139, + "symbol": "gtbif", + "name": "green thumb industries inc" + }, + { + "cik": 1668397, + "symbol": "medp", + "name": "medpace holdings inc" + }, + { + "cik": 860748, + "symbol": "kmpr", + "name": "kemper corp" + }, + { + "cik": 1739942, + "symbol": "swi", + "name": "solarwinds corp" + }, + { + "cik": 1537280, + "symbol": "malrf", + "name": "mineral resources limited adr" + }, + { + "cik": 101778, + "symbol": "mro", + "name": "marathon oil corp" + }, + { + "cik": 1089063, + "symbol": "dks", + "name": "dicks sporting goods inc" + }, + { + "cik": 1669162, + "symbol": "knsl", + "name": "kinsale capital group inc" + }, + { + "cik": 36029, + "symbol": "ffin", + "name": "first financial bankshares inc" + }, + { + "cik": 105634, + "symbol": "eme", + "name": "emcor group inc" + }, + { + "cik": 1603145, + "symbol": "nep", + "name": "nextera energy partners lp" + }, + { + "cik": 1443669, + "symbol": "prlb", + "name": "proto labs inc" + }, + { + "cik": 1094972, + "symbol": "ugp", + "name": "ultrapar holdings inc" + }, + { + "cik": 1459200, + "symbol": "alrm", + "name": "alarmcom holdings inc" + }, + { + "cik": 1448893, + "symbol": "esnt", + "name": "essent group ltd" + }, + { + "cik": 1359841, + "symbol": "hbi", + "name": "hanesbrands inc" + }, + { + "cik": 1107843, + "symbol": "qlys", + "name": "qualys inc" + }, + { + "cik": 1626450, + "symbol": "bigc", + "name": "bigcommerce holdings inc" + }, + { + "cik": 1731831, + "symbol": "eidx", + "name": "eidos therapeutics inc" + }, + { + "cik": 1592386, + "symbol": "virt", + "name": "virtu financial inc" + }, + { + "cik": 1627475, + "symbol": "upwk", + "name": "upwork inc" + }, + { + "cik": 1724570, + "symbol": "msp", + "name": "datto holding corp" + }, + { + "cik": 1177702, + "symbol": "saia", + "name": "saia inc" + }, + { + "cik": 1764013, + "symbol": "imvt", + "name": "immunovant inc" + }, + { + "cik": 1411207, + "symbol": "alsn", + "name": "allison transmission holdings inc" + }, + { + "cik": 1436790, + "symbol": "nkrkf", + "name": "nokian tyres oyj" + }, + { + "cik": 1381668, + "symbol": "tfsl", + "name": "tfs financial corp" + }, + { + "cik": 1477720, + "symbol": "asan", + "name": "asana inc" + }, + { + "cik": 702257, + "symbol": "tsukf", + "name": "toyo suisan kaisha ltd adr" + }, + { + "cik": 1123452, + "symbol": "asr", + "name": "southeast airport group" + }, + { + "cik": 1821806, + "symbol": "lesl", + "name": "leslies inc" + }, + { + "cik": 1561894, + "symbol": "hasi", + "name": "hannon armstrong sustainable infrastructure capital inc" + }, + { + "cik": 82811, + "symbol": "rbc", + "name": "regal beloit corp" + }, + { + "cik": 1295484, + "symbol": "jobs", + "name": "51job inc" + }, + { + "cik": 1560327, + "symbol": "rpd", + "name": "rapid7 inc" + }, + { + "cik": 1316835, + "symbol": "bldr", + "name": "builders firstsource inc" + }, + { + "cik": 1128928, + "symbol": "flo", + "name": "flowers foods inc" + }, + { + "cik": 1371285, + "symbol": "trup", + "name": "trupanion inc" + }, + { + "cik": 1003078, + "symbol": "msm", + "name": "msc industrial direct co inc" + }, + { + "cik": 1588823, + "symbol": "tfii", + "name": "tfi international inc" + }, + { + "cik": 1057877, + "symbol": "ida", + "name": "idacorp inc" + }, + { + "cik": 1049521, + "symbol": "mrcy", + "name": "mercury systems inc" + }, + { + "cik": 1437776, + "symbol": "aemmf", + "name": "a2a spa" + }, + { + "cik": 1115055, + "symbol": "pnfpp", + "name": "pinnacle financial partners inc" + }, + { + "cik": 49279, + "symbol": "hsepf", + "name": "husky energy inc" + }, + { + "cik": 1296445, + "symbol": "ora", + "name": "ormat technologies inc" + }, + { + "cik": 733269, + "symbol": "ramp", + "name": "liveramp holdings inc" + }, + { + "cik": 906553, + "symbol": "byd", + "name": "boyd gaming corp" + }, + { + "cik": 833640, + "symbol": "powi", + "name": "power integrations inc" + }, + { + "cik": 354470, + "symbol": "npskf", + "name": "nsk ltd adr" + }, + { + "cik": 1581068, + "symbol": "brx", + "name": "brixmor property group inc" + }, + { + "cik": 875357, + "symbol": "bokf", + "name": "bok financial corp" + }, + { + "cik": 30625, + "symbol": "fls", + "name": "flowserve corp" + }, + { + "cik": 1674862, + "symbol": "ash", + "name": "ashland global holdings inc" + }, + { + "cik": 1514416, + "symbol": "band", + "name": "bandwidth inc" + }, + { + "cik": 1302215, + "symbol": "hli", + "name": "houlihan lokey inc" + }, + { + "cik": 1556616, + "symbol": "zhuzf", + "name": "zhuzhou crrc times electric co ltd adr" + }, + { + "cik": 910073, + "symbol": "nycb", + "name": "new york community bancorp inc" + }, + { + "cik": 1726978, + "symbol": "gshd", + "name": "goosehead insurance inc" + }, + { + "cik": 18349, + "symbol": "snv", + "name": "synovus financial corp" + }, + { + "cik": 1656081, + "symbol": "dava", + "name": "endava plc" + }, + { + "cik": 1479094, + "symbol": "stag", + "name": "stag industrial inc" + }, + { + "cik": 57515, + "symbol": "lanc", + "name": "lancaster colony corp" + }, + { + "cik": 84246, + "symbol": "rli", + "name": "rli corp" + }, + { + "cik": 772406, + "symbol": "crus", + "name": "cirrus logic inc" + }, + { + "cik": 802481, + "symbol": "ppc", + "name": "pilgrims pride corp" + }, + { + "cik": 88941, + "symbol": "smtc", + "name": "semtech corp" + }, + { + "cik": 1032033, + "symbol": "slm", + "name": "slm corp" + }, + { + "cik": 1487712, + "symbol": "al", + "name": "air lease corp" + }, + { + "cik": 1728190, + "symbol": "huya", + "name": "huya inc" + }, + { + "cik": 72333, + "symbol": "jwn", + "name": "nordstrom inc" + }, + { + "cik": 1745317, + "symbol": "graf", + "name": "velodyne lidar inc" + }, + { + "cik": 1772695, + "symbol": "nova", + "name": "sunnova energy international inc" + }, + { + "cik": 1439288, + "symbol": "rxn", + "name": "rexnord corp" + }, + { + "cik": 26324, + "symbol": "cw", + "name": "curtiss wright corp" + }, + { + "cik": 908732, + "symbol": "sptjf", + "name": "sinopec shanghai petrochemical co ltd" + }, + { + "cik": 1535379, + "symbol": "cldr", + "name": "cloudera inc" + }, + { + "cik": 1369868, + "symbol": "cbpo", + "name": "china biologic products holdings inc" + }, + { + "cik": 1437774, + "symbol": "bzzuf", + "name": "buzzi unicem spa" + }, + { + "cik": 763901, + "symbol": "bpop", + "name": "popular inc" + }, + { + "cik": 1308606, + "symbol": "src", + "name": "spirit realty capital inc" + }, + { + "cik": 1363829, + "symbol": "esgro", + "name": "enstar group ltd" + }, + { + "cik": 1597553, + "symbol": "sage", + "name": "sage therapeutics inc" + }, + { + "cik": 1435969, + "symbol": "mxchf", + "name": "orbia advance corporation sab de cv adr" + }, + { + "cik": 70866, + "symbol": "ncr", + "name": "ncr corp" + }, + { + "cik": 1788882, + "symbol": "root", + "name": "root inc" + }, + { + "cik": 1102993, + "symbol": "lpsn", + "name": "liveperson inc" + }, + { + "cik": 1754820, + "symbol": "trne", + "name": "desktop metal inc" + }, + { + "cik": 1678660, + "symbol": "prld", + "name": "prelude therapeutics inc" + }, + { + "cik": 1713952, + "symbol": "vvnt", + "name": "vivint smart home inc" + }, + { + "cik": 1450345, + "symbol": "rnmbf", + "name": "rheinmetall adr" + }, + { + "cik": 851520, + "symbol": "expo", + "name": "exponent inc" + }, + { + "cik": 1004434, + "symbol": "mgr", + "name": "affiliated managers group inc" + }, + { + "cik": 1477641, + "symbol": "dq", + "name": "daqo new energy corp" + }, + { + "cik": 1358762, + "symbol": "reta", + "name": "reata pharmaceuticals inc" + }, + { + "cik": 1436467, + "symbol": "adrzf", + "name": "andritz ag" + }, + { + "cik": 1019849, + "symbol": "pag", + "name": "penske automotive group inc" + }, + { + "cik": 1445305, + "symbol": "wk", + "name": "workiva inc" + }, + { + "cik": 1070081, + "symbol": "ptct", + "name": "ptc therapeutics inc" + }, + { + "cik": 1492074, + "symbol": "abczy", + "name": "abcam plc" + }, + { + "cik": 1408075, + "symbol": "gpk", + "name": "graphic packaging holding co" + }, + { + "cik": 1337619, + "symbol": "env", + "name": "envestnet inc" + }, + { + "cik": 1071321, + "symbol": "tkc", + "name": "turkcell iletisim hizmetleri a s" + }, + { + "cik": 81362, + "symbol": "kwr", + "name": "quaker chemical corp" + }, + { + "cik": 1324948, + "symbol": "roll", + "name": "rbc bearings inc" + }, + { + "cik": 1770450, + "symbol": "xrx", + "name": "xerox holdings corp" + }, + { + "cik": 1498828, + "symbol": "hhc", + "name": "howard hughes corp" + }, + { + "cik": 1450021, + "symbol": "wygpf", + "name": "worleyparsons ltd adr" + }, + { + "cik": 1487786, + "symbol": "meggf", + "name": "meggitt plc" + }, + { + "cik": 1651717, + "symbol": "nomd", + "name": "nomad foods ltd" + }, + { + "cik": 935036, + "symbol": "aciw", + "name": "aci worldwide inc" + }, + { + "cik": 1590714, + "symbol": "esi", + "name": "element solutions inc" + }, + { + "cik": 1508475, + "symbol": "vnet", + "name": "21vianet group inc" + }, + { + "cik": 1032220, + "symbol": "mms", + "name": "maximus inc" + }, + { + "cik": 25445, + "symbol": "cr", + "name": "crane co de" + }, + { + "cik": 1802883, + "symbol": "api", + "name": "agora inc" + }, + { + "cik": 1191334, + "symbol": "cncn", + "name": "chun can capital group" + }, + { + "cik": 1592438, + "symbol": "roymf", + "name": "royal mail plc adr" + }, + { + "cik": 1084048, + "symbol": "jcom", + "name": "j2 global inc" + }, + { + "cik": 1360901, + "symbol": "evr", + "name": "evercore inc" + }, + { + "cik": 1627223, + "symbol": "cc", + "name": "chemours co" + }, + { + "cik": 1080709, + "symbol": "arna", + "name": "arena pharmaceuticals inc" + }, + { + "cik": 1142417, + "symbol": "nxst", + "name": "nexstar media group inc" + }, + { + "cik": 1677576, + "symbol": "iipr", + "name": "innovative industrial properties inc" + }, + { + "cik": 883984, + "symbol": "icui", + "name": "icu medical inc de" + }, + { + "cik": 808450, + "symbol": "nav", + "name": "navistar international corp" + }, + { + "cik": 890564, + "symbol": "asgn", + "name": "asgn inc" + }, + { + "cik": 1355096, + "symbol": "qrtep", + "name": "qurate retail inc" + }, + { + "cik": 1334036, + "symbol": "crox", + "name": "crocs inc" + }, + { + "cik": 1424929, + "symbol": "foxf", + "name": "fox factory holding corp" + }, + { + "cik": 1434588, + "symbol": "lope", + "name": "grand canyon education inc" + }, + { + "cik": 1158463, + "symbol": "jblu", + "name": "jetblue airways corp" + }, + { + "cik": 1399224, + "symbol": "bbavf", + "name": "bba aviation plc" + }, + { + "cik": 1720990, + "symbol": "spaq", + "name": "fisker inc de" + }, + { + "cik": 1518521, + "symbol": "sepjf", + "name": "spectris plc adr" + }, + { + "cik": 5513, + "symbol": "unma", + "name": "unum group" + }, + { + "cik": 711377, + "symbol": "neog", + "name": "neogen corp" + }, + { + "cik": 1447122, + "symbol": "mzdaf", + "name": "mazda motor corp" + }, + { + "cik": 912892, + "symbol": "tv", + "name": "grupo televisa sab" + }, + { + "cik": 1446751, + "symbol": "cmhhf", + "name": "china merchants holdings international co ltd" + }, + { + "cik": 1477049, + "symbol": "phys", + "name": "sprott physical gold trust" + }, + { + "cik": 1520697, + "symbol": "achc", + "name": "acadia healthcare company inc" + }, + { + "cik": 70318, + "symbol": "thc", + "name": "tenet healthcare corp" + }, + { + "cik": 1808220, + "symbol": "goco", + "name": "gohealth inc" + }, + { + "cik": 1282637, + "symbol": "neu", + "name": "newmarket corp" + }, + { + "cik": 1636222, + "symbol": "wing", + "name": "wingstop inc" + }, + { + "cik": 1701732, + "symbol": "altr", + "name": "altair engineering inc" + }, + { + "cik": 1448056, + "symbol": "newr", + "name": "new relic inc" + }, + { + "cik": 1806201, + "symbol": "olenw", + "name": "open lending corp" + }, + { + "cik": 1157557, + "symbol": "cig", + "name": "energy co of minas gerais" + }, + { + "cik": 1727263, + "symbol": "ftdr", + "name": "frontdoor inc" + }, + { + "cik": 892553, + "symbol": "gtls", + "name": "chart industries inc" + }, + { + "cik": 1076930, + "symbol": "novt", + "name": "novanta inc" + }, + { + "cik": 1420800, + "symbol": "cfx", + "name": "colfax corp" + }, + { + "cik": 1674910, + "symbol": "vvv", + "name": "valvoline inc" + }, + { + "cik": 1518832, + "symbol": "wpx", + "name": "wpx energy inc" + }, + { + "cik": 868671, + "symbol": "gbci", + "name": "glacier bancorp inc" + }, + { + "cik": 1340652, + "symbol": "ccxi", + "name": "chemocentryx inc" + }, + { + "cik": 1648257, + "symbol": "hcm", + "name": "hutchison china meditech ltd" + }, + { + "cik": 1812364, + "symbol": "rlay", + "name": "relay therapeutics inc" + }, + { + "cik": 1756708, + "symbol": "jmia", + "name": "jumia technologies ag" + }, + { + "cik": 1447772, + "symbol": "unpsf", + "name": "uni-president china holdings ltd" + }, + { + "cik": 1776661, + "symbol": "cpaau", + "name": "advantage solutions inc" + }, + { + "cik": 1636519, + "symbol": "msgs", + "name": "madison square garden sports corp" + }, + { + "cik": 1144215, + "symbol": "ayi", + "name": "acuity brands inc" + }, + { + "cik": 1214816, + "symbol": "axs", + "name": "axis capital holdings ltd" + }, + { + "cik": 1357615, + "symbol": "kbr", + "name": "kbr inc" + }, + { + "cik": 1433642, + "symbol": "hlne", + "name": "hamilton lane inc" + }, + { + "cik": 1492422, + "symbol": "apls", + "name": "apellis pharmaceuticals inc" + }, + { + "cik": 1166388, + "symbol": "vrnt", + "name": "verint systems inc" + }, + { + "cik": 1108426, + "symbol": "pnm", + "name": "pnm resources inc" + }, + { + "cik": 1311370, + "symbol": "laz", + "name": "lazard ltd" + }, + { + "cik": 1402902, + "symbol": "czz", + "name": "cosan ltd" + }, + { + "cik": 1484769, + "symbol": "fubo", + "name": "fubotv inc fl" + }, + { + "cik": 944695, + "symbol": "thga", + "name": "hanover insurance group inc" + }, + { + "cik": 1752836, + "symbol": "cvet", + "name": "covetrus inc" + }, + { + "cik": 1177394, + "symbol": "snx", + "name": "synnex corp" + }, + { + "cik": 876437, + "symbol": "mtg", + "name": "mgic investment corp" + }, + { + "cik": 921638, + "symbol": "ssrm", + "name": "ssr mining inc" + }, + { + "cik": 1577916, + "symbol": "pinc", + "name": "premier inc" + }, + { + "cik": 1689662, + "symbol": "ard", + "name": "ardagh group sa" + }, + { + "cik": 1681459, + "symbol": "fti", + "name": "technipfmc plc" + }, + { + "cik": 1195737, + "symbol": "nea", + "name": "nuveen amt-free quality municipal income fund" + }, + { + "cik": 918646, + "symbol": "exp", + "name": "eagle materials inc" + }, + { + "cik": 1556593, + "symbol": "nrz", + "name": "new residential investment corp" + }, + { + "cik": 1689796, + "symbol": "jbgs", + "name": "jbg smith properties" + }, + { + "cik": 751978, + "symbol": "vicr", + "name": "vicor corp" + }, + { + "cik": 1486749, + "symbol": "hypmy", + "name": "hypermarcas sa" + }, + { + "cik": 1601072, + "symbol": "ay", + "name": "atlantica sustainable infrastructure plc" + }, + { + "cik": 1625791, + "symbol": "krnt", + "name": "kornit digital ltd" + }, + { + "cik": 822818, + "symbol": "clh", + "name": "clean harbors inc" + }, + { + "cik": 1652130, + "symbol": "ntla", + "name": "intellia therapeutics inc" + }, + { + "cik": 1102934, + "symbol": "ccmp", + "name": "cmc materials inc" + }, + { + "cik": 850209, + "symbol": "fl", + "name": "foot locker inc" + }, + { + "cik": 1061630, + "symbol": "bxmt", + "name": "blackstone mortgage trust inc" + }, + { + "cik": 1768267, + "symbol": "crnc", + "name": "cerence inc" + }, + { + "cik": 1704720, + "symbol": "cnne", + "name": "cannae holdings inc" + }, + { + "cik": 1224306, + "symbol": "isday", + "name": "israel discount bank ltd" + }, + { + "cik": 921082, + "symbol": "hiw", + "name": "highwoods properties inc" + }, + { + "cik": 1070235, + "symbol": "bb", + "name": "blackberry ltd" + }, + { + "cik": 1040971, + "symbol": "slg", + "name": "sl green realty corp" + }, + { + "cik": 74303, + "symbol": "oln", + "name": "olin corp" + }, + { + "cik": 920371, + "symbol": "ssd", + "name": "simpson manufacturing co inc" + }, + { + "cik": 891765, + "symbol": "bcauf", + "name": "brilliance china automotive holdings ltd" + }, + { + "cik": 40888, + "symbol": "ajrd", + "name": "aerojet rocketdyne holdings inc" + }, + { + "cik": 52827, + "symbol": "ryn", + "name": "rayonier inc" + }, + { + "cik": 1587732, + "symbol": "ogs", + "name": "one gas inc" + }, + { + "cik": 899749, + "symbol": "hr", + "name": "healthcare realty trust inc" + }, + { + "cik": 1449218, + "symbol": "gulrf", + "name": "guoco group ltd" + }, + { + "cik": 1675149, + "symbol": "aa", + "name": "alcoa corp" + }, + { + "cik": 69891, + "symbol": "fizz", + "name": "national beverage corp" + }, + { + "cik": 849869, + "symbol": "slgn", + "name": "silgan holdings inc" + }, + { + "cik": 1060822, + "symbol": "cri", + "name": "carters inc" + }, + { + "cik": 1623925, + "symbol": "am", + "name": "antero midstream corp" + }, + { + "cik": 1721947, + "symbol": "jamf", + "name": "jamf holding corp" + }, + { + "cik": 1666071, + "symbol": "cdlx", + "name": "cardlytics inc" + }, + { + "cik": 230557, + "symbol": "sigip", + "name": "selective insurance group inc" + }, + { + "cik": 795403, + "symbol": "wts", + "name": "watts water technologies inc" + }, + { + "cik": 729986, + "symbol": "ubsi", + "name": "united bankshares inc wv" + }, + { + "cik": 1125376, + "symbol": "ensg", + "name": "ensign group inc" + }, + { + "cik": 1810019, + "symbol": "rxt", + "name": "rackspace technology inc" + }, + { + "cik": 750004, + "symbol": "sgms", + "name": "scientific games corp" + }, + { + "cik": 1569650, + "symbol": "ozk", + "name": "bank ozk" + }, + { + "cik": 717605, + "symbol": "hxl", + "name": "hexcel corp de" + }, + { + "cik": 887936, + "symbol": "fcn", + "name": "fti consulting inc" + }, + { + "cik": 1577368, + "symbol": "qts", + "name": "qts realty trust inc" + }, + { + "cik": 1801198, + "symbol": "legn", + "name": "legend biotech corp" + }, + { + "cik": 1476150, + "symbol": "trno", + "name": "terreno realty corp" + }, + { + "cik": 1443275, + "symbol": "thklf", + "name": "thk co ltd" + }, + { + "cik": 1710583, + "symbol": "swch", + "name": "switch inc" + }, + { + "cik": 1438929, + "symbol": "kzmyf", + "name": "kaz minerals plc" + }, + { + "cik": 48039, + "symbol": "hfc", + "name": "hollyfrontier corp" + }, + { + "cik": 910406, + "symbol": "hain", + "name": "hain celestial group inc" + }, + { + "cik": 912958, + "symbol": "tigo", + "name": "millicom international cellular sa" + }, + { + "cik": 1365555, + "symbol": "afft", + "name": "amtrust financial services inc" + }, + { + "cik": 1617406, + "symbol": "pk", + "name": "park hotels & resorts inc" + }, + { + "cik": 1517302, + "symbol": "apam", + "name": "artisan partners asset management inc" + }, + { + "cik": 1454468, + "symbol": "bjchf", + "name": "beijing capital international airport co adr" + }, + { + "cik": 1610466, + "symbol": "shlx", + "name": "shell midstream partners lp" + }, + { + "cik": 717954, + "symbol": "unf", + "name": "unifirst corp" + }, + { + "cik": 1092699, + "symbol": "spsc", + "name": "sps commerce inc" + }, + { + "cik": 1082923, + "symbol": "stmp", + "name": "stampscom inc" + }, + { + "cik": 1688852, + "symbol": "safe", + "name": "safehold inc" + }, + { + "cik": 1364885, + "symbol": "spr", + "name": "spirit aerosystems holdings inc" + }, + { + "cik": 60519, + "symbol": "lpx", + "name": "louisiana-pacific corp" + }, + { + "cik": 1710155, + "symbol": "eye", + "name": "national vision holdings inc" + }, + { + "cik": 1737287, + "symbol": "allo", + "name": "allogene therapeutics inc" + }, + { + "cik": 1578735, + "symbol": "nghcz", + "name": "national general holdings corp" + }, + { + "cik": 1450461, + "symbol": "ebrpf", + "name": "ebro puleva sa adr" + }, + { + "cik": 1338065, + "symbol": "dcp", + "name": "dcp midstream lp" + }, + { + "cik": 1706431, + "symbol": "vir", + "name": "vir biotechnology inc" + }, + { + "cik": 1041792, + "symbol": "elpvy", + "name": "energy co of parana" + }, + { + "cik": 1720635, + "symbol": "nvt", + "name": "nvent electric plc" + }, + { + "cik": 1494259, + "symbol": "carg", + "name": "cargurus inc" + }, + { + "cik": 1531048, + "symbol": "nari", + "name": "inari medical inc" + }, + { + "cik": 1485888, + "symbol": "mlluy", + "name": "metallurgical corp of china ltd adr" + }, + { + "cik": 1568100, + "symbol": "pd", + "name": "pagerduty inc" + }, + { + "cik": 1327068, + "symbol": "uso", + "name": "united states oil fund lp" + }, + { + "cik": 714310, + "symbol": "vly", + "name": "valley national bancorp" + }, + { + "cik": 70145, + "symbol": "nfg", + "name": "national fuel gas co" + }, + { + "cik": 1655759, + "symbol": "arvn", + "name": "arvinas inc" + }, + { + "cik": 890926, + "symbol": "rdn", + "name": "radian group inc" + }, + { + "cik": 1724670, + "symbol": "prsp", + "name": "perspecta inc" + }, + { + "cik": 1451554, + "symbol": "wimhf", + "name": "william hill plc adr" + }, + { + "cik": 354707, + "symbol": "he", + "name": "hawaiian electric industries inc" + }, + { + "cik": 1454177, + "symbol": "apnhf", + "name": "aspen pharmacare holdings ltd adr" + }, + { + "cik": 1773427, + "symbol": "swtx", + "name": "springworks therapeutics inc" + }, + { + "cik": 1217234, + "symbol": "cdna", + "name": "caredx inc" + }, + { + "cik": 1168054, + "symbol": "xec", + "name": "cimarex energy co" + }, + { + "cik": 929008, + "symbol": "wcc", + "name": "wesco international inc" + }, + { + "cik": 1726445, + "symbol": "seer", + "name": "seer inc" + }, + { + "cik": 1038572, + "symbol": "cbd", + "name": "brazilian distribution co companhia brasileira de distr cbd" + }, + { + "cik": 1769731, + "symbol": "hkib", + "name": "amtd international inc" + }, + { + "cik": 1130464, + "symbol": "bkh", + "name": "black hills corp sd" + }, + { + "cik": 1574540, + "symbol": "doc", + "name": "physicians realty trust" + }, + { + "cik": 1743759, + "symbol": "crsr", + "name": "corsair gaming inc" + }, + { + "cik": 1446655, + "symbol": "kurrf", + "name": "kuraray co ltd" + }, + { + "cik": 927003, + "symbol": "aeis", + "name": "advanced energy industries inc" + }, + { + "cik": 1718512, + "symbol": "gtes", + "name": "gates industrial corp plc" + }, + { + "cik": 1137849, + "symbol": "pbsff", + "name": "prosiebensat1 media se adr" + }, + { + "cik": 1762417, + "symbol": "doyu", + "name": "douyu international holdings ltd" + }, + { + "cik": 1433660, + "symbol": "jbt", + "name": "john bean technologies corp" + }, + { + "cik": 1436652, + "symbol": "tpdnf", + "name": "topdanmark as" + }, + { + "cik": 1163302, + "symbol": "x", + "name": "united states steel corp" + }, + { + "cik": 1644675, + "symbol": "mime", + "name": "mimecast ltd" + }, + { + "cik": 62919, + "symbol": "maurf", + "name": "marui co ltd adr" + }, + { + "cik": 1771515, + "symbol": "go", + "name": "grocery outlet holding corp" + }, + { + "cik": 784977, + "symbol": "por", + "name": "portland general electric co or" + }, + { + "cik": 801337, + "symbol": "wbs", + "name": "webster financial corp" + }, + { + "cik": 1372920, + "symbol": "edu", + "name": "new oriental education & technology group inc" + }, + { + "cik": 102729, + "symbol": "vmi", + "name": "valmont industries inc" + }, + { + "cik": 1122976, + "symbol": "pol", + "name": "avient corp" + }, + { + "cik": 921299, + "symbol": "fgen", + "name": "fibrogen inc" + }, + { + "cik": 718937, + "symbol": "staa", + "name": "staar surgical co" + }, + { + "cik": 1573516, + "symbol": "musa", + "name": "murphy usa inc" + }, + { + "cik": 1692063, + "symbol": "sndr", + "name": "schneider national inc" + }, + { + "cik": 1091907, + "symbol": "wwe", + "name": "world wrestling entertainmentinc" + }, + { + "cik": 1620533, + "symbol": "shak", + "name": "shake shack inc" + }, + { + "cik": 1104506, + "symbol": "insm", + "name": "insmed inc" + }, + { + "cik": 9326, + "symbol": "bcpc", + "name": "balchem corp" + }, + { + "cik": 33213, + "symbol": "eqt", + "name": "eqt corp" + }, + { + "cik": 1482512, + "symbol": "hpp", + "name": "hudson pacific properties inc" + }, + { + "cik": 1808834, + "symbol": "prg", + "name": "prog holdings inc" + }, + { + "cik": 1493594, + "symbol": "mtsi", + "name": "macom technology solutions holdings inc" + }, + { + "cik": 1340243, + "symbol": "mor", + "name": "morphosys ag" + }, + { + "cik": 1794783, + "symbol": "slqt", + "name": "selectquote inc" + }, + { + "cik": 1726122, + "symbol": "cef", + "name": "sprott physical gold & silver trust" + }, + { + "cik": 1071438, + "symbol": "bak", + "name": "braskem sa" + }, + { + "cik": 1047127, + "symbol": "amkr", + "name": "amkor technology inc" + }, + { + "cik": 1574815, + "symbol": "bmch", + "name": "bmc stock holdings inc" + }, + { + "cik": 1131383, + "symbol": "stn", + "name": "stantec inc" + }, + { + "cik": 1361658, + "symbol": "wynd", + "name": "wyndham destinations inc" + }, + { + "cik": 88121, + "symbol": "seb", + "name": "seaboard corp de" + }, + { + "cik": 1447112, + "symbol": "mslof", + "name": "mitsui osk lines ltd" + }, + { + "cik": 1434621, + "symbol": "tree", + "name": "lendingtree inc" + }, + { + "cik": 1492298, + "symbol": "sbra", + "name": "sabra health care reit inc" + }, + { + "cik": 866368, + "symbol": "psb", + "name": "ps business parks inc ca" + }, + { + "cik": 1792580, + "symbol": "ovv", + "name": "ovintiv inc" + }, + { + "cik": 105132, + "symbol": "wdfc", + "name": "wd 40 co" + }, + { + "cik": 1444719, + "symbol": "yueif", + "name": "yue yuen industrial (holdings) ltd" + }, + { + "cik": 913353, + "symbol": "cigi", + "name": "colliers international group inc" + }, + { + "cik": 1045309, + "symbol": "gra", + "name": "w r grace & co" + }, + { + "cik": 7431, + "symbol": "awi", + "name": "armstrong world industries inc" + }, + { + "cik": 1320414, + "symbol": "sem", + "name": "select medical holdings corp" + }, + { + "cik": 1356570, + "symbol": "wns", + "name": "wns (holdings) ltd" + }, + { + "cik": 1615903, + "symbol": "ifs", + "name": "intercorp financial services inc" + }, + { + "cik": 917251, + "symbol": "adc", + "name": "agree realty corp" + }, + { + "cik": 1551306, + "symbol": "pgny", + "name": "progyny inc" + }, + { + "cik": 1739936, + "symbol": "svmk", + "name": "svmk inc" + }, + { + "cik": 780571, + "symbol": "itri", + "name": "itron inc" + }, + { + "cik": 21510, + "symbol": "cohr", + "name": "coherent inc" + }, + { + "cik": 1600930, + "symbol": "asccf", + "name": "asics corporation adr" + }, + { + "cik": 1481513, + "symbol": "jks", + "name": "jinkosolar holding co ltd" + }, + { + "cik": 1562476, + "symbol": "tmhc", + "name": "taylor morrison home corp" + }, + { + "cik": 886977, + "symbol": "meoh", + "name": "methanex corp" + }, + { + "cik": 1023731, + "symbol": "eght", + "name": "8x8 inc de" + }, + { + "cik": 1013880, + "symbol": "ttec", + "name": "ttec holdings inc" + }, + { + "cik": 29002, + "symbol": "diod", + "name": "diodes inc del" + }, + { + "cik": 1281895, + "symbol": "rckt", + "name": "rocket pharmaceuticals inc" + }, + { + "cik": 1597033, + "symbol": "sabrp", + "name": "sabre corp" + }, + { + "cik": 1284812, + "symbol": "cns", + "name": "cohen & steers inc" + }, + { + "cik": 1351288, + "symbol": "gwph", + "name": "gw pharmaceuticals plc" + }, + { + "cik": 275880, + "symbol": "psn", + "name": "parsons corp" + }, + { + "cik": 1289308, + "symbol": "ens", + "name": "enersys" + }, + { + "cik": 1642545, + "symbol": "swav", + "name": "shockwave medical inc" + }, + { + "cik": 1171825, + "symbol": "cit", + "name": "cit group inc" + }, + { + "cik": 1090116, + "symbol": "nvg", + "name": "nuveen amt-free municipal credit income fund" + }, + { + "cik": 1111335, + "symbol": "vc", + "name": "visteon corp" + }, + { + "cik": 1122491, + "symbol": "brfs", + "name": "brf sa" + }, + { + "cik": 1526520, + "symbol": "trip", + "name": "tripadvisor inc" + }, + { + "cik": 795266, + "symbol": "kbh", + "name": "kb home" + }, + { + "cik": 1725255, + "symbol": "ahco", + "name": "adapthealth corp" + }, + { + "cik": 1654151, + "symbol": "dcph", + "name": "deciphera pharmaceuticals inc" + }, + { + "cik": 1747009, + "symbol": "etrn", + "name": "equitrans midstream corp" + }, + { + "cik": 1015328, + "symbol": "wtfcp", + "name": "wintrust financial corp" + }, + { + "cik": 78890, + "symbol": "bco", + "name": "brinks co" + }, + { + "cik": 1272830, + "symbol": "vg", + "name": "vonage holdings corp" + }, + { + "cik": 1374535, + "symbol": "aimc", + "name": "altra industrial motion corp" + }, + { + "cik": 877365, + "symbol": "osb", + "name": "norbord inc" + }, + { + "cik": 1647639, + "symbol": "upst", + "name": "upstart holdings inc" + }, + { + "cik": 886128, + "symbol": "fcel", + "name": "fuelcell energy inc" + }, + { + "cik": 1178819, + "symbol": "agi", + "name": "alamos gold inc" + }, + { + "cik": 1643269, + "symbol": "sumo", + "name": "sumo logic inc" + }, + { + "cik": 85961, + "symbol": "r", + "name": "ryder system inc" + }, + { + "cik": 1810182, + "symbol": "alxo", + "name": "alx oncology holdings inc" + }, + { + "cik": 1040829, + "symbol": "rhp", + "name": "ryman hospitality properties inc" + }, + { + "cik": 1815442, + "symbol": "kymr", + "name": "kymera therapeutics inc" + }, + { + "cik": 1520262, + "symbol": "alks", + "name": "alkermes plc" + }, + { + "cik": 912767, + "symbol": "ufpi", + "name": "ufp industries inc" + }, + { + "cik": 1601994, + "symbol": "chfff", + "name": "china everbright international limited adr" + }, + { + "cik": 1781755, + "symbol": "brp", + "name": "brp group inc" + }, + { + "cik": 1759546, + "symbol": "ridew", + "name": "lordstown motors corp" + }, + { + "cik": 1690511, + "symbol": "goos", + "name": "canada goose holdings inc" + }, + { + "cik": 1692115, + "symbol": "swx", + "name": "southwest gas holdings inc" + }, + { + "cik": 8858, + "symbol": "avt", + "name": "avnet inc" + }, + { + "cik": 824142, + "symbol": "aaon", + "name": "aaon inc" + }, + { + "cik": 906709, + "symbol": "nktr", + "name": "nektar therapeutics" + }, + { + "cik": 1101215, + "symbol": "ads", + "name": "alliance data systems corp" + }, + { + "cik": 1070154, + "symbol": "stl", + "name": "sterling bancorp" + }, + { + "cik": 1342875, + "symbol": "tuiff", + "name": "tui ag" + }, + { + "cik": 763744, + "symbol": "lcii", + "name": "lci industries" + }, + { + "cik": 1639691, + "symbol": "livn", + "name": "livanova plc" + }, + { + "cik": 1192448, + "symbol": "gkos", + "name": "glaukos corp" + }, + { + "cik": 1173420, + "symbol": "ng", + "name": "novagold resources inc" + }, + { + "cik": 773141, + "symbol": "mdc", + "name": "mdc holdings inc" + }, + { + "cik": 1384101, + "symbol": "vcyt", + "name": "veracyte inc" + }, + { + "cik": 1660734, + "symbol": "trtn", + "name": "triton international ltd" + }, + { + "cik": 1619762, + "symbol": "igt", + "name": "international game technology plc" + }, + { + "cik": 892537, + "symbol": "mant", + "name": "mantech international corp" + }, + { + "cik": 356309, + "symbol": "njr", + "name": "new jersey resources corp" + }, + { + "cik": 912093, + "symbol": "viav", + "name": "viavi solutions inc" + }, + { + "cik": 1338749, + "symbol": "pch", + "name": "potlatchdeltic corp" + }, + { + "cik": 723188, + "symbol": "cbu", + "name": "community bank system inc" + }, + { + "cik": 1039399, + "symbol": "form", + "name": "formfactor inc" + }, + { + "cik": 1000753, + "symbol": "nsp", + "name": "insperity inc" + }, + { + "cik": 1527508, + "symbol": "ptve", + "name": "pactiv evergreen inc" + }, + { + "cik": 833079, + "symbol": "mth", + "name": "meritage homes corp" + }, + { + "cik": 1580905, + "symbol": "ibp", + "name": "installed building products inc" + }, + { + "cik": 1670541, + "symbol": "adnt", + "name": "adient plc" + }, + { + "cik": 1126956, + "symbol": "sr", + "name": "spire inc" + }, + { + "cik": 101382, + "symbol": "umbf", + "name": "umb financial corp" + }, + { + "cik": 1142750, + "symbol": "amn", + "name": "amn healthcare services inc" + }, + { + "cik": 1628369, + "symbol": "cwk", + "name": "cushman & wakefield plc" + }, + { + "cik": 1196501, + "symbol": "hmsy", + "name": "hms holdings corp" + }, + { + "cik": 19446, + "symbol": "cmd", + "name": "cantel medical corp" + }, + { + "cik": 1280263, + "symbol": "amba", + "name": "ambarella inc" + }, + { + "cik": 919012, + "symbol": "aeo", + "name": "american eagle outfitters inc" + }, + { + "cik": 1651052, + "symbol": "focs", + "name": "focus financial partners inc" + }, + { + "cik": 1579428, + "symbol": "axsm", + "name": "axsome therapeutics inc" + }, + { + "cik": 1401708, + "symbol": "nstg", + "name": "nanostring technologies inc" + }, + { + "cik": 1713947, + "symbol": "sogo", + "name": "sogou inc" + }, + { + "cik": 1571549, + "symbol": "sfrgf", + "name": "salvatore ferragamo spa adr" + }, + { + "cik": 1077771, + "symbol": "umpq", + "name": "umpqua holdings corp" + }, + { + "cik": 1067294, + "symbol": "cbrl", + "name": "cracker barrel old country store inc" + }, + { + "cik": 803649, + "symbol": "eqc", + "name": "equity commonwealth" + }, + { + "cik": 825313, + "symbol": "ab", + "name": "alliancebernstein holding lp" + }, + { + "cik": 109177, + "symbol": "spb", + "name": "spectrum brands holdings inc" + }, + { + "cik": 1069258, + "symbol": "ktos", + "name": "kratos defense & security solutions inc" + }, + { + "cik": 816956, + "symbol": "cnmd", + "name": "conmed corp" + }, + { + "cik": 1083839, + "symbol": "nad", + "name": "nuveen quality municipal income fund" + }, + { + "cik": 1788348, + "symbol": "bipc", + "name": "brookfield infrastructure corp" + }, + { + "cik": 1372612, + "symbol": "box", + "name": "box inc" + }, + { + "cik": 911177, + "symbol": "cwst", + "name": "casella waste systems inc" + }, + { + "cik": 1289790, + "symbol": "mic", + "name": "macquarie infrastructure corp" + }, + { + "cik": 38725, + "symbol": "fele", + "name": "franklin electric co inc" + }, + { + "cik": 794367, + "symbol": "m", + "name": "macys inc" + }, + { + "cik": 1088856, + "symbol": "cort", + "name": "corcept therapeutics inc" + }, + { + "cik": 1345105, + "symbol": "cpa", + "name": "copa holdings sa" + }, + { + "cik": 1604643, + "symbol": "aqua", + "name": "evoqua water technologies corp" + }, + { + "cik": 1375877, + "symbol": "csiq", + "name": "canadian solar inc" + }, + { + "cik": 1091223, + "symbol": "mtls", + "name": "materialise nv" + }, + { + "cik": 877860, + "symbol": "nhi", + "name": "national health investors inc" + }, + { + "cik": 719413, + "symbol": "hl", + "name": "hecla mining co de" + }, + { + "cik": 55242, + "symbol": "kmt", + "name": "kennametal inc" + }, + { + "cik": 912766, + "symbol": "laur", + "name": "laureate education inc" + }, + { + "cik": 1331520, + "symbol": "homb", + "name": "home bancshares inc" + }, + { + "cik": 806628, + "symbol": "dnp", + "name": "dnp select income fund inc" + }, + { + "cik": 891024, + "symbol": "pdco", + "name": "patterson companies inc" + }, + { + "cik": 310142, + "symbol": "sxt", + "name": "sensient technologies corp" + }, + { + "cik": 1463258, + "symbol": "regi", + "name": "renewable energy group inc" + }, + { + "cik": 1790982, + "symbol": "arnc", + "name": "arconic corp" + }, + { + "cik": 1386278, + "symbol": "gdot", + "name": "green dot corp" + }, + { + "cik": 1494319, + "symbol": "unvr", + "name": "univar solutions inc" + }, + { + "cik": 1677250, + "symbol": "zto", + "name": "zto express (cayman) inc" + }, + { + "cik": 66756, + "symbol": "ale", + "name": "allete inc" + }, + { + "cik": 776867, + "symbol": "wtm", + "name": "white mountains insurance group ltd" + }, + { + "cik": 1504008, + "symbol": "bku", + "name": "bankunited inc" + }, + { + "cik": 1461283, + "symbol": "ccohf", + "name": "china state construction international holdings limited adr" + }, + { + "cik": 1224608, + "symbol": "cno", + "name": "cno financial group inc" + }, + { + "cik": 1050446, + "symbol": "mstr", + "name": "microstrategy inc" + }, + { + "cik": 1581285, + "symbol": "bcucy", + "name": "brunello cucinelli spa adr" + }, + { + "cik": 1672013, + "symbol": "golf", + "name": "acushnet holdings corp" + }, + { + "cik": 1810546, + "symbol": "ebc", + "name": "eastern bankshares inc" + }, + { + "cik": 1740332, + "symbol": "rezi", + "name": "resideo technologies inc" + }, + { + "cik": 944809, + "symbol": "opk", + "name": "opko health inc" + }, + { + "cik": 856982, + "symbol": "mmsi", + "name": "merit medical systems inc" + }, + { + "cik": 46195, + "symbol": "boh", + "name": "bank of hawaii corp" + }, + { + "cik": 1013131, + "symbol": "bvn", + "name": "buenaventura mining co inc" + }, + { + "cik": 1796209, + "symbol": "jcqq", + "name": "api group corp" + }, + { + "cik": 1293971, + "symbol": "blue", + "name": "bluebird bio inc" + }, + { + "cik": 1558629, + "symbol": "pci", + "name": "pimco dynamic credit & mortgage income fund" + }, + { + "cik": 1651235, + "symbol": "acia", + "name": "acacia communications inc" + }, + { + "cik": 99780, + "symbol": "trn", + "name": "trinity industries inc" + }, + { + "cik": 1459417, + "symbol": "twou", + "name": "2u inc" + }, + { + "cik": 1685040, + "symbol": "bhfao", + "name": "brighthouse financial inc" + }, + { + "cik": 1725579, + "symbol": "ps", + "name": "pluralsight inc" + }, + { + "cik": 1175680, + "symbol": "cydy", + "name": "cytodyn inc" + }, + { + "cik": 1533475, + "symbol": "azihf", + "name": "azimut holding spa adr" + }, + { + "cik": 1438557, + "symbol": "anioy", + "name": "acerinox sa" + }, + { + "cik": 109563, + "symbol": "ait", + "name": "applied industrial technologies inc" + }, + { + "cik": 1401680, + "symbol": "csod", + "name": "cornerstone ondemand inc" + }, + { + "cik": 56047, + "symbol": "kex", + "name": "kirby corp" + }, + { + "cik": 932470, + "symbol": "teo", + "name": "telecom argentina sa" + }, + { + "cik": 1626115, + "symbol": "pjt", + "name": "pjt partners inc" + }, + { + "cik": 1593899, + "symbol": "avir", + "name": "atea pharmaceuticals inc" + }, + { + "cik": 1653477, + "symbol": "ngvt", + "name": "ingevity corp" + }, + { + "cik": 36377, + "symbol": "fhb", + "name": "first hawaiian inc" + }, + { + "cik": 1481646, + "symbol": "accd", + "name": "accolade inc" + }, + { + "cik": 37808, + "symbol": "fnb", + "name": "fnb corp pa" + }, + { + "cik": 1341766, + "symbol": "celh", + "name": "celsius holdings inc" + }, + { + "cik": 1562040, + "symbol": "sdipf", + "name": "frasers group plc adr" + }, + { + "cik": 910108, + "symbol": "lxp", + "name": "lexington realty trust" + }, + { + "cik": 1778016, + "symbol": "imab", + "name": "i-mab" + }, + { + "cik": 1768666, + "symbol": "bstz", + "name": "blackrock science & technology trust ii" + }, + { + "cik": 1632790, + "symbol": "enr", + "name": "energizer holdings inc" + }, + { + "cik": 1280058, + "symbol": "blkb", + "name": "blackbaud inc" + }, + { + "cik": 1517375, + "symbol": "spt", + "name": "sprout social inc" + }, + { + "cik": 320121, + "symbol": "tlsrp", + "name": "telos corp" + }, + { + "cik": 1158324, + "symbol": "ccoi", + "name": "cogent communications holdings inc" + }, + { + "cik": 1654795, + "symbol": "bbu", + "name": "brookfield business partners lp" + }, + { + "cik": 1077428, + "symbol": "tcbil", + "name": "texas capital bancshares inc tx" + }, + { + "cik": 785956, + "symbol": "jjsf", + "name": "j&j snack foods corp" + }, + { + "cik": 924805, + "symbol": "frhc", + "name": "freedom holding corp" + }, + { + "cik": 40211, + "symbol": "gmta", + "name": "gatx corp" + }, + { + "cik": 1653653, + "symbol": "rrr", + "name": "red rock resorts inc" + }, + { + "cik": 860546, + "symbol": "ofc", + "name": "corporate office properties trust" + }, + { + "cik": 1768224, + "symbol": "arct", + "name": "arcturus therapeutics holdings inc" + }, + { + "cik": 812128, + "symbol": "safm", + "name": "sanderson farms inc" + }, + { + "cik": 103730, + "symbol": "vsh", + "name": "vishay intertechnology inc" + }, + { + "cik": 1439222, + "symbol": "agio", + "name": "agios pharmaceuticals inc" + }, + { + "cik": 1297989, + "symbol": "exls", + "name": "exlservice holdings inc" + }, + { + "cik": 1595974, + "symbol": "rubi", + "name": "magnite inc" + }, + { + "cik": 1781753, + "symbol": "dao", + "name": "youdao inc" + }, + { + "cik": 1619954, + "symbol": "inov", + "name": "inovalon holdings inc" + }, + { + "cik": 39899, + "symbol": "tgna", + "name": "tegna inc" + }, + { + "cik": 840489, + "symbol": "fcfs", + "name": "firstcash inc" + }, + { + "cik": 1580670, + "symbol": "lgih", + "name": "lgi homes inc" + }, + { + "cik": 1362468, + "symbol": "algt", + "name": "allegiant travel co" + }, + { + "cik": 1102112, + "symbol": "pacw", + "name": "pacwest bancorp" + }, + { + "cik": 1417398, + "symbol": "hi", + "name": "hillenbrand inc" + }, + { + "cik": 913241, + "symbol": "shoo", + "name": "steven madden ltd" + }, + { + "cik": 1628171, + "symbol": "rvmd", + "name": "revolution medicines inc" + }, + { + "cik": 1056288, + "symbol": "fhi", + "name": "federated hermes inc" + }, + { + "cik": 73088, + "symbol": "nwe", + "name": "northwestern corp" + }, + { + "cik": 901491, + "symbol": "pzza", + "name": "papa johns international inc" + }, + { + "cik": 1559865, + "symbol": "evtc", + "name": "evertec inc" + }, + { + "cik": 1314727, + "symbol": "sono", + "name": "sonos inc" + }, + { + "cik": 817720, + "symbol": "syna", + "name": "synaptics inc" + }, + { + "cik": 1418121, + "symbol": "aple", + "name": "apple hospitality reit inc" + }, + { + "cik": 64996, + "symbol": "mcy", + "name": "mercury general corp" + }, + { + "cik": 26780, + "symbol": "dan", + "name": "dana inc" + }, + { + "cik": 1056903, + "symbol": "awr", + "name": "american states water co" + }, + { + "cik": 868780, + "symbol": "dorm", + "name": "dorman products inc" + }, + { + "cik": 1754068, + "symbol": "alvr", + "name": "allovir inc" + }, + { + "cik": 1552275, + "symbol": "sun", + "name": "sunoco lp" + }, + { + "cik": 1610601, + "symbol": "momo", + "name": "momo inc" + }, + { + "cik": 1424182, + "symbol": "bnl", + "name": "broadstone net lease inc" + }, + { + "cik": 1028918, + "symbol": "ppbi", + "name": "pacific premier bancorp inc" + }, + { + "cik": 84748, + "symbol": "rog", + "name": "rogers corp" + }, + { + "cik": 750577, + "symbol": "hwcpz", + "name": "hancock whitney corp" + }, + { + "cik": 1495153, + "symbol": "mmyt", + "name": "makemytrip ltd" + }, + { + "cik": 1742924, + "symbol": "lthm", + "name": "livent corp" + }, + { + "cik": 1425287, + "symbol": "wkhs", + "name": "workhorse group inc" + }, + { + "cik": 1629137, + "symbol": "gbt", + "name": "global blood therapeutics inc" + }, + { + "cik": 1497770, + "symbol": "wd", + "name": "walker & dunlop inc" + }, + { + "cik": 1408710, + "symbol": "fn", + "name": "fabrinet" + }, + { + "cik": 310522, + "symbol": "fnmap", + "name": "federal national mortgage association fannie mae" + }, + { + "cik": 1771917, + "symbol": "krtx", + "name": "karuna therapeutics inc" + }, + { + "cik": 888746, + "symbol": "ccu", + "name": "united breweries co inc" + }, + { + "cik": 1124941, + "symbol": "becn", + "name": "beacon roofing supply inc" + }, + { + "cik": 1014739, + "symbol": "opch", + "name": "option care health inc" + }, + { + "cik": 1468091, + "symbol": "veon", + "name": "veon ltd" + }, + { + "cik": 12659, + "symbol": "hrb", + "name": "h&r block inc" + }, + { + "cik": 1299939, + "symbol": "bxs", + "name": "bancorpsouth bank" + }, + { + "cik": 1723089, + "symbol": "chx", + "name": "championx corp" + }, + { + "cik": 1579877, + "symbol": "out", + "name": "outfront media inc" + }, + { + "cik": 933136, + "symbol": "coop", + "name": "mr cooper group inc" + }, + { + "cik": 1771910, + "symbol": "adct", + "name": "adc therapeutics sa" + }, + { + "cik": 1739566, + "symbol": "cch", + "name": "utz brands inc" + }, + { + "cik": 793074, + "symbol": "wern", + "name": "werner enterprises inc" + }, + { + "cik": 1041803, + "symbol": "psmt", + "name": "pricesmart inc" + }, + { + "cik": 39368, + "symbol": "ful", + "name": "fuller h b co" + }, + { + "cik": 701374, + "symbol": "six", + "name": "six flags entertainment corp" + }, + { + "cik": 1023514, + "symbol": "hmy", + "name": "harmony gold mining co ltd" + }, + { + "cik": 1821468, + "symbol": "yq", + "name": "17 education & technology group inc" + }, + { + "cik": 1702744, + "symbol": "smpl", + "name": "simply good foods co" + }, + { + "cik": 1472595, + "symbol": "rcm", + "name": "r1 rcm inc" + }, + { + "cik": 828916, + "symbol": "wri", + "name": "weingarten realty investors tx" + }, + { + "cik": 1446661, + "symbol": "jtekf", + "name": "jtekt corp" + }, + { + "cik": 1525759, + "symbol": "fskr", + "name": "fs kkr capital corp ii" + }, + { + "cik": 1308648, + "symbol": "ag", + "name": "first majestic silver corp" + }, + { + "cik": 1625414, + "symbol": "bzun", + "name": "baozun inc" + }, + { + "cik": 1656472, + "symbol": "cron", + "name": "cronos group inc" + }, + { + "cik": 104918, + "symbol": "ava", + "name": "avista corp" + }, + { + "cik": 1818355, + "symbol": "bft", + "name": "foley trasimene acquisition ii" + }, + { + "cik": 1553079, + "symbol": "fisk", + "name": "empire state realty op lp" + }, + { + "cik": 1541401, + "symbol": "esrt", + "name": "empire state realty trust inc" + }, + { + "cik": 1620280, + "symbol": "unit", + "name": "uniti group inc" + }, + { + "cik": 1021561, + "symbol": "nus", + "name": "nu skin enterprises inc" + }, + { + "cik": 1142596, + "symbol": "nuva", + "name": "nuvasive inc" + }, + { + "cik": 1039828, + "symbol": "ael", + "name": "american equity investment life holding co" + }, + { + "cik": 745308, + "symbol": "joe", + "name": "st joe co" + }, + { + "cik": 18654, + "symbol": "ailnp", + "name": "ameren illinois co" + }, + { + "cik": 9092, + "symbol": "bmi", + "name": "badger meter inc" + }, + { + "cik": 1114483, + "symbol": "itgr", + "name": "integer holdings corp" + }, + { + "cik": 1549346, + "symbol": "sstk", + "name": "shutterstock inc" + }, + { + "cik": 906338, + "symbol": "taro", + "name": "taro pharmaceutical industries ltd" + }, + { + "cik": 890319, + "symbol": "tco", + "name": "taubman centers inc" + }, + { + "cik": 1144980, + "symbol": "abg", + "name": "asbury automotive group inc" + }, + { + "cik": 1496323, + "symbol": "igms", + "name": "igm biosciences inc" + }, + { + "cik": 1759631, + "symbol": "shll", + "name": "hyliion holdings corp" + }, + { + "cik": 1564618, + "symbol": "ibtx", + "name": "independent bank group inc" + }, + { + "cik": 1379438, + "symbol": "exg", + "name": "eaton vance tax-managed global diversified equity income fund" + }, + { + "cik": 1326732, + "symbol": "xncr", + "name": "xencor inc" + }, + { + "cik": 1517228, + "symbol": "comm", + "name": "commscope holding company inc" + }, + { + "cik": 928876, + "symbol": "tsem", + "name": "tower semiconductor ltd" + }, + { + "cik": 1169561, + "symbol": "cvlt", + "name": "commvault systems inc" + }, + { + "cik": 707179, + "symbol": "onb", + "name": "old national bancorp in" + }, + { + "cik": 1549107, + "symbol": "manu", + "name": "manchester united plc" + }, + { + "cik": 703351, + "symbol": "eat", + "name": "brinker international inc" + }, + { + "cik": 1288469, + "symbol": "mxl", + "name": "maxlinear inc" + }, + { + "cik": 1444327, + "symbol": "lyscf", + "name": "lynas corp ltd" + }, + { + "cik": 1818383, + "symbol": "max", + "name": "mediaalpha inc" + }, + { + "cik": 1499543, + "symbol": "noah", + "name": "noah holdings ltd" + }, + { + "cik": 1739445, + "symbol": "aca", + "name": "arcosa inc" + }, + { + "cik": 1449219, + "symbol": "gmelf", + "name": "gome retail holdings limited adr" + }, + { + "cik": 94049, + "symbol": "scl", + "name": "stepan co" + }, + { + "cik": 1035201, + "symbol": "cwt", + "name": "california water service group" + }, + { + "cik": 1437178, + "symbol": "egfef", + "name": "efg eurobank ergasias sa adr" + }, + { + "cik": 1794350, + "symbol": "yala", + "name": "yalla group ltd" + }, + { + "cik": 1258602, + "symbol": "nni", + "name": "nelnet inc" + }, + { + "cik": 108516, + "symbol": "wor", + "name": "worthington industries inc" + }, + { + "cik": 866706, + "symbol": "ese", + "name": "esco technologies inc" + }, + { + "cik": 932696, + "symbol": "nsit", + "name": "insight enterprises inc" + }, + { + "cik": 1792267, + "symbol": "bnr", + "name": "burning rock biotech ltd" + }, + { + "cik": 46765, + "symbol": "hp", + "name": "helmerich & payne inc" + }, + { + "cik": 1811210, + "symbol": "cciv", + "name": "churchill capital corp iv" + }, + { + "cik": 1795251, + "symbol": "nnox", + "name": "nano-x imaging ltd" + }, + { + "cik": 110471, + "symbol": "www", + "name": "wolverine world wide inc de" + }, + { + "cik": 1596967, + "symbol": "mc", + "name": "moelis & co" + }, + { + "cik": 354647, + "symbol": "cvbf", + "name": "cvb financial corp" + }, + { + "cik": 771497, + "symbol": "abm", + "name": "abm industries inc de" + }, + { + "cik": 1674168, + "symbol": "hgv", + "name": "hilton grand vacations inc" + }, + { + "cik": 1396814, + "symbol": "pcrx", + "name": "pacira biosciences inc" + }, + { + "cik": 1829948, + "symbol": "cixx", + "name": "ci financial corp" + }, + { + "cik": 1412408, + "symbol": "phr", + "name": "phreesia inc" + }, + { + "cik": 1488139, + "symbol": "amrc", + "name": "ameresco inc" + }, + { + "cik": 1094005, + "symbol": "sina", + "name": "sina corp" + }, + { + "cik": 1001233, + "symbol": "sgmo", + "name": "sangamo therapeutics inc" + }, + { + "cik": 1158041, + "symbol": "trq", + "name": "turquoise hill resources ltd" + }, + { + "cik": 1130713, + "symbol": "ostk", + "name": "overstockcom inc" + }, + { + "cik": 1712184, + "symbol": "lilar", + "name": "liberty latin america ltd" + }, + { + "cik": 912615, + "symbol": "urbn", + "name": "urban outfitters inc" + }, + { + "cik": 1669779, + "symbol": "cwh", + "name": "camping world holdings inc" + }, + { + "cik": 9984, + "symbol": "b", + "name": "barnes group inc" + }, + { + "cik": 1819796, + "symbol": "gcmgw", + "name": "gcm grosvenor inc" + }, + { + "cik": 884713, + "symbol": "prmw", + "name": "primo water corp cn" + }, + { + "cik": 1499785, + "symbol": "tjbh", + "name": "tengjun biotechnology corp" + }, + { + "cik": 7789, + "symbol": "asb", + "name": "associated banc-corp" + }, + { + "cik": 1161728, + "symbol": "mgee", + "name": "mge energy inc" + }, + { + "cik": 746598, + "symbol": "brc", + "name": "brady corp" + }, + { + "cik": 860413, + "symbol": "fibk", + "name": "first interstate bancsystem inc" + }, + { + "cik": 1408100, + "symbol": "kw", + "name": "kennedy-wilson holdings inc" + }, + { + "cik": 351569, + "symbol": "abcb", + "name": "ameris bancorp" + }, + { + "cik": 883948, + "symbol": "aubap", + "name": "atlantic union bankshares corp" + }, + { + "cik": 1323885, + "symbol": "atrc", + "name": "atricure inc" + }, + { + "cik": 1801075, + "symbol": "anat", + "name": "american national group inc" + }, + { + "cik": 821130, + "symbol": "uzd", + "name": "united states cellular corp" + }, + { + "cik": 1594012, + "symbol": "isbc", + "name": "investors bancorp inc" + }, + { + "cik": 104889, + "symbol": "ghc", + "name": "graham holdings co" + }, + { + "cik": 1070412, + "symbol": "cnx", + "name": "cnx resources corp" + }, + { + "cik": 1422143, + "symbol": "kura", + "name": "kura oncology inc" + }, + { + "cik": 16040, + "symbol": "cbt", + "name": "cabot corp" + }, + { + "cik": 893691, + "symbol": "door", + "name": "masonite international corp" + }, + { + "cik": 317540, + "symbol": "coke", + "name": "coca-cola consolidated inc" + }, + { + "cik": 816761, + "symbol": "tdc", + "name": "teradata corp de" + }, + { + "cik": 1618563, + "symbol": "nsa", + "name": "national storage affiliates trust" + }, + { + "cik": 1574774, + "symbol": "beat", + "name": "biotelemetry inc" + }, + { + "cik": 1794846, + "symbol": "atco", + "name": "atlas corp" + }, + { + "cik": 1464794, + "symbol": "sebnf", + "name": "seven bank ltd adr" + }, + { + "cik": 1756607, + "symbol": "eqxwf", + "name": "equinox gold corp" + }, + { + "cik": 1567024, + "symbol": "bpxxy", + "name": "bper banca spa adr" + }, + { + "cik": 1159167, + "symbol": "irbt", + "name": "irobot corp" + }, + { + "cik": 1273813, + "symbol": "ago", + "name": "assured guaranty ltd" + }, + { + "cik": 1581164, + "symbol": "stay", + "name": "extended stay america inc" + }, + { + "cik": 1403752, + "symbol": "zyme", + "name": "zymeworks inc" + }, + { + "cik": 1275214, + "symbol": "csq", + "name": "calamos strategic total return fund" + }, + { + "cik": 1679826, + "symbol": "ping", + "name": "ping identity holding corp" + }, + { + "cik": 97216, + "symbol": "tex", + "name": "terex corp" + }, + { + "cik": 1378239, + "symbol": "omab", + "name": "central north airport group" + }, + { + "cik": 1409493, + "symbol": "cim", + "name": "chimera investment corp" + }, + { + "cik": 861842, + "symbol": "caty", + "name": "cathay general bancorp" + }, + { + "cik": 723612, + "symbol": "car", + "name": "avis budget group inc" + }, + { + "cik": 1265131, + "symbol": "hth", + "name": "hilltop holdings inc" + }, + { + "cik": 3453, + "symbol": "matx", + "name": "matson inc" + }, + { + "cik": 1641991, + "symbol": "flow", + "name": "spx flow inc" + }, + { + "cik": 857855, + "symbol": "ucbio", + "name": "united community banks inc" + }, + { + "cik": 1567514, + "symbol": "itci", + "name": "intra-cellular therapies inc" + }, + { + "cik": 88205, + "symbol": "spxc", + "name": "spx corp" + }, + { + "cik": 22444, + "symbol": "cmc", + "name": "commercial metals co" + }, + { + "cik": 1699382, + "symbol": "pmvp", + "name": "pmv pharmaceuticals inc" + }, + { + "cik": 886158, + "symbol": "bbby", + "name": "bed bath & beyond inc" + }, + { + "cik": 1446588, + "symbol": "ninof", + "name": "nikon corp" + }, + { + "cik": 1674335, + "symbol": "jeld", + "name": "jeld-wen holding inc" + }, + { + "cik": 887343, + "symbol": "colb", + "name": "columbia banking system inc" + }, + { + "cik": 1575515, + "symbol": "sfm", + "name": "sprouts farmers market inc" + }, + { + "cik": 1275617, + "symbol": "utf", + "name": "cohen & steers infrastructure fund inc" + }, + { + "cik": 1564902, + "symbol": "seas", + "name": "seaworld entertainment inc" + }, + { + "cik": 1350865, + "symbol": "qntqf", + "name": "qinetiq group plc" + }, + { + "cik": 1320695, + "symbol": "ths", + "name": "treehouse foods inc" + }, + { + "cik": 1760965, + "symbol": "ktb", + "name": "kontoor brands inc" + }, + { + "cik": 776901, + "symbol": "indb", + "name": "independent bank corp" + }, + { + "cik": 1295810, + "symbol": "sho", + "name": "sunstone hotel investors inc" + }, + { + "cik": 1809541, + "symbol": "bcat", + "name": "blackrock capital allocation trust" + }, + { + "cik": 1733186, + "symbol": "vne", + "name": "veoneer inc" + }, + { + "cik": 1591763, + "symbol": "enbl", + "name": "enable midstream partners lp" + }, + { + "cik": 1787400, + "symbol": "nktx", + "name": "nkarta inc" + }, + { + "cik": 56679, + "symbol": "kfy", + "name": "korn ferry" + }, + { + "cik": 1498710, + "symbol": "save", + "name": "spirit airlines inc" + }, + { + "cik": 1395942, + "symbol": "kar", + "name": "kar auction services inc" + }, + { + "cik": 1438556, + "symbol": "bndsf", + "name": "banco de sabadell sa" + }, + { + "cik": 1446662, + "symbol": "jgccf", + "name": "jgc corp" + }, + { + "cik": 42582, + "symbol": "gt", + "name": "goodyear tire & rubber co oh" + }, + { + "cik": 1474098, + "symbol": "peb", + "name": "pebblebrook hotel trust" + }, + { + "cik": 819793, + "symbol": "ain", + "name": "albany international corp de" + }, + { + "cik": 827187, + "symbol": "snbr", + "name": "sleep number corp" + }, + { + "cik": 1432364, + "symbol": "azul", + "name": "azul sa" + }, + { + "cik": 315709, + "symbol": "iboc", + "name": "international bancshares corp" + }, + { + "cik": 215466, + "symbol": "cde", + "name": "coeur mining inc" + }, + { + "cik": 1761312, + "symbol": "plmr", + "name": "palomar holdings inc" + }, + { + "cik": 912562, + "symbol": "rock", + "name": "gibraltar industries inc" + }, + { + "cik": 812801, + "symbol": "nuv", + "name": "nuveen municipal value fund inc" + }, + { + "cik": 1679688, + "symbol": "clny", + "name": "colony capital inc" + }, + { + "cik": 1604868, + "symbol": "grwg", + "name": "growgeneration corp" + }, + { + "cik": 1476765, + "symbol": "gbdc", + "name": "golub capital bdc inc" + }, + { + "cik": 1484612, + "symbol": "om", + "name": "outset medical inc" + }, + { + "cik": 1045450, + "symbol": "epr", + "name": "epr properties" + }, + { + "cik": 931148, + "symbol": "eaf", + "name": "graftech international ltd" + }, + { + "cik": 67215, + "symbol": "dy", + "name": "dycom industries inc" + }, + { + "cik": 910329, + "symbol": "med", + "name": "medifast inc" + }, + { + "cik": 704532, + "symbol": "onto", + "name": "onto innovation inc" + }, + { + "cik": 867536, + "symbol": "jelcf", + "name": "johnson electric holdings ltd fi" + }, + { + "cik": 43920, + "symbol": "gef", + "name": "greif inc" + }, + { + "cik": 837465, + "symbol": "ely", + "name": "callaway golf co" + }, + { + "cik": 1262976, + "symbol": "cmpr", + "name": "cimpress plc" + }, + { + "cik": 1013934, + "symbol": "stra", + "name": "strategic education inc" + }, + { + "cik": 1124198, + "symbol": "flr", + "name": "fluor corp" + }, + { + "cik": 1609809, + "symbol": "mcrb", + "name": "seres therapeutics inc" + }, + { + "cik": 1771007, + "symbol": "afya", + "name": "afya ltd" + }, + { + "cik": 1746618, + "symbol": "rvlv", + "name": "revolve group inc" + }, + { + "cik": 1137887, + "symbol": "nzf", + "name": "nuveen municipal credit income fund" + }, + { + "cik": 1124804, + "symbol": "mdrx", + "name": "allscripts healthcare solutions inc" + }, + { + "cik": 1744781, + "symbol": "niu", + "name": "niu technologies" + }, + { + "cik": 1561680, + "symbol": "tph", + "name": "tri pointe group inc" + }, + { + "cik": 1799983, + "symbol": "gb", + "name": "global blue group holding ag" + }, + { + "cik": 7332, + "symbol": "swn", + "name": "southwestern energy co" + }, + { + "cik": 90498, + "symbol": "sfnc", + "name": "simmons first national corp" + }, + { + "cik": 1511337, + "symbol": "rlj", + "name": "rlj lodging trust" + }, + { + "cik": 75252, + "symbol": "omi", + "name": "owens & minor inc va" + }, + { + "cik": 903129, + "symbol": "thrm", + "name": "gentherm inc" + }, + { + "cik": 1680367, + "symbol": "sttk", + "name": "shattuck labs inc" + }, + { + "cik": 1805387, + "symbol": "arybw", + "name": "cerevel therapeutics holdings inc" + }, + { + "cik": 107687, + "symbol": "wgo", + "name": "winnebago industries inc" + }, + { + "cik": 1606498, + "symbol": "avns", + "name": "avanos medical inc" + }, + { + "cik": 785786, + "symbol": "plxs", + "name": "plexus corp" + }, + { + "cik": 1719395, + "symbol": "ear", + "name": "eargo inc" + }, + { + "cik": 1073349, + "symbol": "epay", + "name": "bottomline technologies inc de" + }, + { + "cik": 1012139, + "symbol": "gsh", + "name": "guangshen railway co ltd" + }, + { + "cik": 1722964, + "symbol": "ymab", + "name": "y-mabs therapeutics inc" + }, + { + "cik": 1031203, + "symbol": "gpi", + "name": "group 1 automotive inc" + }, + { + "cik": 1440153, + "symbol": "bkuh", + "name": "bakhu holdings corp" + }, + { + "cik": 1590717, + "symbol": "ctre", + "name": "caretrust reit inc" + }, + { + "cik": 1074952, + "symbol": "nac", + "name": "nuveen california quality municipal income fund" + }, + { + "cik": 1767582, + "symbol": "lk", + "name": "luckin coffee inc" + }, + { + "cik": 1449267, + "symbol": "scgey", + "name": "shougang concord international" + }, + { + "cik": 797721, + "symbol": "vsat", + "name": "viasat inc" + }, + { + "cik": 1728951, + "symbol": "eprt", + "name": "essential properties realty trust inc" + }, + { + "cik": 1621563, + "symbol": "sum", + "name": "summit materials inc" + }, + { + "cik": 1138639, + "symbol": "infn", + "name": "infinera corp" + }, + { + "cik": 1623526, + "symbol": "stok", + "name": "stoke therapeutics inc" + }, + { + "cik": 918608, + "symbol": "ego", + "name": "eldorado gold corp fi" + }, + { + "cik": 1682745, + "symbol": "vrrm", + "name": "verra mobility corp" + }, + { + "cik": 1299709, + "symbol": "axo", + "name": "axos financial inc" + }, + { + "cik": 1383906, + "symbol": "aozoy", + "name": "aozora bank ltd" + }, + { + "cik": 1012019, + "symbol": "rushb", + "name": "rush enterprises inc tx" + }, + { + "cik": 1392972, + "symbol": "pro", + "name": "pros holdings inc" + }, + { + "cik": 1127537, + "symbol": "lung", + "name": "pulmonx corp" + }, + { + "cik": 1368622, + "symbol": "avav", + "name": "aerovironment inc" + }, + { + "cik": 1650132, + "symbol": "fcpt", + "name": "four corners property trust inc" + }, + { + "cik": 1725160, + "symbol": "zntl", + "name": "zentalis pharmaceuticals inc" + }, + { + "cik": 933036, + "symbol": "rcii", + "name": "rent a center inc de" + }, + { + "cik": 1044896, + "symbol": "iba", + "name": "industrias bachoco sab de cv" + }, + { + "cik": 1430723, + "symbol": "sfbs", + "name": "servisfirst bancshares inc" + }, + { + "cik": 1505952, + "symbol": "domo", + "name": "domo inc" + }, + { + "cik": 828944, + "symbol": "wsfs", + "name": "wsfs financial corp" + }, + { + "cik": 91928, + "symbol": "sji", + "name": "south jersey industries inc" + }, + { + "cik": 354963, + "symbol": "shen", + "name": "shenandoah telecommunications co va" + }, + { + "cik": 1054905, + "symbol": "iosp", + "name": "innospec inc" + }, + { + "cik": 1802665, + "symbol": "hrmy", + "name": "harmony biosciences holdings inc" + }, + { + "cik": 807882, + "symbol": "jack", + "name": "jack in the box inc new" + }, + { + "cik": 1741830, + "symbol": "kron", + "name": "kronos bio inc" + }, + { + "cik": 1803696, + "symbol": "xper", + "name": "xperi holding corp" + }, + { + "cik": 1592000, + "symbol": "enlc", + "name": "enlink midstream llc" + }, + { + "cik": 811532, + "symbol": "fun", + "name": "cedar fair l p" + }, + { + "cik": 1724521, + "symbol": "rcus", + "name": "arcus biosciences inc" + }, + { + "cik": 1397702, + "symbol": "silk", + "name": "silk road medical inc" + }, + { + "cik": 793547, + "symbol": "navg", + "name": "navigators group inc" + }, + { + "cik": 1075607, + "symbol": "tcp", + "name": "tc pipelines lp" + }, + { + "cik": 912728, + "symbol": "fwrd", + "name": "forward air corp" + }, + { + "cik": 912752, + "symbol": "sbgi", + "name": "sinclair broadcast group inc" + }, + { + "cik": 1614178, + "symbol": "yext", + "name": "yext inc" + }, + { + "cik": 893949, + "symbol": "md", + "name": "mednax inc" + }, + { + "cik": 1276520, + "symbol": "gnw", + "name": "genworth financial inc" + }, + { + "cik": 1455684, + "symbol": "tpic", + "name": "tpi composites inc" + }, + { + "cik": 1426332, + "symbol": "ngm", + "name": "ngm biopharmaceuticals inc" + }, + { + "cik": 1679082, + "symbol": "myov", + "name": "myovant sciences ltd" + }, + { + "cik": 1639234, + "symbol": "cvtv", + "name": "china vtv ltd" + }, + { + "cik": 1508844, + "symbol": "pvg", + "name": "pretium resources inc" + }, + { + "cik": 1227654, + "symbol": "cmp", + "name": "compass minerals international inc" + }, + { + "cik": 1740594, + "symbol": "arce", + "name": "arco platform ltd" + }, + { + "cik": 1588966, + "symbol": "bposf", + "name": "bpost sa nv adr" + }, + { + "cik": 1396440, + "symbol": "main", + "name": "main street capital corp" + }, + { + "cik": 1033012, + "symbol": "fbc", + "name": "flagstar bancorp inc" + }, + { + "cik": 1530804, + "symbol": "trox", + "name": "tronox holdings plc" + }, + { + "cik": 1733418, + "symbol": "apha", + "name": "aphria inc" + }, + { + "cik": 1018963, + "symbol": "ati", + "name": "allegheny technologies inc" + }, + { + "cik": 1287032, + "symbol": "pbc", + "name": "prospect capital corp" + }, + { + "cik": 1795250, + "symbol": "msge", + "name": "madison square garden entertainment corp" + }, + { + "cik": 913744, + "symbol": "vtklf", + "name": "vtech holdings ltd adr" + }, + { + "cik": 1114700, + "symbol": "ggal", + "name": "grupo financiero galicia sa" + }, + { + "cik": 897723, + "symbol": "sanm", + "name": "sanmina corp" + }, + { + "cik": 891014, + "symbol": "mtx", + "name": "minerals technologies inc" + }, + { + "cik": 1121142, + "symbol": "maxr", + "name": "maxar technologies inc" + }, + { + "cik": 1714174, + "symbol": "brfrf", + "name": "burford capital ltd" + }, + { + "cik": 56978, + "symbol": "klic", + "name": "kulicke & soffa industries inc" + }, + { + "cik": 19411, + "symbol": "mgln", + "name": "magellan health inc" + }, + { + "cik": 1627272, + "symbol": "or", + "name": "osisko gold royalties ltd" + }, + { + "cik": 1422183, + "symbol": "fsk", + "name": "fs kkr capital corp" + }, + { + "cik": 1415404, + "symbol": "sats", + "name": "echostar corp" + }, + { + "cik": 1078075, + "symbol": "ntct", + "name": "netscout systems inc" + }, + { + "cik": 1406666, + "symbol": "calx", + "name": "calix inc" + }, + { + "cik": 917273, + "symbol": "rmbs", + "name": "rambus inc" + }, + { + "cik": 1364276, + "symbol": "uehpf", + "name": "ultra electronics holdings plc" + }, + { + "cik": 1042776, + "symbol": "pdm", + "name": "piedmont office realty trust inc" + }, + { + "cik": 1113256, + "symbol": "mtor", + "name": "meritor inc" + }, + { + "cik": 700564, + "symbol": "fultp", + "name": "fulton financial corp" + }, + { + "cik": 790816, + "symbol": "bdn", + "name": "brandywine realty trust" + }, + { + "cik": 1690947, + "symbol": "hexo", + "name": "hexo corp" + }, + { + "cik": 1345016, + "symbol": "yelp", + "name": "yelp inc" + }, + { + "cik": 1278027, + "symbol": "bgs", + "name": "b&g foods inc" + }, + { + "cik": 1445168, + "symbol": "bcnaf", + "name": "barco nv" + }, + { + "cik": 731012, + "symbol": "hcsg", + "name": "healthcare services group inc" + }, + { + "cik": 98677, + "symbol": "tr", + "name": "tootsie roll industries inc" + }, + { + "cik": 1720592, + "symbol": "rpayw", + "name": "repay holdings corp" + }, + { + "cik": 793733, + "symbol": "skyw", + "name": "skywest inc" + }, + { + "cik": 1689548, + "symbol": "prax", + "name": "praxis precision medicines inc" + }, + { + "cik": 1090454, + "symbol": "fuwaf", + "name": "furukawa electric co ltd" + }, + { + "cik": 1220754, + "symbol": "prsc", + "name": "providence service corp" + }, + { + "cik": 1816590, + "symbol": "cmps", + "name": "compass pathways plc" + }, + { + "cik": 1124524, + "symbol": "cyrx", + "name": "cryoport inc" + }, + { + "cik": 850261, + "symbol": "srne", + "name": "sorrento therapeutics inc" + }, + { + "cik": 1734517, + "symbol": "vie", + "name": "viela bio inc" + }, + { + "cik": 904851, + "symbol": "ypf", + "name": "ypf sociedad anonima" + }, + { + "cik": 89439, + "symbol": "mli", + "name": "mueller industries inc" + }, + { + "cik": 1109345, + "symbol": "nvmi", + "name": "nova measuring instruments ltd" + }, + { + "cik": 894315, + "symbol": "sitc", + "name": "site centers corp" + }, + { + "cik": 876167, + "symbol": "prgs", + "name": "progress software corp ma" + }, + { + "cik": 1605607, + "symbol": "pgre", + "name": "paramount group inc" + }, + { + "cik": 66382, + "symbol": "mlhr", + "name": "herman miller inc" + }, + { + "cik": 1035983, + "symbol": "fix", + "name": "comfort systems usa inc" + }, + { + "cik": 1614184, + "symbol": "cade", + "name": "cadence bancorporation" + }, + { + "cik": 1547903, + "symbol": "nmih", + "name": "nmi holdings inc" + }, + { + "cik": 1356090, + "symbol": "pgen", + "name": "precigen inc" + }, + { + "cik": 1437470, + "symbol": "mythf", + "name": "mytilineos holdings sa" + }, + { + "cik": 1176433, + "symbol": "jps", + "name": "nuveen preferred & income securities fund" + }, + { + "cik": 277509, + "symbol": "fss", + "name": "federal signal corp de" + }, + { + "cik": 1572694, + "symbol": "gsbd", + "name": "goldman sachs bdc inc" + }, + { + "cik": 1590364, + "symbol": "ftai", + "name": "fortress transportation & infrastructure investors llc" + }, + { + "cik": 1603756, + "symbol": "axnx", + "name": "axonics modulation technologies inc" + }, + { + "cik": 1462120, + "symbol": "lob", + "name": "live oak bancshares inc" + }, + { + "cik": 1446847, + "symbol": "irwd", + "name": "ironwood pharmaceuticals inc" + }, + { + "cik": 940942, + "symbol": "hubg", + "name": "hub group inc" + }, + { + "cik": 897448, + "symbol": "amrn", + "name": "amarin corp plc uk" + }, + { + "cik": 1643953, + "symbol": "prplw", + "name": "purple innovation inc" + }, + { + "cik": 712534, + "symbol": "frme", + "name": "first merchants corp" + }, + { + "cik": 1328581, + "symbol": "bcc", + "name": "boise cascade co" + }, + { + "cik": 1096752, + "symbol": "epc", + "name": "edgewell personal care co" + }, + { + "cik": 1666138, + "symbol": "atkr", + "name": "atkore international group inc" + }, + { + "cik": 203596, + "symbol": "wsbcp", + "name": "wesbanco inc" + }, + { + "cik": 887733, + "symbol": "centa", + "name": "central garden & pet co" + }, + { + "cik": 1359711, + "symbol": "mfgp", + "name": "micro focus international plc" + }, + { + "cik": 1641431, + "symbol": "orraf", + "name": "orora limited adr" + }, + { + "cik": 1699136, + "symbol": "whd", + "name": "cactus inc" + }, + { + "cik": 1326110, + "symbol": "nk", + "name": "nantkwest inc" + }, + { + "cik": 789460, + "symbol": "int", + "name": "world fuel services corp" + }, + { + "cik": 1573221, + "symbol": "real", + "name": "therealreal inc" + }, + { + "cik": 1405495, + "symbol": "idcc", + "name": "interdigital inc" + }, + { + "cik": 1144800, + "symbol": "tac", + "name": "transalta corp" + }, + { + "cik": 1051512, + "symbol": "tda", + "name": "telephone & data systems inc de" + }, + { + "cik": 1447125, + "symbol": "kncaf", + "name": "konica minolta holdings inc" + }, + { + "cik": 766829, + "symbol": "sjw", + "name": "sjw group" + }, + { + "cik": 1526593, + "symbol": "dpuky", + "name": "dominos pizza uk & irl plc adr" + }, + { + "cik": 1519821, + "symbol": "yduqy", + "name": "estacio participacoes sa" + }, + { + "cik": 1057706, + "symbol": "fbp", + "name": "first bancorp pr" + }, + { + "cik": 1451809, + "symbol": "sitm", + "name": "sitime corp" + }, + { + "cik": 1350593, + "symbol": "mwa", + "name": "mueller water products inc" + }, + { + "cik": 1442836, + "symbol": "mrsn", + "name": "mersana therapeutics inc" + }, + { + "cik": 1433087, + "symbol": "flidf", + "name": "flsmidth & co a s" + }, + { + "cik": 936528, + "symbol": "wafd", + "name": "washington federal inc" + }, + { + "cik": 1695295, + "symbol": "hyfm", + "name": "hydrofarm holdings group inc" + }, + { + "cik": 1190935, + "symbol": "pty", + "name": "pimco corporate & income opportunity fund" + }, + { + "cik": 1483379, + "symbol": "cioxf", + "name": "cielo sa" + }, + { + "cik": 818033, + "symbol": "hrtx", + "name": "heron therapeutics inc de" + }, + { + "cik": 1340736, + "symbol": "ety", + "name": "eaton vance tax-managed diversified equity income fund" + }, + { + "cik": 1355754, + "symbol": "inst", + "name": "instructure inc" + }, + { + "cik": 1479290, + "symbol": "rvnc", + "name": "revance therapeutics inc" + }, + { + "cik": 1447599, + "symbol": "fit", + "name": "fitbit inc" + }, + { + "cik": 1604464, + "symbol": "atra", + "name": "atara biotherapeutics inc" + }, + { + "cik": 1364479, + "symbol": "hri", + "name": "herc holdings inc" + }, + { + "cik": 1563411, + "symbol": "cstm", + "name": "constellium se" + }, + { + "cik": 874866, + "symbol": "crvl", + "name": "corvel corp" + }, + { + "cik": 77877, + "symbol": "pdce", + "name": "pdc energy inc" + }, + { + "cik": 1708035, + "symbol": "pqg", + "name": "pq group holdings inc" + }, + { + "cik": 1333493, + "symbol": "ehth", + "name": "ehealth inc" + }, + { + "cik": 24491, + "symbol": "ctb", + "name": "cooper tire & rubber co" + }, + { + "cik": 1519061, + "symbol": "tse", + "name": "trinseo sa" + }, + { + "cik": 57131, + "symbol": "lzb", + "name": "la-z-boy inc" + }, + { + "cik": 1750284, + "symbol": "olma", + "name": "olema pharmaceuticals inc" + }, + { + "cik": 822663, + "symbol": "ipar", + "name": "inter parfums inc" + }, + { + "cik": 26076, + "symbol": "cub", + "name": "cubic corp de" + }, + { + "cik": 2230, + "symbol": "adx", + "name": "adams diversified equity fund inc" + }, + { + "cik": 894081, + "symbol": "atsg", + "name": "air transport services group inc" + }, + { + "cik": 1636422, + "symbol": "hcat", + "name": "health catalyst inc" + }, + { + "cik": 1590877, + "symbol": "rgnx", + "name": "regenxbio inc" + }, + { + "cik": 19745, + "symbol": "cpk", + "name": "chesapeake utilities corp" + }, + { + "cik": 1230245, + "symbol": "pipr", + "name": "piper sandler companies" + }, + { + "cik": 1385280, + "symbol": "cnk", + "name": "cinemark holdings inc" + }, + { + "cik": 1222840, + "symbol": "rpai", + "name": "retail properties of america inc" + }, + { + "cik": 760498, + "symbol": "banf", + "name": "bancfirst corp ok" + }, + { + "cik": 945394, + "symbol": "svc", + "name": "service properties trust" + }, + { + "cik": 1157601, + "symbol": "mdgl", + "name": "madrigal pharmaceuticals inc" + }, + { + "cik": 913142, + "symbol": "bdc", + "name": "belden inc" + }, + { + "cik": 1693415, + "symbol": "tbio", + "name": "translate bio inc" + }, + { + "cik": 1090633, + "symbol": "iiji", + "name": "internet initiative japan inc" + }, + { + "cik": 1644406, + "symbol": "twnkw", + "name": "hostess brands inc" + }, + { + "cik": 1468328, + "symbol": "adus", + "name": "addus homecare corp" + }, + { + "cik": 16160, + "symbol": "calm", + "name": "cal-maine foods inc" + }, + { + "cik": 59440, + "symbol": "vgr", + "name": "vector group ltd" + }, + { + "cik": 1737953, + "symbol": "repl", + "name": "replimune group inc" + }, + { + "cik": 1447126, + "symbol": "kakkf", + "name": "kawasaki kisen kaisha ltd" + }, + { + "cik": 1829959, + "symbol": "dcbo", + "name": "docebo inc" + }, + { + "cik": 1622194, + "symbol": "dea", + "name": "easterly government properties inc" + }, + { + "cik": 1447362, + "symbol": "cstl", + "name": "castle biosciences inc" + }, + { + "cik": 715072, + "symbol": "rnst", + "name": "renasant corp" + }, + { + "cik": 1817358, + "symbol": "aso", + "name": "academy sports & outdoors inc" + }, + { + "cik": 1739614, + "symbol": "inbx", + "name": "inhibrx inc" + }, + { + "cik": 1592057, + "symbol": "eva", + "name": "enviva partners lp" + }, + { + "cik": 90896, + "symbol": "sky", + "name": "skyline champion corp" + }, + { + "cik": 105319, + "symbol": "ww", + "name": "ww international inc" + }, + { + "cik": 1602065, + "symbol": "vnom", + "name": "viper energy partners lp" + }, + { + "cik": 1777393, + "symbol": "sbe", + "name": "switchback energy acquisition corp" + }, + { + "cik": 1464423, + "symbol": "pmt", + "name": "pennymac mortgage investment trust" + }, + { + "cik": 1528437, + "symbol": "btt", + "name": "blackrock municipal 2030 target term trust" + }, + { + "cik": 104894, + "symbol": "wre", + "name": "washington real estate investment trust" + }, + { + "cik": 1792849, + "symbol": "hpkew", + "name": "highpeak energy inc" + }, + { + "cik": 717423, + "symbol": "mur", + "name": "murphy oil corp" + }, + { + "cik": 1590560, + "symbol": "qure", + "name": "uniqure nv" + }, + { + "cik": 1549595, + "symbol": "nrix", + "name": "nurix therapeutics inc" + }, + { + "cik": 1593936, + "symbol": "mik", + "name": "michaels companies inc" + }, + { + "cik": 315852, + "symbol": "rrc", + "name": "range resources corp" + }, + { + "cik": 1065332, + "symbol": "egov", + "name": "nic inc" + }, + { + "cik": 1685715, + "symbol": "jag", + "name": "jagged peak energy inc" + }, + { + "cik": 1022652, + "symbol": "insg", + "name": "inseego corp" + }, + { + "cik": 1624794, + "symbol": "cswi", + "name": "csw industrials inc" + }, + { + "cik": 1465740, + "symbol": "two", + "name": "two harbors investment corp" + }, + { + "cik": 1185348, + "symbol": "praa", + "name": "pra group inc" + }, + { + "cik": 1510599, + "symbol": "pdi", + "name": "pimco dynamic income fund" + }, + { + "cik": 1633438, + "symbol": "azre", + "name": "azure power global ltd" + }, + { + "cik": 1399529, + "symbol": "drna", + "name": "dicerna pharmaceuticals inc" + }, + { + "cik": 1664710, + "symbol": "kros", + "name": "keros therapeutics inc" + }, + { + "cik": 1257640, + "symbol": "kro", + "name": "kronos worldwide inc" + }, + { + "cik": 1322422, + "symbol": "hbm", + "name": "hudbay minerals inc" + }, + { + "cik": 1295947, + "symbol": "pbh", + "name": "prestige consumer healthcare inc" + }, + { + "cik": 730464, + "symbol": "atge", + "name": "adtalem global education inc" + }, + { + "cik": 1593538, + "symbol": "navi", + "name": "navient corp" + }, + { + "cik": 812074, + "symbol": "oi", + "name": "o-i glass inc de" + }, + { + "cik": 1180145, + "symbol": "csii", + "name": "cardiovascular systems inc" + }, + { + "cik": 702325, + "symbol": "fmbip", + "name": "first midwest bancorp inc" + }, + { + "cik": 1253327, + "symbol": "evt", + "name": "eaton vance tax advantaged dividend income fund" + }, + { + "cik": 1466593, + "symbol": "ottr", + "name": "otter tail corp" + }, + { + "cik": 1591587, + "symbol": "amk", + "name": "assetmark financial holdings inc" + }, + { + "cik": 67625, + "symbol": "mnr", + "name": "monmouth real estate investment corp" + }, + { + "cik": 1055160, + "symbol": "mfa", + "name": "mfa financial inc" + }, + { + "cik": 1253986, + "symbol": "abr", + "name": "arbor realty trust inc" + }, + { + "cik": 1600620, + "symbol": "auph", + "name": "aurinia pharmaceuticals inc" + }, + { + "cik": 1727196, + "symbol": "srrk", + "name": "scholar rock holding corp" + }, + { + "cik": 1527753, + "symbol": "psnl", + "name": "personalis inc" + }, + { + "cik": 1317945, + "symbol": "oflx", + "name": "omega flex inc" + }, + { + "cik": 1650962, + "symbol": "wbt", + "name": "welbilt inc" + }, + { + "cik": 1596964, + "symbol": "hlg", + "name": "hailiang education group inc" + }, + { + "cik": 1644440, + "symbol": "gcp", + "name": "gcp applied technologies inc" + }, + { + "cik": 1723596, + "symbol": "clbk", + "name": "columbia financial inc" + }, + { + "cik": 1381531, + "symbol": "ufs", + "name": "domtar corp" + }, + { + "cik": 1500217, + "symbol": "aat", + "name": "american assets trust inc" + }, + { + "cik": 225648, + "symbol": "cva", + "name": "covanta holding corp" + }, + { + "cik": 1818873, + "symbol": "ipof", + "name": "social capital hedosophia holdings corp vi" + }, + { + "cik": 1698990, + "symbol": "mgy", + "name": "magnolia oil & gas corp" + }, + { + "cik": 887596, + "symbol": "cake", + "name": "cheesecake factory inc" + }, + { + "cik": 850141, + "symbol": "hmn", + "name": "horace mann educators corp de" + }, + { + "cik": 1393434, + "symbol": "ocul", + "name": "ocular therapeutix inc" + }, + { + "cik": 1581990, + "symbol": "pagp", + "name": "plains gp holdings lp" + }, + { + "cik": 1741231, + "symbol": "ttcfw", + "name": "tattooed chef inc" + }, + { + "cik": 1084869, + "symbol": "flws", + "name": "1 800 flowers com inc" + }, + { + "cik": 1230992, + "symbol": "mag", + "name": "mag silver corp" + }, + { + "cik": 1475115, + "symbol": "eb", + "name": "eventbrite inc" + }, + { + "cik": 1538927, + "symbol": "fmtx", + "name": "forma therapeutics holdings inc" + }, + { + "cik": 1055726, + "symbol": "ino", + "name": "inovio pharmaceuticals inc" + }, + { + "cik": 1490906, + "symbol": "cffn", + "name": "capitol federal financial inc" + }, + { + "cik": 1797768, + "symbol": "knte", + "name": "kinnate biopharma inc" + }, + { + "cik": 920112, + "symbol": "htlfp", + "name": "heartland financial usa inc" + }, + { + "cik": 278166, + "symbol": "cvco", + "name": "cavco industries inc" + }, + { + "cik": 1276671, + "symbol": "itcb", + "name": "corpbanca fi" + }, + { + "cik": 1423774, + "symbol": "zuo", + "name": "zuora inc" + }, + { + "cik": 36146, + "symbol": "trmk", + "name": "trustmark corp" + }, + { + "cik": 1024795, + "symbol": "hlio", + "name": "helios technologies inc" + }, + { + "cik": 1263994, + "symbol": "utg", + "name": "reaves utility income fund" + }, + { + "cik": 1454176, + "symbol": "avsfy", + "name": "avi ltd adr" + }, + { + "cik": 1766400, + "symbol": "pntg", + "name": "pennant group inc" + }, + { + "cik": 1566388, + "symbol": "dsl", + "name": "doubleline income solutions fund" + }, + { + "cik": 1293282, + "symbol": "ttgt", + "name": "techtarget inc" + }, + { + "cik": 876427, + "symbol": "mnro", + "name": "monro inc" + }, + { + "cik": 886163, + "symbol": "lgnd", + "name": "ligand pharmaceuticals inc" + }, + { + "cik": 1203464, + "symbol": "iag", + "name": "iamgold corp" + }, + { + "cik": 1398987, + "symbol": "rlgy", + "name": "realogy holdings corp" + }, + { + "cik": 1784970, + "symbol": "wetg", + "name": "wetrade group inc" + }, + { + "cik": 1366246, + "symbol": "gluu", + "name": "glu mobile inc" + }, + { + "cik": 1587523, + "symbol": "kn", + "name": "knowles corp" + }, + { + "cik": 1683541, + "symbol": "acb", + "name": "aurora cannabis inc" + }, + { + "cik": 708955, + "symbol": "ffbc", + "name": "first financial bancorp oh" + }, + { + "cik": 1434418, + "symbol": "cnst", + "name": "constellation pharmaceuticals inc" + }, + { + "cik": 1546417, + "symbol": "blmn", + "name": "bloomin brands inc" + }, + { + "cik": 1110805, + "symbol": "ns", + "name": "nustar energy lp" + }, + { + "cik": 768835, + "symbol": "big", + "name": "big lots inc" + }, + { + "cik": 1008654, + "symbol": "tup", + "name": "tupperware brands corp" + }, + { + "cik": 794685, + "symbol": "gab", + "name": "gabelli equity trust inc" + }, + { + "cik": 805676, + "symbol": "prk", + "name": "park national corp oh" + }, + { + "cik": 1280784, + "symbol": "hcxz", + "name": "hercules capital inc" + }, + { + "cik": 1609253, + "symbol": "crcqw", + "name": "california resources corp" + }, + { + "cik": 1039065, + "symbol": "osis", + "name": "osi systems inc" + }, + { + "cik": 896264, + "symbol": "usna", + "name": "usana health sciences inc" + }, + { + "cik": 1418100, + "symbol": "avya", + "name": "avaya holdings corp" + }, + { + "cik": 804116, + "symbol": "rvt", + "name": "royce value trust inc" + }, + { + "cik": 1616000, + "symbol": "xhr", + "name": "xenia hotels & resorts inc" + }, + { + "cik": 1368265, + "symbol": "clne", + "name": "clean energy fuels corp" + }, + { + "cik": 1252849, + "symbol": "cxp", + "name": "columbia property trust inc" + }, + { + "cik": 897077, + "symbol": "alg", + "name": "alamo group inc" + }, + { + "cik": 1437541, + "symbol": "atgsf", + "name": "autogrill spa" + }, + { + "cik": 1298946, + "symbol": "drh", + "name": "diamondrock hospitality co" + }, + { + "cik": 1641427, + "symbol": "adbcf", + "name": "adbri limited adr" + }, + { + "cik": 1604481, + "symbol": "eurn", + "name": "euronav nv" + }, + { + "cik": 1329394, + "symbol": "simo", + "name": "silicon motion technology corp" + }, + { + "cik": 1649749, + "symbol": "fbk", + "name": "fb financial corp" + }, + { + "cik": 794619, + "symbol": "amwd", + "name": "american woodmark corp" + }, + { + "cik": 1043509, + "symbol": "sah", + "name": "sonic automotive inc" + }, + { + "cik": 1328237, + "symbol": "dbc", + "name": "invesco db commodity index tracking fund" + }, + { + "cik": 76605, + "symbol": "patk", + "name": "patrick industries inc" + }, + { + "cik": 1157842, + "symbol": "rqi", + "name": "cohen & steers quality income realty fund inc" + }, + { + "cik": 1291733, + "symbol": "gol", + "name": "gol intelligent airlines inc" + }, + { + "cik": 1819881, + "symbol": "payaw", + "name": "paya holdings inc" + }, + { + "cik": 43196, + "symbol": "gtn", + "name": "gray television inc" + }, + { + "cik": 1467760, + "symbol": "ari", + "name": "apollo commercial real estate finance inc" + }, + { + "cik": 885740, + "symbol": "spns", + "name": "sapiens international corp n v" + }, + { + "cik": 886346, + "symbol": "kai", + "name": "kadant inc" + }, + { + "cik": 21535, + "symbol": "cohu", + "name": "cohu inc" + }, + { + "cik": 1085869, + "symbol": "prft", + "name": "perficient inc" + }, + { + "cik": 883237, + "symbol": "vrts", + "name": "virtus investment partners inc" + }, + { + "cik": 1052100, + "symbol": "wdr", + "name": "waddell & reed financial inc" + }, + { + "cik": 1471265, + "symbol": "nwbi", + "name": "northwest bancshares inc" + }, + { + "cik": 1584943, + "symbol": "krotf", + "name": "kroton educational sa" + }, + { + "cik": 1741530, + "symbol": "qfin", + "name": "360 digitech inc" + }, + { + "cik": 1611547, + "symbol": "ue", + "name": "urban edge properties" + }, + { + "cik": 1332283, + "symbol": "bdj", + "name": "blackrock enhanced equity dividend trust" + }, + { + "cik": 1429764, + "symbol": "blnkw", + "name": "blink charging co" + }, + { + "cik": 1671013, + "symbol": "catm", + "name": "cardtronics plc" + }, + { + "cik": 1494728, + "symbol": "pslv", + "name": "sprott physical silver trust" + }, + { + "cik": 1407623, + "symbol": "roic", + "name": "retail opportunity investments corp" + }, + { + "cik": 1576940, + "symbol": "ccs", + "name": "century communities inc" + }, + { + "cik": 887153, + "symbol": "sim", + "name": "group simec sa de cv" + }, + { + "cik": 99614, + "symbol": "ty", + "name": "tri-continental corp" + }, + { + "cik": 1026214, + "symbol": "fmckk", + "name": "federal home loan mortgage corp" + }, + { + "cik": 1733294, + "symbol": "gbio", + "name": "generation bio co" + }, + { + "cik": 730708, + "symbol": "sbcf", + "name": "seacoast banking corp of florida" + }, + { + "cik": 1493683, + "symbol": "bbn", + "name": "blackrock taxable municipal bond trust" + }, + { + "cik": 1570827, + "symbol": "vctr", + "name": "victory capital holdings inc" + }, + { + "cik": 1742692, + "symbol": "inmd", + "name": "inmode ltd" + }, + { + "cik": 946673, + "symbol": "banr", + "name": "banner corp" + }, + { + "cik": 1734713, + "symbol": "bv", + "name": "brightview holdings inc" + }, + { + "cik": 1721181, + "symbol": "hhr", + "name": "headhunter group plc" + }, + { + "cik": 912242, + "symbol": "mac", + "name": "macerich co" + }, + { + "cik": 1135185, + "symbol": "aaww", + "name": "atlas air worldwide holdings inc" + }, + { + "cik": 1375365, + "symbol": "smci", + "name": "super micro computer inc" + }, + { + "cik": 885978, + "symbol": "usph", + "name": "u s physical therapy inc nv" + }, + { + "cik": 887905, + "symbol": "ltc", + "name": "ltc properties inc" + }, + { + "cik": 1164863, + "symbol": "npo", + "name": "enpro industries inc" + }, + { + "cik": 1662579, + "symbol": "cccc", + "name": "c4 therapeutics inc" + }, + { + "cik": 1207074, + "symbol": "vrtu", + "name": "virtusa corp" + }, + { + "cik": 1508668, + "symbol": "aledy", + "name": "allied group limited adr" + }, + { + "cik": 1713334, + "symbol": "msc", + "name": "studio city international holdings ltd" + }, + { + "cik": 54381, + "symbol": "kamn", + "name": "kaman corp" + }, + { + "cik": 1231346, + "symbol": "sa", + "name": "seabridge gold inc" + }, + { + "cik": 1748824, + "symbol": "bsa", + "name": "brightsphere investment group inc" + }, + { + "cik": 1620459, + "symbol": "jrvr", + "name": "james river group holdings ltd" + }, + { + "cik": 1653242, + "symbol": "ntb", + "name": "bank of nt butterfield & son ltd" + }, + { + "cik": 1313310, + "symbol": "grvy", + "name": "gravity co ltd" + }, + { + "cik": 1526113, + "symbol": "gnl", + "name": "global net lease inc" + }, + { + "cik": 834365, + "symbol": "blfs", + "name": "biolife solutions inc" + }, + { + "cik": 1094831, + "symbol": "bgcp", + "name": "bgc partners inc" + }, + { + "cik": 1616318, + "symbol": "vsto", + "name": "vista outdoor inc" + }, + { + "cik": 752714, + "symbol": "mgrc", + "name": "mcgrath rentcorp" + }, + { + "cik": 1200375, + "symbol": "cdxs", + "name": "codexis inc" + }, + { + "cik": 1717307, + "symbol": "ilpt", + "name": "industrial logistics properties trust" + }, + { + "cik": 1748773, + "symbol": "rtlr", + "name": "rattler midstream lp" + }, + { + "cik": 800240, + "symbol": "odp", + "name": "odp corp" + }, + { + "cik": 799233, + "symbol": "htld", + "name": "heartland express inc" + }, + { + "cik": 1438655, + "symbol": "ismaf", + "name": "indra sistemas" + }, + { + "cik": 1611005, + "symbol": "ken", + "name": "kenon holdings ltd" + }, + { + "cik": 1010612, + "symbol": "syke", + "name": "sykes enterprises inc" + }, + { + "cik": 800166, + "symbol": "ngd", + "name": "new gold inc fi" + }, + { + "cik": 910638, + "symbol": "ddd", + "name": "3d systems corp" + }, + { + "cik": 1283140, + "symbol": "hep", + "name": "holly energy partners lp" + }, + { + "cik": 1091748, + "symbol": "argd", + "name": "argo group international holdings ltd" + }, + { + "cik": 1555279, + "symbol": "mass", + "name": "908 devices inc" + }, + { + "cik": 1649094, + "symbol": "pcvx", + "name": "vaxcyte inc" + }, + { + "cik": 1005757, + "symbol": "csgs", + "name": "csg systems international inc" + }, + { + "cik": 48287, + "symbol": "hni", + "name": "hni corp" + }, + { + "cik": 724004, + "symbol": "mlab", + "name": "mesa laboratories inc co" + }, + { + "cik": 1136352, + "symbol": "ceqp", + "name": "crestwood equity partners lp" + }, + { + "cik": 1023459, + "symbol": "slp", + "name": "simulations plus inc" + }, + { + "cik": 824410, + "symbol": "sasr", + "name": "sandy spring bancorp inc" + }, + { + "cik": 1422930, + "symbol": "pubm", + "name": "pubmatic inc" + }, + { + "cik": 799195, + "symbol": "usa", + "name": "liberty all star equity fund" + }, + { + "cik": 1503274, + "symbol": "qtrx", + "name": "quanterix corp" + }, + { + "cik": 811596, + "symbol": "kalu", + "name": "kaiser aluminum corp" + }, + { + "cik": 1433270, + "symbol": "ar", + "name": "antero resources corp" + }, + { + "cik": 1759783, + "symbol": "eh", + "name": "ehang holdings ltd" + }, + { + "cik": 1744894, + "symbol": "sg", + "name": "sirius international insurance group ltd" + }, + { + "cik": 1809104, + "symbol": "wpf", + "name": "foley trasimene acquisition corp" + }, + { + "cik": 1767258, + "symbol": "xpel", + "name": "xpel inc" + }, + { + "cik": 1747079, + "symbol": "trwh", + "name": "ballys corp" + }, + { + "cik": 799167, + "symbol": "mrtn", + "name": "marten transport ltd" + }, + { + "cik": 1050825, + "symbol": "scs", + "name": "steelcase inc" + }, + { + "cik": 1116942, + "symbol": "ttmi", + "name": "ttm technologies inc" + }, + { + "cik": 1061983, + "symbol": "cytk", + "name": "cytokinetics inc" + }, + { + "cik": 1567569, + "symbol": "fpf", + "name": "first trust intermediate duration preferred & income fund" + }, + { + "cik": 1718227, + "symbol": "road", + "name": "construction partners inc" + }, + { + "cik": 1578732, + "symbol": "mmi", + "name": "marcus & millichap inc" + }, + { + "cik": 1674988, + "symbol": "zeal", + "name": "zealand pharma a s" + }, + { + "cik": 1567098, + "symbol": "lwel", + "name": "luckwel pharmaceuticals inc" + }, + { + "cik": 832988, + "symbol": "sig", + "name": "signet jewelers ltd" + }, + { + "cik": 885245, + "symbol": "bke", + "name": "buckle inc" + }, + { + "cik": 1020214, + "symbol": "cers", + "name": "cerus corp" + }, + { + "cik": 1038133, + "symbol": "hska", + "name": "heska corp" + }, + { + "cik": 1222922, + "symbol": "evv", + "name": "eaton vance ltd duration income fund" + }, + { + "cik": 708821, + "symbol": "par", + "name": "par technology corp" + }, + { + "cik": 311094, + "symbol": "wabc", + "name": "westamerica bancorporation" + }, + { + "cik": 1002788, + "symbol": "bmdpf", + "name": "banca monte dei paschi di siena spa" + }, + { + "cik": 1125345, + "symbol": "mgnx", + "name": "macrogenics inc" + }, + { + "cik": 1621434, + "symbol": "bsm", + "name": "black stone minerals lp" + }, + { + "cik": 1733998, + "symbol": "nwn", + "name": "northwest natural holding co" + }, + { + "cik": 1322436, + "symbol": "etv", + "name": "eaton vance tax-managed buy-write opportunities fund" + }, + { + "cik": 1638833, + "symbol": "sgry", + "name": "surgery partners inc" + }, + { + "cik": 944148, + "symbol": "cbz", + "name": "cbiz inc" + }, + { + "cik": 1362004, + "symbol": "icfi", + "name": "icf international inc" + }, + { + "cik": 1368458, + "symbol": "sbh", + "name": "sally beauty holdings inc" + }, + { + "cik": 899923, + "symbol": "mygn", + "name": "myriad genetics inc" + }, + { + "cik": 1505155, + "symbol": "upld", + "name": "upland software inc" + }, + { + "cik": 1379384, + "symbol": "btz", + "name": "blackrock credit allocation income trust" + }, + { + "cik": 65270, + "symbol": "mei", + "name": "methode electronics inc" + }, + { + "cik": 1782999, + "symbol": "prtc", + "name": "puretech health plc" + }, + { + "cik": 1801170, + "symbol": "ipoc", + "name": "social capital hedosophia holdings corp iii" + }, + { + "cik": 1447221, + "symbol": "lgsxy", + "name": "light sa" + }, + { + "cik": 1590976, + "symbol": "mbuu", + "name": "malibu boats inc" + }, + { + "cik": 836157, + "symbol": "lnn", + "name": "lindsay corp" + }, + { + "cik": 3499, + "symbol": "alx", + "name": "alexanders inc" + }, + { + "cik": 1508655, + "symbol": "tslx", + "name": "sixth street specialty lending inc" + }, + { + "cik": 1376139, + "symbol": "cvi", + "name": "cvr energy inc" + }, + { + "cik": 1520006, + "symbol": "mtdr", + "name": "matador resources co" + }, + { + "cik": 1451505, + "symbol": "rig", + "name": "transocean ltd" + }, + { + "cik": 1450344, + "symbol": "szgpf", + "name": "salzgitter ag adr" + }, + { + "cik": 1222401, + "symbol": "hyt", + "name": "blackrock corporate high yield fund inc" + }, + { + "cik": 1821323, + "symbol": "sgtx", + "name": "sigilon therapeutics inc" + }, + { + "cik": 1796280, + "symbol": "oric", + "name": "oric pharmaceuticals inc" + }, + { + "cik": 799292, + "symbol": "mho", + "name": "m i homes inc" + }, + { + "cik": 1434614, + "symbol": "sddxf", + "name": "sandstorm gold ltd" + }, + { + "cik": 1178970, + "symbol": "pfs", + "name": "provident financial services inc" + }, + { + "cik": 855654, + "symbol": "imgn", + "name": "immunogen inc" + }, + { + "cik": 1525769, + "symbol": "play", + "name": "dave & busters entertainment inc" + }, + { + "cik": 1136174, + "symbol": "otrkp", + "name": "ontrak inc" + }, + { + "cik": 1270523, + "symbol": "etg", + "name": "eaton vance tax advantaged global dividend income fund" + }, + { + "cik": 1326380, + "symbol": "gme", + "name": "gamestop corp" + }, + { + "cik": 65770, + "symbol": "mvis", + "name": "microvision inc" + }, + { + "cik": 1341335, + "symbol": "fsm", + "name": "fortuna silver mines inc" + }, + { + "cik": 842633, + "symbol": "trs", + "name": "trimas corp" + }, + { + "cik": 1273685, + "symbol": "nymtm", + "name": "new york mortgage trust inc" + }, + { + "cik": 1784797, + "symbol": "brmk", + "name": "broadmark realty capital inc" + }, + { + "cik": 1680062, + "symbol": "acmr", + "name": "acm research inc" + }, + { + "cik": 1448591, + "symbol": "lfugf", + "name": "li & fung ltd" + }, + { + "cik": 945114, + "symbol": "syx", + "name": "systemax inc" + }, + { + "cik": 1628908, + "symbol": "evh", + "name": "evolent health inc" + }, + { + "cik": 1124796, + "symbol": "lasr", + "name": "nlight inc" + }, + { + "cik": 1237746, + "symbol": "eigi", + "name": "endurance international group holdings inc" + }, + { + "cik": 1593034, + "symbol": "endp", + "name": "endo international plc" + }, + { + "cik": 882796, + "symbol": "bcrx", + "name": "biocryst pharmaceuticals inc" + }, + { + "cik": 790359, + "symbol": "nbtb", + "name": "nbt bancorp inc" + }, + { + "cik": 1361538, + "symbol": "prim", + "name": "primoris services corp" + }, + { + "cik": 1730430, + "symbol": "knsa", + "name": "kiniksa pharmaceuticals ltd" + }, + { + "cik": 1318084, + "symbol": "core", + "name": "core-mark holding company inc" + }, + { + "cik": 1469395, + "symbol": "pam", + "name": "pampa energy inc" + }, + { + "cik": 45876, + "symbol": "hsc", + "name": "harsco corp" + }, + { + "cik": 1653087, + "symbol": "alec", + "name": "alector inc" + }, + { + "cik": 1552797, + "symbol": "dkl", + "name": "delek logistics partners lp" + }, + { + "cik": 17843, + "symbol": "crs", + "name": "carpenter technology corp" + }, + { + "cik": 1389050, + "symbol": "aroc", + "name": "archrock inc" + }, + { + "cik": 1724755, + "symbol": "ghg", + "name": "greentree hospitality group ltd" + }, + { + "cik": 721994, + "symbol": "lkfn", + "name": "lakeland financial corp" + }, + { + "cik": 1129260, + "symbol": "vcra", + "name": "vocera communications inc" + }, + { + "cik": 1770883, + "symbol": "linx", + "name": "linx sa" + }, + { + "cik": 1500435, + "symbol": "gpro", + "name": "gopro inc" + }, + { + "cik": 1787306, + "symbol": "arqt", + "name": "arcutis biotherapeutics inc" + }, + { + "cik": 1720893, + "symbol": "btai", + "name": "bioxcel therapeutics inc" + }, + { + "cik": 1819399, + "symbol": "tpgy", + "name": "tpg pace beneficial finance corp" + }, + { + "cik": 6955, + "symbol": "epac", + "name": "enerpac tool group corp" + }, + { + "cik": 94344, + "symbol": "stc", + "name": "stewart information services corp" + }, + { + "cik": 1298699, + "symbol": "bxmx", + "name": "nuveen s&p 500 buywrite income fund" + }, + { + "cik": 1616678, + "symbol": "bst", + "name": "blackrock science & technology trust" + }, + { + "cik": 1514991, + "symbol": "amcx", + "name": "amc networks inc" + }, + { + "cik": 1275014, + "symbol": "uctt", + "name": "ultra clean holdings inc" + }, + { + "cik": 1774675, + "symbol": "ccx", + "name": "churchill capital corp ii" + }, + { + "cik": 792987, + "symbol": "aste", + "name": "astec industries inc" + }, + { + "cik": 1289848, + "symbol": "hurn", + "name": "huron consulting group inc" + }, + { + "cik": 1690680, + "symbol": "nmrk", + "name": "newmark group inc" + }, + { + "cik": 887359, + "symbol": "vcel", + "name": "vericel corp" + }, + { + "cik": 1312109, + "symbol": "si", + "name": "silvergate capital corp" + }, + { + "cik": 1600438, + "symbol": "gms", + "name": "gms inc" + }, + { + "cik": 1487739, + "symbol": "dnief", + "name": "danieli spa" + }, + { + "cik": 1627281, + "symbol": "clls", + "name": "cellectis sa" + }, + { + "cik": 1045986, + "symbol": "forty", + "name": "formula systems (1985) ltd" + }, + { + "cik": 909531, + "symbol": "crnzf", + "name": "cairn energy plc" + }, + { + "cik": 1437538, + "symbol": "impjy", + "name": "salini impregilo spa adr" + }, + { + "cik": 917491, + "symbol": "faro", + "name": "faro technologies inc" + }, + { + "cik": 1466085, + "symbol": "irt", + "name": "independence realty trust inc" + }, + { + "cik": 1750, + "symbol": "air", + "name": "aar corp" + }, + { + "cik": 1128361, + "symbol": "hope", + "name": "hope bancorp inc" + }, + { + "cik": 1012771, + "symbol": "ffg", + "name": "fbl financial group inc" + }, + { + "cik": 1118417, + "symbol": "modn", + "name": "model n inc" + }, + { + "cik": 1503802, + "symbol": "kpti", + "name": "karyopharm therapeutics inc" + }, + { + "cik": 1643303, + "symbol": "nndm", + "name": "nano dimension ltd" + }, + { + "cik": 1501756, + "symbol": "advm", + "name": "adverum biotechnologies inc" + }, + { + "cik": 1345126, + "symbol": "codi", + "name": "compass diversified holdings" + }, + { + "cik": 105418, + "symbol": "wmk", + "name": "weis markets inc" + }, + { + "cik": 861459, + "symbol": "gva", + "name": "granite construction inc" + }, + { + "cik": 97134, + "symbol": "tnc", + "name": "tennant co" + }, + { + "cik": 1050441, + "symbol": "egbn", + "name": "eagle bancorp inc" + }, + { + "cik": 1104657, + "symbol": "mtrn", + "name": "materion corp" + }, + { + "cik": 1659520, + "symbol": "silv", + "name": "silvercrest metals inc" + }, + { + "cik": 1260563, + "symbol": "nfj", + "name": "allianzgi dividend interest & premium strategy fund" + }, + { + "cik": 1365916, + "symbol": "amrs", + "name": "amyris inc" + }, + { + "cik": 1000623, + "symbol": "swm", + "name": "schweitzer mauduit international inc" + }, + { + "cik": 1808158, + "symbol": "rptx", + "name": "repare therapeutics inc" + }, + { + "cik": 1094366, + "symbol": "rdwr", + "name": "radware ltd" + }, + { + "cik": 1649904, + "symbol": "rytm", + "name": "rhythm pharmaceuticals inc" + }, + { + "cik": 1517396, + "symbol": "ssys", + "name": "stratasys ltd" + }, + { + "cik": 1036188, + "symbol": "qadb", + "name": "qad inc" + }, + { + "cik": 1522727, + "symbol": "usac", + "name": "usa compression partners lp" + }, + { + "cik": 1052752, + "symbol": "gty", + "name": "getty realty corp md" + }, + { + "cik": 1512762, + "symbol": "chrs", + "name": "coherus biosciences inc" + }, + { + "cik": 1286043, + "symbol": "krg", + "name": "kite realty group trust" + }, + { + "cik": 1796898, + "symbol": "maxn", + "name": "maxeon solar technologies ltd" + }, + { + "cik": 66004, + "symbol": "msex", + "name": "middlesex water co" + }, + { + "cik": 1704596, + "symbol": "evop", + "name": "evo payments inc" + }, + { + "cik": 1668105, + "symbol": "tlnd", + "name": "talend sa" + }, + { + "cik": 1080014, + "symbol": "inva", + "name": "innoviva inc" + }, + { + "cik": 1381202, + "symbol": "brray", + "name": "barloworld ltd" + }, + { + "cik": 1731348, + "symbol": "tlry", + "name": "tilray inc" + }, + { + "cik": 1571498, + "symbol": "epzm", + "name": "epizyme inc" + }, + { + "cik": 1539638, + "symbol": "tbkcp", + "name": "triumph bancorp inc" + }, + { + "cik": 1583107, + "symbol": "tbph", + "name": "theravance biopharma inc" + }, + { + "cik": 913290, + "symbol": "fro", + "name": "frontline ltd" + }, + { + "cik": 1501570, + "symbol": "vbtx", + "name": "veritex holdings inc" + }, + { + "cik": 1711375, + "symbol": "loma", + "name": "loma negra compania industrial argentina sociedad anonima" + }, + { + "cik": 1701541, + "symbol": "bdtx", + "name": "black diamond therapeutics inc" + }, + { + "cik": 1354327, + "symbol": "pgti", + "name": "pgt innovations inc" + }, + { + "cik": 708818, + "symbol": "nxgn", + "name": "nextgen healthcare inc" + }, + { + "cik": 883902, + "symbol": "cnr", + "name": "cornerstone building brands inc" + }, + { + "cik": 1500122, + "symbol": "nvgi", + "name": "noble vici group inc" + }, + { + "cik": 1468666, + "symbol": "scwx", + "name": "secureworks corp" + }, + { + "cik": 1616212, + "symbol": "tril", + "name": "trillium therapeutics inc" + }, + { + "cik": 1373670, + "symbol": "grbk", + "name": "green brick partners inc" + }, + { + "cik": 1674930, + "symbol": "flgt", + "name": "fulgent genetics inc" + }, + { + "cik": 945764, + "symbol": "dnrww", + "name": "denbury inc" + }, + { + "cik": 8947, + "symbol": "azz", + "name": "azz inc" + }, + { + "cik": 35214, + "symbol": "foe", + "name": "ferro corp" + }, + { + "cik": 1787297, + "symbol": "pasg", + "name": "passage bio inc" + }, + { + "cik": 1577670, + "symbol": "ladr", + "name": "ladder capital corp" + }, + { + "cik": 1800682, + "symbol": "jws", + "name": "jaws acquisition corp" + }, + { + "cik": 1545654, + "symbol": "alex", + "name": "alexander & baldwin inc" + }, + { + "cik": 1758530, + "symbol": "sy", + "name": "so-young international inc" + }, + { + "cik": 1576427, + "symbol": "crto", + "name": "criteo sa" + }, + { + "cik": 907471, + "symbol": "cash", + "name": "meta financial group inc" + }, + { + "cik": 899629, + "symbol": "akr", + "name": "acadia realty trust" + }, + { + "cik": 923120, + "symbol": "gbx", + "name": "greenbrier companies inc" + }, + { + "cik": 1065199, + "symbol": "aifly", + "name": "aiful corp fi" + }, + { + "cik": 1440972, + "symbol": "lac", + "name": "lithium americas corp" + }, + { + "cik": 1694028, + "symbol": "lbrt", + "name": "liberty oilfield services inc" + }, + { + "cik": 1711279, + "symbol": "krys", + "name": "krystal biotech inc" + }, + { + "cik": 912463, + "symbol": "ges", + "name": "guess inc" + }, + { + "cik": 95029, + "symbol": "rgr", + "name": "sturm ruger & co inc" + }, + { + "cik": 1792829, + "symbol": "vsta", + "name": "vasta platform ltd" + }, + { + "cik": 1018840, + "symbol": "anf", + "name": "abercrombie & fitch co de" + }, + { + "cik": 1581091, + "symbol": "rmax", + "name": "re max holdings inc" + }, + { + "cik": 1356576, + "symbol": "supn", + "name": "supernus pharmaceuticals inc" + }, + { + "cik": 1774983, + "symbol": "brogw", + "name": "brooge energy ltd" + }, + { + "cik": 1355444, + "symbol": "erj", + "name": "embraer sa" + }, + { + "cik": 82166, + "symbol": "ravn", + "name": "raven industries inc" + }, + { + "cik": 1644378, + "symbol": "rmr", + "name": "rmr group inc" + }, + { + "cik": 1342338, + "symbol": "himx", + "name": "himax technologies inc" + }, + { + "cik": 1610250, + "symbol": "boot", + "name": "boot barn holdings inc" + }, + { + "cik": 701288, + "symbol": "atri", + "name": "atrion corp" + }, + { + "cik": 1600033, + "symbol": "elf", + "name": "elf beauty inc" + }, + { + "cik": 1782594, + "symbol": "gth", + "name": "genetron holdings ltd" + }, + { + "cik": 1318568, + "symbol": "evri", + "name": "everi holdings inc" + }, + { + "cik": 1133470, + "symbol": "cvgw", + "name": "calavo growers inc" + }, + { + "cik": 1022408, + "symbol": "plus", + "name": "eplus inc" + }, + { + "cik": 1122904, + "symbol": "ntgr", + "name": "netgear inc" + }, + { + "cik": 1033905, + "symbol": "lmnx", + "name": "luminex corp" + }, + { + "cik": 1818874, + "symbol": "ipoe", + "name": "social capital hedosophia holdings corp v" + }, + { + "cik": 28917, + "symbol": "dds", + "name": "dillards inc" + }, + { + "cik": 746838, + "symbol": "uis", + "name": "unisys corp" + }, + { + "cik": 1195739, + "symbol": "nrk", + "name": "nuveen new york amt-free quality municipal income fund" + }, + { + "cik": 1708259, + "symbol": "lx", + "name": "lexinfintech holdings ltd" + }, + { + "cik": 1808865, + "symbol": "itos", + "name": "iteos therapeutics inc" + }, + { + "cik": 1117297, + "symbol": "qnst", + "name": "quinstreet inc" + }, + { + "cik": 1050377, + "symbol": "cnxn", + "name": "pc connection inc" + }, + { + "cik": 102037, + "symbol": "uvv", + "name": "universal corp va" + }, + { + "cik": 1801777, + "symbol": "amti", + "name": "applied molecular transport inc" + }, + { + "cik": 850460, + "symbol": "wire", + "name": "encore wire corp" + }, + { + "cik": 1084961, + "symbol": "ecpg", + "name": "encore capital group inc" + }, + { + "cik": 1545851, + "symbol": "cpg", + "name": "crescent point energy corp" + }, + { + "cik": 1528930, + "symbol": "tax", + "name": "franchise group inc" + }, + { + "cik": 70487, + "symbol": "nrc", + "name": "national research corp" + }, + { + "cik": 1678463, + "symbol": "frta", + "name": "forterra inc" + }, + { + "cik": 924901, + "symbol": "cli", + "name": "mack cali realty corp" + }, + { + "cik": 1737422, + "symbol": "nfh", + "name": "new frontier health corp" + }, + { + "cik": 1047340, + "symbol": "fdp", + "name": "fresh del monte produce inc" + }, + { + "cik": 1818201, + "symbol": "dgnr", + "name": "dragoneer growth opportunities corp" + }, + { + "cik": 1172052, + "symbol": "saft", + "name": "safety insurance group inc" + }, + { + "cik": 1266585, + "symbol": "nmz", + "name": "nuveen municipal high income opportunity fund" + }, + { + "cik": 832428, + "symbol": "ssp", + "name": "ew scripps co" + }, + { + "cik": 1350653, + "symbol": "atec", + "name": "alphatec holdings inc" + }, + { + "cik": 314489, + "symbol": "buse", + "name": "first busey corp nv" + }, + { + "cik": 1395937, + "symbol": "sndx", + "name": "syndax pharmaceuticals inc" + }, + { + "cik": 1783400, + "symbol": "ecolw", + "name": "us ecology inc" + }, + { + "cik": 1000229, + "symbol": "clb", + "name": "core laboratories n v" + }, + { + "cik": 68709, + "symbol": "mtsc", + "name": "mts systems corp" + }, + { + "cik": 1375151, + "symbol": "zgnx", + "name": "zogenix inc" + }, + { + "cik": 1376339, + "symbol": "mdxg", + "name": "mimedx group inc" + }, + { + "cik": 50725, + "symbol": "gff", + "name": "griffon corp" + }, + { + "cik": 814549, + "symbol": "ebix", + "name": "ebix inc" + }, + { + "cik": 1381640, + "symbol": "mlco", + "name": "melco resorts & entertainment ltd" + }, + { + "cik": 1119774, + "symbol": "cgen", + "name": "compugen ltd" + }, + { + "cik": 1340677, + "symbol": "svm", + "name": "silvercorp metals inc" + }, + { + "cik": 1599901, + "symbol": "rna", + "name": "avidity biosciences inc" + }, + { + "cik": 1788257, + "symbol": "bwxmf", + "name": "betterware de mexico sab de cv" + }, + { + "cik": 1708301, + "symbol": "bpmp", + "name": "bp midstream partners lp" + }, + { + "cik": 1812667, + "symbol": "prpb", + "name": "cc neuberger principal holdings ii" + }, + { + "cik": 880224, + "symbol": "itpof", + "name": "intertape polymer group inc" + }, + { + "cik": 1756699, + "symbol": "tigr", + "name": "up fintech holding ltd" + }, + { + "cik": 1694426, + "symbol": "dk", + "name": "delek us holdings inc" + }, + { + "cik": 1004702, + "symbol": "ocfcp", + "name": "oceanfirst financial corp" + }, + { + "cik": 1300699, + "symbol": "atnx", + "name": "athenex inc" + }, + { + "cik": 1814423, + "symbol": "ih", + "name": "ihuman inc" + }, + { + "cik": 1487371, + "symbol": "gnmk", + "name": "genmark diagnostics inc" + }, + { + "cik": 1631569, + "symbol": "chct", + "name": "community healthcare trust inc" + }, + { + "cik": 1703647, + "symbol": "freq", + "name": "frequency therapeutics inc" + }, + { + "cik": 1496099, + "symbol": "nmfcl", + "name": "new mountain finance corp" + }, + { + "cik": 1620463, + "symbol": "atha", + "name": "athira pharma inc" + }, + { + "cik": 1640428, + "symbol": "ever", + "name": "everquote inc" + }, + { + "cik": 788329, + "symbol": "jout", + "name": "johnson outdoors inc" + }, + { + "cik": 1438926, + "symbol": "fgrof", + "name": "firstgroup" + }, + { + "cik": 1579733, + "symbol": "vitl", + "name": "vital farms inc" + }, + { + "cik": 1725123, + "symbol": "cang", + "name": "cango inc" + }, + { + "cik": 1528115, + "symbol": "annx", + "name": "annexon inc" + }, + { + "cik": 1018979, + "symbol": "amsf", + "name": "amerisafe inc" + }, + { + "cik": 1095651, + "symbol": "star", + "name": "istar inc" + }, + { + "cik": 1520504, + "symbol": "vlrs", + "name": "controladora vuela compania de aviacion sab de cv" + }, + { + "cik": 1456772, + "symbol": "opinl", + "name": "office properties income trust" + }, + { + "cik": 26058, + "symbol": "cts", + "name": "cts corp" + }, + { + "cik": 1652561, + "symbol": "dqws", + "name": "dswiss inc" + }, + { + "cik": 894405, + "symbol": "arcb", + "name": "arcbest corp de" + }, + { + "cik": 790500, + "symbol": "fax", + "name": "aberdeen asia-pacific income fund inc" + }, + { + "cik": 102426, + "symbol": "bif", + "name": "boulder growth & income fund" + }, + { + "cik": 821002, + "symbol": "giii", + "name": "g iii apparel group ltd de" + }, + { + "cik": 1377121, + "symbol": "ptgx", + "name": "protagonist therapeutics inc" + }, + { + "cik": 1713930, + "symbol": "nexa", + "name": "nexa resources sa" + }, + { + "cik": 1042893, + "symbol": "drq", + "name": "dril-quip inc" + }, + { + "cik": 1650648, + "symbol": "fdmt", + "name": "4d molecular therapeutics inc" + }, + { + "cik": 1679363, + "symbol": "morf", + "name": "morphic holding inc" + }, + { + "cik": 1293310, + "symbol": "hgend", + "name": "humanigen inc" + }, + { + "cik": 1826892, + "symbol": "bcab", + "name": "bioatla inc" + }, + { + "cik": 1025835, + "symbol": "efsc", + "name": "enterprise financial services corp" + }, + { + "cik": 1308335, + "symbol": "eos", + "name": "eaton vance enhanced equity income fund ii" + }, + { + "cik": 1339605, + "symbol": "hees", + "name": "h&e equipment services inc" + }, + { + "cik": 1789760, + "symbol": "ciicu", + "name": "ciig merger corp" + }, + { + "cik": 1820872, + "symbol": "apsg", + "name": "apollo strategic growth capital" + }, + { + "cik": 49754, + "symbol": "din", + "name": "dine brands global inc" + }, + { + "cik": 1824963, + "symbol": "ajax", + "name": "ajax i" + }, + { + "cik": 1446252, + "symbol": "pfodf", + "name": "premier foods plc" + }, + { + "cik": 726854, + "symbol": "chco", + "name": "city holding co" + }, + { + "cik": 907242, + "symbol": "mcri", + "name": "monarch casino & resort inc" + }, + { + "cik": 1222719, + "symbol": "chy", + "name": "calamos convertible & high income fund" + }, + { + "cik": 1818212, + "symbol": "crhc", + "name": "cohn robbins holdings corp" + }, + { + "cik": 1796022, + "symbol": "step", + "name": "stepstone group inc" + }, + { + "cik": 75288, + "symbol": "oxm", + "name": "oxford industries inc" + }, + { + "cik": 1671858, + "symbol": "sbtx", + "name": "silverback therapeutics inc" + }, + { + "cik": 1174164, + "symbol": "ffc", + "name": "flaherty & crumrine preferred & income securities fund inc" + }, + { + "cik": 1490281, + "symbol": "grpn", + "name": "groupon inc" + }, + { + "cik": 913760, + "symbol": "intl", + "name": "stonex group inc" + }, + { + "cik": 1322435, + "symbol": "etw", + "name": "eaton vance tax-managed global buy-write opportunities fund" + }, + { + "cik": 914025, + "symbol": "plt", + "name": "plantronics inc ca" + }, + { + "cik": 1047716, + "symbol": "ltmaq", + "name": "latam airlines group sa" + }, + { + "cik": 1677703, + "symbol": "cndt", + "name": "conduent inc" + }, + { + "cik": 1646228, + "symbol": "home", + "name": "at home group inc" + }, + { + "cik": 1608741, + "symbol": "qqqx", + "name": "nuveen nasdaq 100 dynamic overwrite fund" + }, + { + "cik": 1464790, + "symbol": "rilyp", + "name": "b riley financial inc" + }, + { + "cik": 923796, + "symbol": "geo", + "name": "geo group inc" + }, + { + "cik": 1224450, + "symbol": "rnp", + "name": "cohen & steers reit & preferred & income fund inc" + }, + { + "cik": 27996, + "symbol": "dlx", + "name": "deluxe corp" + }, + { + "cik": 1698991, + "symbol": "acel", + "name": "accel entertainment inc" + }, + { + "cik": 1691303, + "symbol": "hcc", + "name": "warrior met coal inc" + }, + { + "cik": 23194, + "symbol": "crk", + "name": "comstock resources inc" + }, + { + "cik": 1698535, + "symbol": "nxe", + "name": "nexgen energy ltd" + }, + { + "cik": 805267, + "symbol": "hqh", + "name": "tekla healthcare investors" + }, + { + "cik": 1613665, + "symbol": "gwb", + "name": "great western bancorp inc" + }, + { + "cik": 819220, + "symbol": "labl", + "name": "multi color corp" + }, + { + "cik": 830524, + "symbol": "ccf", + "name": "chase corp" + }, + { + "cik": 1787803, + "symbol": "wnw", + "name": "wunong net technology co ltd" + }, + { + "cik": 1023512, + "symbol": "drd", + "name": "drdgold ltd" + }, + { + "cik": 1799448, + "symbol": "algs", + "name": "aligos therapeutics inc" + }, + { + "cik": 1047335, + "symbol": "nhc", + "name": "national healthcare corp" + }, + { + "cik": 1523541, + "symbol": "slcjy", + "name": "slc agricola sa" + }, + { + "cik": 356171, + "symbol": "tcbk", + "name": "trico bancshares" + }, + { + "cik": 1532961, + "symbol": "nvee", + "name": "nv5 global inc" + }, + { + "cik": 1005817, + "symbol": "tmp", + "name": "tompkins financial corp" + }, + { + "cik": 1620393, + "symbol": "nxrt", + "name": "nexpoint residential trust inc" + }, + { + "cik": 705432, + "symbol": "sbsi", + "name": "southside bancshares inc" + }, + { + "cik": 1728688, + "symbol": "iiiv", + "name": "i3 verticals inc" + }, + { + "cik": 1647513, + "symbol": "nblx", + "name": "noble midstream partners lp" + }, + { + "cik": 1092796, + "symbol": "swbi", + "name": "smith & wesson brands inc" + }, + { + "cik": 1382101, + "symbol": "stro", + "name": "sutro biopharma inc" + }, + { + "cik": 1695357, + "symbol": "prvb", + "name": "provention bio inc" + }, + { + "cik": 1048268, + "symbol": "iesc", + "name": "ies holdings inc" + }, + { + "cik": 1809987, + "symbol": "gsah", + "name": "gs acquisition holdings corp ii" + }, + { + "cik": 1631596, + "symbol": "kref", + "name": "kkr real estate finance trust inc" + }, + { + "cik": 1750019, + "symbol": "tcrr", + "name": "tcr2 therapeutics inc" + }, + { + "cik": 906013, + "symbol": "awf", + "name": "alliancebernstein global high income fund inc" + }, + { + "cik": 743238, + "symbol": "shyf", + "name": "shyft group inc" + }, + { + "cik": 1413159, + "symbol": "tgh", + "name": "textainer group holdings ltd" + }, + { + "cik": 700923, + "symbol": "myrg", + "name": "myr group inc" + }, + { + "cik": 712537, + "symbol": "fcf", + "name": "first commonwealth financial corp pa" + }, + { + "cik": 1819848, + "symbol": "rtp", + "name": "reinvent technology partners" + }, + { + "cik": 1114995, + "symbol": "pi", + "name": "impinj inc" + }, + { + "cik": 1508478, + "symbol": "arco", + "name": "arcos dorados holdings inc" + }, + { + "cik": 1030894, + "symbol": "cls", + "name": "celestica inc" + }, + { + "cik": 1406587, + "symbol": "for", + "name": "forestar group inc" + }, + { + "cik": 78749, + "symbol": "agys", + "name": "agilysys inc" + }, + { + "cik": 1816090, + "symbol": "ftocw", + "name": "ftac olympus acquisition corp" + }, + { + "cik": 1167419, + "symbol": "riot", + "name": "riot blockchain inc" + }, + { + "cik": 889900, + "symbol": "pten", + "name": "patterson uti energy inc" + }, + { + "cik": 1072379, + "symbol": "nwbo", + "name": "northwest biotherapeutics inc" + }, + { + "cik": 1475841, + "symbol": "nbhc", + "name": "national bank holdings corp" + }, + { + "cik": 1075415, + "symbol": "dhcnl", + "name": "diversified healthcare trust" + }, + { + "cik": 1668673, + "symbol": "petq", + "name": "petiq inc" + }, + { + "cik": 1821160, + "symbol": "ghld", + "name": "guild holdings co" + }, + { + "cik": 1396033, + "symbol": "ll", + "name": "lumber liquidators holdings inc" + }, + { + "cik": 1521036, + "symbol": "lnth", + "name": "lantheus holdings inc" + }, + { + "cik": 1459839, + "symbol": "sibn", + "name": "si-bone inc" + }, + { + "cik": 1818794, + "symbol": "dyn", + "name": "dyne therapeutics inc" + }, + { + "cik": 1708055, + "symbol": "rbbn", + "name": "ribbon communications inc" + }, + { + "cik": 1345099, + "symbol": "meso", + "name": "mesoblast ltd" + }, + { + "cik": 34782, + "symbol": "srce", + "name": "1st source corp" + }, + { + "cik": 1802974, + "symbol": "avo", + "name": "mission produce inc" + }, + { + "cik": 1347426, + "symbol": "bma", + "name": "macro bank inc" + }, + { + "cik": 1737450, + "symbol": "opra", + "name": "opera ltd" + }, + { + "cik": 1732409, + "symbol": "bchg", + "name": "grayscale bitcoin cash trust (bch)" + }, + { + "cik": 1308106, + "symbol": "tgp", + "name": "teekay lng partners lp" + }, + { + "cik": 1171471, + "symbol": "chi", + "name": "calamos convertible opportunities & income fund" + }, + { + "cik": 1113232, + "symbol": "acls", + "name": "axcelis technologies inc" + }, + { + "cik": 1096691, + "symbol": "ptnr", + "name": "partner communications co ltd" + }, + { + "cik": 84129, + "symbol": "rad", + "name": "rite aid corp" + }, + { + "cik": 1758766, + "symbol": "stpk", + "name": "star peak energy transition corp" + }, + { + "cik": 1216583, + "symbol": "jpc", + "name": "nuveen preferred & income opportunities fund" + }, + { + "cik": 1173514, + "symbol": "hy", + "name": "hyster-yale materials handling inc" + }, + { + "cik": 930236, + "symbol": "rwt", + "name": "redwood trust inc" + }, + { + "cik": 899715, + "symbol": "skt", + "name": "tanger factory outlet centers inc" + }, + { + "cik": 1176984, + "symbol": "eim", + "name": "eaton vance municipal bond fund" + }, + { + "cik": 1615165, + "symbol": "veri", + "name": "veritone inc" + }, + { + "cik": 103145, + "symbol": "veco", + "name": "veeco instruments inc" + }, + { + "cik": 1772016, + "symbol": "brbr", + "name": "bellring brands inc" + }, + { + "cik": 1207179, + "symbol": "glng", + "name": "golar lng ltd" + }, + { + "cik": 1717547, + "symbol": "clnc", + "name": "colony credit real estate inc" + }, + { + "cik": 1819790, + "symbol": "tars", + "name": "tarsus pharmaceuticals inc" + }, + { + "cik": 883412, + "symbol": "myi", + "name": "blackrock muniyield quality fund iii inc" + }, + { + "cik": 863436, + "symbol": "bhe", + "name": "benchmark electronics inc" + }, + { + "cik": 1555039, + "symbol": "resi", + "name": "front yard residential corp" + }, + { + "cik": 351834, + "symbol": "stkl", + "name": "sunopta inc" + }, + { + "cik": 1503584, + "symbol": "cmre", + "name": "costamare inc" + }, + { + "cik": 1294133, + "symbol": "ingn", + "name": "inogen inc" + }, + { + "cik": 790526, + "symbol": "rdnt", + "name": "radnet inc" + }, + { + "cik": 921582, + "symbol": "imax", + "name": "imax corp" + }, + { + "cik": 78814, + "symbol": "pbi", + "name": "pitney bowes inc de" + }, + { + "cik": 1768012, + "symbol": "lcahw", + "name": "golden nugget online gaming inc" + }, + { + "cik": 1712463, + "symbol": "pack", + "name": "ranpak holdings corp" + }, + { + "cik": 93389, + "symbol": "smp", + "name": "standard motor products inc" + }, + { + "cik": 1287213, + "symbol": "plow", + "name": "douglas dynamics inc" + }, + { + "cik": 1609804, + "symbol": "oec", + "name": "orion engineered carbons sa" + }, + { + "cik": 1086434, + "symbol": "audc", + "name": "audiocodes ltd" + }, + { + "cik": 1157408, + "symbol": "lrn", + "name": "stride inc" + }, + { + "cik": 811589, + "symbol": "fbnc", + "name": "first bancorp nc" + }, + { + "cik": 1127703, + "symbol": "pra", + "name": "proassurance corp" + }, + { + "cik": 1617242, + "symbol": "krny", + "name": "kearny financial corp" + }, + { + "cik": 1005210, + "symbol": "sph", + "name": "suburban propane partners lp" + }, + { + "cik": 1005229, + "symbol": "cmco", + "name": "columbus mckinnon corp" + }, + { + "cik": 1746473, + "symbol": "plrx", + "name": "pliant therapeutics inc" + }, + { + "cik": 949157, + "symbol": "cenx", + "name": "century aluminum co" + }, + { + "cik": 1651561, + "symbol": "trhc", + "name": "tabula rasa healthcare inc" + }, + { + "cik": 1296435, + "symbol": "np", + "name": "neenah inc" + }, + { + "cik": 1497645, + "symbol": "inn", + "name": "summit hotel properties inc" + }, + { + "cik": 1318008, + "symbol": "zumz", + "name": "zumiez inc" + }, + { + "cik": 1517175, + "symbol": "chef", + "name": "chefs warehouse inc" + }, + { + "cik": 1379400, + "symbol": "aod", + "name": "aberdeen total dynamic dividend fund" + }, + { + "cik": 1062231, + "symbol": "axl", + "name": "american axle & manufacturing holdings inc" + }, + { + "cik": 704415, + "symbol": "tvty", + "name": "tivity health inc" + }, + { + "cik": 930420, + "symbol": "kfrc", + "name": "kforce inc" + }, + { + "cik": 1783183, + "symbol": "phat", + "name": "phathom pharmaceuticals inc" + }, + { + "cik": 1806310, + "symbol": "tsha", + "name": "taysha gene therapies inc" + }, + { + "cik": 1270073, + "symbol": "icpt", + "name": "intercept pharmaceuticals inc" + }, + { + "cik": 310354, + "symbol": "sxi", + "name": "standex international corp de" + }, + { + "cik": 1744659, + "symbol": "akro", + "name": "akero therapeutics inc" + }, + { + "cik": 879526, + "symbol": "wnc", + "name": "wabash national corp" + }, + { + "cik": 719220, + "symbol": "stba", + "name": "s&t bancorp inc" + }, + { + "cik": 798359, + "symbol": "iret", + "name": "investors real estate trust" + }, + { + "cik": 1822462, + "symbol": "fhtx", + "name": "foghorn therapeutics inc" + }, + { + "cik": 794172, + "symbol": "vivo", + "name": "meridian bioscience inc" + }, + { + "cik": 1108109, + "symbol": "cyh", + "name": "community health systems inc" + }, + { + "cik": 1049782, + "symbol": "brkl", + "name": "brookline bancorp inc" + }, + { + "cik": 1285819, + "symbol": "omer", + "name": "omeros corp" + }, + { + "cik": 40417, + "symbol": "gam", + "name": "general american investors co inc" + }, + { + "cik": 1173489, + "symbol": "ceva", + "name": "ceva inc" + }, + { + "cik": 1170299, + "symbol": "pml", + "name": "pimco municipal income fund ii" + }, + { + "cik": 1044777, + "symbol": "ospn", + "name": "onespan inc" + }, + { + "cik": 1379041, + "symbol": "eig", + "name": "employers holdings inc" + }, + { + "cik": 784199, + "symbol": "cry", + "name": "cryolife inc" + }, + { + "cik": 1425450, + "symbol": "kids", + "name": "orthopediatrics corp" + }, + { + "cik": 1297184, + "symbol": "amph", + "name": "amphastar pharmaceuticals inc" + }, + { + "cik": 1255474, + "symbol": "wllbw", + "name": "whiting petroleum corp" + }, + { + "cik": 1804176, + "symbol": "lgvw", + "name": "longview acquisition corp" + }, + { + "cik": 1529864, + "symbol": "enva", + "name": "enova international inc" + }, + { + "cik": 1507605, + "symbol": "mara", + "name": "marathon patent group inc" + }, + { + "cik": 1709505, + "symbol": "best", + "name": "best inc" + }, + { + "cik": 798783, + "symbol": "uht", + "name": "universal health realty income trust" + }, + { + "cik": 1428522, + "symbol": "rdus", + "name": "radius health inc" + }, + { + "cik": 1046568, + "symbol": "prdo", + "name": "perdoceo education corp" + }, + { + "cik": 1331284, + "symbol": "dht", + "name": "dht holdings inc" + }, + { + "cik": 1020859, + "symbol": "unfi", + "name": "united natural foods inc" + }, + { + "cik": 852772, + "symbol": "denn", + "name": "dennys corp" + }, + { + "cik": 1175505, + "symbol": "fprx", + "name": "five prime therapeutics inc" + }, + { + "cik": 835324, + "symbol": "sybt", + "name": "stock yards bancorp inc" + }, + { + "cik": 1509991, + "symbol": "kos", + "name": "kosmos energy ltd" + }, + { + "cik": 1030469, + "symbol": "ofg", + "name": "ofg bancorp" + }, + { + "cik": 814083, + "symbol": "clm", + "name": "cornerstone strategic value fund inc" + }, + { + "cik": 1357450, + "symbol": "holi", + "name": "hollysys automation technologies ltd" + }, + { + "cik": 1013488, + "symbol": "bjri", + "name": "bjs restaurants inc" + }, + { + "cik": 1778114, + "symbol": "aio", + "name": "allianzgi artificial intelligence & technology opportunities fund" + }, + { + "cik": 1160864, + "symbol": "bhk", + "name": "blackrock core bond trust" + }, + { + "cik": 1413837, + "symbol": "ffwm", + "name": "first foundation inc" + }, + { + "cik": 764195, + "symbol": "vbiv", + "name": "vbi vaccines inc bc" + }, + { + "cik": 1123134, + "symbol": "imos", + "name": "chipmos technologies inc" + }, + { + "cik": 1177648, + "symbol": "enta", + "name": "enanta pharmaceuticals inc" + }, + { + "cik": 1701051, + "symbol": "wow", + "name": "wideopenwest inc" + }, + { + "cik": 1115128, + "symbol": "quot", + "name": "quotient technology inc" + }, + { + "cik": 1616533, + "symbol": "sgh", + "name": "smart global holdings inc" + }, + { + "cik": 1605810, + "symbol": "ulnv", + "name": "porter holding international inc" + }, + { + "cik": 1078271, + "symbol": "extr", + "name": "extreme networks inc" + }, + { + "cik": 1386716, + "symbol": "sblkz", + "name": "star bulk carriers corp" + }, + { + "cik": 880117, + "symbol": "jbss", + "name": "sanfilippo john b & son inc" + }, + { + "cik": 6845, + "symbol": "apog", + "name": "apogee enterprises inc" + }, + { + "cik": 1164009, + "symbol": "fxcnf", + "name": "fih mobile ltd" + }, + { + "cik": 1819876, + "symbol": "tritw", + "name": "triterras inc" + }, + { + "cik": 63296, + "symbol": "matw", + "name": "matthews international corp" + }, + { + "cik": 1575420, + "symbol": "biio", + "name": "bionovate technologies corp" + }, + { + "cik": 28823, + "symbol": "dbd", + "name": "diebold nixdorf inc" + }, + { + "cik": 1290677, + "symbol": "tpb", + "name": "turning point brands inc" + }, + { + "cik": 1576018, + "symbol": "tpre", + "name": "third point reinsurance ltd" + }, + { + "cik": 1400891, + "symbol": "ihetw", + "name": "iheartmedia inc" + }, + { + "cik": 1569187, + "symbol": "ahh", + "name": "armada hoffler properties inc" + }, + { + "cik": 1662774, + "symbol": "crtx", + "name": "cortexyme inc" + }, + { + "cik": 884152, + "symbol": "vmo", + "name": "invesco municipal opportunity trust" + }, + { + "cik": 1515160, + "symbol": "mitff", + "name": "mitie group plc adr" + }, + { + "cik": 1380936, + "symbol": "gof", + "name": "guggenheim strategic opportunities fund" + }, + { + "cik": 1829426, + "symbol": "fpac", + "name": "far peak acquisition corp" + }, + { + "cik": 1116463, + "symbol": "osur", + "name": "orasure technologies inc" + }, + { + "cik": 1823340, + "symbol": "agcuu", + "name": "altimeter growth corp" + }, + { + "cik": 859598, + "symbol": "ckh", + "name": "seacor holdings inc new" + }, + { + "cik": 65011, + "symbol": "mdp", + "name": "meredith corp" + }, + { + "cik": 1652535, + "symbol": "ichr", + "name": "ichor holdings ltd" + }, + { + "cik": 42682, + "symbol": "grc", + "name": "gorman rupp co" + }, + { + "cik": 1795579, + "symbol": "calt", + "name": "calliditas therapeutics ab" + }, + { + "cik": 1108134, + "symbol": "bhlb", + "name": "berkshire hills bancorp inc" + }, + { + "cik": 1109138, + "symbol": "camt", + "name": "camtek ltd" + }, + { + "cik": 1537054, + "symbol": "gogo", + "name": "gogo inc" + }, + { + "cik": 1227476, + "symbol": "jqc", + "name": "nuveen credit strategies income fund" + }, + { + "cik": 912603, + "symbol": "schn", + "name": "schnitzer steel industries inc" + }, + { + "cik": 1227862, + "symbol": "emd", + "name": "western asset emerging markets debt fund inc" + }, + { + "cik": 1403256, + "symbol": "scu", + "name": "sculptor capital management inc" + }, + { + "cik": 1688941, + "symbol": "fbm", + "name": "foundation building materials inc" + }, + { + "cik": 1698514, + "symbol": "nesrw", + "name": "national energy services reunited corp" + }, + { + "cik": 1661181, + "symbol": "orgo", + "name": "organogenesis holdings inc" + }, + { + "cik": 714395, + "symbol": "gabc", + "name": "german american bancorp inc" + }, + { + "cik": 1703141, + "symbol": "desp", + "name": "despegarcom corp" + }, + { + "cik": 946647, + "symbol": "fdef", + "name": "premier financial corp" + }, + { + "cik": 1568162, + "symbol": "afino", + "name": "american finance trust inc" + }, + { + "cik": 1321646, + "symbol": "kra", + "name": "kraton corp" + }, + { + "cik": 1385145, + "symbol": "cel", + "name": "cellcom israel ltd" + }, + { + "cik": 1630472, + "symbol": "trtx", + "name": "tpg re finance trust inc" + }, + { + "cik": 1628063, + "symbol": "srg", + "name": "seritage growth properties" + }, + { + "cik": 712034, + "symbol": "acco", + "name": "acco brands corp" + }, + { + "cik": 931427, + "symbol": "tgs", + "name": "gas transporter of the south inc" + }, + { + "cik": 1621227, + "symbol": "adap", + "name": "adaptimmune therapeutics plc" + }, + { + "cik": 50493, + "symbol": "imkta", + "name": "ingles markets inc" + }, + { + "cik": 1043337, + "symbol": "sri", + "name": "stoneridge inc" + }, + { + "cik": 1720821, + "symbol": "paeww", + "name": "pae inc" + }, + { + "cik": 722723, + "symbol": "hngr", + "name": "hanger inc" + }, + { + "cik": 1450009, + "symbol": "ctagf", + "name": "capita group adr" + }, + { + "cik": 1604522, + "symbol": "thq", + "name": "tekla healthcare opportunities fund" + }, + { + "cik": 18748, + "symbol": "cet", + "name": "central securities corp" + }, + { + "cik": 1057060, + "symbol": "hzo", + "name": "marinemax inc" + }, + { + "cik": 1372020, + "symbol": "gldd", + "name": "great lakes dredge & dock corp" + }, + { + "cik": 884624, + "symbol": "ofix", + "name": "orthofix medical inc" + }, + { + "cik": 1027838, + "symbol": "tcmd", + "name": "tactile systems technology inc" + }, + { + "cik": 807863, + "symbol": "mitk", + "name": "mitek systems inc" + }, + { + "cik": 1818089, + "symbol": "boac", + "name": "bluescape opportunities acquisition corp" + }, + { + "cik": 1616736, + "symbol": "alpc", + "name": "alpha investment inc" + }, + { + "cik": 1712923, + "symbol": "gsky", + "name": "greensky inc" + }, + { + "cik": 1728117, + "symbol": "goss", + "name": "gossamer bio inc" + }, + { + "cik": 1046025, + "symbol": "hfwa", + "name": "heritage financial corp wa" + }, + { + "cik": 1688757, + "symbol": "esta", + "name": "establishment labs holdings inc" + }, + { + "cik": 1022321, + "symbol": "gel", + "name": "genesis energy lp" + }, + { + "cik": 1629019, + "symbol": "mbino", + "name": "merchants bancorp" + }, + { + "cik": 1520253, + "symbol": "pthif", + "name": "pt solusi bangun indonesia tbk adr" + }, + { + "cik": 1024725, + "symbol": "ten", + "name": "tenneco inc" + }, + { + "cik": 880631, + "symbol": "wetf", + "name": "wisdomtree investments inc" + }, + { + "cik": 909494, + "symbol": "tcx", + "name": "tucows inc pa" + }, + { + "cik": 1580808, + "symbol": "aten", + "name": "a10 networks inc" + }, + { + "cik": 1434868, + "symbol": "espr", + "name": "esperion therapeutics inc" + }, + { + "cik": 1655050, + "symbol": "bcsf", + "name": "bain capital specialty finance inc" + }, + { + "cik": 1805077, + "symbol": "eosew", + "name": "eos energy enterprises inc" + }, + { + "cik": 1120914, + "symbol": "pdfs", + "name": "pdf solutions inc" + }, + { + "cik": 1604665, + "symbol": "wlkp", + "name": "westlake chemical partners lp" + }, + { + "cik": 1438231, + "symbol": "dmrc", + "name": "digimarc corp" + }, + { + "cik": 1534504, + "symbol": "pbf", + "name": "pbf energy inc" + }, + { + "cik": 1714798, + "symbol": "prvl", + "name": "prevail therapeutics inc" + }, + { + "cik": 1219360, + "symbol": "phk", + "name": "pimco high income fund" + }, + { + "cik": 1172222, + "symbol": "ha", + "name": "hawaiian holdings inc" + }, + { + "cik": 866729, + "symbol": "schl", + "name": "scholastic corp" + }, + { + "cik": 1683606, + "symbol": "cars", + "name": "carscom inc" + }, + { + "cik": 1522860, + "symbol": "afib", + "name": "acutus medical inc" + }, + { + "cik": 1556263, + "symbol": "syrs", + "name": "syros pharmaceuticals inc" + }, + { + "cik": 1810739, + "symbol": "lssdf", + "name": "radius global infrastructure inc" + }, + { + "cik": 1643615, + "symbol": "meg", + "name": "montrose environmental group inc" + }, + { + "cik": 1815184, + "symbol": "rbac", + "name": "redball acquisition corp" + }, + { + "cik": 1469372, + "symbol": "msgn", + "name": "msg networks inc" + }, + { + "cik": 1017480, + "symbol": "hibb", + "name": "hibbett sports inc" + }, + { + "cik": 73756, + "symbol": "oii", + "name": "oceaneering international inc" + }, + { + "cik": 1818876, + "symbol": "ipod", + "name": "social capital hedosophia holdings corp iv" + }, + { + "cik": 72444, + "symbol": "vxrt", + "name": "vaxart inc" + }, + { + "cik": 1642122, + "symbol": "ac", + "name": "associated capital group inc" + }, + { + "cik": 55135, + "symbol": "kelyb", + "name": "kelly services inc" + }, + { + "cik": 835011, + "symbol": "mgpi", + "name": "mgp ingredients inc" + }, + { + "cik": 1268884, + "symbol": "igr", + "name": "cbre clarion global real estate income fund" + }, + { + "cik": 1332349, + "symbol": "bkd", + "name": "brookdale senior living inc" + }, + { + "cik": 1818346, + "symbol": "leap", + "name": "ribbit leap ltd" + }, + { + "cik": 1655099, + "symbol": "ra", + "name": "brookfield real assets income fund inc" + }, + { + "cik": 874977, + "symbol": "stfc", + "name": "state auto financial corp" + }, + { + "cik": 1560241, + "symbol": "gthx", + "name": "g1 therapeutics inc" + }, + { + "cik": 1383441, + "symbol": "nie", + "name": "allianzgi equity & convertible income fund" + }, + { + "cik": 1525221, + "symbol": "vtol", + "name": "bristow group inc" + }, + { + "cik": 1069899, + "symbol": "pahc", + "name": "phibro animal health corp" + }, + { + "cik": 1822877, + "symbol": "vygg", + "name": "vy global growth" + }, + { + "cik": 1762322, + "symbol": "sfttw", + "name": "shift technologies inc" + }, + { + "cik": 899460, + "symbol": "mnkd", + "name": "mannkind corp" + }, + { + "cik": 1819608, + "symbol": "avan", + "name": "avanti acquisition corp" + }, + { + "cik": 1758488, + "symbol": "osw", + "name": "onespaworld holdings ltd" + }, + { + "cik": 1070985, + "symbol": "cxw", + "name": "corecivic inc" + }, + { + "cik": 1722271, + "symbol": "akus", + "name": "akouos inc" + }, + { + "cik": 716133, + "symbol": "cbb", + "name": "cincinnati bell inc" + }, + { + "cik": 1346830, + "symbol": "cara", + "name": "cara therapeutics inc" + }, + { + "cik": 1132105, + "symbol": "spwh", + "name": "sportsmans warehouse holdings inc" + }, + { + "cik": 1486159, + "symbol": "oaspq", + "name": "oasis petroleum inc" + }, + { + "cik": 1804591, + "symbol": "vgac", + "name": "vg acquisition corp" + }, + { + "cik": 821026, + "symbol": "ande", + "name": "andersons inc" + }, + { + "cik": 1414932, + "symbol": "osle", + "name": "oaktree specialty lending corp" + }, + { + "cik": 1574197, + "symbol": "fph", + "name": "five point holdings llc" + }, + { + "cik": 1023313, + "symbol": "forr", + "name": "forrester research inc" + }, + { + "cik": 1760439, + "symbol": "hrvsf", + "name": "harvest health & recreation inc" + }, + { + "cik": 1278895, + "symbol": "cii", + "name": "blackrock enhanced capital & income fund inc" + }, + { + "cik": 1271214, + "symbol": "xent", + "name": "intersect ent inc" + }, + { + "cik": 1158895, + "symbol": "lmat", + "name": "lemaitre vascular inc" + }, + { + "cik": 1295401, + "symbol": "tbbk", + "name": "bancorp inc" + }, + { + "cik": 1322505, + "symbol": "albo", + "name": "albireo pharma inc" + }, + { + "cik": 1821349, + "symbol": "ngms", + "name": "neogames sa" + }, + { + "cik": 922864, + "symbol": "aiv", + "name": "apartment investment & management co" + }, + { + "cik": 1464591, + "symbol": "gprk", + "name": "geopark ltd" + }, + { + "cik": 874501, + "symbol": "ambc", + "name": "ambac financial group inc" + }, + { + "cik": 1398832, + "symbol": "sgsvf", + "name": "sabina gold & silver corp" + }, + { + "cik": 1421517, + "symbol": "erii", + "name": "energy recovery inc" + }, + { + "cik": 1683825, + "symbol": "trvg", + "name": "trivago nv" + }, + { + "cik": 1347178, + "symbol": "vnda", + "name": "vanda pharmaceuticals inc" + }, + { + "cik": 1557142, + "symbol": "kdmn", + "name": "kadmon holdings inc" + }, + { + "cik": 1334978, + "symbol": "cco", + "name": "clear channel outdoor holdings inc" + }, + { + "cik": 1692787, + "symbol": "altm", + "name": "altus midstream co" + }, + { + "cik": 1600125, + "symbol": "ebsb", + "name": "meridian bancorp inc" + }, + { + "cik": 845877, + "symbol": "agm", + "name": "federal agricultural mortgage corp" + }, + { + "cik": 1811856, + "symbol": "cfiiu", + "name": "cf finance acquisition corp ii" + }, + { + "cik": 712771, + "symbol": "cnob", + "name": "connectone bancorp inc" + }, + { + "cik": 907254, + "symbol": "bfs", + "name": "saul centers inc" + }, + { + "cik": 1680247, + "symbol": "pump", + "name": "propetro holding corp" + }, + { + "cik": 1260041, + "symbol": "htd", + "name": "john hancock tax-advantaged dividend income fund" + }, + { + "cik": 1332174, + "symbol": "gsg", + "name": "ishares s&p gsci commodity-indexed trust" + }, + { + "cik": 737468, + "symbol": "wash", + "name": "washington trust bancorp inc" + }, + { + "cik": 1435049, + "symbol": "adro", + "name": "chinook therapeutics inc" + }, + { + "cik": 41719, + "symbol": "glt", + "name": "glatfelter corp" + }, + { + "cik": 1512499, + "symbol": "lind", + "name": "lindblad expeditions holdings inc" + }, + { + "cik": 1195738, + "symbol": "nkx", + "name": "nuveen california amt-free quality municipal income fund" + }, + { + "cik": 1635984, + "symbol": "nwli", + "name": "national western life group inc" + }, + { + "cik": 1604477, + "symbol": "sqz", + "name": "sqz biotechnologies co" + }, + { + "cik": 1773250, + "symbol": "mmx", + "name": "maverix metals inc" + }, + { + "cik": 1592058, + "symbol": "prty", + "name": "party city holdco inc" + }, + { + "cik": 1548717, + "symbol": "ldp", + "name": "cohen & steers ltd duration preferred & income fund inc" + }, + { + "cik": 1697818, + "symbol": "iclk", + "name": "iclick interactive asia group ltd" + }, + { + "cik": 1688476, + "symbol": "nex", + "name": "nextier oilfield solutions inc" + }, + { + "cik": 828803, + "symbol": "gim", + "name": "templeton global income fund" + }, + { + "cik": 1267902, + "symbol": "wiw", + "name": "western asset inflation-linked opportunities & income fund" + }, + { + "cik": 1599617, + "symbol": "dnow", + "name": "now inc" + }, + { + "cik": 1426945, + "symbol": "echo", + "name": "echo global logistics inc" + }, + { + "cik": 1423221, + "symbol": "nx", + "name": "quanex building products corp" + }, + { + "cik": 1720446, + "symbol": "hmi", + "name": "huami corp" + }, + { + "cik": 1423210, + "symbol": "arztf", + "name": "aryzta ag (fka iaws group plc)" + }, + { + "cik": 1169770, + "symbol": "banc", + "name": "banc of california inc" + }, + { + "cik": 919893, + "symbol": "tdf", + "name": "templeton dragon fund inc" + }, + { + "cik": 31235, + "symbol": "kodk", + "name": "eastman kodak co" + }, + { + "cik": 1735438, + "symbol": "mgtx", + "name": "meiragtx holdings plc" + }, + { + "cik": 1671818, + "symbol": "oncr", + "name": "oncorus inc" + }, + { + "cik": 799850, + "symbol": "crmt", + "name": "americas carmart inc" + }, + { + "cik": 1757932, + "symbol": "rmg", + "name": "romeo power inc" + }, + { + "cik": 1816176, + "symbol": "goac", + "name": "go acquisition corp" + }, + { + "cik": 1213037, + "symbol": "crdf", + "name": "cardiff oncology inc" + }, + { + "cik": 1370416, + "symbol": "wprt", + "name": "westport fuel systems inc" + }, + { + "cik": 1461402, + "symbol": "htctf", + "name": "hutchison telecommunications hong kong holdings ltd" + }, + { + "cik": 1293613, + "symbol": "kyn", + "name": "kayne anderson energy infrastructure fund inc" + }, + { + "cik": 1040593, + "symbol": "crzo", + "name": "carrizo oil & gas inc" + }, + { + "cik": 885601, + "symbol": "iim", + "name": "invesco value municipal income trust" + }, + { + "cik": 1710680, + "symbol": "hfro", + "name": "highland income fund ma" + }, + { + "cik": 1725134, + "symbol": "lhc", + "name": "digital media solutions inc" + }, + { + "cik": 1696355, + "symbol": "bedu", + "name": "bright scholar education holdings ltd" + }, + { + "cik": 1531006, + "symbol": "swdhf", + "name": "skyworth digital holdings limited adr" + }, + { + "cik": 1499505, + "symbol": "agro", + "name": "adecoagro sa" + }, + { + "cik": 1512920, + "symbol": "spoxd", + "name": "sprott inc" + }, + { + "cik": 926282, + "symbol": "adtn", + "name": "adtran inc" + }, + { + "cik": 1253176, + "symbol": "vapo", + "name": "vapotherm inc" + }, + { + "cik": 887921, + "symbol": "rev", + "name": "revlon inc de" + }, + { + "cik": 1494582, + "symbol": "bomn", + "name": "boston omaha corp" + }, + { + "cik": 810136, + "symbol": "plab", + "name": "photronics inc" + }, + { + "cik": 1518715, + "symbol": "hmst", + "name": "homestreet inc" + }, + { + "cik": 1289877, + "symbol": "sfl", + "name": "sfl corp ltd" + }, + { + "cik": 876779, + "symbol": "mgic", + "name": "magic software enterprises ltd" + }, + { + "cik": 1418076, + "symbol": "slrc", + "name": "solar capital ltd" + }, + { + "cik": 805928, + "symbol": "axgn", + "name": "axogen inc" + }, + { + "cik": 1738177, + "symbol": "cmbm", + "name": "cambium networks corp" + }, + { + "cik": 704562, + "symbol": "cdmop", + "name": "avid bioservices inc" + }, + { + "cik": 1466538, + "symbol": "cown", + "name": "cowen inc" + }, + { + "cik": 1296250, + "symbol": "pfn", + "name": "pimco income strategy fund ii" + }, + { + "cik": 101984, + "symbol": "ueic", + "name": "universal electronics inc" + }, + { + "cik": 1492165, + "symbol": "pfbc", + "name": "preferred bank" + }, + { + "cik": 880892, + "symbol": "vgm", + "name": "invesco trust for investment grade municipals" + }, + { + "cik": 1304492, + "symbol": "atex", + "name": "anterix inc" + }, + { + "cik": 896429, + "symbol": "usatp", + "name": "usa technologies inc" + }, + { + "cik": 1750153, + "symbol": "goevw", + "name": "canoo inc" + }, + { + "cik": 886093, + "symbol": "nunz", + "name": "nunzia pharmaceutical co" + }, + { + "cik": 1313275, + "symbol": "bcov", + "name": "brightcove inc" + }, + { + "cik": 908315, + "symbol": "wina", + "name": "winmark corp" + }, + { + "cik": 1041859, + "symbol": "plce", + "name": "childrens place inc" + }, + { + "cik": 1692412, + "symbol": "plya", + "name": "playa hotels & resorts nv" + }, + { + "cik": 1091883, + "symbol": "cir", + "name": "circor international inc" + }, + { + "cik": 1602584, + "symbol": "ccd", + "name": "calamos dynamic convertible & income fund" + }, + { + "cik": 877463, + "symbol": "vkq", + "name": "invesco municipal trust" + }, + { + "cik": 1817071, + "symbol": "hzac", + "name": "horizon acquisition corp" + }, + { + "cik": 1534133, + "symbol": "gray", + "name": "graybug vision inc" + }, + { + "cik": 1691445, + "symbol": "finv", + "name": "finvolution group" + }, + { + "cik": 879585, + "symbol": "atni", + "name": "atn international inc" + }, + { + "cik": 108385, + "symbol": "wrld", + "name": "world acceptance corp" + }, + { + "cik": 1278752, + "symbol": "ainv", + "name": "apollo investment corp" + }, + { + "cik": 1805833, + "symbol": "treb", + "name": "trebia acquisition corp" + }, + { + "cik": 851310, + "symbol": "hlit", + "name": "harmonic inc" + }, + { + "cik": 69488, + "symbol": "mye", + "name": "myers industries inc" + }, + { + "cik": 1601669, + "symbol": "wtrep", + "name": "watford holdings ltd" + }, + { + "cik": 1068875, + "symbol": "bcor", + "name": "blucora inc" + }, + { + "cik": 1320375, + "symbol": "boe", + "name": "blackrock enhanced global dividend trust" + }, + { + "cik": 1428205, + "symbol": "arr", + "name": "armour residential reit inc" + }, + { + "cik": 100591, + "symbol": "agx", + "name": "argan inc" + }, + { + "cik": 821483, + "symbol": "parr", + "name": "par pacific holdings inc" + }, + { + "cik": 1277866, + "symbol": "exk", + "name": "endeavour silver corp" + }, + { + "cik": 1089143, + "symbol": "clct", + "name": "collectors universe inc" + }, + { + "cik": 1040130, + "symbol": "pets", + "name": "petmed express inc" + }, + { + "cik": 742278, + "symbol": "res", + "name": "rpc inc" + }, + { + "cik": 855886, + "symbol": "pdt", + "name": "john hancock premium dividend fund" + }, + { + "cik": 1174850, + "symbol": "ncbs", + "name": "nicolet bankshares inc" + }, + { + "cik": 926617, + "symbol": "awh", + "name": "aspira womens health inc" + }, + { + "cik": 1011570, + "symbol": "knl", + "name": "knoll inc" + }, + { + "cik": 880807, + "symbol": "amsc", + "name": "american superconductor corp de" + }, + { + "cik": 1160990, + "symbol": "pcn", + "name": "pimco corporate & income strategy fund" + }, + { + "cik": 1821788, + "symbol": "hzon", + "name": "horizon acquisition corp ii" + }, + { + "cik": 1816816, + "symbol": "grsvw", + "name": "gores holdings v inc" + }, + { + "cik": 1527590, + "symbol": "rcp", + "name": "ready capital corp" + }, + { + "cik": 1293135, + "symbol": "vet", + "name": "vermilion energy inc" + }, + { + "cik": 1073748, + "symbol": "yumm", + "name": "yummies inc" + }, + { + "cik": 1337553, + "symbol": "aeri", + "name": "aerie pharmaceuticals inc" + }, + { + "cik": 1137393, + "symbol": "bfk", + "name": "blackrock municipal income trust" + }, + { + "cik": 1021162, + "symbol": "tgi", + "name": "triumph group inc" + }, + { + "cik": 1734107, + "symbol": "sohu", + "name": "sohucom ltd" + }, + { + "cik": 1777921, + "symbol": "apxtw", + "name": "apex technology acquisition corp" + }, + { + "cik": 932695, + "symbol": "cyd", + "name": "china yuchai international ltd" + }, + { + "cik": 921557, + "symbol": "rbcaa", + "name": "republic bancorp inc ky" + }, + { + "cik": 885125, + "symbol": "iqi", + "name": "invesco quality municipal income trust" + }, + { + "cik": 842183, + "symbol": "rpt", + "name": "rpt realty" + }, + { + "cik": 1108205, + "symbol": "cris", + "name": "curis inc" + }, + { + "cik": 1533615, + "symbol": "gmre", + "name": "global medical reit inc" + }, + { + "cik": 1078207, + "symbol": "nls", + "name": "nautilus inc" + }, + { + "cik": 1095565, + "symbol": "hstm", + "name": "healthstream inc" + }, + { + "cik": 1395325, + "symbol": "etj", + "name": "eaton vance risk-managed diversified equity income fund" + }, + { + "cik": 77543, + "symbol": "tpc", + "name": "tutor perini corp" + }, + { + "cik": 854560, + "symbol": "gsbc", + "name": "great southern bancorp inc" + }, + { + "cik": 1642081, + "symbol": "abtx", + "name": "allegiance bancshares inc" + }, + { + "cik": 878526, + "symbol": "ntus", + "name": "natus medical inc" + }, + { + "cik": 879361, + "symbol": "myd", + "name": "blackrock muniyield fund inc" + }, + { + "cik": 1450276, + "symbol": "npacf", + "name": "quadient sa adr" + }, + { + "cik": 1029145, + "symbol": "gogl", + "name": "golden ocean group ltd" + }, + { + "cik": 1701758, + "symbol": "love", + "name": "lovesac co" + }, + { + "cik": 1409970, + "symbol": "lc", + "name": "lendingclub corp" + }, + { + "cik": 884219, + "symbol": "vvi", + "name": "viad corp" + }, + { + "cik": 744218, + "symbol": "cldx", + "name": "celldex therapeutics inc" + }, + { + "cik": 1606366, + "symbol": "loco", + "name": "el pollo loco holdings inc" + }, + { + "cik": 1717161, + "symbol": "cepu", + "name": "central puerto sa" + }, + { + "cik": 1010000, + "symbol": "ruprf", + "name": "rupert resources ltd" + }, + { + "cik": 1736946, + "symbol": "arlo", + "name": "arlo technologies inc" + }, + { + "cik": 821127, + "symbol": "bpfh", + "name": "boston private financial holdings inc" + }, + { + "cik": 1584549, + "symbol": "vff", + "name": "village farms international inc" + }, + { + "cik": 1393662, + "symbol": "vta", + "name": "invesco dynamic credit opportunities fund" + }, + { + "cik": 1697884, + "symbol": "vsbc", + "name": "vitaspring biomedical co ltd" + }, + { + "cik": 1411342, + "symbol": "efc", + "name": "ellington financial inc" + }, + { + "cik": 1801754, + "symbol": "tig", + "name": "trean insurance group inc" + }, + { + "cik": 768899, + "symbol": "tbi", + "name": "trueblue inc" + }, + { + "cik": 1098972, + "symbol": "agen", + "name": "agenus inc" + }, + { + "cik": 1538849, + "symbol": "capl", + "name": "crossamerica partners lp" + }, + { + "cik": 826020, + "symbol": "ppr", + "name": "voya prime rate trust" + }, + { + "cik": 853180, + "symbol": "xslcx", + "name": "invesco senior loan fund" + }, + { + "cik": 863894, + "symbol": "veru", + "name": "veru inc" + }, + { + "cik": 1126874, + "symbol": "erf", + "name": "enerplus corp" + }, + { + "cik": 1235468, + "symbol": "lqdt", + "name": "liquidity services inc" + }, + { + "cik": 1780652, + "symbol": "can", + "name": "canaan inc" + }, + { + "cik": 1760689, + "symbol": "thcbw", + "name": "tuscan holdings corp" + }, + { + "cik": 1561566, + "symbol": "qiwi", + "name": "qiwi" + }, + { + "cik": 1370755, + "symbol": "tcpc", + "name": "blackrock tcp capital corp" + }, + { + "cik": 1059262, + "symbol": "sp", + "name": "sp plus corp" + }, + { + "cik": 82020, + "symbol": "uslm", + "name": "united states lime & minerals inc" + }, + { + "cik": 1478888, + "symbol": "nbb", + "name": "nuveen taxable municipal income fund" + }, + { + "cik": 1267565, + "symbol": "coll", + "name": "collegium pharmaceutical inc" + }, + { + "cik": 913059, + "symbol": "bbar", + "name": "banco bbva argentina sa" + }, + { + "cik": 706129, + "symbol": "hbnc", + "name": "horizon bancorp inc in" + }, + { + "cik": 1557915, + "symbol": "nid", + "name": "nuveen intermediate duration municipal term fund" + }, + { + "cik": 1506289, + "symbol": "bcx", + "name": "blackrock resources & commodities strategy trust" + }, + { + "cik": 1417892, + "symbol": "sol", + "name": "renesola ltd" + }, + { + "cik": 1361369, + "symbol": "rnwef", + "name": "renewable energy corp asa" + }, + { + "cik": 34067, + "symbol": "boom", + "name": "dmc global inc" + }, + { + "cik": 1083446, + "symbol": "ameh", + "name": "apollo medical holdings inc" + }, + { + "cik": 1221029, + "symbol": "cpac", + "name": "cementos pacasmayo saa" + }, + { + "cik": 67347, + "symbol": "mod", + "name": "modine manufacturing co" + }, + { + "cik": 1366868, + "symbol": "gsat", + "name": "globalstar inc" + }, + { + "cik": 1799290, + "symbol": "ebon", + "name": "ebang international holdings inc" + }, + { + "cik": 1413855, + "symbol": "fanh", + "name": "fanhua inc" + }, + { + "cik": 1681622, + "symbol": "vrex", + "name": "varex imaging corp" + }, + { + "cik": 1493225, + "symbol": "nfbk", + "name": "northfield bancorp inc" + }, + { + "cik": 350852, + "symbol": "ctbi", + "name": "community trust bancorp inc ky" + }, + { + "cik": 1378125, + "symbol": "togl", + "name": "toga ltd" + }, + { + "cik": 1073429, + "symbol": "uscr", + "name": "us concrete inc" + }, + { + "cik": 1562818, + "symbol": "bit", + "name": "blackrock multi-sector income trust" + }, + { + "cik": 1300391, + "symbol": "eoi", + "name": "eaton vance enhanced equity income fund" + }, + { + "cik": 1037676, + "symbol": "arch", + "name": "arch resources inc" + }, + { + "cik": 1723128, + "symbol": "amrx", + "name": "amneal pharmaceuticals inc" + }, + { + "cik": 1473844, + "symbol": "cbtx", + "name": "cbtx inc" + }, + { + "cik": 1006269, + "symbol": "lorl", + "name": "loral space & communications inc" + }, + { + "cik": 910068, + "symbol": "hio", + "name": "western asset high income opportunity fund inc" + }, + { + "cik": 1437402, + "symbol": "ardx", + "name": "ardelyx inc" + }, + { + "cik": 1626745, + "symbol": "fvti", + "name": "fortune valley treasures inc" + }, + { + "cik": 1107421, + "symbol": "ziop", + "name": "ziopharm oncology inc" + }, + { + "cik": 752642, + "symbol": "umh", + "name": "umh properties inc" + }, + { + "cik": 1818093, + "symbol": "vspru", + "name": "vesper healthcare acquisition corp" + }, + { + "cik": 898437, + "symbol": "anik", + "name": "anika therapeutics inc" + }, + { + "cik": 1483934, + "symbol": "sbba", + "name": "scorpio tankers inc" + }, + { + "cik": 1724965, + "symbol": "talo", + "name": "talos energy inc" + }, + { + "cik": 1815495, + "symbol": "nga", + "name": "northern genesis acquisition corp" + }, + { + "cik": 1034842, + "symbol": "rigl", + "name": "rigel pharmaceuticals inc" + }, + { + "cik": 1717393, + "symbol": "caap", + "name": "corporacion america airports sa" + }, + { + "cik": 1234006, + "symbol": "goodn", + "name": "gladstone commercial corp" + }, + { + "cik": 1016169, + "symbol": "atrs", + "name": "antares pharma inc" + }, + { + "cik": 799288, + "symbol": "le", + "name": "lands end inc" + }, + { + "cik": 1410939, + "symbol": "isee", + "name": "iveric bio inc" + }, + { + "cik": 1809196, + "symbol": "imtxw", + "name": "immatics nv" + }, + { + "cik": 896841, + "symbol": "avid", + "name": "avid technology inc" + }, + { + "cik": 357301, + "symbol": "trst", + "name": "trustco bank corp n y" + }, + { + "cik": 895531, + "symbol": "vcv", + "name": "invesco california value municipal income trust" + }, + { + "cik": 918965, + "symbol": "scsc", + "name": "scansource inc" + }, + { + "cik": 1743725, + "symbol": "gdynw", + "name": "grid dynamics holdings inc" + }, + { + "cik": 1370053, + "symbol": "anab", + "name": "anaptysbio inc" + }, + { + "cik": 755001, + "symbol": "utl", + "name": "unitil corp" + }, + { + "cik": 1810031, + "symbol": "frln", + "name": "freeline therapeutics holdings plc" + }, + { + "cik": 1378950, + "symbol": "prts", + "name": "carpartscom inc" + }, + { + "cik": 831547, + "symbol": "sppi", + "name": "spectrum pharmaceuticals inc" + }, + { + "cik": 1793659, + "symbol": "rsi", + "name": "rush street interactive inc" + }, + { + "cik": 947559, + "symbol": "fbms", + "name": "first bancshares inc ms" + }, + { + "cik": 893538, + "symbol": "sm", + "name": "sm energy co" + }, + { + "cik": 906465, + "symbol": "qcrh", + "name": "qcr holdings inc" + }, + { + "cik": 1516912, + "symbol": "obnk", + "name": "origin bancorp inc" + }, + { + "cik": 1596946, + "symbol": "qtnt", + "name": "quotient ltd" + }, + { + "cik": 827876, + "symbol": "clsk", + "name": "cleanspark inc" + }, + { + "cik": 1544206, + "symbol": "cgbd", + "name": "tcg bdc inc" + }, + { + "cik": 1750593, + "symbol": "duo", + "name": "fangdd network group ltd" + }, + { + "cik": 827871, + "symbol": "egrx", + "name": "eagle pharmaceuticals inc" + }, + { + "cik": 1576873, + "symbol": "abml", + "name": "american battery metals corp" + }, + { + "cik": 1769617, + "symbol": "hone", + "name": "harborone bancorp inc" + }, + { + "cik": 846901, + "symbol": "lbai", + "name": "lakeland bancorp inc" + }, + { + "cik": 80172, + "symbol": "npk", + "name": "national presto industries inc" + }, + { + "cik": 1800347, + "symbol": "pcpl", + "name": "cc neuberger principal holdings i" + }, + { + "cik": 1681087, + "symbol": "avro", + "name": "avrobio inc" + }, + { + "cik": 1333274, + "symbol": "merc", + "name": "mercer international inc" + }, + { + "cik": 1709401, + "symbol": "ruby", + "name": "rubius therapeutics inc" + }, + { + "cik": 1441236, + "symbol": "clw", + "name": "clearwater paper corp" + }, + { + "cik": 1745797, + "symbol": "mnrl", + "name": "brigham minerals inc" + }, + { + "cik": 1581804, + "symbol": "nvgs", + "name": "navigator holdings ltd" + }, + { + "cik": 1726189, + "symbol": "new", + "name": "puxin ltd" + }, + { + "cik": 1411688, + "symbol": "tcs", + "name": "container store group inc" + }, + { + "cik": 1412481, + "symbol": "mmrty", + "name": "massmart holdings ltd" + }, + { + "cik": 1791091, + "symbol": "tlmdw", + "name": "soc telemed inc" + }, + { + "cik": 1051004, + "symbol": "muc", + "name": "blackrock muniholdings california quality fund inc" + }, + { + "cik": 877422, + "symbol": "sptn", + "name": "spartannash co" + }, + { + "cik": 1315257, + "symbol": "kop", + "name": "koppers holdings inc" + }, + { + "cik": 866829, + "symbol": "hlx", + "name": "helix energy solutions group inc" + }, + { + "cik": 30305, + "symbol": "dco", + "name": "ducommun inc de" + }, + { + "cik": 1673504, + "symbol": "ssdt", + "name": "shengshi elevator international holding group inc" + }, + { + "cik": 108985, + "symbol": "yorw", + "name": "york water co" + }, + { + "cik": 890541, + "symbol": "blx", + "name": "foreign trade bank of latin america inc" + }, + { + "cik": 1393299, + "symbol": "bgy", + "name": "blackrock enhanced international dividend trust" + }, + { + "cik": 1661998, + "symbol": "fixx", + "name": "homology medicines inc" + }, + { + "cik": 1071058, + "symbol": "abst", + "name": "absolute software corp" + }, + { + "cik": 1669811, + "symbol": "dfin", + "name": "donnelley financial solutions inc" + }, + { + "cik": 1683695, + "symbol": "imxi", + "name": "international money express inc" + }, + { + "cik": 1702750, + "symbol": "by", + "name": "byline bancorp inc" + }, + { + "cik": 1518557, + "symbol": "mmd", + "name": "mainstay mackay definedterm municipal opportunities fund" + }, + { + "cik": 1387467, + "symbol": "aosl", + "name": "alpha & omega semiconductor ltd" + }, + { + "cik": 1532346, + "symbol": "bcel", + "name": "atreca inc" + }, + { + "cik": 1324272, + "symbol": "ruth", + "name": "ruths hospitality group inc" + }, + { + "cik": 101199, + "symbol": "ufcs", + "name": "united fire group inc" + }, + { + "cik": 837852, + "symbol": "idex", + "name": "ideanomics inc" + }, + { + "cik": 1554697, + "symbol": "ghy", + "name": "pgim global high yield fund inc" + }, + { + "cik": 1760854, + "symbol": "nbtx", + "name": "nanobiotix sa" + }, + { + "cik": 1707502, + "symbol": "sldb", + "name": "solid biosciences inc" + }, + { + "cik": 1419600, + "symbol": "flxn", + "name": "flexion therapeutics inc" + }, + { + "cik": 1821171, + "symbol": "qell", + "name": "qell acquisition corp" + }, + { + "cik": 1701108, + "symbol": "spro", + "name": "spero therapeutics inc" + }, + { + "cik": 1783398, + "symbol": "ghivu", + "name": "gores holdings iv inc" + }, + { + "cik": 1597313, + "symbol": "vray", + "name": "viewray inc" + }, + { + "cik": 1059386, + "symbol": "vvr", + "name": "invesco senior income trust" + }, + { + "cik": 835948, + "symbol": "mvf", + "name": "blackrock munivest fund inc" + }, + { + "cik": 1661460, + "symbol": "pstx", + "name": "poseida therapeutics inc" + }, + { + "cik": 1717452, + "symbol": "odt", + "name": "odonate therapeutics inc" + }, + { + "cik": 1087786, + "symbol": "nxj", + "name": "nuveen new jersey quality municipal income fund" + }, + { + "cik": 701869, + "symbol": "ihc", + "name": "independence holding co" + }, + { + "cik": 1722380, + "symbol": "one", + "name": "onesmart international education group ltd" + }, + { + "cik": 1320461, + "symbol": "cps", + "name": "cooper-standard holdings inc" + }, + { + "cik": 1400438, + "symbol": "lgorf", + "name": "largo resources ltd" + }, + { + "cik": 1496048, + "symbol": "bpyup", + "name": "brookfield property reit inc" + }, + { + "cik": 1085913, + "symbol": "fmcb", + "name": "farmers & merchants bancorp" + }, + { + "cik": 1578955, + "symbol": "sboey", + "name": "schoeller-bleckmann oilfield equipment ag adr" + }, + { + "cik": 802681, + "symbol": "bmtc", + "name": "bryn mawr bank corp" + }, + { + "cik": 1625101, + "symbol": "plse", + "name": "pulse biosciences inc" + }, + { + "cik": 1437071, + "symbol": "ivr", + "name": "invesco mortgage capital inc" + }, + { + "cik": 1608390, + "symbol": "afmd", + "name": "affimed nv" + }, + { + "cik": 1711291, + "symbol": "curo", + "name": "curo group holdings corp" + }, + { + "cik": 1789029, + "symbol": "ipv", + "name": "interprivate acquisition corp" + }, + { + "cik": 1637736, + "symbol": "solow", + "name": "electrameccanica vehicles corp" + }, + { + "cik": 1058239, + "symbol": "hix", + "name": "western asset high income fund ii inc" + }, + { + "cik": 1821393, + "symbol": "aan", + "name": "aarons company inc" + }, + { + "cik": 1781983, + "symbol": "apre", + "name": "aprea therapeutics inc" + }, + { + "cik": 102212, + "symbol": "uvsp", + "name": "univest financial corp" + }, + { + "cik": 1785154, + "symbol": "dnk", + "name": "phoenix tree holdings ltd" + }, + { + "cik": 1734342, + "symbol": "amtbb", + "name": "amerant bancorp inc" + }, + { + "cik": 1086600, + "symbol": "arlp", + "name": "alliance resource partners lp" + }, + { + "cik": 1554859, + "symbol": "smlr", + "name": "semler scientific inc" + }, + { + "cik": 1323468, + "symbol": "glp", + "name": "global partners lp" + }, + { + "cik": 732417, + "symbol": "hbia", + "name": "hills bancorporation" + }, + { + "cik": 1388430, + "symbol": "cai", + "name": "cai international inc" + }, + { + "cik": 1596993, + "symbol": "lpg", + "name": "dorian lpg ltd" + }, + { + "cik": 725363, + "symbol": "cvm", + "name": "cel sci corp" + }, + { + "cik": 353020, + "symbol": "aegn", + "name": "aegion corp" + }, + { + "cik": 1582568, + "symbol": "pbfx", + "name": "pbf logistics lp" + }, + { + "cik": 1232860, + "symbol": "mui", + "name": "blackrock muni intermediate duration fund inc" + }, + { + "cik": 1396277, + "symbol": "chw", + "name": "calamos global dynamic income fund" + }, + { + "cik": 1313510, + "symbol": "ggn", + "name": "gamco global gold natural resources & income trust" + }, + { + "cik": 1219120, + "symbol": "avk", + "name": "advent convertible & income fund" + }, + { + "cik": 1010086, + "symbol": "siga", + "name": "siga technologies inc" + }, + { + "cik": 1815021, + "symbol": "bq", + "name": "boqii holding ltd" + }, + { + "cik": 1233681, + "symbol": "blw", + "name": "blackrock ltd duration income trust" + }, + { + "cik": 1559991, + "symbol": "dfp", + "name": "flaherty & crumrine dynamic preferred & income fund inc" + }, + { + "cik": 1029142, + "symbol": "dvax", + "name": "dynavax technologies corp" + }, + { + "cik": 1819404, + "symbol": "pace", + "name": "tpg pace tech opportunities corp" + }, + { + "cik": 1169988, + "symbol": "wifi", + "name": "boingo wireless inc" + }, + { + "cik": 1129155, + "symbol": "mpx", + "name": "marine products corp" + }, + { + "cik": 1308208, + "symbol": "ulh", + "name": "universal logistics holdings inc" + }, + { + "cik": 700565, + "symbol": "fmbh", + "name": "first mid bancshares inc" + }, + { + "cik": 1693011, + "symbol": "inzy", + "name": "inozyme pharma inc" + }, + { + "cik": 1517006, + "symbol": "gato", + "name": "gatos silver inc" + }, + { + "cik": 1145678, + "symbol": "tuwlf", + "name": "tullow oil plc fi" + }, + { + "cik": 1066605, + "symbol": "hsii", + "name": "heidrick & struggles international inc" + }, + { + "cik": 1662991, + "symbol": "seznl", + "name": "sezzle inc" + }, + { + "cik": 1776909, + "symbol": "curiw", + "name": "curiositystream inc" + }, + { + "cik": 925683, + "symbol": "bto", + "name": "john hancock financial opportunities fund" + }, + { + "cik": 1333835, + "symbol": "casa", + "name": "casa systems inc" + }, + { + "cik": 766701, + "symbol": "cmo", + "name": "capstead mortgage corp" + }, + { + "cik": 886043, + "symbol": "mmu", + "name": "western asset managed municipals fund inc" + }, + { + "cik": 854775, + "symbol": "dgii", + "name": "digi international inc" + }, + { + "cik": 1737339, + "symbol": "jg", + "name": "aurora mobile ltd" + }, + { + "cik": 1546429, + "symbol": "bgb", + "name": "blackstone gso strategic credit fund" + }, + { + "cik": 1634038, + "symbol": "pros", + "name": "prosight global inc" + }, + { + "cik": 1488813, + "symbol": "cubi", + "name": "customers bancorp inc" + }, + { + "cik": 1559053, + "symbol": "prta", + "name": "prothena corp public ltd co" + }, + { + "cik": 1687221, + "symbol": "revg", + "name": "rev group inc" + }, + { + "cik": 1314966, + "symbol": "bme", + "name": "blackrock health sciences trust" + }, + { + "cik": 46250, + "symbol": "hwkn", + "name": "hawkins inc" + }, + { + "cik": 1673772, + "symbol": "rapt", + "name": "rapt therapeutics inc" + }, + { + "cik": 1816101, + "symbol": "dmyd", + "name": "dmy technology group inc ii" + }, + { + "cik": 1016281, + "symbol": "csv", + "name": "carriage services inc" + }, + { + "cik": 1759425, + "symbol": "mirm", + "name": "mirum pharmaceuticals inc" + }, + { + "cik": 1575828, + "symbol": "fi", + "name": "franks international nv" + }, + { + "cik": 1608742, + "symbol": "diax", + "name": "nuveen dow 30sm dynamic overwrite fund" + }, + { + "cik": 708781, + "symbol": "cass", + "name": "cass information systems inc" + }, + { + "cik": 1071255, + "symbol": "gden", + "name": "golden entertainment inc" + }, + { + "cik": 1825024, + "symbol": "spnv", + "name": "supernova partners acquisition company inc" + }, + { + "cik": 924717, + "symbol": "srdx", + "name": "surmodics inc" + }, + { + "cik": 1601548, + "symbol": "vec", + "name": "vectrus inc" + }, + { + "cik": 1703644, + "symbol": "gpmt", + "name": "granite point mortgage trust inc" + }, + { + "cik": 1547994, + "symbol": "jpi", + "name": "nuveen preferred & income term fund" + }, + { + "cik": 1822219, + "symbol": "fmac", + "name": "firstmark horizon acquisition corp" + }, + { + "cik": 1567388, + "symbol": "nink", + "name": "nami corp" + }, + { + "cik": 1316517, + "symbol": "kndi", + "name": "kandi technologies group inc" + }, + { + "cik": 1183765, + "symbol": "mtem", + "name": "molecular templates inc" + }, + { + "cik": 1673985, + "symbol": "asix", + "name": "advansix inc" + }, + { + "cik": 1603978, + "symbol": "aqb", + "name": "aquabounty technologies inc" + }, + { + "cik": 1738906, + "symbol": "yi", + "name": "111 inc" + }, + { + "cik": 1818221, + "symbol": "eqd", + "name": "equity distribution acquisition corp" + }, + { + "cik": 715787, + "symbol": "tile", + "name": "interface inc" + }, + { + "cik": 1215913, + "symbol": "hps", + "name": "john hancock preferred income fund iii" + }, + { + "cik": 1524931, + "symbol": "chuy", + "name": "chuys holdings inc" + }, + { + "cik": 902791, + "symbol": "bbsi", + "name": "barrett business services inc" + }, + { + "cik": 1704711, + "symbol": "fnko", + "name": "funko inc" + }, + { + "cik": 713425, + "symbol": "amswa", + "name": "american software inc" + }, + { + "cik": 1659494, + "symbol": "coe", + "name": "china online education group" + }, + { + "cik": 1439095, + "symbol": "mrc", + "name": "mrc global inc" + }, + { + "cik": 1553643, + "symbol": "rlmd", + "name": "relmada therapeutics inc" + }, + { + "cik": 1655891, + "symbol": "trmd", + "name": "torm plc" + }, + { + "cik": 60977, + "symbol": "ldl", + "name": "lydall inc de" + }, + { + "cik": 874238, + "symbol": "strl", + "name": "sterling construction co inc" + }, + { + "cik": 1524741, + "symbol": "slca", + "name": "us silica holdings inc" + }, + { + "cik": 1799332, + "symbol": "gan", + "name": "gan ltd" + }, + { + "cik": 1458412, + "symbol": "cfb", + "name": "crossfirst bankshares inc" + }, + { + "cik": 1361983, + "symbol": "orbc", + "name": "orbcomm inc" + }, + { + "cik": 1661125, + "symbol": "yin", + "name": "yintech investment holdings ltd" + }, + { + "cik": 928022, + "symbol": "cpe", + "name": "callon petroleum co" + }, + { + "cik": 1045126, + "symbol": "mfl", + "name": "blackrock muniholdings investment quality fund" + }, + { + "cik": 895447, + "symbol": "scvl", + "name": "shoe carnival inc" + }, + { + "cik": 1746109, + "symbol": "bfc", + "name": "bank first corp" + }, + { + "cik": 1538716, + "symbol": "oprt", + "name": "oportun financial corp" + }, + { + "cik": 1108827, + "symbol": "qep", + "name": "qep resources inc" + }, + { + "cik": 1029800, + "symbol": "uba", + "name": "urstadt biddle properties inc" + }, + { + "cik": 1419041, + "symbol": "fbrx", + "name": "forte biosciences inc" + }, + { + "cik": 870780, + "symbol": "nqp", + "name": "nuveen pennsylvania quality municipal income fund" + }, + { + "cik": 1337298, + "symbol": "ff", + "name": "futurefuel corp" + }, + { + "cik": 1357874, + "symbol": "dtil", + "name": "precision biosciences inc" + }, + { + "cik": 1503526, + "symbol": "tshmy", + "name": "toshiba machine co ltd adr" + }, + { + "cik": 1399249, + "symbol": "pzn", + "name": "pzena investment management inc" + }, + { + "cik": 1582313, + "symbol": "xene", + "name": "xenon pharmaceuticals inc" + }, + { + "cik": 1074540, + "symbol": "evn", + "name": "eaton vance municipal income trust" + }, + { + "cik": 701347, + "symbol": "cpf", + "name": "central pacific financial corp" + }, + { + "cik": 714562, + "symbol": "thff", + "name": "first financial corp in" + }, + { + "cik": 318300, + "symbol": "pebo", + "name": "peoples bancorp inc" + }, + { + "cik": 1798100, + "symbol": "ntst", + "name": "netstreit corp" + }, + { + "cik": 917100, + "symbol": "ifn", + "name": "india fund inc" + }, + { + "cik": 1275187, + "symbol": "ango", + "name": "angiodynamics inc" + }, + { + "cik": 1820191, + "symbol": "impx", + "name": "aea-bridges impact corp" + }, + { + "cik": 1638290, + "symbol": "mcft", + "name": "mastercraft boat holdings inc" + }, + { + "cik": 1785173, + "symbol": "etnb", + "name": "89bio inc" + }, + { + "cik": 1466301, + "symbol": "clvs", + "name": "clovis oncology inc" + }, + { + "cik": 1476045, + "symbol": "cldt", + "name": "chatham lodging trust" + }, + { + "cik": 901243, + "symbol": "mua", + "name": "blackrock muniassets fund inc" + }, + { + "cik": 750686, + "symbol": "cac", + "name": "camden national corp" + }, + { + "cik": 850429, + "symbol": "tg", + "name": "tredegar corp" + }, + { + "cik": 1062822, + "symbol": "lxrx", + "name": "lexicon pharmaceuticals inc" + }, + { + "cik": 1391127, + "symbol": "llnw", + "name": "limelight networks inc" + }, + { + "cik": 882150, + "symbol": "myn", + "name": "blackrock muniyield new york quality fund inc" + }, + { + "cik": 1694665, + "symbol": "evlo", + "name": "evelo biosciences inc" + }, + { + "cik": 818972, + "symbol": "leo", + "name": "bny mellon strategic municipals inc" + }, + { + "cik": 1636286, + "symbol": "pub", + "name": "altabancorp" + }, + { + "cik": 1479615, + "symbol": "sln", + "name": "silence therapeutics plc" + }, + { + "cik": 1475348, + "symbol": "lbc", + "name": "luther burbank corp" + }, + { + "cik": 855612, + "symbol": "zixi", + "name": "zix corp" + }, + { + "cik": 1370450, + "symbol": "wldn", + "name": "willdan group inc" + }, + { + "cik": 1053352, + "symbol": "htbk", + "name": "heritage commerce corp" + }, + { + "cik": 1647933, + "symbol": "jhb", + "name": "nuveen high income november 2021 target term fund" + }, + { + "cik": 1117171, + "symbol": "cbat", + "name": "cbak energy technology inc" + }, + { + "cik": 888410, + "symbol": "mca", + "name": "blackrock muniyield california quality fund inc" + }, + { + "cik": 1697532, + "symbol": "aplt", + "name": "applied therapeutics inc" + }, + { + "cik": 1214935, + "symbol": "ncv", + "name": "allianzgi convertible & income fund" + }, + { + "cik": 1558583, + "symbol": "fuv", + "name": "arcimoto inc" + }, + { + "cik": 1176199, + "symbol": "hpi", + "name": "john hancock preferred income fund" + }, + { + "cik": 1411906, + "symbol": "ampe", + "name": "ampio pharmaceuticals inc" + }, + { + "cik": 1288992, + "symbol": "eft", + "name": "eaton vance floating-rate income trust" + }, + { + "cik": 1162194, + "symbol": "fldm", + "name": "fluidigm corp" + }, + { + "cik": 1111863, + "symbol": "swir", + "name": "sierra wireless inc" + }, + { + "cik": 1683553, + "symbol": "sprb", + "name": "spruce biosciences inc" + }, + { + "cik": 1756262, + "symbol": "tmdx", + "name": "transmedics group inc" + }, + { + "cik": 1720725, + "symbol": "oyst", + "name": "oyster point pharma inc" + }, + { + "cik": 1319947, + "symbol": "dbi", + "name": "designer brands inc" + }, + { + "cik": 1740547, + "symbol": "urov", + "name": "urovant sciences ltd" + }, + { + "cik": 1378453, + "symbol": "tannl", + "name": "travelcenters of america inc md" + }, + { + "cik": 890196, + "symbol": "mqy", + "name": "blackrock muniyield quality fund inc" + }, + { + "cik": 216085, + "symbol": "hvt", + "name": "haverty furniture companies inc" + }, + { + "cik": 1098009, + "symbol": "aagh", + "name": "america great health" + }, + { + "cik": 1774155, + "symbol": "smmcw", + "name": "south mountain merger corp" + }, + { + "cik": 1733298, + "symbol": "qtt", + "name": "qutoutiao inc" + }, + { + "cik": 1637761, + "symbol": "spne", + "name": "seaspine holdings corp" + }, + { + "cik": 1128173, + "symbol": "ircp", + "name": "irsa propiedades comerciales sa" + }, + { + "cik": 915840, + "symbol": "bzh", + "name": "beazer homes usa inc" + }, + { + "cik": 23197, + "symbol": "cmtl", + "name": "comtech telecommunications corp de" + }, + { + "cik": 1772720, + "symbol": "pic", + "name": "xl fleet corp" + }, + { + "cik": 1285890, + "symbol": "igd", + "name": "voya global equity dividend & premium opportunity fund" + }, + { + "cik": 1489096, + "symbol": "thr", + "name": "thermon group holdings inc" + }, + { + "cik": 1005409, + "symbol": "dcomp", + "name": "dime community bancshares inc" + }, + { + "cik": 1705259, + "symbol": "smts", + "name": "sierra metals inc" + }, + { + "cik": 886744, + "symbol": "gern", + "name": "geron corp" + }, + { + "cik": 896156, + "symbol": "eth", + "name": "ethan allen interiors inc" + }, + { + "cik": 791908, + "symbol": "xomap", + "name": "xoma corp" + }, + { + "cik": 1589526, + "symbol": "blbd", + "name": "blue bird corp" + }, + { + "cik": 1448431, + "symbol": "oprx", + "name": "optimizerx corp" + }, + { + "cik": 1534880, + "symbol": "isd", + "name": "pgim high yield bond fund inc" + }, + { + "cik": 14707, + "symbol": "cal", + "name": "caleres inc" + }, + { + "cik": 1171662, + "symbol": "gts", + "name": "triple-s management corp" + }, + { + "cik": 1393066, + "symbol": "rfp", + "name": "resolute forest products inc" + }, + { + "cik": 1276533, + "symbol": "jfr", + "name": "nuveen floating rate income fund" + }, + { + "cik": 908993, + "symbol": "vki", + "name": "invesco advantage municipal income trust ii" + }, + { + "cik": 1494530, + "symbol": "fsd", + "name": "first trust high income long short fund" + }, + { + "cik": 1273931, + "symbol": "mgi", + "name": "moneygram international inc" + }, + { + "cik": 1651311, + "symbol": "mrus", + "name": "merus nv" + }, + { + "cik": 1519177, + "symbol": "solsd", + "name": "sollensys corp" + }, + { + "cik": 1805890, + "symbol": "fusn", + "name": "fusion pharmaceuticals inc" + }, + { + "cik": 846475, + "symbol": "zyxi", + "name": "zynex inc" + }, + { + "cik": 1599298, + "symbol": "smmt", + "name": "summit therapeutics inc" + }, + { + "cik": 1403475, + "symbol": "bmrc", + "name": "bank of marin bancorp" + }, + { + "cik": 1169652, + "symbol": "ecom", + "name": "channeladvisor corp" + }, + { + "cik": 1404644, + "symbol": "nltx", + "name": "neoleukin therapeutics inc" + }, + { + "cik": 1380846, + "symbol": "tsc", + "name": "tristate capital holdings inc" + }, + { + "cik": 711772, + "symbol": "catc", + "name": "cambridge bancorp" + }, + { + "cik": 1626878, + "symbol": "xbit", + "name": "xbiotech inc" + }, + { + "cik": 46129, + "symbol": "amot", + "name": "allied motion technologies inc" + }, + { + "cik": 1779020, + "symbol": "loak", + "name": "danimer scientific inc" + }, + { + "cik": 1080259, + "symbol": "tclry", + "name": "technicolor" + }, + { + "cik": 1210123, + "symbol": "ead", + "name": "wells fargo income opportunities fund" + }, + { + "cik": 913277, + "symbol": "clar", + "name": "clarus corp" + }, + { + "cik": 1769318, + "symbol": "thbrw", + "name": "thunder bridge acquisition ii ltd" + }, + { + "cik": 1815620, + "symbol": "opt", + "name": "opthea ltd" + }, + { + "cik": 1403431, + "symbol": "hcci", + "name": "heritage-crystal clean inc" + }, + { + "cik": 1495825, + "symbol": "gbab", + "name": "guggenheim taxable municipal bond & investment grade debt trust" + }, + { + "cik": 1819035, + "symbol": "inaqu", + "name": "insu acquisition corp ii" + }, + { + "cik": 1753162, + "symbol": "fthm", + "name": "fathom holdings inc" + }, + { + "cik": 1439725, + "symbol": "bdsx", + "name": "biodesix inc" + }, + { + "cik": 1564180, + "symbol": "knop", + "name": "knot offshore partners lp" + }, + { + "cik": 1756594, + "symbol": "iva", + "name": "inventiva sa" + }, + { + "cik": 1318484, + "symbol": "ctrn", + "name": "citi trends inc" + }, + { + "cik": 909108, + "symbol": "dhil", + "name": "diamond hill investment group inc" + }, + { + "cik": 1584754, + "symbol": "akts", + "name": "akoustis technologies inc" + }, + { + "cik": 1603993, + "symbol": "hebt", + "name": "nisun international enterprise development group co ltd" + }, + { + "cik": 1495222, + "symbol": "oxlcp", + "name": "oxford lane capital corp" + }, + { + "cik": 1060349, + "symbol": "gbl", + "name": "gamco investors inc et al" + }, + { + "cik": 1356115, + "symbol": "nhf", + "name": "nexpoint strategic opportunities fund" + }, + { + "cik": 1698519, + "symbol": "advv", + "name": "adveco group inc" + }, + { + "cik": 69633, + "symbol": "nssc", + "name": "napco security technologies inc" + }, + { + "cik": 884121, + "symbol": "hql", + "name": "tekla life sciences investors" + }, + { + "cik": 1718405, + "symbol": "hymww", + "name": "hycroft mining holding corp" + }, + { + "cik": 1771908, + "symbol": "hyacw", + "name": "haymaker acquisition corp ii" + }, + { + "cik": 1051003, + "symbol": "dsu", + "name": "blackrock debt strategies fund inc" + }, + { + "cik": 1657788, + "symbol": "krp", + "name": "kimbell royalty partners lp" + }, + { + "cik": 1787791, + "symbol": "jih", + "name": "juniper industrial holdings inc" + }, + { + "cik": 1258623, + "symbol": "efr", + "name": "eaton vance senior floating rate trust" + }, + { + "cik": 1145986, + "symbol": "aspn", + "name": "aspen aerogels inc" + }, + { + "cik": 1385849, + "symbol": "uuuu", + "name": "energy fuels inc" + }, + { + "cik": 1635977, + "symbol": "thw", + "name": "tekla world healthcare fund" + }, + { + "cik": 903419, + "symbol": "alrs", + "name": "alerus financial corp" + }, + { + "cik": 883569, + "symbol": "fosl", + "name": "fossil group inc" + }, + { + "cik": 1412350, + "symbol": "pko", + "name": "pimco income opportunity fund" + }, + { + "cik": 1772253, + "symbol": "flng", + "name": "flex lng ltd" + }, + { + "cik": 59255, + "symbol": "vhi", + "name": "valhi inc de" + }, + { + "cik": 1201792, + "symbol": "apei", + "name": "american public education inc" + }, + { + "cik": 1819584, + "symbol": "snpr", + "name": "tortoise acquisition corp ii" + }, + { + "cik": 1526243, + "symbol": "mdrpf", + "name": "midas gold corp" + }, + { + "cik": 1309402, + "symbol": "gpre", + "name": "green plains inc" + }, + { + "cik": 1603016, + "symbol": "hmlp", + "name": "hoegh lng partners lp" + }, + { + "cik": 1807901, + "symbol": "pand", + "name": "pandion therapeutics inc" + }, + { + "cik": 703604, + "symbol": "laws", + "name": "lawson products inc new de" + }, + { + "cik": 5981, + "symbol": "avd", + "name": "american vanguard corp" + }, + { + "cik": 778946, + "symbol": "bxg", + "name": "bluegreen vacations corp" + }, + { + "cik": 1000177, + "symbol": "nat", + "name": "nordic american tankers ltd" + }, + { + "cik": 1730463, + "symbol": "autl", + "name": "autolus therapeutics plc" + }, + { + "cik": 1811115, + "symbol": "rnlx", + "name": "renalytix ai plc" + }, + { + "cik": 1325702, + "symbol": "mx", + "name": "magnachip semiconductor corp" + }, + { + "cik": 846617, + "symbol": "bdge", + "name": "bridge bancorp inc" + }, + { + "cik": 1783010, + "symbol": "amyt", + "name": "amryt pharma plc" + }, + { + "cik": 1823776, + "symbol": "higa", + "name": "hig acquisition corp" + }, + { + "cik": 1327318, + "symbol": "true", + "name": "truecar inc" + }, + { + "cik": 1368493, + "symbol": "caf", + "name": "morgan stanley china a share fund inc" + }, + { + "cik": 827773, + "symbol": "ppt", + "name": "putnam premier income trust" + }, + { + "cik": 1815849, + "symbol": "faii", + "name": "fortress value acquisition corp ii" + }, + { + "cik": 1607678, + "symbol": "vktx", + "name": "viking therapeutics inc" + }, + { + "cik": 900422, + "symbol": "pmo", + "name": "putnam municipal opportunities trust" + }, + { + "cik": 1302362, + "symbol": "mtl", + "name": "mechel pao" + }, + { + "cik": 1084201, + "symbol": "sva", + "name": "sinovac biotech ltd" + }, + { + "cik": 783412, + "symbol": "djco", + "name": "daily journal corp" + }, + { + "cik": 1401667, + "symbol": "pbyi", + "name": "puma biotechnology inc" + }, + { + "cik": 1227025, + "symbol": "nptn", + "name": "neophotonics corp" + }, + { + "cik": 1757399, + "symbol": "tufn", + "name": "tufin software technologies ltd" + }, + { + "cik": 1600847, + "symbol": "gmda", + "name": "gamida cell ltd" + }, + { + "cik": 717538, + "symbol": "arow", + "name": "arrow financial corp" + }, + { + "cik": 1090061, + "symbol": "omn", + "name": "omnova solutions inc" + }, + { + "cik": 744187, + "symbol": "rex", + "name": "rex american resources corp" + }, + { + "cik": 1799788, + "symbol": "glsi", + "name": "greenwich lifesciences inc" + }, + { + "cik": 1772921, + "symbol": "onew", + "name": "onewater marine inc" + }, + { + "cik": 891166, + "symbol": "uve", + "name": "universal insurance holdings inc" + }, + { + "cik": 1569994, + "symbol": "wsbf", + "name": "waterstone financial inc" + }, + { + "cik": 1722606, + "symbol": "mta", + "name": "metalla royalty & streaming ltd" + }, + { + "cik": 1042074, + "symbol": "cbay", + "name": "cymabay therapeutics inc" + }, + { + "cik": 1082038, + "symbol": "drrx", + "name": "durect corp" + }, + { + "cik": 1463972, + "symbol": "vuzi", + "name": "vuzix corp" + }, + { + "cik": 1650696, + "symbol": "lsf", + "name": "laird superfood inc" + }, + { + "cik": 1351636, + "symbol": "ssti", + "name": "shotspotter inc" + }, + { + "cik": 933267, + "symbol": "irs", + "name": "irsa investments & representations inc" + }, + { + "cik": 1628808, + "symbol": "prof", + "name": "profound medical corp" + }, + { + "cik": 33934, + "symbol": "crf", + "name": "cornerstone total return fund inc" + }, + { + "cik": 778164, + "symbol": "peix", + "name": "pacific ethanol inc" + }, + { + "cik": 1464343, + "symbol": "atlc", + "name": "atlanticus holdings corp" + }, + { + "cik": 1807846, + "symbol": "fuse", + "name": "fusion acquisition corp" + }, + { + "cik": 1267813, + "symbol": "mrns", + "name": "marinus pharmaceuticals inc" + }, + { + "cik": 1481582, + "symbol": "ryi", + "name": "ryerson holding corp" + }, + { + "cik": 1593195, + "symbol": "tpco", + "name": "tribune publishing co" + }, + { + "cik": 1326190, + "symbol": "alt", + "name": "altimmune inc" + }, + { + "cik": 1479419, + "symbol": "kala", + "name": "kala pharmaceuticals inc" + }, + { + "cik": 839533, + "symbol": "ktf", + "name": "dws municipal income trust" + }, + { + "cik": 1228509, + "symbol": "ehi", + "name": "western asset global high income fund inc" + }, + { + "cik": 1658247, + "symbol": "crnx", + "name": "crinetics pharmaceuticals inc" + }, + { + "cik": 1586049, + "symbol": "oxfd", + "name": "oxford immunotec global plc" + }, + { + "cik": 1677940, + "symbol": "bysi", + "name": "beyondspring inc" + }, + { + "cik": 1031316, + "symbol": "fsp", + "name": "franklin street properties corp ma" + }, + { + "cik": 1816261, + "symbol": "enpc", + "name": "executive network partnering corp" + }, + { + "cik": 1341141, + "symbol": "ctt", + "name": "catchmark timber trust inc" + }, + { + "cik": 1759614, + "symbol": "yj", + "name": "yunji inc" + }, + { + "cik": 1137391, + "symbol": "bfz", + "name": "blackrock california municipal income trust" + }, + { + "cik": 923139, + "symbol": "ffic", + "name": "flushing financial corp" + }, + { + "cik": 1653558, + "symbol": "prth", + "name": "priority technology holdings inc" + }, + { + "cik": 946394, + "symbol": "ello", + "name": "ellomay capital ltd" + }, + { + "cik": 1815526, + "symbol": "btaqw", + "name": "burgundy technology acquisition corp" + }, + { + "cik": 1748907, + "symbol": "ortx", + "name": "orchard therapeutics plc" + }, + { + "cik": 1402479, + "symbol": "myos", + "name": "medavail holdings inc" + }, + { + "cik": 55772, + "symbol": "kbal", + "name": "kimball international inc" + }, + { + "cik": 1390195, + "symbol": "awp", + "name": "aberdeen global premier properties fund" + }, + { + "cik": 1576169, + "symbol": "bnft", + "name": "benefitfocus inc" + }, + { + "cik": 1080720, + "symbol": "gut", + "name": "gabelli utility trust" + }, + { + "cik": 1467808, + "symbol": "co", + "name": "global cord blood corp" + }, + { + "cik": 1814215, + "symbol": "twnd", + "name": "tailwind acquisition corp" + }, + { + "cik": 102752, + "symbol": "vsec", + "name": "vse corp" + }, + { + "cik": 1528988, + "symbol": "bui", + "name": "blackrock utilities infrastructure & power opportunities trust" + }, + { + "cik": 1679049, + "symbol": "insw", + "name": "international seaways inc" + }, + { + "cik": 1708493, + "symbol": "harp", + "name": "harpoon therapeutics inc" + }, + { + "cik": 727207, + "symbol": "axdx", + "name": "accelerate diagnostics inc" + }, + { + "cik": 1812173, + "symbol": "deh", + "name": "d8 holdings corp" + }, + { + "cik": 912147, + "symbol": "rmt", + "name": "royce micro-cap trust inc" + }, + { + "cik": 1337117, + "symbol": "itrn", + "name": "ituran location & control ltd" + }, + { + "cik": 1658566, + "symbol": "cdev", + "name": "centennial resource development inc" + }, + { + "cik": 812348, + "symbol": "cnbka", + "name": "century bancorp inc" + }, + { + "cik": 1379785, + "symbol": "bbdc", + "name": "barings bdc inc" + }, + { + "cik": 1753706, + "symbol": "freew", + "name": "whole earth brands inc" + }, + { + "cik": 1815302, + "symbol": "yac", + "name": "yucaipa acquisition corp" + }, + { + "cik": 1517022, + "symbol": "akba", + "name": "akebia therapeutics inc" + }, + { + "cik": 1610114, + "symbol": "snr", + "name": "new senior investment group inc" + }, + { + "cik": 826735, + "symbol": "min", + "name": "mfs intermediate income trust" + }, + { + "cik": 1074769, + "symbol": "nan", + "name": "nuveen new york quality municipal income fund" + }, + { + "cik": 1680873, + "symbol": "hffg", + "name": "hf foods group inc" + }, + { + "cik": 1053988, + "symbol": "muj", + "name": "blackrock muniholdings new jersey quality fund inc" + }, + { + "cik": 764401, + "symbol": "iiin", + "name": "insteel industries inc" + }, + { + "cik": 1038186, + "symbol": "mhn", + "name": "blackrock muniholdings new york quality fund inc" + }, + { + "cik": 61986, + "symbol": "mtw", + "name": "manitowoc co inc" + }, + { + "cik": 1071840, + "symbol": "wndw", + "name": "solarwindow technologies inc" + }, + { + "cik": 1805651, + "symbol": "acnd", + "name": "ascendant digital acquisition corp" + }, + { + "cik": 1383082, + "symbol": "dba", + "name": "invesco db agriculture fund" + }, + { + "cik": 1103021, + "symbol": "bdsi", + "name": "biodelivery sciences international inc" + }, + { + "cik": 1042729, + "symbol": "mbwm", + "name": "mercantile bank corp" + }, + { + "cik": 1471420, + "symbol": "stk", + "name": "columbia seligman premium technology growth fund inc" + }, + { + "cik": 1259708, + "symbol": "fra", + "name": "blackrock floating rate income strategies fund inc" + }, + { + "cik": 1687065, + "symbol": "wuyi", + "name": "china wuyi mountain ltd" + }, + { + "cik": 1580156, + "symbol": "hmhc", + "name": "houghton mifflin harcourt co" + }, + { + "cik": 1584547, + "symbol": "gpvrd", + "name": "greenpower motor co inc" + }, + { + "cik": 1688126, + "symbol": "crcw", + "name": "crypto co" + }, + { + "cik": 1515671, + "symbol": "dpg", + "name": "duff & phelps utility & infrastructure fund inc" + }, + { + "cik": 890393, + "symbol": "miy", + "name": "blackrock muniyield michigan quality fund inc" + }, + { + "cik": 33002, + "symbol": "ebf", + "name": "ennis inc" + }, + { + "cik": 61398, + "symbol": "tell", + "name": "tellurian inc de" + }, + { + "cik": 1764791, + "symbol": "orph", + "name": "orphazyme a s" + }, + { + "cik": 1631574, + "symbol": "wve", + "name": "wave life sciences ltd" + }, + { + "cik": 1668243, + "symbol": "urgn", + "name": "urogen pharma ltd" + }, + { + "cik": 1525287, + "symbol": "srlp", + "name": "sprague resources lp" + }, + { + "cik": 1761612, + "symbol": "bcyc", + "name": "bicycle therapeutics plc" + }, + { + "cik": 1757715, + "symbol": "mwk", + "name": "mohawk group holdings inc" + }, + { + "cik": 844059, + "symbol": "frph", + "name": "frp holdings inc" + }, + { + "cik": 1693256, + "symbol": "wttr", + "name": "select energy services inc" + }, + { + "cik": 1823608, + "symbol": "amal", + "name": "amalgamated financial corp" + }, + { + "cik": 903571, + "symbol": "gss", + "name": "golden star resources ltd" + }, + { + "cik": 1536674, + "symbol": "nsrpf", + "name": "novo resources corp" + }, + { + "cik": 1057379, + "symbol": "hckt", + "name": "hackett group inc" + }, + { + "cik": 1603923, + "symbol": "wftlf", + "name": "weatherford international plc" + }, + { + "cik": 1633336, + "symbol": "ccap", + "name": "crescent capital bdc inc" + }, + { + "cik": 1567345, + "symbol": "hmtv", + "name": "hemisphere media group inc" + }, + { + "cik": 1051627, + "symbol": "axti", + "name": "axt inc" + }, + { + "cik": 18498, + "symbol": "gco", + "name": "genesco inc" + }, + { + "cik": 1409171, + "symbol": "titn", + "name": "titan machinery inc" + }, + { + "cik": 761238, + "symbol": "rada", + "name": "rada electronic industries ltd" + }, + { + "cik": 1411579, + "symbol": "amc", + "name": "amc entertainment holdings inc" + }, + { + "cik": 1163739, + "symbol": "nbr", + "name": "nabors industries ltd" + }, + { + "cik": 1770088, + "symbol": "wimi", + "name": "wimi hologram cloud inc" + }, + { + "cik": 775215, + "symbol": "hbt", + "name": "hbt financial inc" + }, + { + "cik": 1783875, + "symbol": "ffntf", + "name": "4front ventures corp" + }, + { + "cik": 1572621, + "symbol": "gram", + "name": "aenza saa" + }, + { + "cik": 1636282, + "symbol": "agle", + "name": "aeglea biotherapeutics inc" + }, + { + "cik": 1624322, + "symbol": "bfst", + "name": "business first bancshares inc" + }, + { + "cik": 1096056, + "symbol": "lxfr", + "name": "luxfer holdings plc" + }, + { + "cik": 1388141, + "symbol": "edd", + "name": "morgan stanley emerging markets domestic debt fund inc" + }, + { + "cik": 740663, + "symbol": "flic", + "name": "first of long island corp" + }, + { + "cik": 1827075, + "symbol": "dgns", + "name": "dragoneer growth opportunities corp ii" + }, + { + "cik": 1230869, + "symbol": "asa", + "name": "asa gold & precious metals ltd" + }, + { + "cik": 314203, + "symbol": "mux", + "name": "mcewen mining inc" + }, + { + "cik": 1652133, + "symbol": "omp", + "name": "oasis midstream partners lp" + }, + { + "cik": 710752, + "symbol": "sbr", + "name": "sabine royalty trust" + }, + { + "cik": 1718108, + "symbol": "surf", + "name": "surface oncology inc" + }, + { + "cik": 800457, + "symbol": "dgica", + "name": "donegal group inc" + }, + { + "cik": 1753539, + "symbol": "sftw", + "name": "osprey technology acquisition corp" + }, + { + "cik": 1369241, + "symbol": "dac", + "name": "danaos corp" + }, + { + "cik": 1819175, + "symbol": "piai", + "name": "prime impact acquisition i" + }, + { + "cik": 1012477, + "symbol": "avdl", + "name": "avadel pharmaceuticals plc" + }, + { + "cik": 836412, + "symbol": "ztr", + "name": "virtus total return fund inc" + }, + { + "cik": 1050743, + "symbol": "pgc", + "name": "peapack gladstone financial corp" + }, + { + "cik": 1657312, + "symbol": "vrna", + "name": "verona pharma plc" + }, + { + "cik": 924822, + "symbol": "mlr", + "name": "miller industries inc tn" + }, + { + "cik": 1132509, + "symbol": "ekkh", + "name": "new momentum corp" + }, + { + "cik": 1071993, + "symbol": "mcf", + "name": "contango oil & gas co" + }, + { + "cik": 1672619, + "symbol": "imra", + "name": "imara inc" + }, + { + "cik": 826675, + "symbol": "dx", + "name": "dynex capital inc" + }, + { + "cik": 726601, + "symbol": "ccbg", + "name": "capital city bank group inc" + }, + { + "cik": 1593222, + "symbol": "cio", + "name": "city office reit inc" + }, + { + "cik": 1487952, + "symbol": "vpg", + "name": "vishay precision group inc" + }, + { + "cik": 1368148, + "symbol": "athx", + "name": "athersys inc new" + }, + { + "cik": 1400810, + "symbol": "hci", + "name": "hci group inc" + }, + { + "cik": 1509589, + "symbol": "bcei", + "name": "bonanza creek energy inc" + }, + { + "cik": 1779474, + "symbol": "sspkw", + "name": "silver spike acquisition corp" + }, + { + "cik": 1138723, + "symbol": "aray", + "name": "accuray inc" + }, + { + "cik": 1421182, + "symbol": "vrs", + "name": "verso corp" + }, + { + "cik": 1651944, + "symbol": "dmtk", + "name": "dermtech inc" + }, + { + "cik": 1333849, + "symbol": "jaggf", + "name": "jaguar mining inc" + }, + { + "cik": 1162027, + "symbol": "afb", + "name": "alliancebernstein national municipal income fund" + }, + { + "cik": 1355848, + "symbol": "gnus", + "name": "genius brands international inc" + }, + { + "cik": 846676, + "symbol": "aef", + "name": "aberdeen emerging markets equity income fund inc" + }, + { + "cik": 1308927, + "symbol": "etb", + "name": "eaton vance tax-managed buy-write income fund" + }, + { + "cik": 1752372, + "symbol": "ezoo", + "name": "ezagoo ltd" + }, + { + "cik": 1781193, + "symbol": "qh", + "name": "quhuo ltd" + }, + { + "cik": 1798562, + "symbol": "soac", + "name": "sustainable opportunities acquisition corp" + }, + { + "cik": 1398805, + "symbol": "beemw", + "name": "beam global" + }, + { + "cik": 1526119, + "symbol": "vstm", + "name": "verastem inc" + }, + { + "cik": 1821742, + "symbol": "xpoa", + "name": "dpcm capital inc" + }, + { + "cik": 1189740, + "symbol": "hpf", + "name": "john hancock preferred income fund ii" + }, + { + "cik": 918251, + "symbol": "mpaa", + "name": "motorcar parts america inc" + }, + { + "cik": 1784168, + "symbol": "fiiiw", + "name": "forum merger iii corp" + }, + { + "cik": 1759008, + "symbol": "acamw", + "name": "acamar partners acquisition corp" + }, + { + "cik": 1597672, + "symbol": "ryam", + "name": "rayonier advanced materials inc" + }, + { + "cik": 1084765, + "symbol": "rgp", + "name": "resources connection inc" + }, + { + "cik": 1169445, + "symbol": "cpsi", + "name": "computer programs & systems inc" + }, + { + "cik": 1529377, + "symbol": "acre", + "name": "ares commercial real estate corp" + }, + { + "cik": 1646576, + "symbol": "rtto", + "name": "rito group corp" + }, + { + "cik": 1645460, + "symbol": "cue", + "name": "cue biopharma inc" + }, + { + "cik": 1493761, + "symbol": "hear", + "name": "turtle beach corp" + }, + { + "cik": 65312, + "symbol": "evi", + "name": "evi industries inc" + }, + { + "cik": 39311, + "symbol": "ibcp", + "name": "independent bank corp mi" + }, + { + "cik": 1566469, + "symbol": "nh", + "name": "nanthealth inc" + }, + { + "cik": 1498068, + "symbol": "ara", + "name": "american renal associates holdings inc" + }, + { + "cik": 1082324, + "symbol": "vhc", + "name": "virnetx holding corp" + }, + { + "cik": 1365767, + "symbol": "allt", + "name": "allot ltd" + }, + { + "cik": 1181506, + "symbol": "pmx", + "name": "pimco municipal income fund iii" + }, + { + "cik": 1281926, + "symbol": "eto", + "name": "eaton vance tax-advantaged global dividend opportunities fund" + }, + { + "cik": 1063259, + "symbol": "dnn", + "name": "denison mines corp" + }, + { + "cik": 712770, + "symbol": "olp", + "name": "one liberty properties inc" + }, + { + "cik": 1651625, + "symbol": "aciu", + "name": "ac immune sa" + }, + { + "cik": 8504, + "symbol": "uavs", + "name": "ageagle aerial systems inc" + }, + { + "cik": 946563, + "symbol": "rvp", + "name": "retractable technologies inc" + }, + { + "cik": 1504619, + "symbol": "pflt", + "name": "pennantpark floating rate capital ltd" + }, + { + "cik": 1580095, + "symbol": "bkrp", + "name": "black rock petroleum co" + }, + { + "cik": 791963, + "symbol": "opy", + "name": "oppenheimer holdings inc" + }, + { + "cik": 1615026, + "symbol": "jnndf", + "name": "japan display inc adr" + }, + { + "cik": 1781162, + "symbol": "sracw", + "name": "stable road acquisition corp" + }, + { + "cik": 1790515, + "symbol": "eqosw", + "name": "diginex ltd" + }, + { + "cik": 1337013, + "symbol": "infu", + "name": "infusystem holdings inc" + }, + { + "cik": 1494904, + "symbol": "gbliz", + "name": "global indemnity group llc" + }, + { + "cik": 1104485, + "symbol": "nog", + "name": "northern oil & gas inc" + }, + { + "cik": 1172358, + "symbol": "dmlp", + "name": "dorchester minerals lp" + }, + { + "cik": 1002590, + "symbol": "sgu", + "name": "star group lp" + }, + { + "cik": 72573, + "symbol": "mov", + "name": "movado group inc" + }, + { + "cik": 1580345, + "symbol": "tpvg", + "name": "triplepoint venture growth bdc corp" + }, + { + "cik": 1676725, + "symbol": "idya", + "name": "ideaya biosciences inc" + }, + { + "cik": 832327, + "symbol": "bkt", + "name": "blackrock income trust inc" + }, + { + "cik": 1819994, + "symbol": "vacqu", + "name": "vector acquisition corp" + }, + { + "cik": 1181187, + "symbol": "bym", + "name": "blackrock municipal income quality trust" + }, + { + "cik": 1821018, + "symbol": "iaca", + "name": "ion acquisition corp 1 ltd" + }, + { + "cik": 1466026, + "symbol": "msbi", + "name": "midland states bancorp inc" + }, + { + "cik": 1289340, + "symbol": "stxs", + "name": "stereotaxis inc" + }, + { + "cik": 1606757, + "symbol": "ke", + "name": "kimball electronics inc" + }, + { + "cik": 1532981, + "symbol": "eros", + "name": "eros stx global corp" + }, + { + "cik": 1469392, + "symbol": "nev", + "name": "nuveen enhanced municipal value fund" + }, + { + "cik": 866028, + "symbol": "plm", + "name": "polymet mining corp" + }, + { + "cik": 844790, + "symbol": "pmm", + "name": "putnam managed municipal income trust" + }, + { + "cik": 1367920, + "symbol": "cnce", + "name": "concert pharmaceuticals inc" + }, + { + "cik": 1227857, + "symbol": "ncz", + "name": "allianzgi convertible & income fund ii" + }, + { + "cik": 1821317, + "symbol": "pdac", + "name": "peridot acquisition corp" + }, + { + "cik": 1254370, + "symbol": "wia", + "name": "western asset inflation-linked income fund" + }, + { + "cik": 1162461, + "symbol": "cutr", + "name": "cutera inc" + }, + { + "cik": 96869, + "symbol": "trc", + "name": "tejon ranch co" + }, + { + "cik": 1364128, + "symbol": "axu", + "name": "alexco resource corp" + }, + { + "cik": 1518621, + "symbol": "orc", + "name": "orchid island capital inc" + }, + { + "cik": 65172, + "symbol": "msb", + "name": "mesabi trust" + }, + { + "cik": 1713863, + "symbol": "rfl", + "name": "rafael holdings inc" + }, + { + "cik": 1742770, + "symbol": "viot", + "name": "viomi technology co ltd" + }, + { + "cik": 859070, + "symbol": "fcbc", + "name": "first community bankshares inc va" + }, + { + "cik": 1304421, + "symbol": "cnsl", + "name": "consolidated communications holdings inc" + }, + { + "cik": 1791278, + "symbol": "blct", + "name": "bluecity holdings ltd" + }, + { + "cik": 1020710, + "symbol": "dxpe", + "name": "dxp enterprises inc" + }, + { + "cik": 1622229, + "symbol": "umrx", + "name": "cogent biosciences inc" + }, + { + "cik": 895051, + "symbol": "casi", + "name": "casi pharmaceuticals inc" + }, + { + "cik": 1626199, + "symbol": "alpn", + "name": "alpine immune sciences inc" + }, + { + "cik": 1815805, + "symbol": "bsn", + "name": "broadstone acquisition corp" + }, + { + "cik": 1762303, + "symbol": "rcel", + "name": "avita medical inc" + }, + { + "cik": 1690585, + "symbol": "mgta", + "name": "magenta therapeutics inc" + }, + { + "cik": 1642453, + "symbol": "dske", + "name": "daseke inc" + }, + { + "cik": 1412665, + "symbol": "mofg", + "name": "midwestone financial group inc" + }, + { + "cik": 915778, + "symbol": "dspg", + "name": "dsp group inc de" + }, + { + "cik": 1643988, + "symbol": "itrkd", + "name": "loop media inc" + }, + { + "cik": 1587987, + "symbol": "newt", + "name": "newtek business services corp" + }, + { + "cik": 882361, + "symbol": "apto", + "name": "aptose biosciences inc" + }, + { + "cik": 1095052, + "symbol": "plg", + "name": "platinum group metals ltd" + }, + { + "cik": 46207, + "symbol": "hawem", + "name": "hawaiian electric co inc" + }, + { + "cik": 1053706, + "symbol": "crai", + "name": "cra international inc" + }, + { + "cik": 855887, + "symbol": "dsm", + "name": "bny mellon strategic municipal bond fund inc" + }, + { + "cik": 76282, + "symbol": "pkoh", + "name": "park ohio holdings corp" + }, + { + "cik": 1750264, + "symbol": "puyi", + "name": "puyi inc" + }, + { + "cik": 1794338, + "symbol": "igicw", + "name": "international general insurance holdings ltd" + }, + { + "cik": 1280776, + "symbol": "imux", + "name": "immunic inc" + }, + { + "cik": 1077688, + "symbol": "hoft", + "name": "hooker furniture corp" + }, + { + "cik": 1720420, + "symbol": "ibex", + "name": "ibex ltd" + }, + { + "cik": 809173, + "symbol": "mmt", + "name": "mfs multimarket income trust" + }, + { + "cik": 909112, + "symbol": "tei", + "name": "templeton emerging markets income fund" + }, + { + "cik": 1726173, + "symbol": "bh", + "name": "biglari holdings inc" + }, + { + "cik": 1595585, + "symbol": "tcda", + "name": "tricida inc" + }, + { + "cik": 851170, + "symbol": "mcr", + "name": "mfs charter income trust" + }, + { + "cik": 1718226, + "symbol": "pddtf", + "name": "piedmont lithium ltd adr" + }, + { + "cik": 1728205, + "symbol": "pll", + "name": "piedmont lithium ltd" + }, + { + "cik": 1789832, + "symbol": "hesm", + "name": "hess midstream lp" + }, + { + "cik": 1779128, + "symbol": "expcu", + "name": "experience investment corp" + }, + { + "cik": 1497649, + "symbol": "gstx", + "name": "graphene & solar technologies ltd" + }, + { + "cik": 1429560, + "symbol": "trvn", + "name": "trevena inc" + }, + { + "cik": 1763731, + "symbol": "rpla", + "name": "replay acquisition corp" + }, + { + "cik": 1175151, + "symbol": "ctso", + "name": "cytosorbents corp" + }, + { + "cik": 814585, + "symbol": "mbi", + "name": "mbia inc" + }, + { + "cik": 1066194, + "symbol": "egan", + "name": "egain corp" + }, + { + "cik": 1539337, + "symbol": "jri", + "name": "nuveen real asset income & growth fund" + }, + { + "cik": 1697500, + "symbol": "soi", + "name": "solaris oilfield infrastructure inc" + }, + { + "cik": 1778982, + "symbol": "huiz", + "name": "huize holding ltd" + }, + { + "cik": 1707178, + "symbol": "cplg", + "name": "corepoint lodging inc" + }, + { + "cik": 1504379, + "symbol": "cste", + "name": "caesarstone ltd" + }, + { + "cik": 8063, + "symbol": "atro", + "name": "astronics corp" + }, + { + "cik": 1436208, + "symbol": "legh", + "name": "legacy housing corp" + }, + { + "cik": 1653247, + "symbol": "wtrh", + "name": "waitr holdings inc" + }, + { + "cik": 1766600, + "symbol": "sndl", + "name": "sundial growers inc" + }, + { + "cik": 1580063, + "symbol": "prog", + "name": "progenity inc" + }, + { + "cik": 1652362, + "symbol": "ieaww", + "name": "infrastructure & energy alternatives inc" + }, + { + "cik": 1781115, + "symbol": "alus", + "name": "alussa energy acquisition corp" + }, + { + "cik": 786035, + "symbol": "asg", + "name": "liberty all star growth fund inc" + }, + { + "cik": 1612630, + "symbol": "jynt", + "name": "joint corp" + }, + { + "cik": 835333, + "symbol": "oia", + "name": "invesco municipal income opportunities trust" + }, + { + "cik": 1501989, + "symbol": "ctmx", + "name": "cytomx therapeutics inc" + }, + { + "cik": 1735707, + "symbol": "gtx", + "name": "garrett motion inc" + }, + { + "cik": 1568385, + "symbol": "bmtm", + "name": "bright mountain media inc" + }, + { + "cik": 1314052, + "symbol": "avxl", + "name": "anavex life sciences corp" + }, + { + "cik": 1760542, + "symbol": "hook", + "name": "hookipa pharma inc" + }, + { + "cik": 62234, + "symbol": "mcs", + "name": "marcus corp" + }, + { + "cik": 1071236, + "symbol": "rrbi", + "name": "red river bancshares inc" + }, + { + "cik": 1756908, + "symbol": "nrgx", + "name": "pimco energy & tactical credit opportunities fund" + }, + { + "cik": 1496671, + "symbol": "cala", + "name": "calithera biosciences inc" + }, + { + "cik": 1794621, + "symbol": "ccac", + "name": "citic capital acquisition corp" + }, + { + "cik": 1130144, + "symbol": "bsrr", + "name": "sierra bancorp" + }, + { + "cik": 709337, + "symbol": "fmnb", + "name": "farmers national banc corp oh" + }, + { + "cik": 1176194, + "symbol": "ble", + "name": "blackrock municipal income trust ii" + }, + { + "cik": 1481832, + "symbol": "apts", + "name": "preferred apartment communities inc" + }, + { + "cik": 1227073, + "symbol": "erc", + "name": "wells fargo multi-sector income fund" + }, + { + "cik": 1419945, + "symbol": "tnk", + "name": "teekay tankers ltd" + }, + { + "cik": 1244183, + "symbol": "pfl", + "name": "pimco income strategy fund" + }, + { + "cik": 1579214, + "symbol": "eex", + "name": "emerald holding inc" + }, + { + "cik": 1350869, + "symbol": "glo", + "name": "clough global opportunities fund" + }, + { + "cik": 1747068, + "symbol": "mcbs", + "name": "metrocity bankshares inc" + }, + { + "cik": 1023024, + "symbol": "anip", + "name": "ani pharmaceuticals inc" + }, + { + "cik": 1579597, + "symbol": "itepf", + "name": "ite group plc adr" + }, + { + "cik": 95574, + "symbol": "sgc", + "name": "superior group of companies inc" + }, + { + "cik": 1602409, + "symbol": "fngr", + "name": "fingermotion inc" + }, + { + "cik": 1515816, + "symbol": "plym", + "name": "plymouth industrial reit inc" + }, + { + "cik": 1649744, + "symbol": "dlth", + "name": "duluth holdings inc" + }, + { + "cik": 25743, + "symbol": "txmd", + "name": "therapeuticsmd inc" + }, + { + "cik": 1681206, + "symbol": "nodk", + "name": "ni holdings inc" + }, + { + "cik": 1504678, + "symbol": "loop", + "name": "loop industries inc" + }, + { + "cik": 1680581, + "symbol": "fulc", + "name": "fulcrum therapeutics inc" + }, + { + "cik": 88948, + "symbol": "seneb", + "name": "seneca foods corp" + }, + { + "cik": 1659352, + "symbol": "cdak", + "name": "codiak biosciences inc" + }, + { + "cik": 1140392, + "symbol": "pmf", + "name": "pimco municipal income fund" + }, + { + "cik": 52485, + "symbol": "ipldp", + "name": "interstate power & light co" + }, + { + "cik": 1223389, + "symbol": "conn", + "name": "conns inc" + }, + { + "cik": 1369568, + "symbol": "cprx", + "name": "catalyst pharmaceuticals inc" + }, + { + "cik": 1514705, + "symbol": "sxc", + "name": "suncoke energy inc" + }, + { + "cik": 878518, + "symbol": "tgb", + "name": "taseko mines ltd" + }, + { + "cik": 1378624, + "symbol": "cbmg", + "name": "cellular biomedicine group inc" + }, + { + "cik": 1453687, + "symbol": "selb", + "name": "selecta biosciences inc" + }, + { + "cik": 1275158, + "symbol": "ndls", + "name": "noodles & co" + }, + { + "cik": 320340, + "symbol": "ins", + "name": "intelligent systems corp" + }, + { + "cik": 895464, + "symbol": "magaa", + "name": "magna lab inc" + }, + { + "cik": 1606698, + "symbol": "alpp", + "name": "alpine 4 technologies ltd" + }, + { + "cik": 1643194, + "symbol": "ddlx", + "name": "dds deluxe rod holder inc" + }, + { + "cik": 1635282, + "symbol": "rmni", + "name": "rimini street inc" + }, + { + "cik": 1615905, + "symbol": "jgh", + "name": "nuveen global high income fund" + }, + { + "cik": 736772, + "symbol": "ccnep", + "name": "cnb financial corp pa" + }, + { + "cik": 1289213, + "symbol": "jro", + "name": "nuveen floating rate income opportunity fund" + }, + { + "cik": 1556739, + "symbol": "thry", + "name": "thryv holdings inc" + }, + { + "cik": 80420, + "symbol": "powl", + "name": "powell industries inc" + }, + { + "cik": 1800315, + "symbol": "glto", + "name": "galecto inc" + }, + { + "cik": 1037390, + "symbol": "grif", + "name": "griffin industrial realty inc" + }, + { + "cik": 844172, + "symbol": "men", + "name": "blackrock munienhanced fund inc" + }, + { + "cik": 1657803, + "symbol": "inbt", + "name": "inbit corp" + }, + { + "cik": 1771226, + "symbol": "rmm", + "name": "rivernorth managed duration municipal income fund inc" + }, + { + "cik": 1780312, + "symbol": "npaww", + "name": "new providence acquisition corp" + }, + { + "cik": 891290, + "symbol": "rfi", + "name": "cohen & steers total return realty fund inc" + }, + { + "cik": 863110, + "symbol": "artna", + "name": "artesian resources corp" + }, + { + "cik": 1816581, + "symbol": "cla", + "name": "colonnade acquisition corp" + }, + { + "cik": 1585583, + "symbol": "tacow", + "name": "del taco restaurants inc" + }, + { + "cik": 1805087, + "symbol": "cpsr", + "name": "capstar special purpose acquisition corp" + }, + { + "cik": 862831, + "symbol": "fisi", + "name": "financial institutions inc" + }, + { + "cik": 1262104, + "symbol": "meip", + "name": "mei pharma inc" + }, + { + "cik": 1140411, + "symbol": "pcq", + "name": "pimco california municipal income fund" + }, + { + "cik": 1392380, + "symbol": "gevo", + "name": "gevo inc" + }, + { + "cik": 796505, + "symbol": "clfd", + "name": "clearfield inc" + }, + { + "cik": 923571, + "symbol": "usx", + "name": "us xpress enterprises inc" + }, + { + "cik": 1709682, + "symbol": "nsco", + "name": "nesco holdings inc" + }, + { + "cik": 1447028, + "symbol": "abus", + "name": "arbutus biopharma corp" + }, + { + "cik": 1534126, + "symbol": "glog", + "name": "gaslog ltd" + }, + { + "cik": 1497186, + "symbol": "hyi", + "name": "western asset high yield defined opportunity fund inc" + }, + { + "cik": 1163668, + "symbol": "spfi", + "name": "south plains financial inc" + }, + { + "cik": 1752474, + "symbol": "kldi", + "name": "kldiscovery inc" + }, + { + "cik": 1712178, + "symbol": "redu", + "name": "rise education cayman ltd" + }, + { + "cik": 1495240, + "symbol": "lando", + "name": "gladstone land corp" + }, + { + "cik": 1341317, + "symbol": "bwb", + "name": "bridgewater bancshares inc" + }, + { + "cik": 884216, + "symbol": "myj", + "name": "blackrock muniyield new jersey fund inc" + }, + { + "cik": 91847, + "symbol": "sor", + "name": "source capital inc de" + }, + { + "cik": 1553846, + "symbol": "rdhl", + "name": "redhill biopharma ltd" + }, + { + "cik": 1636289, + "symbol": "acv", + "name": "allianzgi diversified income & convertible fund" + }, + { + "cik": 98222, + "symbol": "tdw", + "name": "tidewater inc" + }, + { + "cik": 1291334, + "symbol": "ffa", + "name": "first trust enhanced equity income fund" + }, + { + "cik": 1640266, + "symbol": "vygr", + "name": "voyager therapeutics inc" + }, + { + "cik": 1773751, + "symbol": "oac", + "name": "oaktree acquisition corp" + }, + { + "cik": 1598599, + "symbol": "ipha", + "name": "innate pharma sa" + }, + { + "cik": 1820931, + "symbol": "oacb", + "name": "oaktree acquisition corp ii" + }, + { + "cik": 874396, + "symbol": "lcut", + "name": "lifetime brands inc" + }, + { + "cik": 1504461, + "symbol": "ngl", + "name": "ngl energy partners lp" + }, + { + "cik": 1321741, + "symbol": "gainl", + "name": "gladstone investment corporation de" + }, + { + "cik": 1338940, + "symbol": "peri", + "name": "perion network ltd" + }, + { + "cik": 1286973, + "symbol": "usas", + "name": "americas gold & silver corp" + }, + { + "cik": 727273, + "symbol": "cdzi", + "name": "cadiz inc" + }, + { + "cik": 897322, + "symbol": "gilt", + "name": "gilat satellite networks ltd" + }, + { + "cik": 1098151, + "symbol": "fdbc", + "name": "fidelity d & d bancorp inc" + }, + { + "cik": 1606745, + "symbol": "ltrpb", + "name": "liberty tripadvisor holdings inc" + }, + { + "cik": 1058867, + "symbol": "gnty", + "name": "guaranty bancshares inc tx" + }, + { + "cik": 1109242, + "symbol": "hafc", + "name": "hanmi financial corp" + }, + { + "cik": 1579684, + "symbol": "gci", + "name": "gannett co inc" + }, + { + "cik": 216851, + "symbol": "peo", + "name": "adams natural resources fund inc" + }, + { + "cik": 1729173, + "symbol": "uxin", + "name": "uxin ltd" + }, + { + "cik": 1579823, + "symbol": "nbev", + "name": "newage inc" + }, + { + "cik": 1101680, + "symbol": "dzsi", + "name": "dzs inc" + }, + { + "cik": 1614483, + "symbol": "tschy", + "name": "trustco group holdings ltd" + }, + { + "cik": 1534675, + "symbol": "tgls", + "name": "tecnoglass inc" + }, + { + "cik": 914156, + "symbol": "ufpt", + "name": "ufp technologies inc" + }, + { + "cik": 1775898, + "symbol": "ucl", + "name": "ucloudlink group inc" + }, + { + "cik": 1438848, + "symbol": "gmhlf", + "name": "gam holding ag" + }, + { + "cik": 1805012, + "symbol": "vtru", + "name": "vitru ltd" + }, + { + "cik": 10254, + "symbol": "este", + "name": "earthstone energy inc" + }, + { + "cik": 1375340, + "symbol": "fof", + "name": "cohen & steers closed-end opportunity fund inc" + }, + { + "cik": 1006840, + "symbol": "txcb", + "name": "cang bao tian xia international art trade center inc" + }, + { + "cik": 1538847, + "symbol": "gldlf", + "name": "goldmining inc" + }, + { + "cik": 1606268, + "symbol": "spkep", + "name": "spark energy inc" + }, + { + "cik": 736012, + "symbol": "intz", + "name": "intrusion inc" + }, + { + "cik": 1034957, + "symbol": "cresy", + "name": "cresud inc" + }, + { + "cik": 1723648, + "symbol": "crsaw", + "name": "crescent acquisition corp" + }, + { + "cik": 1175535, + "symbol": "wsr", + "name": "whitestone reit" + }, + { + "cik": 714256, + "symbol": "smti", + "name": "sanara medtech inc" + }, + { + "cik": 1141103, + "symbol": "ccrn", + "name": "cross country healthcare inc" + }, + { + "cik": 1305253, + "symbol": "eigr", + "name": "eiger biopharmaceuticals inc" + }, + { + "cik": 858706, + "symbol": "gf", + "name": "new germany fund inc" + }, + { + "cik": 1498612, + "symbol": "psf", + "name": "cohen & steers select preferred & income fund inc" + }, + { + "cik": 1438644, + "symbol": "dl", + "name": "china distance education holdings ltd" + }, + { + "cik": 716643, + "symbol": "rgs", + "name": "regis corp" + }, + { + "cik": 1434728, + "symbol": "gwrs", + "name": "global water resources inc" + }, + { + "cik": 1739426, + "symbol": "osmt", + "name": "osmotica pharmaceuticals plc" + }, + { + "cik": 1327688, + "symbol": "ooma", + "name": "ooma inc" + }, + { + "cik": 1347858, + "symbol": "xxii", + "name": "22nd century group inc" + }, + { + "cik": 1599489, + "symbol": "vrtv", + "name": "veritiv corp" + }, + { + "cik": 1334933, + "symbol": "uec", + "name": "uranium energy corp" + }, + { + "cik": 730255, + "symbol": "camp", + "name": "calamp corp" + }, + { + "cik": 318833, + "symbol": "tisi", + "name": "team inc" + }, + { + "cik": 1733413, + "symbol": "tffp", + "name": "tff pharmaceuticals inc" + }, + { + "cik": 1705402, + "symbol": "agmh", + "name": "agm group holdings inc" + }, + { + "cik": 1429260, + "symbol": "fbiop", + "name": "fortress biotech inc" + }, + { + "cik": 809248, + "symbol": "tast", + "name": "carrols restaurant group inc" + }, + { + "cik": 1720116, + "symbol": "rdvt", + "name": "red violet inc" + }, + { + "cik": 1460329, + "symbol": "flnt", + "name": "fluent inc" + }, + { + "cik": 743367, + "symbol": "bhb", + "name": "bar harbor bankshares" + }, + { + "cik": 749660, + "symbol": "icad", + "name": "icad inc" + }, + { + "cik": 1751299, + "symbol": "kldo", + "name": "kaleido biosciences inc" + }, + { + "cik": 1760717, + "symbol": "scpl", + "name": "sciplay corp" + }, + { + "cik": 1784535, + "symbol": "ptacw", + "name": "porch group inc" + }, + { + "cik": 1651431, + "symbol": "cmpi", + "name": "checkmate pharmaceuticals inc" + }, + { + "cik": 1538263, + "symbol": "htbi", + "name": "hometrust bancshares inc" + }, + { + "cik": 1604174, + "symbol": "eccb", + "name": "eagle point credit co inc" + }, + { + "cik": 1822928, + "symbol": "empw", + "name": "empower ltd" + }, + { + "cik": 1519401, + "symbol": "rm", + "name": "regional management corp" + }, + { + "cik": 897424, + "symbol": "nmy", + "name": "nuveen maryland quality municipal income fund" + }, + { + "cik": 1819510, + "symbol": "asaq", + "name": "atlantic avenue acquisition corp" + }, + { + "cik": 1031029, + "symbol": "srt", + "name": "startek inc" + }, + { + "cik": 1823766, + "symbol": "rice", + "name": "rice acquisition corp" + }, + { + "cik": 1687081, + "symbol": "fiv", + "name": "first trust senior floating rate 2022 target term fund" + }, + { + "cik": 1178727, + "symbol": "coms", + "name": "comsovereign holding corp" + }, + { + "cik": 1409375, + "symbol": "oesx", + "name": "orion energy systems inc" + }, + { + "cik": 1692415, + "symbol": "codx", + "name": "co-diagnostics inc" + }, + { + "cik": 1539850, + "symbol": "stcb", + "name": "starco brands inc" + }, + { + "cik": 1620737, + "symbol": "ogi", + "name": "organigram holdings inc" + }, + { + "cik": 1288403, + "symbol": "wti", + "name": "w&t offshore inc" + }, + { + "cik": 1814824, + "symbol": "ksmtw", + "name": "kismet acquisition one corp" + }, + { + "cik": 1632275, + "symbol": "catn", + "name": "cat9 group inc" + }, + { + "cik": 1166928, + "symbol": "wtba", + "name": "west bancorporation inc" + }, + { + "cik": 80035, + "symbol": "plpc", + "name": "preformed line products co" + }, + { + "cik": 1461755, + "symbol": "acbi", + "name": "atlantic capital bancshares inc" + }, + { + "cik": 1809353, + "symbol": "hpx", + "name": "hpx corp" + }, + { + "cik": 1005731, + "symbol": "idt", + "name": "idt corp" + }, + { + "cik": 706698, + "symbol": "utmd", + "name": "utah medical products inc" + }, + { + "cik": 1454741, + "symbol": "eot", + "name": "eaton vance national municipal opportunities trust" + }, + { + "cik": 103595, + "symbol": "vlgea", + "name": "village super market inc" + }, + { + "cik": 1517399, + "symbol": "supv", + "name": "grupo supervielle sa" + }, + { + "cik": 845379, + "symbol": "chn", + "name": "china fund inc" + }, + { + "cik": 807707, + "symbol": "voxx", + "name": "voxx international corp" + }, + { + "cik": 1729149, + "symbol": "vmd", + "name": "viemed healthcare inc" + }, + { + "cik": 1279495, + "symbol": "btegf", + "name": "baytex energy corp" + }, + { + "cik": 1753886, + "symbol": "ston", + "name": "stonemor inc" + }, + { + "cik": 1802749, + "symbol": "gik", + "name": "gigcapital3 inc" + }, + { + "cik": 1117480, + "symbol": "cmrx", + "name": "chimerix inc" + }, + { + "cik": 882152, + "symbol": "myc", + "name": "blackrock muniyield california fund inc" + }, + { + "cik": 886206, + "symbol": "fc", + "name": "franklin covey co" + }, + { + "cik": 1705682, + "symbol": "vntr", + "name": "venator materials plc" + }, + { + "cik": 1227500, + "symbol": "eqbk", + "name": "equity bancshares inc" + }, + { + "cik": 1420520, + "symbol": "atom", + "name": "atomera inc" + }, + { + "cik": 1692705, + "symbol": "qd", + "name": "qudian inc" + }, + { + "cik": 1348911, + "symbol": "kalv", + "name": "kalvista pharmaceuticals inc" + }, + { + "cik": 935419, + "symbol": "rick", + "name": "rci hospitality holdings inc" + }, + { + "cik": 887394, + "symbol": "mqt", + "name": "blackrock muniyield quality fund ii inc" + }, + { + "cik": 33488, + "symbol": "esca", + "name": "escalade inc" + }, + { + "cik": 1771279, + "symbol": "wsg", + "name": "wanda sports group co ltd" + }, + { + "cik": 1374690, + "symbol": "lrmr", + "name": "larimar therapeutics inc" + }, + { + "cik": 1759138, + "symbol": "caba", + "name": "cabaletta bio inc" + }, + { + "cik": 897269, + "symbol": "mvt", + "name": "blackrock munivest fund ii inc" + }, + { + "cik": 17313, + "symbol": "cswcl", + "name": "capital southwest corp" + }, + { + "cik": 1282850, + "symbol": "fct", + "name": "first trust senior floating rate income fund ii" + }, + { + "cik": 1310709, + "symbol": "gpm", + "name": "guggenheim enhanced equity income fund" + }, + { + "cik": 1596856, + "symbol": "leju", + "name": "leju holdings ltd" + }, + { + "cik": 1513363, + "symbol": "fdusg", + "name": "fidus investment corp" + }, + { + "cik": 1794717, + "symbol": "scvx", + "name": "scvx corp" + }, + { + "cik": 1729997, + "symbol": "gdlc", + "name": "grayscale digital large cap fund llc" + }, + { + "cik": 1676479, + "symbol": "cstr", + "name": "capstar financial holdings inc" + }, + { + "cik": 1821159, + "symbol": "clii", + "name": "climate change crisis real impact i acquisition corp" + }, + { + "cik": 858655, + "symbol": "hayn", + "name": "haynes international inc" + }, + { + "cik": 1534992, + "symbol": "frgi", + "name": "fiesta restaurant group inc" + }, + { + "cik": 1065059, + "symbol": "leu", + "name": "centrus energy corp" + }, + { + "cik": 1171759, + "symbol": "rrgb", + "name": "red robin gourmet burgers inc" + }, + { + "cik": 1018399, + "symbol": "ebtc", + "name": "enterprise bancorp inc ma" + }, + { + "cik": 100726, + "symbol": "ufi", + "name": "unifi inc" + }, + { + "cik": 1606440, + "symbol": "rbnc", + "name": "reliant bancorp inc" + }, + { + "cik": 1598674, + "symbol": "cspr", + "name": "casper sleep inc" + }, + { + "cik": 916183, + "symbol": "rcs", + "name": "pimco strategic income fund inc" + }, + { + "cik": 1386570, + "symbol": "cdxc", + "name": "chromadex corp" + }, + { + "cik": 1063344, + "symbol": "ht", + "name": "hersha hospitality trust" + }, + { + "cik": 810958, + "symbol": "cznc", + "name": "citizens & northern corp" + }, + { + "cik": 1661059, + "symbol": "nxtc", + "name": "nextcure inc" + }, + { + "cik": 1557746, + "symbol": "acrs", + "name": "aclaris therapeutics inc" + }, + { + "cik": 1819516, + "symbol": "aspl", + "name": "aspirational consumer lifestyle corp" + }, + { + "cik": 1499422, + "symbol": "rbb", + "name": "rbb bancorp" + }, + { + "cik": 1326200, + "symbol": "gnk", + "name": "genco shipping & trading ltd" + }, + { + "cik": 1383414, + "symbol": "pnntg", + "name": "pennantpark investment corp" + }, + { + "cik": 895528, + "symbol": "vpv", + "name": "invesco pennsylvania value municipal income trust" + }, + { + "cik": 818851, + "symbol": "nca", + "name": "nuveen california municipal value fund inc" + }, + { + "cik": 1067837, + "symbol": "etm", + "name": "entercom communications corp" + }, + { + "cik": 1463361, + "symbol": "ubx", + "name": "unity biotechnology inc" + }, + { + "cik": 1521404, + "symbol": "bgh", + "name": "barings global short duration high yield fund" + }, + { + "cik": 1566044, + "symbol": "mnlo", + "name": "vyne therapeutics inc" + }, + { + "cik": 1511198, + "symbol": "fbnk", + "name": "first connecticut bancorp inc" + }, + { + "cik": 23426, + "symbol": "cnlhn", + "name": "connecticut light & power co" + }, + { + "cik": 720858, + "symbol": "itic", + "name": "investors title co" + }, + { + "cik": 1300050, + "symbol": "gpl", + "name": "great panther mining ltd" + }, + { + "cik": 1631761, + "symbol": "yrd", + "name": "yiren digital ltd" + }, + { + "cik": 882104, + "symbol": "pdli", + "name": "pdl biopharma inc" + }, + { + "cik": 1822966, + "symbol": "svsvw", + "name": "spring valley acquisition corp" + }, + { + "cik": 878198, + "symbol": "num", + "name": "nuveen michigan quality municipal income fund" + }, + { + "cik": 1499849, + "symbol": "lnd", + "name": "brasilagro - brazilian agricultural real estate co" + }, + { + "cik": 916793, + "symbol": "silc", + "name": "silicom ltd" + }, + { + "cik": 1177161, + "symbol": "evm", + "name": "eaton vance california municipal bond fund" + }, + { + "cik": 275053, + "symbol": "natr", + "name": "natures sunshine products inc" + }, + { + "cik": 1005286, + "symbol": "lndc", + "name": "landec corp ca" + }, + { + "cik": 1071899, + "symbol": "mue", + "name": "blackrock muniholdings quality fund ii inc" + }, + { + "cik": 1813658, + "symbol": "acevw", + "name": "ace convergence acquisition corp" + }, + { + "cik": 1056285, + "symbol": "kirk", + "name": "kirklands inc" + }, + { + "cik": 1121484, + "symbol": "ois", + "name": "oil states international inc" + }, + { + "cik": 1178711, + "symbol": "prtk", + "name": "paratek pharmaceuticals inc" + }, + { + "cik": 1613780, + "symbol": "dbvt", + "name": "dbv technologies sa" + }, + { + "cik": 1547459, + "symbol": "ngvc", + "name": "natural grocers by vitamin cottage inc" + }, + { + "cik": 1823144, + "symbol": "dbdrw", + "name": "roman dbdr tech acquisition corp" + }, + { + "cik": 1304730, + "symbol": "hqda", + "name": "hqda elderly life network corp" + }, + { + "cik": 1507964, + "symbol": "corvf", + "name": "corvus gold inc" + }, + { + "cik": 1325618, + "symbol": "irmd", + "name": "iradimed corp" + }, + { + "cik": 1769116, + "symbol": "viao", + "name": "via optronics ag" + }, + { + "cik": 1341235, + "symbol": "aldx", + "name": "aldeyra therapeutics inc" + }, + { + "cik": 1660334, + "symbol": "vrca", + "name": "verrica pharmaceuticals inc" + }, + { + "cik": 894242, + "symbol": "bkn", + "name": "blackrock investment quality municipal trust inc" + }, + { + "cik": 1239819, + "symbol": "luna", + "name": "luna innovations inc" + }, + { + "cik": 1598665, + "symbol": "hrtg", + "name": "heritage insurance holdings inc" + }, + { + "cik": 1705873, + "symbol": "bry", + "name": "berry corp (bry)" + }, + { + "cik": 1515940, + "symbol": "kio", + "name": "kkr income opportunities fund" + }, + { + "cik": 883618, + "symbol": "nxp", + "name": "nuveen select tax free income portfolio" + }, + { + "cik": 24090, + "symbol": "cia", + "name": "citizens inc" + }, + { + "cik": 1493566, + "symbol": "otic", + "name": "otonomy inc" + }, + { + "cik": 1816017, + "symbol": "nsh", + "name": "navsight holdings inc" + }, + { + "cik": 1816708, + "symbol": "sbg", + "name": "sandbridge acquisition corp" + }, + { + "cik": 1377630, + "symbol": "ncmi", + "name": "national cinemedia inc" + }, + { + "cik": 1476034, + "symbol": "mcb", + "name": "metropolitan bank holding corp" + }, + { + "cik": 357173, + "symbol": "osbc", + "name": "old second bancorp inc" + }, + { + "cik": 741516, + "symbol": "amnb", + "name": "american national bankshares inc" + }, + { + "cik": 1567529, + "symbol": "kmda", + "name": "kamada ltd" + }, + { + "cik": 1030997, + "symbol": "wilc", + "name": "g willi food international ltd" + }, + { + "cik": 1170300, + "symbol": "pck", + "name": "pimco california municipal income fund ii" + }, + { + "cik": 811808, + "symbol": "smmf", + "name": "summit financial group inc" + }, + { + "cik": 899751, + "symbol": "twi", + "name": "titan international inc" + }, + { + "cik": 897421, + "symbol": "npv", + "name": "nuveen virginia quality municipal income fund" + }, + { + "cik": 1325670, + "symbol": "sona", + "name": "southern national bancorp of virginia inc" + }, + { + "cik": 1720580, + "symbol": "torc", + "name": "adicet bio inc" + }, + { + "cik": 1143513, + "symbol": "gladl", + "name": "gladstone capital corp" + }, + { + "cik": 1171155, + "symbol": "rlgt", + "name": "radiant logistics inc" + }, + { + "cik": 717720, + "symbol": "valu", + "name": "value line inc" + }, + { + "cik": 1342423, + "symbol": "lmnr", + "name": "limoneira co" + }, + { + "cik": 809708, + "symbol": "emf", + "name": "templeton emerging markets fund" + }, + { + "cik": 742112, + "symbol": "ivc", + "name": "invacare corp" + }, + { + "cik": 878200, + "symbol": "nuo", + "name": "nuveen ohio quality municipal income fund" + }, + { + "cik": 1816613, + "symbol": "aone", + "name": "one" + }, + { + "cik": 1710350, + "symbol": "dnjr", + "name": "bit digital inc" + }, + { + "cik": 1562463, + "symbol": "inbkz", + "name": "first internet bancorp" + }, + { + "cik": 1499453, + "symbol": "stxb", + "name": "spirit of texas bancshares inc" + }, + { + "cik": 1301787, + "symbol": "bxc", + "name": "bluelinx holdings inc" + }, + { + "cik": 916907, + "symbol": "smbc", + "name": "southern missouri bancorp inc" + }, + { + "cik": 1799611, + "symbol": "cgrow", + "name": "collective growth corp" + }, + { + "cik": 1178839, + "symbol": "nbh", + "name": "neuberger berman municipal fund inc" + }, + { + "cik": 1697851, + "symbol": "rekr", + "name": "rekor systems inc" + }, + { + "cik": 1134115, + "symbol": "thm", + "name": "international tower hill mines ltd" + }, + { + "cik": 1713539, + "symbol": "kxinw", + "name": "kaixin auto holdings" + }, + { + "cik": 1016708, + "symbol": "rcar", + "name": "renovacare inc" + }, + { + "cik": 1615346, + "symbol": "lmrko", + "name": "landmark infrastructure partners lp" + }, + { + "cik": 1389518, + "symbol": "tonj", + "name": "tongji healthcare group inc" + }, + { + "cik": 704440, + "symbol": "krmd", + "name": "repro med systems inc" + }, + { + "cik": 1534648, + "symbol": "jvczy", + "name": "jvckenwood corporation adr" + }, + { + "cik": 1053584, + "symbol": "mcbc", + "name": "macatawa bank corp" + }, + { + "cik": 1258943, + "symbol": "mav", + "name": "pioneer municipal high income advantage trust" + }, + { + "cik": 894239, + "symbol": "duc", + "name": "duff & phelps utility & corporate bond trust inc" + }, + { + "cik": 1038773, + "symbol": "smbk", + "name": "smartfinancial inc" + }, + { + "cik": 885733, + "symbol": "nxq", + "name": "nuveen select tax free income portfolio 2" + }, + { + "cik": 1268533, + "symbol": "tyg", + "name": "tortoise energy infrastructure corp" + }, + { + "cik": 1340122, + "symbol": "clmt", + "name": "calumet specialty products partners lp" + }, + { + "cik": 1223026, + "symbol": "mhi", + "name": "pioneer municipal high income trust" + }, + { + "cik": 1491419, + "symbol": "livx", + "name": "livexlive media inc" + }, + { + "cik": 1633932, + "symbol": "epix", + "name": "essa pharma inc" + }, + { + "cik": 1829576, + "symbol": "care", + "name": "carter bankshares inc" + }, + { + "cik": 1543418, + "symbol": "tmq", + "name": "trilogy metals inc" + }, + { + "cik": 1556336, + "symbol": "fei", + "name": "first trust mlp & energy income fund" + }, + { + "cik": 1759824, + "symbol": "altg", + "name": "alta equipment group inc" + }, + { + "cik": 1597835, + "symbol": "cmcm", + "name": "cheetah mobile inc" + }, + { + "cik": 1368519, + "symbol": "noa", + "name": "north american construction group ltd" + }, + { + "cik": 866273, + "symbol": "mtrx", + "name": "matrix service co" + }, + { + "cik": 801961, + "symbol": "mfm", + "name": "mfs municipal income trust" + }, + { + "cik": 1090009, + "symbol": "sfst", + "name": "southern first bancshares inc" + }, + { + "cik": 1563577, + "symbol": "grtx", + "name": "galera therapeutics inc" + }, + { + "cik": 809559, + "symbol": "tsi", + "name": "tcw strategic income fund inc" + }, + { + "cik": 1757097, + "symbol": "cntg", + "name": "centogene nv" + }, + { + "cik": 1719489, + "symbol": "klr", + "name": "kaleyra inc" + }, + { + "cik": 1525201, + "symbol": "dbl", + "name": "doubleline opportunistic credit fund" + }, + { + "cik": 1056943, + "symbol": "pfis", + "name": "peoples financial services corp" + }, + { + "cik": 1410098, + "symbol": "crmd", + "name": "cormedix inc" + }, + { + "cik": 1047884, + "symbol": "anh", + "name": "anworth mortgage asset corp" + }, + { + "cik": 1442626, + "symbol": "brg", + "name": "bluerock residential growth reit inc" + }, + { + "cik": 1640455, + "symbol": "jnce", + "name": "jounce therapeutics inc" + }, + { + "cik": 1769663, + "symbol": "pbfs", + "name": "pioneer bancorp inc md" + }, + { + "cik": 1552198, + "symbol": "whfbz", + "name": "whitehorse finance inc" + }, + { + "cik": 765207, + "symbol": "fnlc", + "name": "first bancorp inc me" + }, + { + "cik": 1233087, + "symbol": "ftf", + "name": "franklin ltd duration income trust" + }, + { + "cik": 724910, + "symbol": "nvec", + "name": "nve corp new" + }, + { + "cik": 275694, + "symbol": "mci", + "name": "barings corporate investors" + }, + { + "cik": 1666735, + "symbol": "jhd", + "name": "nuveen high income december 2019 target term fund" + }, + { + "cik": 916618, + "symbol": "iif", + "name": "morgan stanley india investment fund inc" + }, + { + "cik": 1362190, + "symbol": "aeye", + "name": "audioeye inc" + }, + { + "cik": 1472341, + "symbol": "gdo", + "name": "western asset global corporate defined opportunity fund inc" + }, + { + "cik": 1639877, + "symbol": "gsm", + "name": "ferroglobe plc" + }, + { + "cik": 944745, + "symbol": "civb", + "name": "civista bancshares inc" + }, + { + "cik": 1735184, + "symbol": "rvi", + "name": "retail value inc" + }, + { + "cik": 1715433, + "symbol": "lchd", + "name": "leader capital holdings corp" + }, + { + "cik": 891293, + "symbol": "ctic", + "name": "cti biopharma corp" + }, + { + "cik": 76267, + "symbol": "pke", + "name": "park aerospace corp" + }, + { + "cik": 1731727, + "symbol": "lmpx", + "name": "lmp automotive holdings inc" + }, + { + "cik": 1339469, + "symbol": "chma", + "name": "chiasma inc" + }, + { + "cik": 1766368, + "symbol": "mec", + "name": "mayville engineering company inc" + }, + { + "cik": 1287480, + "symbol": "bgt", + "name": "blackrock floating rate income trust" + }, + { + "cik": 1612720, + "symbol": "next", + "name": "nextdecade corp" + }, + { + "cik": 1487198, + "symbol": "aspu", + "name": "aspen group inc" + }, + { + "cik": 1069530, + "symbol": "ptie", + "name": "cassava sciences inc" + }, + { + "cik": 876523, + "symbol": "ezpw", + "name": "ezcorp inc" + }, + { + "cik": 1514597, + "symbol": "aug", + "name": "fury gold mines ltd" + }, + { + "cik": 1500096, + "symbol": "kmf", + "name": "kayne anderson nextgen energy & infrastructure inc" + }, + { + "cik": 1389207, + "symbol": "gfasy", + "name": "gafisa sa" + }, + { + "cik": 57725, + "symbol": "lci", + "name": "lannett co inc" + }, + { + "cik": 1523836, + "symbol": "litb", + "name": "lightinthebox holding co ltd" + }, + { + "cik": 1495320, + "symbol": "vra", + "name": "vera bradley inc" + }, + { + "cik": 1166258, + "symbol": "pht", + "name": "pioneer high income trust" + }, + { + "cik": 1290900, + "symbol": "cvgi", + "name": "commercial vehicle group inc" + }, + { + "cik": 41091, + "symbol": "gpja", + "name": "georgia power co" + }, + { + "cik": 873860, + "symbol": "ocn", + "name": "ocwen financial corp" + }, + { + "cik": 1820302, + "symbol": "vihau", + "name": "vpc impact acquisition holdings" + }, + { + "cik": 1761940, + "symbol": "dssi", + "name": "diamond s shipping inc" + }, + { + "cik": 1629665, + "symbol": "mulg", + "name": "muliang viagoo technology inc" + }, + { + "cik": 1041514, + "symbol": "ueps", + "name": "net 1 ueps technologies inc" + }, + { + "cik": 1160791, + "symbol": "goro", + "name": "gold resource corp" + }, + { + "cik": 928658, + "symbol": "cvti", + "name": "covenant logistics group inc" + }, + { + "cik": 1395213, + "symbol": "edn", + "name": "edenor" + }, + { + "cik": 1664106, + "symbol": "logc", + "name": "logicbio therapeutics inc" + }, + { + "cik": 918541, + "symbol": "nnbr", + "name": "nn inc" + }, + { + "cik": 1682325, + "symbol": "gtyh", + "name": "gty technology holdings inc" + }, + { + "cik": 1261249, + "symbol": "agrx", + "name": "agile therapeutics inc" + }, + { + "cik": 1619544, + "symbol": "jfu", + "name": "9f inc" + }, + { + "cik": 1059142, + "symbol": "atax", + "name": "america first multifamily investors lp" + }, + { + "cik": 1504545, + "symbol": "bwg", + "name": "brandywineglobal-global income opportunities fund inc" + }, + { + "cik": 1305767, + "symbol": "phd", + "name": "pioneer floating rate trust" + }, + { + "cik": 1576914, + "symbol": "mixt", + "name": "mix telematics ltd" + }, + { + "cik": 1156388, + "symbol": "bgfv", + "name": "big 5 sporting goods corp" + }, + { + "cik": 1691337, + "symbol": "pcsb", + "name": "pcsb financial corp" + }, + { + "cik": 1420720, + "symbol": "ibio", + "name": "ibio inc" + }, + { + "cik": 1753673, + "symbol": "sjoyw", + "name": "scienjoy holding corp" + }, + { + "cik": 709283, + "symbol": "qmco", + "name": "quantum corp de" + }, + { + "cik": 1359931, + "symbol": "tara", + "name": "protara therapeutics inc" + }, + { + "cik": 792966, + "symbol": "fmao", + "name": "farmers & merchants bancorp inc" + }, + { + "cik": 1342287, + "symbol": "gfnsz", + "name": "general finance corp" + }, + { + "cik": 74046, + "symbol": "odc", + "name": "oil-dri corp of america" + }, + { + "cik": 876343, + "symbol": "lctx", + "name": "lineage cell therapeutics inc" + }, + { + "cik": 14846, + "symbol": "brt", + "name": "brt apartments corp" + }, + { + "cik": 1001385, + "symbol": "nwpx", + "name": "northwest pipe co" + }, + { + "cik": 1766146, + "symbol": "latnw", + "name": "union acquisition corp ii" + }, + { + "cik": 1652842, + "symbol": "uryl", + "name": "united royale holdings corp" + }, + { + "cik": 1450445, + "symbol": "nuw", + "name": "nuveen amt-free municipal value fund" + }, + { + "cik": 1338561, + "symbol": "spxx", + "name": "nuveen s&p 500 dynamic overwrite fund" + }, + { + "cik": 1613170, + "symbol": "itmr", + "name": "itamar medical ltd" + }, + { + "cik": 37472, + "symbol": "flxs", + "name": "flexsteel industries inc" + }, + { + "cik": 276720, + "symbol": "pcyo", + "name": "pure cycle corp" + }, + { + "cik": 1565381, + "symbol": "xdmbx", + "name": "bny mellon municipal bond infrastructure fund inc" + }, + { + "cik": 1645666, + "symbol": "kzr", + "name": "kezar life sciences inc" + }, + { + "cik": 1006837, + "symbol": "hchc", + "name": "hc2 holdings inc" + }, + { + "cik": 1808997, + "symbol": "aout", + "name": "american outdoor brands inc" + }, + { + "cik": 1703785, + "symbol": "flmn", + "name": "falcon minerals corp" + }, + { + "cik": 1437958, + "symbol": "ccb", + "name": "coastal financial corp" + }, + { + "cik": 1226616, + "symbol": "mnov", + "name": "medicinova inc" + }, + { + "cik": 798287, + "symbol": "ptsi", + "name": "pam transportation services inc" + }, + { + "cik": 1465470, + "symbol": "shmp", + "name": "naturalshrimp inc" + }, + { + "cik": 1815737, + "symbol": "fst", + "name": "fast acquisition corp" + }, + { + "cik": 1454021, + "symbol": "mtt", + "name": "western asset municipal defined opportunity trust inc" + }, + { + "cik": 859796, + "symbol": "jof", + "name": "japan smaller capitalization fund inc" + }, + { + "cik": 99302, + "symbol": "trns", + "name": "transcat inc" + }, + { + "cik": 1762506, + "symbol": "vist", + "name": "vista oil & gas sab de cv" + }, + { + "cik": 1745059, + "symbol": "fins", + "name": "angel oak financial strategies income term trust" + }, + { + "cik": 1538028, + "symbol": "safly", + "name": "safilo group spa adr" + }, + { + "cik": 1377757, + "symbol": "gau", + "name": "galiano gold inc" + }, + { + "cik": 883265, + "symbol": "vtn", + "name": "invesco trust for investment grade new york municipals" + }, + { + "cik": 1385613, + "symbol": "glre", + "name": "greenlight capital re ltd" + }, + { + "cik": 1509470, + "symbol": "ssss", + "name": "suro capital corp" + }, + { + "cik": 1346302, + "symbol": "xers", + "name": "xeris pharmaceuticals inc" + }, + { + "cik": 1277902, + "symbol": "mvbf", + "name": "mvb financial corp" + }, + { + "cik": 1777835, + "symbol": "ftivu", + "name": "fintech acquisition corp iv" + }, + { + "cik": 1488775, + "symbol": "cem", + "name": "clearbridge mlp & midstream fund inc" + }, + { + "cik": 1326390, + "symbol": "mgu", + "name": "macquarie global infrastructure total return fund inc" + }, + { + "cik": 1811764, + "symbol": "txac", + "name": "therapeutics acquisition corp" + }, + { + "cik": 1620678, + "symbol": "anpcf", + "name": "angle plc" + }, + { + "cik": 315858, + "symbol": "bbxtd", + "name": "bluegreen vacations holding corp" + }, + { + "cik": 716006, + "symbol": "yrcw", + "name": "yrc worldwide inc" + }, + { + "cik": 1723069, + "symbol": "tlsa", + "name": "tiziana life sciences plc" + }, + { + "cik": 1591670, + "symbol": "fpi", + "name": "farmland partners inc" + }, + { + "cik": 1637655, + "symbol": "hzn", + "name": "horizon global corp" + }, + { + "cik": 1436425, + "symbol": "hbcp", + "name": "home bancorp inc" + }, + { + "cik": 1496443, + "symbol": "pays", + "name": "paysign inc" + }, + { + "cik": 1245648, + "symbol": "flc", + "name": "flaherty & crumrine total return fund inc" + }, + { + "cik": 1733868, + "symbol": "cnf", + "name": "cnfinance holdings ltd" + }, + { + "cik": 1285786, + "symbol": "emx", + "name": "emx royalty corp" + }, + { + "cik": 1530249, + "symbol": "fsbw", + "name": "fs bancorp inc" + }, + { + "cik": 1462586, + "symbol": "igi", + "name": "western asset investment grade defined opportunity trust inc" + }, + { + "cik": 722572, + "symbol": "fkwl", + "name": "franklin wireless corp" + }, + { + "cik": 1058811, + "symbol": "immr", + "name": "immersion corp" + }, + { + "cik": 1657853, + "symbol": "htz", + "name": "hertz global holdings inc" + }, + { + "cik": 1285550, + "symbol": "clpt", + "name": "clearpoint neuro inc" + }, + { + "cik": 1509190, + "symbol": "petx", + "name": "aratana therapeutics inc" + }, + { + "cik": 1259942, + "symbol": "blu", + "name": "bellus health inc" + }, + { + "cik": 1753268, + "symbol": "ruhn", + "name": "ruhnn holding ltd" + }, + { + "cik": 1814114, + "symbol": "hsaq", + "name": "health sciences acquisitions corp 2" + }, + { + "cik": 1070732, + "symbol": "evf", + "name": "eaton vance senior income trust" + }, + { + "cik": 1524025, + "symbol": "tlys", + "name": "tillys inc" + }, + { + "cik": 1743971, + "symbol": "mogu", + "name": "mogu inc" + }, + { + "cik": 1575051, + "symbol": "cinr", + "name": "ciner resources lp" + }, + { + "cik": 1158289, + "symbol": "jrs", + "name": "nuveen real estate income fund" + }, + { + "cik": 719135, + "symbol": "apyx", + "name": "apyx medical corp" + }, + { + "cik": 1563696, + "symbol": "etx", + "name": "eaton vance municipal income 2028 term trust" + }, + { + "cik": 1614806, + "symbol": "ajx", + "name": "great ajax corp" + }, + { + "cik": 5094, + "symbol": "vbf", + "name": "invesco bond fund" + }, + { + "cik": 1061353, + "symbol": "dhy", + "name": "credit suisse high yield bond fund" + }, + { + "cik": 1819133, + "symbol": "bctg", + "name": "bctg acquisition corp" + }, + { + "cik": 1762359, + "symbol": "acrgf", + "name": "acreage holdings inc" + }, + { + "cik": 1282977, + "symbol": "ghl", + "name": "greenhill & co inc" + }, + { + "cik": 1773087, + "symbol": "thcaw", + "name": "tuscan holdings corp ii" + }, + { + "cik": 1764301, + "symbol": "scpe", + "name": "sc health corp" + }, + { + "cik": 1778784, + "symbol": "pvbc", + "name": "provident bancorp inc md" + }, + { + "cik": 3545, + "symbol": "alco", + "name": "alico inc" + }, + { + "cik": 1679063, + "symbol": "cssen", + "name": "chicken soup for the soul entertainment inc" + }, + { + "cik": 1407298, + "symbol": "fly", + "name": "fly leasing ltd" + }, + { + "cik": 3197, + "symbol": "cece", + "name": "ceco environmental corp" + }, + { + "cik": 1383058, + "symbol": "dbo", + "name": "invesco db oil fund" + }, + { + "cik": 1487428, + "symbol": "htfa", + "name": "horizon technology finance corp" + }, + { + "cik": 1328598, + "symbol": "fxe", + "name": "invesco currencyshares euro trust" + }, + { + "cik": 1452857, + "symbol": "splp", + "name": "steel partners holdings lp" + }, + { + "cik": 1529463, + "symbol": "ftsi", + "name": "fts international inc" + }, + { + "cik": 1528129, + "symbol": "lpi", + "name": "laredo petroleum inc" + }, + { + "cik": 868578, + "symbol": "pfd", + "name": "flaherty & crumrine preferred & income fund inc" + }, + { + "cik": 350868, + "symbol": "iti", + "name": "iteris inc" + }, + { + "cik": 771266, + "symbol": "kopn", + "name": "kopin corp" + }, + { + "cik": 1278211, + "symbol": "lgi", + "name": "lazard global total return & income fund inc" + }, + { + "cik": 1561921, + "symbol": "tela", + "name": "tela bio inc" + }, + { + "cik": 1593548, + "symbol": "ags", + "name": "playags inc" + }, + { + "cik": 1770141, + "symbol": "gix", + "name": "gigcapital2 inc" + }, + { + "cik": 803164, + "symbol": "cofs", + "name": "choiceone financial services inc" + }, + { + "cik": 1159281, + "symbol": "fve", + "name": "five star senior living inc" + }, + { + "cik": 1522690, + "symbol": "gwgh", + "name": "gwg holdings inc" + }, + { + "cik": 1634117, + "symbol": "bned", + "name": "barnes & noble education inc" + }, + { + "cik": 1508171, + "symbol": "suns", + "name": "solar senior capital ltd" + }, + { + "cik": 1321847, + "symbol": "gsv", + "name": "gold standard ventures corp" + }, + { + "cik": 1377936, + "symbol": "saf", + "name": "saratoga investment corp" + }, + { + "cik": 1674365, + "symbol": "aptx", + "name": "aptinyx inc" + }, + { + "cik": 1419554, + "symbol": "bblg", + "name": "bone biologics corp" + }, + { + "cik": 1561627, + "symbol": "xone", + "name": "exone co" + }, + { + "cik": 733590, + "symbol": "tci", + "name": "transcontinental realty investors inc" + }, + { + "cik": 1774170, + "symbol": "pwfl", + "name": "powerfleet inc" + }, + { + "cik": 1709164, + "symbol": "hbb", + "name": "hamilton beach brands holding co" + }, + { + "cik": 355379, + "symbol": "mdwtd", + "name": "midwest holding inc" + }, + { + "cik": 66901, + "symbol": "emp", + "name": "entergy mississippi llc" + }, + { + "cik": 1538789, + "symbol": "je", + "name": "just energy group inc" + }, + { + "cik": 72162, + "symbol": "nl", + "name": "nl industries inc" + }, + { + "cik": 1777319, + "symbol": "ciso", + "name": "cerberus cyber sentinel corp" + }, + { + "cik": 1181504, + "symbol": "pzc", + "name": "pimco california municipal income fund iii" + }, + { + "cik": 1119769, + "symbol": "crnt", + "name": "ceragon networks ltd" + }, + { + "cik": 1769484, + "symbol": "biox", + "name": "bioceres crop solutions corp" + }, + { + "cik": 1436126, + "symbol": "mg", + "name": "mistras group inc" + }, + { + "cik": 911971, + "symbol": "tk", + "name": "teekay corp" + }, + { + "cik": 1704715, + "symbol": "ctra", + "name": "contura energy inc" + }, + { + "cik": 1132651, + "symbol": "atlo", + "name": "ames national corp" + }, + { + "cik": 1034665, + "symbol": "mhd", + "name": "blackrock muniholdings fund inc" + }, + { + "cik": 1109116, + "symbol": "evc", + "name": "entravision communications corp" + }, + { + "cik": 1265107, + "symbol": "scty", + "name": "monitronics international inc" + }, + { + "cik": 1447051, + "symbol": "tbnk", + "name": "territorial bancorp inc" + }, + { + "cik": 357294, + "symbol": "hov", + "name": "hovnanian enterprises inc" + }, + { + "cik": 1807765, + "symbol": "pmvc", + "name": "pmv consumer acquisition corp" + }, + { + "cik": 880432, + "symbol": "mson", + "name": "misonix inc" + }, + { + "cik": 1095348, + "symbol": "oiim", + "name": "o2micro international ltd" + }, + { + "cik": 1709626, + "symbol": "ncna", + "name": "nucana plc" + }, + { + "cik": 1070524, + "symbol": "gcbc", + "name": "greene county bancorp inc" + }, + { + "cik": 1064052, + "symbol": "fgovf", + "name": "freegold ventures ltd" + }, + { + "cik": 1702924, + "symbol": "wrtc", + "name": "wrap technologies inc" + }, + { + "cik": 1577791, + "symbol": "ocsi", + "name": "oaktree strategic income corp" + }, + { + "cik": 1487610, + "symbol": "nhs", + "name": "neuberger berman high yield strategies fund inc" + }, + { + "cik": 30125, + "symbol": "insi", + "name": "insight select income fund" + }, + { + "cik": 1385763, + "symbol": "jce", + "name": "nuveen core equity alpha fund" + }, + { + "cik": 1777946, + "symbol": "dfns", + "name": "lgl systems acquisition corp" + }, + { + "cik": 1401521, + "symbol": "uihc", + "name": "united insurance holdings corp" + }, + { + "cik": 1177162, + "symbol": "enx", + "name": "eaton vance new york municipal bond fund" + }, + { + "cik": 1686142, + "symbol": "jco", + "name": "nuveen credit opportunities 2022 target term fund" + }, + { + "cik": 1070296, + "symbol": "fcap", + "name": "first capital inc" + }, + { + "cik": 1474439, + "symbol": "tnav", + "name": "telenav inc" + }, + { + "cik": 63330, + "symbol": "mlp", + "name": "maui land & pineapple co inc" + }, + { + "cik": 1651958, + "symbol": "eoss", + "name": "eos inc" + }, + { + "cik": 1597095, + "symbol": "tour", + "name": "tuniu corp" + }, + { + "cik": 715579, + "symbol": "acnb", + "name": "acnb corp" + }, + { + "cik": 1502573, + "symbol": "aft", + "name": "apollo senior floating rate fund inc" + }, + { + "cik": 1680379, + "symbol": "sbt", + "name": "sterling bancorp inc" + }, + { + "cik": 1390352, + "symbol": "orrcf", + "name": "oroco resource corp" + }, + { + "cik": 1506439, + "symbol": "shsp", + "name": "sharpspring inc" + }, + { + "cik": 1287498, + "symbol": "evg", + "name": "eaton vance short duration diversified income fund" + }, + { + "cik": 1015383, + "symbol": "poww", + "name": "ammo inc" + }, + { + "cik": 1390162, + "symbol": "hbmd", + "name": "howard bancorp inc" + }, + { + "cik": 1260990, + "symbol": "onct", + "name": "oncternal therapeutics inc" + }, + { + "cik": 1680048, + "symbol": "mbio", + "name": "mustang bio inc" + }, + { + "cik": 763532, + "symbol": "lyts", + "name": "lsi industries inc" + }, + { + "cik": 1590584, + "symbol": "cveo", + "name": "civeo corp" + }, + { + "cik": 810332, + "symbol": "mesa", + "name": "mesa air group inc" + }, + { + "cik": 888411, + "symbol": "nxr", + "name": "nuveen select tax free income portfolio 3" + }, + { + "cik": 1641229, + "symbol": "ffmgf", + "name": "first mining gold corp" + }, + { + "cik": 948708, + "symbol": "smsi", + "name": "smith micro software inc" + }, + { + "cik": 69733, + "symbol": "nath", + "name": "nathans famous inc" + }, + { + "cik": 1398733, + "symbol": "aqst", + "name": "aquestive therapeutics inc" + }, + { + "cik": 1630856, + "symbol": "pfhd", + "name": "professional holding corp" + }, + { + "cik": 1013605, + "symbol": "pds", + "name": "precision drilling corp" + }, + { + "cik": 71508, + "symbol": "eno", + "name": "entergy new orleans llc" + }, + { + "cik": 1760173, + "symbol": "rtix", + "name": "surgalign holdings inc" + }, + { + "cik": 1744494, + "symbol": "amciw", + "name": "amci acquisition corp" + }, + { + "cik": 1284940, + "symbol": "fen", + "name": "first trust energy income & growth fund" + }, + { + "cik": 1684693, + "symbol": "slgl", + "name": "sol-gel technologies ltd" + }, + { + "cik": 1057861, + "symbol": "dhf", + "name": "bny mellon high yield strategies fund" + }, + { + "cik": 1598428, + "symbol": "tmst", + "name": "timkensteel corp" + }, + { + "cik": 1633070, + "symbol": "axla", + "name": "axcella health inc" + }, + { + "cik": 1096938, + "symbol": "ueec", + "name": "united health products inc" + }, + { + "cik": 1494650, + "symbol": "optn", + "name": "optinose inc" + }, + { + "cik": 924383, + "symbol": "gnss", + "name": "genasys inc" + }, + { + "cik": 1634379, + "symbol": "mtcr", + "name": "metacrine inc" + }, + { + "cik": 1776197, + "symbol": "aku", + "name": "akumin inc" + }, + { + "cik": 1819989, + "symbol": "gwacw", + "name": "good works acquisition corp" + }, + { + "cik": 1013272, + "symbol": "nwfl", + "name": "norwood financial corp" + }, + { + "cik": 915779, + "symbol": "dakt", + "name": "daktronics inc sd" + }, + { + "cik": 1354866, + "symbol": "byrn", + "name": "byrna technologies inc" + }, + { + "cik": 1157762, + "symbol": "caas", + "name": "china automotive systems inc" + }, + { + "cik": 1710340, + "symbol": "eton", + "name": "eton pharmaceuticals inc" + }, + { + "cik": 1612940, + "symbol": "prqr", + "name": "proqr therapeutics nv" + }, + { + "cik": 1808805, + "symbol": "arya", + "name": "arya sciences acquisition corp iii" + }, + { + "cik": 1568292, + "symbol": "ivh", + "name": "ivy high income opportunities fund" + }, + { + "cik": 1462418, + "symbol": "asps", + "name": "altisource portfolio solutions sa" + }, + { + "cik": 1391437, + "symbol": "grx", + "name": "gabelli healthcare & wellnessrx trust" + }, + { + "cik": 1807707, + "symbol": "novsu", + "name": "novus capital corp" + }, + { + "cik": 1395057, + "symbol": "inb", + "name": "cohen & steers global income builder inc" + }, + { + "cik": 830622, + "symbol": "pim", + "name": "putnam master intermediate income trust" + }, + { + "cik": 1580149, + "symbol": "bivi", + "name": "biovie inc" + }, + { + "cik": 1715497, + "symbol": "borr", + "name": "borr drilling ltd" + }, + { + "cik": 1368514, + "symbol": "adma", + "name": "adma biologics inc" + }, + { + "cik": 1386067, + "symbol": "eod", + "name": "wells fargo global dividend opportunity fund" + }, + { + "cik": 1534120, + "symbol": "cerc", + "name": "cerecor inc" + }, + { + "cik": 902053, + "symbol": "pgejf", + "name": "pgs asa" + }, + { + "cik": 319815, + "symbol": "mxwl", + "name": "maxwell technologies inc" + }, + { + "cik": 1261166, + "symbol": "nro", + "name": "neuberger berman real estate securities income fund inc" + }, + { + "cik": 1665817, + "symbol": "eht", + "name": "eaton vance high income 2021 target term trust" + }, + { + "cik": 1722387, + "symbol": "irrzf", + "name": "integra resources corp" + }, + { + "cik": 895456, + "symbol": "rcky", + "name": "rocky brands inc" + }, + { + "cik": 1270131, + "symbol": "scd", + "name": "lmp capital & income fund inc" + }, + { + "cik": 1163370, + "symbol": "nrim", + "name": "northrim bancorp inc" + }, + { + "cik": 1582554, + "symbol": "mtnb", + "name": "matinas biopharma holdings inc" + }, + { + "cik": 1306550, + "symbol": "bgr", + "name": "blackrock energy & resources trust" + }, + { + "cik": 804123, + "symbol": "twn", + "name": "taiwan fund inc" + }, + { + "cik": 1126234, + "symbol": "lumo", + "name": "lumos pharma inc" + }, + { + "cik": 1486298, + "symbol": "bsl", + "name": "blackstone gso senior floating rate term fund" + }, + { + "cik": 1679268, + "symbol": "tusk", + "name": "mammoth energy services inc" + }, + { + "cik": 1823200, + "symbol": "blsa", + "name": "bcls acquisition corp" + }, + { + "cik": 1701167, + "symbol": "efl", + "name": "eaton vance floating-rate 2022 target term trust" + }, + { + "cik": 1408443, + "symbol": "mist", + "name": "milestone pharmaceuticals inc" + }, + { + "cik": 798081, + "symbol": "lake", + "name": "lakeland industries inc" + }, + { + "cik": 1526697, + "symbol": "aif", + "name": "apollo tactical income fund inc" + }, + { + "cik": 1426800, + "symbol": "asmb", + "name": "assembly biosciences inc" + }, + { + "cik": 1315255, + "symbol": "gtt", + "name": "gtt communications inc" + }, + { + "cik": 1261654, + "symbol": "uti", + "name": "universal technical institute inc" + }, + { + "cik": 1286613, + "symbol": "linc", + "name": "lincoln educational services corp" + }, + { + "cik": 10329, + "symbol": "bset", + "name": "bassett furniture industries inc" + }, + { + "cik": 1289945, + "symbol": "spok", + "name": "spok holdings inc" + }, + { + "cik": 1682811, + "symbol": "ihit", + "name": "invesco high income 2023 target term fund" + }, + { + "cik": 1046050, + "symbol": "tsbk", + "name": "timberland bancorp inc" + }, + { + "cik": 1158114, + "symbol": "aaoi", + "name": "applied optoelectronics inc" + }, + { + "cik": 1417802, + "symbol": "ide", + "name": "voya infrastructure industrials & materials fund" + }, + { + "cik": 9346, + "symbol": "ptvcb", + "name": "protective insurance corp" + }, + { + "cik": 879635, + "symbol": "mpb", + "name": "mid penn bancorp inc" + }, + { + "cik": 825345, + "symbol": "hyb", + "name": "new america high income fund inc" + }, + { + "cik": 1528356, + "symbol": "gne", + "name": "genie energy ltd" + }, + { + "cik": 1465885, + "symbol": "wmc", + "name": "western asset mortgage capital corp" + }, + { + "cik": 1591588, + "symbol": "amrk", + "name": "a-mark precious metals inc" + }, + { + "cik": 1421461, + "symbol": "ipi", + "name": "intrepid potash inc" + }, + { + "cik": 796534, + "symbol": "nksh", + "name": "national bankshares inc" + }, + { + "cik": 887919, + "symbol": "pfbi", + "name": "premier financial bancorp inc" + }, + { + "cik": 1401395, + "symbol": "nept", + "name": "neptune wellness solutions inc" + }, + { + "cik": 1510593, + "symbol": "xnet", + "name": "xunlei ltd" + }, + { + "cik": 825202, + "symbol": "fund", + "name": "sprott focus trust inc" + }, + { + "cik": 933034, + "symbol": "strt", + "name": "strattec security corp" + }, + { + "cik": 315374, + "symbol": "hurc", + "name": "hurco companies inc" + }, + { + "cik": 729580, + "symbol": "belfb", + "name": "bel fuse inc nj" + }, + { + "cik": 1551693, + "symbol": "sien", + "name": "sientra inc" + }, + { + "cik": 1549966, + "symbol": "samg", + "name": "silvercrest asset management group inc" + }, + { + "cik": 1517518, + "symbol": "emo", + "name": "clearbridge energy midstream opportunity fund inc" + }, + { + "cik": 1430725, + "symbol": "gsld", + "name": "global ship lease inc" + }, + { + "cik": 1108645, + "symbol": "fosi", + "name": "frontier oilfield services inc" + }, + { + "cik": 1441693, + "symbol": "mbii", + "name": "marrone bio innovations inc" + }, + { + "cik": 1703956, + "symbol": "bbcp", + "name": "concrete pumping holdings inc" + }, + { + "cik": 1551986, + "symbol": "nmtr", + "name": "9 meters biopharma inc" + }, + { + "cik": 1678130, + "symbol": "opp", + "name": "rivernorth doubleline strategic opportunity fund inc" + }, + { + "cik": 1433714, + "symbol": "cslt", + "name": "castlight health inc" + }, + { + "cik": 1481028, + "symbol": "hysr", + "name": "sunhydrogen inc" + }, + { + "cik": 1397173, + "symbol": "jtd", + "name": "nuveen tax-advantaged dividend growth fund" + }, + { + "cik": 1716697, + "symbol": "fcbp", + "name": "first choice bancorp" + }, + { + "cik": 1611842, + "symbol": "pypd", + "name": "polypid ltd" + }, + { + "cik": 1093428, + "symbol": "nsl", + "name": "nuveen senior income fund" + }, + { + "cik": 921671, + "symbol": "ggt", + "name": "gabelli multimedia trust inc" + }, + { + "cik": 1646109, + "symbol": "fdeu", + "name": "first trust dynamic europe equity income fund" + }, + { + "cik": 1461119, + "symbol": "crhm", + "name": "crh medical corp" + }, + { + "cik": 1675644, + "symbol": "fvcb", + "name": "fvcbankcorp inc" + }, + { + "cik": 1412100, + "symbol": "mhnc", + "name": "maiden holdings ltd" + }, + { + "cik": 1618835, + "symbol": "evfm", + "name": "evofem biosciences inc" + }, + { + "cik": 1069533, + "symbol": "rgco", + "name": "rgc resources inc" + }, + { + "cik": 1691433, + "symbol": "bgio", + "name": "blackrock 2022 global income opportunity trust" + }, + { + "cik": 1772028, + "symbol": "scps", + "name": "scopus biopharma inc" + }, + { + "cik": 934549, + "symbol": "actg", + "name": "acacia research corp" + }, + { + "cik": 65433, + "symbol": "mxf", + "name": "mexico fund inc" + }, + { + "cik": 1253689, + "symbol": "glyc", + "name": "glycomimetics inc" + }, + { + "cik": 1102238, + "symbol": "arl", + "name": "american realty investors inc" + }, + { + "cik": 1383055, + "symbol": "dgl", + "name": "invesco db gold fund" + }, + { + "cik": 1094324, + "symbol": "sify", + "name": "sify technologies ltd" + }, + { + "cik": 1007587, + "symbol": "kvhi", + "name": "kvh industries inc de" + }, + { + "cik": 1649989, + "symbol": "otlkw", + "name": "outlook therapeutics inc" + }, + { + "cik": 1204413, + "symbol": "pcom", + "name": "points international ltd" + }, + { + "cik": 1326003, + "symbol": "bkcc", + "name": "blackrock capital investment corp" + }, + { + "cik": 1131312, + "symbol": "znogw", + "name": "zion oil & gas inc" + }, + { + "cik": 1562051, + "symbol": "nml", + "name": "neuberger berman mlp & energy income fund inc" + }, + { + "cik": 1734768, + "symbol": "imv", + "name": "imv inc" + }, + { + "cik": 891038, + "symbol": "mpa", + "name": "blackrock muniyield pennsylvania quality fund" + }, + { + "cik": 1757064, + "symbol": "gnft", + "name": "genfit sa" + }, + { + "cik": 1715925, + "symbol": "ipatd", + "name": "immunoprecise antibodies ltd" + }, + { + "cik": 1811063, + "symbol": "pana", + "name": "panacea acquisition corp" + }, + { + "cik": 723603, + "symbol": "culp", + "name": "culp inc" + }, + { + "cik": 739421, + "symbol": "czfs", + "name": "citizens financial services inc" + }, + { + "cik": 1018164, + "symbol": "wlfc", + "name": "willis lease finance corp" + }, + { + "cik": 1211583, + "symbol": "fenc", + "name": "fennec pharmaceuticals inc" + }, + { + "cik": 1086745, + "symbol": "ayro", + "name": "ayro inc" + }, + { + "cik": 1322439, + "symbol": "egle", + "name": "eagle bulk shipping inc" + }, + { + "cik": 1564584, + "symbol": "niq", + "name": "nuveen intermediate duration quality municipal term fund" + }, + { + "cik": 1089907, + "symbol": "swkh", + "name": "swk holdings corp" + }, + { + "cik": 882153, + "symbol": "myf", + "name": "blackrock muniyield investment fund" + }, + { + "cik": 1131554, + "symbol": "sncr", + "name": "synchronoss technologies inc" + }, + { + "cik": 1444307, + "symbol": "oncs", + "name": "oncosec medical inc" + }, + { + "cik": 1175483, + "symbol": "ds", + "name": "drive shack inc" + }, + { + "cik": 1756640, + "symbol": "wism", + "name": "wiseman global ltd" + }, + { + "cik": 93314, + "symbol": "vnrx", + "name": "volitionrx ltd" + }, + { + "cik": 748691, + "symbol": "kf", + "name": "korea fund inc" + }, + { + "cik": 768411, + "symbol": "cybe", + "name": "cyberoptics corp" + }, + { + "cik": 826154, + "symbol": "orrf", + "name": "orrstown financial services inc" + }, + { + "cik": 876883, + "symbol": "mdca", + "name": "mdc partners inc" + }, + { + "cik": 1551286, + "symbol": "tgrf", + "name": "tgr financial inc" + }, + { + "cik": 1377789, + "symbol": "avnw", + "name": "aviat networks inc" + }, + { + "cik": 1503290, + "symbol": "acp", + "name": "aberdeen income credit strategies fund" + }, + { + "cik": 746514, + "symbol": "nen", + "name": "new england realty associates limited partnership" + }, + { + "cik": 829365, + "symbol": "ntp", + "name": "nam tai property inc" + }, + { + "cik": 23795, + "symbol": "cto", + "name": "cto realty growth inc" + }, + { + "cik": 1340476, + "symbol": "drtt", + "name": "dirtt environmental solutions ltd" + }, + { + "cik": 1517496, + "symbol": "wbai", + "name": "500com ltd" + }, + { + "cik": 766011, + "symbol": "cmcl", + "name": "caledonia mining corp plc" + }, + { + "cik": 1227636, + "symbol": "stim", + "name": "neuronetics inc" + }, + { + "cik": 1074902, + "symbol": "lcnb", + "name": "lcnb corp" + }, + { + "cik": 1127371, + "symbol": "cvcy", + "name": "central valley community bancorp" + }, + { + "cik": 1723866, + "symbol": "sic", + "name": "select interior concepts inc" + }, + { + "cik": 1064728, + "symbol": "btu", + "name": "peabody energy corp" + }, + { + "cik": 904112, + "symbol": "msd", + "name": "morgan stanley emerging markets debt fund inc" + }, + { + "cik": 1353613, + "symbol": "fxy", + "name": "invesco currencyshares japanese yen trust" + }, + { + "cik": 1807983, + "symbol": "mdnaf", + "name": "medicenna therapeutics corp" + }, + { + "cik": 1635650, + "symbol": "gpp", + "name": "green plains partners lp" + }, + { + "cik": 1383395, + "symbol": "sqns", + "name": "sequans communications" + }, + { + "cik": 1743745, + "symbol": "gnln", + "name": "greenlane holdings inc" + }, + { + "cik": 1089511, + "symbol": "alsk", + "name": "alaska communications systems group inc" + }, + { + "cik": 1415916, + "symbol": "gmlpp", + "name": "golar lng partners lp" + }, + { + "cik": 1018735, + "symbol": "nymx", + "name": "nymox pharmaceutical corp" + }, + { + "cik": 789933, + "symbol": "nc", + "name": "nacco industries inc" + }, + { + "cik": 1513789, + "symbol": "fif", + "name": "first trust energy infrastructure fund" + }, + { + "cik": 1137390, + "symbol": "bny", + "name": "blackrock new york municipal income trust" + }, + { + "cik": 1561743, + "symbol": "kin", + "name": "kindred biosciences inc" + }, + { + "cik": 70415, + "symbol": "gpx", + "name": "gp strategies corp" + }, + { + "cik": 1315399, + "symbol": "pkbk", + "name": "parke bancorp inc" + }, + { + "cik": 793040, + "symbol": "ecf", + "name": "ellsworth growth & income fund ltd" + }, + { + "cik": 18255, + "symbol": "cato", + "name": "cato corp" + }, + { + "cik": 1734262, + "symbol": "ctk", + "name": "cootek(cayman)inc" + }, + { + "cik": 1316463, + "symbol": "glq", + "name": "clough global equity fund" + }, + { + "cik": 1587264, + "symbol": "salt", + "name": "scorpio bulkers inc" + }, + { + "cik": 1646188, + "symbol": "ondsd", + "name": "ondas holdings inc" + }, + { + "cik": 1481792, + "symbol": "quad", + "name": "quad graphics inc" + }, + { + "cik": 1383084, + "symbol": "dbb", + "name": "invesco db base metals fund" + }, + { + "cik": 885508, + "symbol": "strs", + "name": "stratus properties inc" + }, + { + "cik": 1368365, + "symbol": "mark", + "name": "remark holdings inc" + }, + { + "cik": 911147, + "symbol": "cnty", + "name": "century casinos inc co" + }, + { + "cik": 833040, + "symbol": "ft", + "name": "franklin universal trust" + }, + { + "cik": 908311, + "symbol": "cmctp", + "name": "cim commercial trust corp" + }, + { + "cik": 1743102, + "symbol": "jfin", + "name": "jiayin group inc" + }, + { + "cik": 1722890, + "symbol": "tlc", + "name": "taiwan liposome company ltd" + }, + { + "cik": 1651407, + "symbol": "ckpt", + "name": "checkpoint therapeutics inc" + }, + { + "cik": 716605, + "symbol": "pwod", + "name": "penns woods bancorp inc" + }, + { + "cik": 1437226, + "symbol": "mhh", + "name": "mastech digital inc" + }, + { + "cik": 1228454, + "symbol": "bcbp", + "name": "bcb bancorp inc" + }, + { + "cik": 811831, + "symbol": "nbn", + "name": "northeast bancorp me" + }, + { + "cik": 1703489, + "symbol": "pdlb", + "name": "pdl community bancorp" + }, + { + "cik": 1807594, + "symbol": "mlacw", + "name": "malacca straits acquisition co ltd" + }, + { + "cik": 1095435, + "symbol": "ptged", + "name": "portage biotech inc" + }, + { + "cik": 759866, + "symbol": "jhs", + "name": "john hancock income securities trust" + }, + { + "cik": 928340, + "symbol": "cwco", + "name": "consolidated water co ltd" + }, + { + "cik": 1606457, + "symbol": "atto", + "name": "atento sa" + }, + { + "cik": 1419536, + "symbol": "cbnk", + "name": "capital bancorp inc" + }, + { + "cik": 1049606, + "symbol": "cix", + "name": "compx international inc" + }, + { + "cik": 1173281, + "symbol": "nbse", + "name": "neubase therapeutics inc" + }, + { + "cik": 1010559, + "symbol": "eskyf", + "name": "eskay mining corp" + }, + { + "cik": 1290149, + "symbol": "srra", + "name": "sierra oncology inc" + }, + { + "cik": 1701809, + "symbol": "cbh", + "name": "allianzgi convertible & income 2024 target term fund" + }, + { + "cik": 1624422, + "symbol": "eryp", + "name": "erytech pharma sa" + }, + { + "cik": 1509646, + "symbol": "feng", + "name": "phoenix new media ltd" + }, + { + "cik": 1820201, + "symbol": "sgamw", + "name": "seaport global acquisition corp" + }, + { + "cik": 839122, + "symbol": "dmf", + "name": "bny mellon municipal income inc" + }, + { + "cik": 1630805, + "symbol": "bw", + "name": "babcock & wilcox enterprises inc" + }, + { + "cik": 1040896, + "symbol": "idn", + "name": "intellicheck inc" + }, + { + "cik": 897429, + "symbol": "chs", + "name": "chicos fas inc" + }, + { + "cik": 1307579, + "symbol": "liqt", + "name": "liqtech international inc" + }, + { + "cik": 1691221, + "symbol": "frsx", + "name": "foresight autonomous holdings ltd" + }, + { + "cik": 1210618, + "symbol": "spi", + "name": "spi energy co ltd" + }, + { + "cik": 1058623, + "symbol": "cmls", + "name": "cumulus media inc" + }, + { + "cik": 71829, + "symbol": "nr", + "name": "newpark resources inc" + }, + { + "cik": 1602658, + "symbol": "istr", + "name": "investar holding corp" + }, + { + "cik": 1710366, + "symbol": "ceix", + "name": "consol energy inc" + }, + { + "cik": 1760683, + "symbol": "esscu", + "name": "east stone acquisition corp" + }, + { + "cik": 1784851, + "symbol": "gleo", + "name": "galileo acquisition corp" + }, + { + "cik": 1650101, + "symbol": "atxg", + "name": "addentax group corp" + }, + { + "cik": 1116284, + "symbol": "exfo", + "name": "exfo inc" + }, + { + "cik": 1595248, + "symbol": "gnpx", + "name": "genprex inc" + }, + { + "cik": 1141807, + "symbol": "fccy", + "name": "1st constitution bancorp" + }, + { + "cik": 1419242, + "symbol": "at", + "name": "atlantic power corp" + }, + { + "cik": 1730984, + "symbol": "bcml", + "name": "baycom corp" + }, + { + "cik": 1548187, + "symbol": "soly", + "name": "soliton inc" + }, + { + "cik": 1592560, + "symbol": "tedu", + "name": "tarena international inc" + }, + { + "cik": 1723935, + "symbol": "stg", + "name": "sunlands technology group" + }, + { + "cik": 1408534, + "symbol": "fgbi", + "name": "first guaranty bancshares inc" + }, + { + "cik": 892992, + "symbol": "naz", + "name": "nuveen arizona quality municipal income fund" + }, + { + "cik": 1767837, + "symbol": "rmbi", + "name": "richmond mutual bancorporation inc" + }, + { + "cik": 1089872, + "symbol": "gaia", + "name": "gaia inc" + }, + { + "cik": 75208, + "symbol": "osg", + "name": "overseas shipholding group inc" + }, + { + "cik": 1633441, + "symbol": "seco", + "name": "secoo holding ltd" + }, + { + "cik": 1551949, + "symbol": "ggm", + "name": "guggenheim credit allocation fund" + }, + { + "cik": 1500213, + "symbol": "sifi", + "name": "si financial group inc" + }, + { + "cik": 1634432, + "symbol": "sbbp", + "name": "strongbridge biopharma plc" + }, + { + "cik": 1507713, + "symbol": "aunff", + "name": "aurcana corp" + }, + { + "cik": 1001902, + "symbol": "ivac", + "name": "intevac inc" + }, + { + "cik": 1785494, + "symbol": "wbqnl", + "name": "woodbridge liquidation trust" + }, + { + "cik": 920427, + "symbol": "unty", + "name": "unity bancorp inc nj" + }, + { + "cik": 1158780, + "symbol": "psti", + "name": "pluristem therapeutics inc" + }, + { + "cik": 1522807, + "symbol": "inf", + "name": "brookfield global listed infrastructure income fund inc" + }, + { + "cik": 1512931, + "symbol": "mrccl", + "name": "monroe capital corp" + }, + { + "cik": 1704299, + "symbol": "teaf", + "name": "tortoise essential assets income term fund" + }, + { + "cik": 1821586, + "symbol": "hlxa", + "name": "helix acquisition corp" + }, + { + "cik": 1171486, + "symbol": "nrp", + "name": "natural resource partners lp" + }, + { + "cik": 1642380, + "symbol": "ocx", + "name": "oncocyte corp" + }, + { + "cik": 42316, + "symbol": "gv", + "name": "goldfield corp" + }, + { + "cik": 1749797, + "symbol": "cih", + "name": "china index holdings ltd" + }, + { + "cik": 884269, + "symbol": "apt", + "name": "alpha pro tech ltd" + }, + { + "cik": 1035092, + "symbol": "shbi", + "name": "shore bancshares inc" + }, + { + "cik": 1721386, + "symbol": "lfacw", + "name": "lf capital acquisition corp" + }, + { + "cik": 1343793, + "symbol": "bta", + "name": "blackrock long-term municipal advantage trust" + }, + { + "cik": 1255821, + "symbol": "jdd", + "name": "nuveen diversified dividend & income fund" + }, + { + "cik": 1058234, + "symbol": "mus", + "name": "blackrock muniholdings quality fund inc" + }, + { + "cik": 1126741, + "symbol": "gsit", + "name": "gsi technology inc" + }, + { + "cik": 14177, + "symbol": "brid", + "name": "bridgford foods corp" + }, + { + "cik": 1517130, + "symbol": "pme", + "name": "pingtan marine enterprise ltd" + }, + { + "cik": 64472, + "symbol": "genc", + "name": "gencor industries inc" + }, + { + "cik": 1038190, + "symbol": "muh", + "name": "blackrock muniholdings fund ii inc" + }, + { + "cik": 1504234, + "symbol": "bgx", + "name": "blackstone long-short credit income fund" + }, + { + "cik": 1512717, + "symbol": "thtx", + "name": "theratechnologies inc" + }, + { + "cik": 1393726, + "symbol": "tipt", + "name": "tiptree inc" + }, + { + "cik": 1163792, + "symbol": "wea", + "name": "western asset premier bond fund" + }, + { + "cik": 1123494, + "symbol": "hbio", + "name": "harvard bioscience inc" + }, + { + "cik": 1167467, + "symbol": "bbk", + "name": "blackrock municipal bond trust" + }, + { + "cik": 1698530, + "symbol": "xcur", + "name": "exicure inc" + }, + { + "cik": 1816736, + "symbol": "gmni", + "name": "fs development corp" + }, + { + "cik": 882071, + "symbol": "pfo", + "name": "flaherty & crumrine preferred & income opportunity fund inc" + }, + { + "cik": 1364125, + "symbol": "wrn", + "name": "western copper & gold corp" + }, + { + "cik": 1492674, + "symbol": "ttoo", + "name": "t2 biosystems inc" + }, + { + "cik": 1705843, + "symbol": "clxt", + "name": "calyxt inc" + }, + { + "cik": 844959, + "symbol": "hlan", + "name": "heartland banccorp" + }, + { + "cik": 1007330, + "symbol": "prgx", + "name": "prgx global inc" + }, + { + "cik": 1158172, + "symbol": "scor", + "name": "comscore inc" + }, + { + "cik": 810766, + "symbol": "cik", + "name": "credit suisse asset management income fund inc" + }, + { + "cik": 806279, + "symbol": "cvly", + "name": "codorus valley bancorp inc" + }, + { + "cik": 1164771, + "symbol": "ndmlf", + "name": "northern dynasty minerals ltd" + }, + { + "cik": 1636651, + "symbol": "ovid", + "name": "ovid therapeutics inc" + }, + { + "cik": 1783407, + "symbol": "lizi", + "name": "lizhi inc" + }, + { + "cik": 702513, + "symbol": "boch", + "name": "bank of commerce holdings" + }, + { + "cik": 1157647, + "symbol": "wneb", + "name": "western new england bancorp inc" + }, + { + "cik": 1263762, + "symbol": "slct", + "name": "select bancorp inc" + }, + { + "cik": 1199004, + "symbol": "fmn", + "name": "federated hermes premier municipal income fund" + }, + { + "cik": 1425292, + "symbol": "uan", + "name": "cvr partners lp" + }, + { + "cik": 1679033, + "symbol": "jpt", + "name": "nuveen preferred & income 2022 term fund" + }, + { + "cik": 830122, + "symbol": "pico", + "name": "pico holdings inc new" + }, + { + "cik": 794929, + "symbol": "ctvz", + "name": "cinderella target value zones inc" + }, + { + "cik": 860489, + "symbol": "cee", + "name": "central & eastern europe fund inc" + }, + { + "cik": 1383057, + "symbol": "dbp", + "name": "invesco db precious metals fund" + }, + { + "cik": 1785592, + "symbol": "mcmjw", + "name": "merida merger corp i" + }, + { + "cik": 1325879, + "symbol": "aveo", + "name": "aveo pharmaceuticals inc" + }, + { + "cik": 834285, + "symbol": "frbk", + "name": "republic first bancorp inc" + }, + { + "cik": 1570937, + "symbol": "atao", + "name": "altair international corp" + }, + { + "cik": 1137883, + "symbol": "bcli", + "name": "brainstorm cell therapeutics inc" + }, + { + "cik": 1623360, + "symbol": "mrge", + "name": "mirage energy corp" + }, + { + "cik": 7039, + "symbol": "trec", + "name": "trecora resources" + }, + { + "cik": 1318885, + "symbol": "dsx", + "name": "diana shipping inc" + }, + { + "cik": 1712641, + "symbol": "bfra", + "name": "biofrontera ag" + }, + { + "cik": 1485003, + "symbol": "sesn", + "name": "sesen bio inc" + }, + { + "cik": 1602813, + "symbol": "frtg", + "name": "frontera group inc" + }, + { + "cik": 318673, + "symbol": "snfca", + "name": "security national financial corp" + }, + { + "cik": 1035354, + "symbol": "elox", + "name": "eloxx pharmaceuticals inc" + }, + { + "cik": 830487, + "symbol": "mhf", + "name": "western asset municipal high income fund inc" + }, + { + "cik": 106532, + "symbol": "weys", + "name": "weyco group inc" + }, + { + "cik": 1509397, + "symbol": "lomlf", + "name": "lion one metals ltd" + }, + { + "cik": 831609, + "symbol": "cxxif", + "name": "c21 investments inc" + }, + { + "cik": 1517498, + "symbol": "ewlu", + "name": "merion inc" + }, + { + "cik": 77159, + "symbol": "pvac", + "name": "penn virginia corp" + }, + { + "cik": 9521, + "symbol": "bcv", + "name": "bancroft fund ltd" + }, + { + "cik": 1382230, + "symbol": "essa", + "name": "essa bancorp inc" + }, + { + "cik": 1332943, + "symbol": "iga", + "name": "voya global advantage & premium opportunity fund" + }, + { + "cik": 842517, + "symbol": "isba", + "name": "isabella bank corp" + }, + { + "cik": 1594204, + "symbol": "rbtk", + "name": "zhen ding resources inc" + }, + { + "cik": 788920, + "symbol": "pdex", + "name": "pro dex inc" + }, + { + "cik": 1571776, + "symbol": "chmi", + "name": "cherry hill mortgage investment corp" + }, + { + "cik": 1556727, + "symbol": "fnwb", + "name": "first northwest bancorp" + }, + { + "cik": 763563, + "symbol": "chmg", + "name": "chemung financial corp" + }, + { + "cik": 1575434, + "symbol": "very", + "name": "vericity inc" + }, + { + "cik": 1759774, + "symbol": "pstl", + "name": "postal realty trust inc" + }, + { + "cik": 1712189, + "symbol": "thwww", + "name": "target hospitality corp" + }, + { + "cik": 318306, + "symbol": "abeo", + "name": "abeona therapeutics inc" + }, + { + "cik": 1099941, + "symbol": "mvc", + "name": "mvc capital inc" + }, + { + "cik": 1819794, + "symbol": "htoow", + "name": "fusion fuel green plc" + }, + { + "cik": 1527613, + "symbol": "nuze", + "name": "nuzee inc" + }, + { + "cik": 1720025, + "symbol": "algr", + "name": "allegro merger corp" + }, + { + "cik": 1423869, + "symbol": "pcb", + "name": "pcb bancorp" + }, + { + "cik": 1583648, + "symbol": "pirs", + "name": "pieris pharmaceuticals inc" + }, + { + "cik": 1213809, + "symbol": "dyai", + "name": "dyadic international inc" + }, + { + "cik": 1492915, + "symbol": "stnd", + "name": "standard avb financial corp" + }, + { + "cik": 1166663, + "symbol": "tnp", + "name": "tsakos energy navigation ltd" + }, + { + "cik": 1772177, + "symbol": "krus", + "name": "kura sushi usa inc" + }, + { + "cik": 1671584, + "symbol": "apvo", + "name": "aptevo therapeutics inc" + }, + { + "cik": 1649752, + "symbol": "nmgrf", + "name": "nouveau monde mining enterprises inc" + }, + { + "cik": 1678746, + "symbol": "bomh", + "name": "boomer holdings inc" + }, + { + "cik": 1656053, + "symbol": "taqr", + "name": "traqer corp" + }, + { + "cik": 1574085, + "symbol": "bhr", + "name": "braemar hotels & resorts inc" + }, + { + "cik": 1521951, + "symbol": "fbiz", + "name": "first business financial services inc" + }, + { + "cik": 1171838, + "symbol": "sund", + "name": "sundance strategies inc" + }, + { + "cik": 1478102, + "symbol": "dmo", + "name": "western asset mortgage opportunity fund inc" + }, + { + "cik": 319654, + "symbol": "pbt", + "name": "permian basin royalty trust" + }, + { + "cik": 1401040, + "symbol": "dmac", + "name": "diamedica therapeutics inc" + }, + { + "cik": 1083743, + "symbol": "flux", + "name": "flux power holdings inc" + }, + { + "cik": 1557265, + "symbol": "prlvx", + "name": "sharespost 100 fund" + }, + { + "cik": 1412707, + "symbol": "levlp", + "name": "level one bancorp inc" + }, + { + "cik": 1323648, + "symbol": "esxb", + "name": "community bankers trust corp" + }, + { + "cik": 1484565, + "symbol": "slno", + "name": "soleno therapeutics inc" + }, + { + "cik": 1769256, + "symbol": "qk", + "name": "q&k international group ltd" + }, + { + "cik": 1072725, + "symbol": "gdrzf", + "name": "gold reserve inc" + }, + { + "cik": 1365038, + "symbol": "leaf", + "name": "leaf group ltd" + }, + { + "cik": 352825, + "symbol": "fstr", + "name": "foster l b co" + }, + { + "cik": 855874, + "symbol": "tcfc", + "name": "community financial corp md" + }, + { + "cik": 88790, + "symbol": "iin", + "name": "intricon corp" + }, + { + "cik": 1327607, + "symbol": "myfw", + "name": "first western financial inc" + }, + { + "cik": 845606, + "symbol": "cxe", + "name": "mfs high income municipal trust" + }, + { + "cik": 1437424, + "symbol": "poetf", + "name": "poet technologies inc" + }, + { + "cik": 1820727, + "symbol": "mudsu", + "name": "mudrick capital acquisition corp ii" + }, + { + "cik": 1621832, + "symbol": "aqms", + "name": "aqua metals inc" + }, + { + "cik": 1274737, + "symbol": "xgn", + "name": "exagen inc" + }, + { + "cik": 1560672, + "symbol": "earn", + "name": "ellington residential mortgage reit" + }, + { + "cik": 818850, + "symbol": "nny", + "name": "nuveen new york municipal value fund inc" + }, + { + "cik": 750574, + "symbol": "aubn", + "name": "auburn national bancorporation inc" + }, + { + "cik": 862651, + "symbol": "invu", + "name": "investview inc" + }, + { + "cik": 31107, + "symbol": "eml", + "name": "eastern co" + }, + { + "cik": 1738758, + "symbol": "gsmgw", + "name": "glory star new media group holdings ltd" + }, + { + "cik": 1093672, + "symbol": "pebk", + "name": "peoples bancorp of north carolina inc" + }, + { + "cik": 861838, + "symbol": "idra", + "name": "idera pharmaceuticals inc" + }, + { + "cik": 1388320, + "symbol": "atnww", + "name": "actinium pharmaceuticals inc" + }, + { + "cik": 1537917, + "symbol": "tyme", + "name": "tyme technologies inc" + }, + { + "cik": 75398, + "symbol": "pai", + "name": "western asset investment grade income fund inc" + }, + { + "cik": 1673481, + "symbol": "tdacw", + "name": "trident acquisitions corp" + }, + { + "cik": 1641489, + "symbol": "vtvt", + "name": "vtv therapeutics inc" + }, + { + "cik": 1402829, + "symbol": "orn", + "name": "orion group holdings inc" + }, + { + "cik": 898770, + "symbol": "smed", + "name": "sharps compliance corp" + }, + { + "cik": 759828, + "symbol": "jhi", + "name": "john hancock investors trust" + }, + { + "cik": 1708688, + "symbol": "ifrx", + "name": "inflarx nv" + }, + { + "cik": 1644903, + "symbol": "ycbd", + "name": "cbdmd inc" + }, + { + "cik": 928054, + "symbol": "ftk", + "name": "flotek industries inc cn" + }, + { + "cik": 1823882, + "symbol": "nba", + "name": "new beginnings acquisition corp" + }, + { + "cik": 1754824, + "symbol": "samaw", + "name": "schultze special purpose acquisition corp" + }, + { + "cik": 1040161, + "symbol": "pxlw", + "name": "pixelworks inc" + }, + { + "cik": 1615063, + "symbol": "inse", + "name": "inspired entertainment inc" + }, + { + "cik": 1796303, + "symbol": "rochu", + "name": "roth ch acquisition i co" + }, + { + "cik": 1531031, + "symbol": "esq", + "name": "esquire financial holdings inc" + }, + { + "cik": 1569083, + "symbol": "cqcq", + "name": "makingorg inc" + }, + { + "cik": 1272842, + "symbol": "airg", + "name": "airgain inc" + }, + { + "cik": 811922, + "symbol": "mgf", + "name": "mfs government markets income trust" + }, + { + "cik": 1437925, + "symbol": "gmgid", + "name": "golden matrix group inc" + }, + { + "cik": 895658, + "symbol": "vmm", + "name": "delaware investments minnesota municipal income fund ii inc" + }, + { + "cik": 1010134, + "symbol": "ictsf", + "name": "icts international n v" + }, + { + "cik": 1501078, + "symbol": "ofed", + "name": "oconee federal financial corp" + }, + { + "cik": 1594686, + "symbol": "wpg", + "name": "washington prime group inc" + }, + { + "cik": 1259429, + "symbol": "oxsq", + "name": "oxford square capital corp" + }, + { + "cik": 1501072, + "symbol": "riv", + "name": "rivernorth opportunities fund inc" + }, + { + "cik": 1310114, + "symbol": "srev", + "name": "servicesource international inc" + }, + { + "cik": 1797099, + "symbol": "ptk", + "name": "ptk acquisition corp" + }, + { + "cik": 842518, + "symbol": "evbn", + "name": "evans bancorp inc" + }, + { + "cik": 771856, + "symbol": "csbr", + "name": "champions oncology inc" + }, + { + "cik": 1096950, + "symbol": "mdtr", + "name": "advanced container technologies inc" + }, + { + "cik": 1478069, + "symbol": "cfrx", + "name": "contrafect corp" + }, + { + "cik": 1604950, + "symbol": "scph", + "name": "scpharmaceuticals inc" + }, + { + "cik": 1016838, + "symbol": "rdcm", + "name": "radcom ltd" + }, + { + "cik": 1682639, + "symbol": "eyen", + "name": "eyenovia inc" + }, + { + "cik": 1478454, + "symbol": "ebmt", + "name": "eagle bancorp montana inc" + }, + { + "cik": 1431567, + "symbol": "ovly", + "name": "oak valley bancorp" + }, + { + "cik": 1041934, + "symbol": "edap", + "name": "edap tms sa" + }, + { + "cik": 1035976, + "symbol": "fncb", + "name": "fncb bancorp inc" + }, + { + "cik": 1598655, + "symbol": "glop", + "name": "gaslog partners lp" + }, + { + "cik": 1505732, + "symbol": "bwfg", + "name": "bankwell financial group inc" + }, + { + "cik": 1797336, + "symbol": "ayla", + "name": "ayala pharmaceuticals inc" + }, + { + "cik": 948320, + "symbol": "cvlbd", + "name": "conversion labs inc" + }, + { + "cik": 917470, + "symbol": "zeus", + "name": "olympic steel inc" + }, + { + "cik": 893847, + "symbol": "hwbk", + "name": "hawthorn bancshares inc" + }, + { + "cik": 1602706, + "symbol": "lngb", + "name": "kaopu group inc" + }, + { + "cik": 1796129, + "symbol": "lsacu", + "name": "vincera pharma inc" + }, + { + "cik": 1721741, + "symbol": "lazy", + "name": "lazydays holdings inc" + }, + { + "cik": 716314, + "symbol": "ghm", + "name": "graham corp" + }, + { + "cik": 1124105, + "symbol": "cbio", + "name": "catalyst biosciences inc" + }, + { + "cik": 1506184, + "symbol": "immp", + "name": "immutep ltd" + }, + { + "cik": 1470205, + "symbol": "icbk", + "name": "county bancorp inc" + }, + { + "cik": 1371489, + "symbol": "iii", + "name": "information services group inc" + }, + { + "cik": 1435508, + "symbol": "fsfg", + "name": "first savings financial group inc" + }, + { + "cik": 1596812, + "symbol": "orpn", + "name": "enlivex therapeutics ltd" + }, + { + "cik": 1500242, + "symbol": "ubia", + "name": "ubi blockchain internet ltd-de" + }, + { + "cik": 1519505, + "symbol": "hie", + "name": "miller howard high income equity fund" + }, + { + "cik": 894351, + "symbol": "mnp", + "name": "western asset municipal partners fund inc" + }, + { + "cik": 1392326, + "symbol": "cplp", + "name": "capital product partners lp" + }, + { + "cik": 1824119, + "symbol": "jyac", + "name": "jiya acquisition corp" + }, + { + "cik": 903651, + "symbol": "inod", + "name": "innodata inc" + }, + { + "cik": 1512228, + "symbol": "niobf", + "name": "niocorp developments ltd" + }, + { + "cik": 1260968, + "symbol": "mrln", + "name": "marlin business services corp" + }, + { + "cik": 1101396, + "symbol": "dla", + "name": "delta apparel inc" + }, + { + "cik": 1711754, + "symbol": "inmb", + "name": "inmune bio inc" + }, + { + "cik": 1003201, + "symbol": "mmac", + "name": "mma capital holdings inc" + }, + { + "cik": 1289868, + "symbol": "mcn", + "name": "madison covered call & equity strategy fund" + }, + { + "cik": 1132571, + "symbol": "fuaif", + "name": "funai electric co ltd" + }, + { + "cik": 1095315, + "symbol": "pfsw", + "name": "pfsweb inc" + }, + { + "cik": 1622996, + "symbol": "acbm", + "name": "acro biomedical co ltd" + }, + { + "cik": 854800, + "symbol": "mict", + "name": "mict inc" + }, + { + "cik": 1133416, + "symbol": "galt", + "name": "galectin therapeutics inc" + }, + { + "cik": 808326, + "symbol": "emkr", + "name": "emcore corp" + }, + { + "cik": 1108320, + "symbol": "smtx", + "name": "smtc corp" + }, + { + "cik": 1496292, + "symbol": "ihd", + "name": "voya emerging markets high dividend equity fund" + }, + { + "cik": 767405, + "symbol": "sbfg", + "name": "sb financial group inc" + }, + { + "cik": 849146, + "symbol": "lfvn", + "name": "lifevantage corp" + }, + { + "cik": 1667489, + "symbol": "lsyn", + "name": "liberated syndication inc" + }, + { + "cik": 1532158, + "symbol": "rebl", + "name": "rebel group inc" + }, + { + "cik": 29669, + "symbol": "rrd", + "name": "rr donnelley & sons co" + }, + { + "cik": 1059213, + "symbol": "dni", + "name": "dividend & income fund" + }, + { + "cik": 1635881, + "symbol": "extn", + "name": "exterran corp" + }, + { + "cik": 1001115, + "symbol": "geos", + "name": "geospace technologies corp" + }, + { + "cik": 1622148, + "symbol": "hglb", + "name": "highland global allocation fund" + }, + { + "cik": 1780262, + "symbol": "nbacw", + "name": "newborn acquisition corp" + }, + { + "cik": 31667, + "symbol": "educ", + "name": "educational development corp" + }, + { + "cik": 1496749, + "symbol": "heq", + "name": "john hancock hedged equity & income fund" + }, + { + "cik": 1514490, + "symbol": "rgt", + "name": "royce global value trust inc" + }, + { + "cik": 1335112, + "symbol": "weyl", + "name": "logiq inc" + }, + { + "cik": 1651094, + "symbol": "elvt", + "name": "elevate credit inc" + }, + { + "cik": 1113148, + "symbol": "infi", + "name": "infinity pharmaceuticals inc" + }, + { + "cik": 1570562, + "symbol": "eols", + "name": "evolus inc" + }, + { + "cik": 836147, + "symbol": "mbcn", + "name": "middlefield banc corp" + }, + { + "cik": 1676852, + "symbol": "omws", + "name": "omnia wellness inc" + }, + { + "cik": 1509745, + "symbol": "lptx", + "name": "leap therapeutics inc" + }, + { + "cik": 1137392, + "symbol": "bbf", + "name": "blackrock municipal income investment trust" + }, + { + "cik": 1752036, + "symbol": "calb", + "name": "california bancorp" + }, + { + "cik": 1746967, + "symbol": "rmi", + "name": "rivernorth opportunistic municipal income fund inc" + }, + { + "cik": 36506, + "symbol": "mfnc", + "name": "mackinac financial corp mi" + }, + { + "cik": 711669, + "symbol": "cban", + "name": "colony bankcorp inc" + }, + { + "cik": 1084991, + "symbol": "ngs", + "name": "natural gas services group inc" + }, + { + "cik": 1821318, + "symbol": "otraw", + "name": "otr acquisition corp" + }, + { + "cik": 65596, + "symbol": "sieb", + "name": "siebert financial corp" + }, + { + "cik": 1501103, + "symbol": "edf", + "name": "stone harbor emerging markets income fund" + }, + { + "cik": 1509223, + "symbol": "renn", + "name": "renren inc" + }, + { + "cik": 1472072, + "symbol": "ccm", + "name": "concord medical services holdings ltd" + }, + { + "cik": 1530766, + "symbol": "bsgm", + "name": "biosig technologies inc" + }, + { + "cik": 1372807, + "symbol": "ptmn", + "name": "portman ridge finance corp" + }, + { + "cik": 886136, + "symbol": "sga", + "name": "saga communications inc" + }, + { + "cik": 1739174, + "symbol": "phge", + "name": "biomx inc" + }, + { + "cik": 897419, + "symbol": "nmt", + "name": "nuveen massachusetts quality municipal income fund" + }, + { + "cik": 1490286, + "symbol": "ntg", + "name": "tortoise midstream energy fund inc" + }, + { + "cik": 716634, + "symbol": "rdib", + "name": "reading international inc" + }, + { + "cik": 1114927, + "symbol": "fnrn", + "name": "first northern community bancorp" + }, + { + "cik": 1328143, + "symbol": "adms", + "name": "adamas pharmaceuticals inc" + }, + { + "cik": 1474903, + "symbol": "bgsf", + "name": "bg staffing inc" + }, + { + "cik": 1527728, + "symbol": "enob", + "name": "enochian biosciences inc" + }, + { + "cik": 855683, + "symbol": "mlss", + "name": "milestone scientific inc" + }, + { + "cik": 1578987, + "symbol": "banx", + "name": "stonecastle financial corp" + }, + { + "cik": 1681348, + "symbol": "vvpr", + "name": "vivopower international plc" + }, + { + "cik": 900391, + "symbol": "ntz", + "name": "natuzzi s p a" + }, + { + "cik": 1360214, + "symbol": "hrow", + "name": "harrow health inc" + }, + { + "cik": 1410428, + "symbol": "xspa", + "name": "xpresspa group inc" + }, + { + "cik": 1637558, + "symbol": "ccr", + "name": "consol coal resources lp" + }, + { + "cik": 1509253, + "symbol": "jsd", + "name": "nuveen short duration credit opportunities fund" + }, + { + "cik": 1574565, + "symbol": "evgn", + "name": "evogene ltd" + }, + { + "cik": 1305323, + "symbol": "zvo", + "name": "zovio inc" + }, + { + "cik": 1704760, + "symbol": "avctw", + "name": "american virtual cloud technologies inc" + }, + { + "cik": 1302624, + "symbol": "fam", + "name": "first trust aberdeen global opportunity income fund" + }, + { + "cik": 1419275, + "symbol": "grbx", + "name": "greenbox pos" + }, + { + "cik": 1636050, + "symbol": "axgt", + "name": "sio gene therapies inc" + }, + { + "cik": 1528811, + "symbol": "vgi", + "name": "virtus global multi-sector income fund" + }, + { + "cik": 890119, + "symbol": "nim", + "name": "nuveen select maturities municipal fund" + }, + { + "cik": 1177219, + "symbol": "nkg", + "name": "nuveen georgia quality municipal income fund" + }, + { + "cik": 1442999, + "symbol": "abti", + "name": "alterola biotech inc" + }, + { + "cik": 913341, + "symbol": "cffi", + "name": "c & f financial corp" + }, + { + "cik": 932781, + "symbol": "fcco", + "name": "first community corp sc" + }, + { + "cik": 1734520, + "symbol": "alya", + "name": "alithya group inc" + }, + { + "cik": 1579910, + "symbol": "resn", + "name": "resonant inc" + }, + { + "cik": 1713832, + "symbol": "hyre", + "name": "hyrecar inc" + }, + { + "cik": 889971, + "symbol": "lpth", + "name": "lightpath technologies inc" + }, + { + "cik": 1282648, + "symbol": "batl", + "name": "battalion oil corp" + }, + { + "cik": 1476963, + "symbol": "htbx", + "name": "heat biologics inc" + }, + { + "cik": 1327273, + "symbol": "lyra", + "name": "lyra therapeutics inc" + }, + { + "cik": 723646, + "symbol": "fraf", + "name": "franklin financial services corp pa" + }, + { + "cik": 350737, + "symbol": "obci", + "name": "ocean bio chem inc" + }, + { + "cik": 1457612, + "symbol": "gnca", + "name": "genocea biosciences inc" + }, + { + "cik": 1372299, + "symbol": "ocgn", + "name": "ocugen inc" + }, + { + "cik": 868278, + "symbol": "prph", + "name": "prophase labs inc" + }, + { + "cik": 882300, + "symbol": "sbi", + "name": "western asset intermediate muni fund inc" + }, + { + "cik": 1819576, + "symbol": "lqda", + "name": "liquidia corp" + }, + { + "cik": 1036044, + "symbol": "inve", + "name": "identiv inc" + }, + { + "cik": 911216, + "symbol": "ptn", + "name": "palatin technologies inc" + }, + { + "cik": 1232582, + "symbol": "aht", + "name": "ashford hospitality trust inc" + }, + { + "cik": 1351172, + "symbol": "lmnl", + "name": "liminal biosciences inc" + }, + { + "cik": 1265708, + "symbol": "jta", + "name": "nuveen tax advantaged total return strategy fund" + }, + { + "cik": 1303942, + "symbol": "bfin", + "name": "bankfinancial corp" + }, + { + "cik": 319655, + "symbol": "sjt", + "name": "san juan basin royalty trust" + }, + { + "cik": 1362481, + "symbol": "agd", + "name": "aberdeen global dynamic dividend fund" + }, + { + "cik": 943861, + "symbol": "gdp", + "name": "goodrich petroleum corp" + }, + { + "cik": 1285650, + "symbol": "cgo", + "name": "calamos global total return fund" + }, + { + "cik": 1181026, + "symbol": "baf", + "name": "blackrock municipal income investment quality trust" + }, + { + "cik": 1114925, + "symbol": "ltrx", + "name": "lantronix inc" + }, + { + "cik": 1708527, + "symbol": "azyo", + "name": "aziyo biologics inc" + }, + { + "cik": 1075736, + "symbol": "cxdo", + "name": "crexendo inc" + }, + { + "cik": 1057791, + "symbol": "rbycf", + "name": "rubicon minerals corp" + }, + { + "cik": 1750735, + "symbol": "mrbk", + "name": "meridian corp" + }, + { + "cik": 1140102, + "symbol": "hqi", + "name": "hirequest inc" + }, + { + "cik": 919864, + "symbol": "nwin", + "name": "northwest indiana bancorp" + }, + { + "cik": 1178253, + "symbol": "scyx", + "name": "scynexis inc" + }, + { + "cik": 1746129, + "symbol": "bsvn", + "name": "bank7 corp" + }, + { + "cik": 1209028, + "symbol": "aiw", + "name": "arlington asset investment corp" + }, + { + "cik": 1582982, + "symbol": "mtbcp", + "name": "mtbc inc" + }, + { + "cik": 1575659, + "symbol": "rtsl", + "name": "rapid therapeutic science laboratories inc" + }, + { + "cik": 831655, + "symbol": "mpv", + "name": "barings participation investors" + }, + { + "cik": 761648, + "symbol": "cdr", + "name": "cedar realty trust inc" + }, + { + "cik": 846596, + "symbol": "ksm", + "name": "dws strategic municipal income trust" + }, + { + "cik": 701719, + "symbol": "ela", + "name": "envela corp" + }, + { + "cik": 86115, + "symbol": "sfe", + "name": "safeguard scientifics inc" + }, + { + "cik": 1656634, + "symbol": "grts", + "name": "gritstone oncology inc" + }, + { + "cik": 866095, + "symbol": "jeq", + "name": "aberdeen japan equity fund inc" + }, + { + "cik": 1692376, + "symbol": "vel", + "name": "velocity financial inc" + }, + { + "cik": 879535, + "symbol": "dtf", + "name": "dtf tax-free income inc" + }, + { + "cik": 1606909, + "symbol": "panl", + "name": "pangaea logistics solutions ltd" + }, + { + "cik": 1296205, + "symbol": "zagg", + "name": "zagg inc" + }, + { + "cik": 1499832, + "symbol": "tsq", + "name": "townsquare media inc" + }, + { + "cik": 1590418, + "symbol": "fcuv", + "name": "focus universal inc" + }, + { + "cik": 1514281, + "symbol": "mitt", + "name": "ag mortgage investment trust inc" + }, + { + "cik": 908187, + "symbol": "pcm", + "name": "pcm fund inc" + }, + { + "cik": 1378701, + "symbol": "gdl", + "name": "gdl fund" + }, + { + "cik": 1162112, + "symbol": "rnet", + "name": "rignet inc" + }, + { + "cik": 1782037, + "symbol": "ygmz", + "name": "mingzhu logistics holdings ltd" + }, + { + "cik": 809844, + "symbol": "cmu", + "name": "mfs high yield municipal trust" + }, + { + "cik": 1398453, + "symbol": "xin", + "name": "xinyuan real estate co ltd" + }, + { + "cik": 1367859, + "symbol": "czwi", + "name": "citizens community bancorp inc" + }, + { + "cik": 1057083, + "symbol": "pcti", + "name": "pc tel inc" + }, + { + "cik": 840551, + "symbol": "tixxf", + "name": "titan medical inc" + }, + { + "cik": 1595097, + "symbol": "crbp", + "name": "corbus pharmaceuticals holdings inc" + }, + { + "cik": 1592016, + "symbol": "agfs", + "name": "agrofresh solutions inc" + }, + { + "cik": 1550603, + "symbol": "mlvf", + "name": "malvern bancorp inc" + }, + { + "cik": 1394319, + "symbol": "tcon", + "name": "tracon pharmaceuticals inc" + }, + { + "cik": 1693577, + "symbol": "mnsbp", + "name": "mainstreet bancshares inc" + }, + { + "cik": 1388126, + "symbol": "hnw", + "name": "pioneer diversified high income trust" + }, + { + "cik": 1168455, + "symbol": "plbc", + "name": "plumas bancorp" + }, + { + "cik": 1787414, + "symbol": "bsbk", + "name": "bogota financial corp" + }, + { + "cik": 1705338, + "symbol": "lov", + "name": "spark networks se" + }, + { + "cik": 1562151, + "symbol": "cwgl", + "name": "crimson wine group ltd" + }, + { + "cik": 1824884, + "symbol": "adocw", + "name": "edoc acquisition corp" + }, + { + "cik": 1000209, + "symbol": "mfinl", + "name": "medallion financial corp" + }, + { + "cik": 1685237, + "symbol": "tmrr", + "name": "temir corp" + }, + { + "cik": 832090, + "symbol": "dbcp", + "name": "partners bancorp" + }, + { + "cik": 1273441, + "symbol": "gte", + "name": "gran tierra energy inc" + }, + { + "cik": 1445942, + "symbol": "tmrc", + "name": "texas mineral resources corp" + }, + { + "cik": 1434754, + "symbol": "sb", + "name": "safe bulkers inc" + }, + { + "cik": 1687187, + "symbol": "metc", + "name": "ramaco resources inc" + }, + { + "cik": 891188, + "symbol": "mft", + "name": "blackrock muniyield investment quality fund" + }, + { + "cik": 1557376, + "symbol": "bpsr", + "name": "organicell regenerative medicine inc" + }, + { + "cik": 779336, + "symbol": "iaf", + "name": "aberdeen australia equity fund inc" + }, + { + "cik": 1332551, + "symbol": "xan", + "name": "exantas capital corp" + }, + { + "cik": 1746466, + "symbol": "eq", + "name": "equillium inc" + }, + { + "cik": 920465, + "symbol": "ljpc", + "name": "la jolla pharmaceutical co" + }, + { + "cik": 1376227, + "symbol": "ung", + "name": "united states natural gas fund lp" + }, + { + "cik": 1109546, + "symbol": "pmbc", + "name": "pacific mercantile bancorp" + }, + { + "cik": 1375205, + "symbol": "urg", + "name": "ur-energy inc" + }, + { + "cik": 1034594, + "symbol": "bayk", + "name": "bay banks of virginia inc" + }, + { + "cik": 1776067, + "symbol": "ocg", + "name": "oriental culture holding ltd" + }, + { + "cik": 1556266, + "symbol": "glg", + "name": "td holdings inc" + }, + { + "cik": 1170311, + "symbol": "pni", + "name": "pimco new york municipal income fund ii" + }, + { + "cik": 1813783, + "symbol": "vmar", + "name": "vision marine technologies inc" + }, + { + "cik": 1509261, + "symbol": "rzltd", + "name": "rezolute inc" + }, + { + "cik": 816332, + "symbol": "lybc", + "name": "lyons bancorp inc" + }, + { + "cik": 1539190, + "symbol": "sppp", + "name": "sprott physical platinum & palladium trust" + }, + { + "cik": 1173643, + "symbol": "trx", + "name": "tanzanian gold corp" + }, + { + "cik": 897802, + "symbol": "spe", + "name": "special opportunities fund inc" + }, + { + "cik": 845611, + "symbol": "gcv", + "name": "gabelli convertible & income securities fund inc" + }, + { + "cik": 1294404, + "symbol": "sfun", + "name": "fang holdings ltd" + }, + { + "cik": 1487839, + "symbol": "lkco", + "name": "luokung technology corp" + }, + { + "cik": 1715768, + "symbol": "tgan", + "name": "transphorm inc" + }, + { + "cik": 2178, + "symbol": "ae", + "name": "adams resources & energy inc" + }, + { + "cik": 1431922, + "symbol": "tsrmf", + "name": "treasury metals inc" + }, + { + "cik": 1273636, + "symbol": "agtc", + "name": "applied genetic technologies corp" + }, + { + "cik": 1279014, + "symbol": "erh", + "name": "wells fargo utilities & high income fund" + }, + { + "cik": 842013, + "symbol": "cglo", + "name": "coro global inc" + }, + { + "cik": 1573698, + "symbol": "eff", + "name": "eaton vance floating-rate income plus fund" + }, + { + "cik": 1137547, + "symbol": "ubfo", + "name": "united security bancshares" + }, + { + "cik": 1075706, + "symbol": "cizn", + "name": "citizens holding co ms" + }, + { + "cik": 808219, + "symbol": "mhgup", + "name": "meritage hospitality group inc" + }, + { + "cik": 1547341, + "symbol": "ctr", + "name": "clearbridge mlp & midstream total return fund inc" + }, + { + "cik": 1763950, + "symbol": "ltrn", + "name": "lantern pharma inc" + }, + { + "cik": 1627452, + "symbol": "mepw", + "name": "me renewable power corp" + }, + { + "cik": 1070680, + "symbol": "cfbk", + "name": "cf bankshares inc" + }, + { + "cik": 785557, + "symbol": "dlhc", + "name": "dlh holdings corp" + }, + { + "cik": 1754664, + "symbol": "aleaf", + "name": "aleafia health inc" + }, + { + "cik": 1006281, + "symbol": "plx", + "name": "protalix biotherapeutics inc" + }, + { + "cik": 884144, + "symbol": "asur", + "name": "asure software inc" + }, + { + "cik": 844538, + "symbol": "ntox", + "name": "notox technologies corp" + }, + { + "cik": 1585855, + "symbol": "ggz", + "name": "gabelli global small & mid cap value trust" + }, + { + "cik": 849145, + "symbol": "hgbl", + "name": "heritage global inc" + }, + { + "cik": 1823465, + "symbol": "fvam", + "name": "5:01 acquisition corp" + }, + { + "cik": 813623, + "symbol": "swz", + "name": "swiss helvetia fund inc" + }, + { + "cik": 706863, + "symbol": "unb", + "name": "union bankshares inc" + }, + { + "cik": 1723580, + "symbol": "bfiiw", + "name": "burgerfi international inc" + }, + { + "cik": 1497253, + "symbol": "onvo", + "name": "organovo holdings inc" + }, + { + "cik": 1701114, + "symbol": "aprn", + "name": "blue apron holdings inc" + }, + { + "cik": 1046995, + "symbol": "eman", + "name": "emagin corp" + }, + { + "cik": 1396167, + "symbol": "dex", + "name": "delaware enhanced global dividend & income fund" + }, + { + "cik": 1041368, + "symbol": "rvsb", + "name": "riverview bancorp inc" + }, + { + "cik": 1590496, + "symbol": "akom", + "name": "aerkomm inc" + }, + { + "cik": 1814067, + "symbol": "lxeh", + "name": "lixiang education holding co ltd" + }, + { + "cik": 1349436, + "symbol": "sd", + "name": "sandridge energy inc" + }, + { + "cik": 355019, + "symbol": "fonr", + "name": "fonar corp" + }, + { + "cik": 1482554, + "symbol": "hfus", + "name": "hartford great health corp" + }, + { + "cik": 1413119, + "symbol": "kblb", + "name": "kraig biocraft laboratories inc" + }, + { + "cik": 1460602, + "symbol": "orgs", + "name": "orgenesis inc" + }, + { + "cik": 1010470, + "symbol": "prov", + "name": "provident financial holdings inc" + }, + { + "cik": 1000232, + "symbol": "ktyb", + "name": "kentucky bancshares inc ky" + }, + { + "cik": 1725033, + "symbol": "xyf", + "name": "x financial" + }, + { + "cik": 894671, + "symbol": "ovbc", + "name": "ohio valley banc corp" + }, + { + "cik": 1533998, + "symbol": "drio", + "name": "dariohealth corp" + }, + { + "cik": 1637890, + "symbol": "cyad", + "name": "celyad oncology sa" + }, + { + "cik": 720154, + "symbol": "basi", + "name": "bioanalytical systems inc" + }, + { + "cik": 93205, + "symbol": "ltdh", + "name": "living 3d holdings inc" + }, + { + "cik": 836690, + "symbol": "issc", + "name": "innovative solutions & support inc" + }, + { + "cik": 1626971, + "symbol": "crvs", + "name": "corvus pharmaceuticals inc" + }, + { + "cik": 763907, + "symbol": "func", + "name": "first united corp md" + }, + { + "cik": 737875, + "symbol": "fkys", + "name": "first keystone corp" + }, + { + "cik": 1516899, + "symbol": "ytrof", + "name": "yatra online inc" + }, + { + "cik": 316253, + "symbol": "enz", + "name": "enzo biochem inc" + }, + { + "cik": 1401564, + "symbol": "ffnw", + "name": "first financial northwest inc" + }, + { + "cik": 783324, + "symbol": "vgz", + "name": "vista gold corp" + }, + { + "cik": 1667161, + "symbol": "rndb", + "name": "randolph bancorp inc" + }, + { + "cik": 1080319, + "symbol": "nwgi", + "name": "elys game technology corp" + }, + { + "cik": 49728, + "symbol": "iec", + "name": "iec electronics corp" + }, + { + "cik": 1578776, + "symbol": "pbip", + "name": "prudential bancorp inc" + }, + { + "cik": 1589420, + "symbol": "fpl", + "name": "first trust new opportunities mlp & energy fund" + }, + { + "cik": 896494, + "symbol": "mags", + "name": "magal security systems ltd" + }, + { + "cik": 839470, + "symbol": "wwr", + "name": "westwater resources inc" + }, + { + "cik": 1758736, + "symbol": "mkd", + "name": "molecular data inc" + }, + { + "cik": 1722010, + "symbol": "opbk", + "name": "op bancorp" + }, + { + "cik": 1644963, + "symbol": "atxi", + "name": "avenue therapeutics inc" + }, + { + "cik": 1427925, + "symbol": "acrx", + "name": "acelrx pharmaceuticals inc" + }, + { + "cik": 939930, + "symbol": "pyxsq", + "name": "pyxus international inc" + }, + { + "cik": 918580, + "symbol": "gpic", + "name": "gaming partners international corp" + }, + { + "cik": 1685316, + "symbol": "obsv", + "name": "obseva sa" + }, + { + "cik": 1598646, + "symbol": "nerv", + "name": "minerva neurosciences inc" + }, + { + "cik": 1141688, + "symbol": "lark", + "name": "landmark bancorp inc" + }, + { + "cik": 1604627, + "symbol": "kshb", + "name": "kushco holdings inc" + }, + { + "cik": 1518353, + "symbol": "nhvcf", + "name": "northern vertex mining corp" + }, + { + "cik": 1385818, + "symbol": "aytuz", + "name": "aytu bioscience inc" + }, + { + "cik": 1656501, + "symbol": "bwmyd", + "name": "borrowmoneycom inc" + }, + { + "cik": 1799850, + "symbol": "chaq", + "name": "chardan healthcare acquisition 2 corp" + }, + { + "cik": 750558, + "symbol": "qnbc", + "name": "qnb corp" + }, + { + "cik": 1092662, + "symbol": "cemi", + "name": "chembio diagnostics inc" + }, + { + "cik": 1779476, + "symbol": "krkr", + "name": "36kr holdings inc" + }, + { + "cik": 1603454, + "symbol": "celc", + "name": "celcuity inc" + }, + { + "cik": 1583682, + "symbol": "atbpd", + "name": "antibe therapeutics inc" + }, + { + "cik": 1755237, + "symbol": "cycn", + "name": "cyclerion therapeutics inc" + }, + { + "cik": 1318025, + "symbol": "pgp", + "name": "pimco global stocksplus & income fund" + }, + { + "cik": 1173313, + "symbol": "abvc", + "name": "american brivision (holding) corp" + }, + { + "cik": 846913, + "symbol": "ftek", + "name": "fuel tech inc" + }, + { + "cik": 1060219, + "symbol": "sal", + "name": "salisbury bancorp inc" + }, + { + "cik": 844965, + "symbol": "tti", + "name": "tetra technologies inc" + }, + { + "cik": 1605301, + "symbol": "cbfv", + "name": "cb financial services inc" + }, + { + "cik": 1195734, + "symbol": "pbpb", + "name": "potbelly corp" + }, + { + "cik": 1819113, + "symbol": "lsaq", + "name": "lifesci acquisition ii corp" + }, + { + "cik": 1464963, + "symbol": "tcrw", + "name": "first eagle alternative capital bdc inc" + }, + { + "cik": 1684144, + "symbol": "zom", + "name": "zomedica corp" + }, + { + "cik": 1762239, + "symbol": "kavl", + "name": "kaival brands innovations group inc" + }, + { + "cik": 1606163, + "symbol": "lmb", + "name": "limbach holdings inc" + }, + { + "cik": 1169245, + "symbol": "phas", + "name": "phasebio pharmaceuticals inc" + }, + { + "cik": 1593984, + "symbol": "mdwd", + "name": "mediwound ltd" + }, + { + "cik": 95552, + "symbol": "sup", + "name": "superior industries international inc" + }, + { + "cik": 1522767, + "symbol": "mrmd", + "name": "marimed inc" + }, + { + "cik": 6176, + "symbol": "ap", + "name": "ampco pittsburgh corp" + }, + { + "cik": 1165002, + "symbol": "whg", + "name": "westwood holdings group inc" + }, + { + "cik": 1500123, + "symbol": "inlb", + "name": "item 9 labs corp" + }, + { + "cik": 1757143, + "symbol": "aih", + "name": "aesthetic medical international holdings group ltd" + }, + { + "cik": 1413754, + "symbol": "mrzm", + "name": "marizyme inc" + }, + { + "cik": 1443575, + "symbol": "avbh", + "name": "avidbank holdings inc" + }, + { + "cik": 1472215, + "symbol": "jls", + "name": "nuveen mortgage & income fund ma" + }, + { + "cik": 1009759, + "symbol": "cpst", + "name": "capstone turbine corp" + }, + { + "cik": 1501697, + "symbol": "xfor", + "name": "x4 pharmaceuticals inc" + }, + { + "cik": 1515156, + "symbol": "ades", + "name": "advanced emissions solutions inc" + }, + { + "cik": 1302028, + "symbol": "mntx", + "name": "manitex international inc" + }, + { + "cik": 1026655, + "symbol": "cmt", + "name": "core molding technologies inc" + }, + { + "cik": 1707210, + "symbol": "nmci", + "name": "navios maritime containers lp" + }, + { + "cik": 1719714, + "symbol": "mreo", + "name": "mereo biopharma group plc" + }, + { + "cik": 1011509, + "symbol": "aumn", + "name": "golden minerals co" + }, + { + "cik": 1708261, + "symbol": "jemd", + "name": "nuveen emerging markets debt 2022 target term fund" + }, + { + "cik": 1176309, + "symbol": "ormp", + "name": "oramed pharmaceuticals inc" + }, + { + "cik": 1616543, + "symbol": "sens", + "name": "senseonics holdings inc" + }, + { + "cik": 1449794, + "symbol": "emyb", + "name": "embassy bancorp inc" + }, + { + "cik": 1411685, + "symbol": "vtgn", + "name": "vistagen therapeutics inc" + }, + { + "cik": 1133311, + "symbol": "tzoo", + "name": "travelzoo" + }, + { + "cik": 1437479, + "symbol": "enbp", + "name": "enb financial corp" + }, + { + "cik": 1072627, + "symbol": "kfs", + "name": "kingsway financial services inc" + }, + { + "cik": 316888, + "symbol": "asm", + "name": "avino silver & gold mines ltd" + }, + { + "cik": 1129928, + "symbol": "oncy", + "name": "oncolytics biotech inc" + }, + { + "cik": 1287808, + "symbol": "hil", + "name": "hill international inc" + }, + { + "cik": 1472012, + "symbol": "imnm", + "name": "immunome inc" + }, + { + "cik": 1744345, + "symbol": "tdryd", + "name": "red white & bloom brands inc" + }, + { + "cik": 1610682, + "symbol": "usdp", + "name": "usd partners lp" + }, + { + "cik": 1786117, + "symbol": "pine", + "name": "alpine income property trust inc" + }, + { + "cik": 1274792, + "symbol": "mack", + "name": "merrimack pharmaceuticals inc" + }, + { + "cik": 1385632, + "symbol": "iae", + "name": "voya asia pacific high dividend equity income fund" + }, + { + "cik": 1419806, + "symbol": "reemf", + "name": "rare element resources ltd" + }, + { + "cik": 880417, + "symbol": "csbb", + "name": "csb bancorp inc oh" + }, + { + "cik": 1138978, + "symbol": "nvos", + "name": "novo integrated sciences inc" + }, + { + "cik": 1412486, + "symbol": "cocp", + "name": "cocrystal pharma inc" + }, + { + "cik": 36840, + "symbol": "frevs", + "name": "first real estate investment trust of new jersey" + }, + { + "cik": 1415921, + "symbol": "nmm", + "name": "navios maritime partners lp" + }, + { + "cik": 1662684, + "symbol": "kulr", + "name": "kulr technology group inc" + }, + { + "cik": 1089094, + "symbol": "bsd", + "name": "blackrock strategic municipal trust" + }, + { + "cik": 1719406, + "symbol": "brpar", + "name": "big rock partners acquisition corp" + }, + { + "cik": 1004530, + "symbol": "mpvdf", + "name": "mountain province diamonds inc" + }, + { + "cik": 842717, + "symbol": "brbs", + "name": "blue ridge bankshares inc" + }, + { + "cik": 1602842, + "symbol": "mogo", + "name": "mogo inc" + }, + { + "cik": 1703079, + "symbol": "xflt", + "name": "xai octagon floating rate & alternative income term trust" + }, + { + "cik": 1617227, + "symbol": "jax", + "name": "j alexanders holdings inc" + }, + { + "cik": 1393883, + "symbol": "dhx", + "name": "dhi group inc" + }, + { + "cik": 1316644, + "symbol": "aero", + "name": "aerogrow international inc" + }, + { + "cik": 1412095, + "symbol": "sgoc", + "name": "sgoco group ltd" + }, + { + "cik": 1649096, + "symbol": "clpr", + "name": "clipper realty inc" + }, + { + "cik": 872912, + "symbol": "dcth", + "name": "delcath systems inc" + }, + { + "cik": 875657, + "symbol": "ulbi", + "name": "ultralife corp" + }, + { + "cik": 1734902, + "symbol": "wei", + "name": "weidai ltd" + }, + { + "cik": 830271, + "symbol": "nmi", + "name": "nuveen municipal income fund inc" + }, + { + "cik": 880641, + "symbol": "efsi", + "name": "eagle financial services inc" + }, + { + "cik": 1539029, + "symbol": "clsd", + "name": "clearside biomedical inc" + }, + { + "cik": 1638287, + "symbol": "nrbo", + "name": "neurobo pharmaceuticals inc" + }, + { + "cik": 1487918, + "symbol": "ofssi", + "name": "ofs capital corp" + }, + { + "cik": 1601280, + "symbol": "mdxl", + "name": "medixall group inc" + }, + { + "cik": 1621443, + "symbol": "zyne", + "name": "zynerba pharmaceuticals inc" + }, + { + "cik": 885732, + "symbol": "nxc", + "name": "nuveen california select tax free income portfolio" + }, + { + "cik": 1754323, + "symbol": "pbts", + "name": "powerbridge technologies co ltd" + }, + { + "cik": 1790625, + "symbol": "livkw", + "name": "liv capital acquisition corp" + }, + { + "cik": 891482, + "symbol": "fll", + "name": "full house resorts inc" + }, + { + "cik": 1438893, + "symbol": "gnt", + "name": "gamco natural resources gold & income trust" + }, + { + "cik": 1725872, + "symbol": "mfac", + "name": "megalith financial acquisition corp" + }, + { + "cik": 1517767, + "symbol": "vcif", + "name": "vertical capital income fund" + }, + { + "cik": 39020, + "symbol": "feim", + "name": "frequency electronics inc" + }, + { + "cik": 1513818, + "symbol": "arav", + "name": "aravive inc" + }, + { + "cik": 1390478, + "symbol": "sls", + "name": "sellas life sciences group inc" + }, + { + "cik": 1796514, + "symbol": "metxw", + "name": "meten edtechx education group ltd" + }, + { + "cik": 1602078, + "symbol": "nmrd", + "name": "nemaura medical inc" + }, + { + "cik": 1605780, + "symbol": "lovv", + "name": "love international group inc" + }, + { + "cik": 1455634, + "symbol": "smwpy", + "name": "connect group plc adr" + }, + { + "cik": 71557, + "symbol": "nuvr", + "name": "nuvera communications inc" + }, + { + "cik": 1477246, + "symbol": "sanw", + "name": "s&w seed co" + }, + { + "cik": 100378, + "symbol": "twin", + "name": "twin disc inc" + }, + { + "cik": 1093728, + "symbol": "pflc", + "name": "pacific financial corp" + }, + { + "cik": 784539, + "symbol": "eaco", + "name": "eaco corp" + }, + { + "cik": 1577437, + "symbol": "asc", + "name": "ardmore shipping corp" + }, + { + "cik": 1347652, + "symbol": "corr", + "name": "corenergy infrastructure trust inc" + }, + { + "cik": 1502377, + "symbol": "ctgo", + "name": "contango ore inc" + }, + { + "cik": 1524223, + "symbol": "mn", + "name": "manning & napier inc" + }, + { + "cik": 23111, + "symbol": "ctg", + "name": "computer task group inc" + }, + { + "cik": 1378140, + "symbol": "optt", + "name": "ocean power technologies inc" + }, + { + "cik": 1417663, + "symbol": "snwv", + "name": "sanuwave health inc" + }, + { + "cik": 1595527, + "symbol": "nyc", + "name": "new york city reit inc" + }, + { + "cik": 1676047, + "symbol": "ntrb", + "name": "nutriband inc" + }, + { + "cik": 1480999, + "symbol": "exd", + "name": "eaton vance tax-managed buy-write strategy fund" + }, + { + "cik": 1282957, + "symbol": "glu", + "name": "gabelli global utility & income trust" + }, + { + "cik": 1624326, + "symbol": "pavmz", + "name": "pavmed inc" + }, + { + "cik": 1640251, + "symbol": "wins", + "name": "wins finance holdings inc" + }, + { + "cik": 2098, + "symbol": "acu", + "name": "acme united corp" + }, + { + "cik": 814586, + "symbol": "lway", + "name": "lifeway foods inc" + }, + { + "cik": 892482, + "symbol": "qumu", + "name": "qumu corp" + }, + { + "cik": 1632081, + "symbol": "hwin", + "name": "hometown international inc" + }, + { + "cik": 1282631, + "symbol": "nlst", + "name": "netlist inc" + }, + { + "cik": 1074692, + "symbol": "cev", + "name": "eaton vance california municipal income trust" + }, + { + "cik": 1093082, + "symbol": "hbp", + "name": "huttig building products inc" + }, + { + "cik": 740971, + "symbol": "opof", + "name": "old point financial corp" + }, + { + "cik": 1017491, + "symbol": "seel", + "name": "seelos therapeutics inc" + }, + { + "cik": 1447380, + "symbol": "mfon", + "name": "mobivity holdings corp" + }, + { + "cik": 1751783, + "symbol": "rbkb", + "name": "rhinebeck bancorp inc" + }, + { + "cik": 1434524, + "symbol": "clir", + "name": "clearsign technologies corp" + }, + { + "cik": 1501862, + "symbol": "epgg", + "name": "empire global gaming inc" + }, + { + "cik": 1807166, + "symbol": "amst", + "name": "amesite inc" + }, + { + "cik": 894627, + "symbol": "egy", + "name": "vaalco energy inc de" + }, + { + "cik": 1452477, + "symbol": "rif", + "name": "rmr mortgage trust" + }, + { + "cik": 1358356, + "symbol": "lmst", + "name": "limestone bancorp inc" + }, + { + "cik": 1743340, + "symbol": "tc", + "name": "tuanche ltd" + }, + { + "cik": 50471, + "symbol": "pcyg", + "name": "park city group inc" + }, + { + "cik": 56868, + "symbol": "pnrg", + "name": "primeenergy resources corp" + }, + { + "cik": 889609, + "symbol": "cpss", + "name": "consumer portfolio services inc" + }, + { + "cik": 1163609, + "symbol": "sdsya", + "name": "south dakota soybean processors llc" + }, + { + "cik": 1506488, + "symbol": "szc", + "name": "cushing nextgen infrastructure income fund" + }, + { + "cik": 1498067, + "symbol": "tecr", + "name": "citrine global corp" + }, + { + "cik": 1535955, + "symbol": "lpcn", + "name": "lipocine inc" + }, + { + "cik": 1630212, + "symbol": "avco", + "name": "avalon globocare corp" + }, + { + "cik": 1041024, + "symbol": "rmti", + "name": "rockwell medical inc" + }, + { + "cik": 943033, + "symbol": "hsbi", + "name": "heritage southeast bancorporation inc" + }, + { + "cik": 728447, + "symbol": "evoa", + "name": "evo transportation & energy services inc" + }, + { + "cik": 793524, + "symbol": "refr", + "name": "research frontiers inc" + }, + { + "cik": 1610618, + "symbol": "cdtx", + "name": "cidara therapeutics inc" + }, + { + "cik": 1173204, + "symbol": "cidm", + "name": "cinedigm corp" + }, + { + "cik": 1467761, + "symbol": "zmtp", + "name": "zoom telephonics inc" + }, + { + "cik": 1399520, + "symbol": "stks", + "name": "one group hospitality inc" + }, + { + "cik": 875582, + "symbol": "ntic", + "name": "northern technologies international corp" + }, + { + "cik": 1041657, + "symbol": "uonek", + "name": "urban one inc" + }, + { + "cik": 1467154, + "symbol": "novn", + "name": "novan inc" + }, + { + "cik": 1527383, + "symbol": "bkgm", + "name": "bankguam holding co" + }, + { + "cik": 1337090, + "symbol": "spazf", + "name": "spanish mountain gold ltd" + }, + { + "cik": 1501958, + "symbol": "clad", + "name": "china liaoning dingxu ecological agriculture development inc" + }, + { + "cik": 1172631, + "symbol": "sunw", + "name": "sunworks inc" + }, + { + "cik": 1557340, + "symbol": "opti", + "name": "optec international inc" + }, + { + "cik": 946486, + "symbol": "wint", + "name": "windtree therapeutics inc de" + }, + { + "cik": 72205, + "symbol": "nobh", + "name": "nobility homes inc" + }, + { + "cik": 1532286, + "symbol": "nine", + "name": "nine energy service inc" + }, + { + "cik": 1024095, + "symbol": "cdjm", + "name": "carnegie development inc" + }, + { + "cik": 1120370, + "symbol": "bwen", + "name": "broadwind inc" + }, + { + "cik": 1566610, + "symbol": "verbw", + "name": "verb technology company inc" + }, + { + "cik": 818677, + "symbol": "sfdl", + "name": "security federal corp" + }, + { + "cik": 1603207, + "symbol": "vblt", + "name": "vascular biogenics ltd" + }, + { + "cik": 868271, + "symbol": "svbi", + "name": "severn bancorp inc" + }, + { + "cik": 1140410, + "symbol": "pnf", + "name": "pimco new york municipal income fund" + }, + { + "cik": 1566373, + "symbol": "sbph", + "name": "f-star therapeutics inc" + }, + { + "cik": 1066923, + "symbol": "ftft", + "name": "future fintech group inc" + }, + { + "cik": 1007273, + "symbol": "bksc", + "name": "bank of south carolina corp" + }, + { + "cik": 1641631, + "symbol": "xair", + "name": "beyond air inc" + }, + { + "cik": 1738699, + "symbol": "wkey", + "name": "wisekey international holding sa" + }, + { + "cik": 1263011, + "symbol": "exnrf", + "name": "excellon resources inc" + }, + { + "cik": 1773086, + "symbol": "zgyhu", + "name": "yunhong international" + }, + { + "cik": 1682220, + "symbol": "sccc", + "name": "sachem capital corp" + }, + { + "cik": 1751143, + "symbol": "atcxw", + "name": "atlas technical consultants inc" + }, + { + "cik": 1705012, + "symbol": "fatbw", + "name": "fat brands inc" + }, + { + "cik": 1505512, + "symbol": "rgls", + "name": "regulus therapeutics inc" + }, + { + "cik": 1624512, + "symbol": "boxl", + "name": "boxlight corp" + }, + { + "cik": 1430306, + "symbol": "tnxp", + "name": "tonix pharmaceuticals holding corp" + }, + { + "cik": 1251769, + "symbol": "apen", + "name": "apollo endosurgery inc" + }, + { + "cik": 1814974, + "symbol": "bbxib", + "name": "bbx capital inc" + }, + { + "cik": 1575771, + "symbol": "egif", + "name": "eagle growth & income opportunities fund" + }, + { + "cik": 1740797, + "symbol": "tren", + "name": "trend innovations holding inc" + }, + { + "cik": 1351051, + "symbol": "gen", + "name": "genesis healthcare inc" + }, + { + "cik": 714712, + "symbol": "juvf", + "name": "juniata valley financial corp" + }, + { + "cik": 1551040, + "symbol": "edi", + "name": "stone harbor emerging markets total income fund" + }, + { + "cik": 1724344, + "symbol": "ettx", + "name": "entasis therapeutics holdings inc" + }, + { + "cik": 1583001, + "symbol": "tslf", + "name": "first eagle senior loan fund" + }, + { + "cik": 1730346, + "symbol": "chra", + "name": "charah solutions inc" + }, + { + "cik": 1726126, + "symbol": "epsn", + "name": "epsilon energy ltd" + }, + { + "cik": 1734005, + "symbol": "apm", + "name": "aptorum group ltd" + }, + { + "cik": 1453593, + "symbol": "xtnt", + "name": "xtant medical holdings inc" + }, + { + "cik": 847411, + "symbol": "cxh", + "name": "mfs investment grade municipal trust" + }, + { + "cik": 1181024, + "symbol": "bse", + "name": "blackrock new york municipal income quality trust" + }, + { + "cik": 888721, + "symbol": "trib", + "name": "trinity biotech plc" + }, + { + "cik": 16099, + "symbol": "lub", + "name": "lubys inc" + }, + { + "cik": 1006655, + "symbol": "epm", + "name": "evolution petroleum corp" + }, + { + "cik": 1512922, + "symbol": "petv", + "name": "petvivo holdings inc" + }, + { + "cik": 1084384, + "symbol": "teum", + "name": "pareteum corp" + }, + { + "cik": 1574596, + "symbol": "nwhm", + "name": "new home co inc" + }, + { + "cik": 846671, + "symbol": "vlt", + "name": "invesco high income trust ii" + }, + { + "cik": 1392091, + "symbol": "bkep", + "name": "blueknight energy partners lp" + }, + { + "cik": 1478035, + "symbol": "crecf", + "name": "critical elements lithium corp" + }, + { + "cik": 1488917, + "symbol": "elmd", + "name": "electromed inc" + }, + { + "cik": 1547546, + "symbol": "hcft", + "name": "hunt companies finance trust inc" + }, + { + "cik": 1437283, + "symbol": "rpmt", + "name": "rego payment architectures inc" + }, + { + "cik": 945983, + "symbol": "wstg", + "name": "wayside technology group inc" + }, + { + "cik": 720500, + "symbol": "asys", + "name": "amtech systems inc" + }, + { + "cik": 1424657, + "symbol": "cuen", + "name": "cuentas inc" + }, + { + "cik": 1689382, + "symbol": "tllyf", + "name": "trilogy international partners inc" + }, + { + "cik": 1590799, + "symbol": "rive", + "name": "riverview financial corp" + }, + { + "cik": 1451448, + "symbol": "gmbl", + "name": "esports entertainment group inc" + }, + { + "cik": 1692830, + "symbol": "stsa", + "name": "satsuma pharmaceuticals inc" + }, + { + "cik": 858800, + "symbol": "emcf", + "name": "emclaire financial corp" + }, + { + "cik": 1325964, + "symbol": "lwlg", + "name": "lightwave logic inc" + }, + { + "cik": 1288795, + "symbol": "glv", + "name": "clough global dividend & income fund" + }, + { + "cik": 1524829, + "symbol": "glbd", + "name": "global seed corp" + }, + { + "cik": 1438423, + "symbol": "mram", + "name": "everspin technologies inc" + }, + { + "cik": 1607997, + "symbol": "nms", + "name": "nuveen minnesota quality municipal income fund" + }, + { + "cik": 719733, + "symbol": "ktcc", + "name": "key tronic corp" + }, + { + "cik": 1328919, + "symbol": "gass", + "name": "stealthgas inc" + }, + { + "cik": 1224133, + "symbol": "mchx", + "name": "marchex inc" + }, + { + "cik": 1411690, + "symbol": "bngo", + "name": "bionano genomics inc" + }, + { + "cik": 774569, + "symbol": "cldb", + "name": "cortland bancorp inc" + }, + { + "cik": 1655544, + "symbol": "nha", + "name": "nuveen municipal 2021 target term fund" + }, + { + "cik": 832480, + "symbol": "utgn", + "name": "utg inc" + }, + { + "cik": 1141197, + "symbol": "ped", + "name": "pedevco corp" + }, + { + "cik": 946644, + "symbol": "aim", + "name": "aim immunotech inc" + }, + { + "cik": 1320350, + "symbol": "lnsr", + "name": "lensar inc" + }, + { + "cik": 1230524, + "symbol": "cyap", + "name": "cyber apps world" + }, + { + "cik": 1675033, + "symbol": "gecc", + "name": "great elm capital corp" + }, + { + "cik": 1578453, + "symbol": "dlng", + "name": "dynagas lng partners lp" + }, + { + "cik": 1786248, + "symbol": "nref", + "name": "nexpoint real estate finance inc" + }, + { + "cik": 704561, + "symbol": "ubab", + "name": "united bancorporation of alabama inc" + }, + { + "cik": 1075880, + "symbol": "kzia", + "name": "kazia therapeutics ltd" + }, + { + "cik": 1575793, + "symbol": "watt", + "name": "energous corp" + }, + { + "cik": 1065078, + "symbol": "ntip", + "name": "network 1 technologies inc" + }, + { + "cik": 1365388, + "symbol": "hsti", + "name": "high sierra technologies inc" + }, + { + "cik": 87050, + "symbol": "neon", + "name": "neonode inc" + }, + { + "cik": 1087456, + "symbol": "uboh", + "name": "united bancshares inc oh" + }, + { + "cik": 921183, + "symbol": "hmnf", + "name": "hmn financial inc" + }, + { + "cik": 1557523, + "symbol": "pgz", + "name": "principal real estate income fund" + }, + { + "cik": 1541119, + "symbol": "sfbc", + "name": "sound financial bancorp inc" + }, + { + "cik": 202947, + "symbol": "cptp", + "name": "capital properties inc ri" + }, + { + "cik": 1133869, + "symbol": "capr", + "name": "capricor therapeutics inc" + }, + { + "cik": 1735041, + "symbol": "gtecw", + "name": "greenland technologies holding corp" + }, + { + "cik": 1532595, + "symbol": "sinc", + "name": "sincerity applied materials holdings corp" + }, + { + "cik": 1648365, + "symbol": "iwbb", + "name": "iweb inc" + }, + { + "cik": 1568139, + "symbol": "benh", + "name": "bio-en holdings corp" + }, + { + "cik": 719402, + "symbol": "fxnc", + "name": "first national corp va" + }, + { + "cik": 1527599, + "symbol": "sybx", + "name": "synlogic inc" + }, + { + "cik": 1614556, + "symbol": "stal", + "name": "star alliance international corp" + }, + { + "cik": 916529, + "symbol": "artx", + "name": "arotech corp" + }, + { + "cik": 718413, + "symbol": "cmtv", + "name": "community bancorp vt" + }, + { + "cik": 1034760, + "symbol": "wyy", + "name": "widepoint corp" + }, + { + "cik": 1126961, + "symbol": "grrbp", + "name": "grandsouth bancorporation" + }, + { + "cik": 1130598, + "symbol": "ontx", + "name": "onconova therapeutics inc" + }, + { + "cik": 1553788, + "symbol": "cnmf", + "name": "splash beverage group inc" + }, + { + "cik": 1398972, + "symbol": "erdcf", + "name": "erdene resource development corp" + }, + { + "cik": 77281, + "symbol": "pei", + "name": "pennsylvania real estate investment trust" + }, + { + "cik": 1070050, + "symbol": "apcx", + "name": "apptech corp" + }, + { + "cik": 1742927, + "symbol": "tzacw", + "name": "reviva pharmaceuticals holdings inc" + }, + { + "cik": 1460702, + "symbol": "qlgn", + "name": "qualigen therapeutics inc" + }, + { + "cik": 1763197, + "symbol": "moho", + "name": "ecmoho ltd" + }, + { + "cik": 1803914, + "symbol": "mcacu", + "name": "mountain crest acquisition corp" + }, + { + "cik": 1384135, + "symbol": "lbti", + "name": "lithium & boron technology inc" + }, + { + "cik": 798528, + "symbol": "omex", + "name": "odyssey marine exploration inc" + }, + { + "cik": 1595353, + "symbol": "glmd", + "name": "galmed pharmaceuticals ltd" + }, + { + "cik": 731653, + "symbol": "ubcp", + "name": "united bancorp inc oh" + }, + { + "cik": 1403708, + "symbol": "evok", + "name": "evoke pharma inc" + }, + { + "cik": 1182737, + "symbol": "dtrc", + "name": "dakota territory resource corp" + }, + { + "cik": 1051343, + "symbol": "cwbc", + "name": "community west bancshares" + }, + { + "cik": 1046203, + "symbol": "gfed", + "name": "guaranty federal bancshares inc" + }, + { + "cik": 1409269, + "symbol": "vero", + "name": "venus concept inc" + }, + { + "cik": 1490349, + "symbol": "mcv", + "name": "medley capital corp" + }, + { + "cik": 1588972, + "symbol": "reph", + "name": "recro pharma inc" + }, + { + "cik": 1655075, + "symbol": "afi", + "name": "armstrong flooring inc" + }, + { + "cik": 1532390, + "symbol": "wter", + "name": "alkaline water co inc" + }, + { + "cik": 883945, + "symbol": "usak", + "name": "usa truck inc" + }, + { + "cik": 1746119, + "symbol": "mugh", + "name": "mu global holding ltd" + }, + { + "cik": 1529628, + "symbol": "snd", + "name": "smart sand inc" + }, + { + "cik": 1522602, + "symbol": "cwbr", + "name": "cohbar inc" + }, + { + "cik": 843006, + "symbol": "isdr", + "name": "issuer direct corp" + }, + { + "cik": 1534293, + "symbol": "smm", + "name": "salient midstream & mlp fund" + }, + { + "cik": 1722926, + "symbol": "asln", + "name": "aslan pharmaceuticals ltd" + }, + { + "cik": 1108236, + "symbol": "amrb", + "name": "american river bankshares" + }, + { + "cik": 1533743, + "symbol": "pcsa", + "name": "processa pharmaceuticals inc" + }, + { + "cik": 791718, + "symbol": "eea", + "name": "european equity fund inc md" + }, + { + "cik": 1271554, + "symbol": "erlff", + "name": "entree resources ltd" + }, + { + "cik": 1597846, + "symbol": "grnq", + "name": "greenpro capital corp" + }, + { + "cik": 1408201, + "symbol": "tpz", + "name": "tortoise power & energy infrastructure fund inc" + }, + { + "cik": 1787384, + "symbol": "ffbw", + "name": "ffbw inc md" + }, + { + "cik": 1022183, + "symbol": "cbsc", + "name": "cb scientific inc" + }, + { + "cik": 1326205, + "symbol": "igciw", + "name": "india globalization capital inc" + }, + { + "cik": 1750384, + "symbol": "soli", + "name": "solei systems inc" + }, + { + "cik": 1553404, + "symbol": "pgtk", + "name": "pacific green technologies inc" + }, + { + "cik": 1755953, + "symbol": "kernw", + "name": "akerna corp" + }, + { + "cik": 1341318, + "symbol": "lsbk", + "name": "lake shore bancorp inc" + }, + { + "cik": 1196298, + "symbol": "neph", + "name": "nephros inc" + }, + { + "cik": 1137091, + "symbol": "psix", + "name": "power solutions international inc" + }, + { + "cik": 1448597, + "symbol": "bfgc", + "name": "bullfrog gold corp" + }, + { + "cik": 1177439, + "symbol": "fpocf", + "name": "fpx nickel corp" + }, + { + "cik": 1015739, + "symbol": "awre", + "name": "aware inc ma" + }, + { + "cik": 1753217, + "symbol": "jhaa", + "name": "nuveen high income 2023 target term fund" + }, + { + "cik": 60714, + "symbol": "lxu", + "name": "lsb industries inc" + }, + { + "cik": 1541157, + "symbol": "aktx", + "name": "akari therapeutics plc" + }, + { + "cik": 1476573, + "symbol": "airrf", + "name": "aurion resources ltd" + }, + { + "cik": 1590750, + "symbol": "mgen", + "name": "miragen therapeutics inc" + }, + { + "cik": 1069996, + "symbol": "fnhc", + "name": "fednat holding co" + }, + { + "cik": 1074685, + "symbol": "evy", + "name": "eaton vance new york municipal income trust" + }, + { + "cik": 1178840, + "symbol": "nbw", + "name": "neuberger berman california municipal fund inc" + }, + { + "cik": 1600132, + "symbol": "blph", + "name": "bellerophon therapeutics inc" + }, + { + "cik": 1534154, + "symbol": "idty", + "name": "ipsidy inc" + }, + { + "cik": 1397616, + "symbol": "ssvff", + "name": "southern silver exploration corp" + }, + { + "cik": 1353970, + "symbol": "cxdc", + "name": "china xd plastics co ltd" + }, + { + "cik": 1472468, + "symbol": "xteg", + "name": "xt energy group inc" + }, + { + "cik": 1279704, + "symbol": "clrbz", + "name": "cellectar biosciences inc" + }, + { + "cik": 1440024, + "symbol": "rrts", + "name": "roadrunner transportation systems inc" + }, + { + "cik": 1506983, + "symbol": "igap", + "name": "integrity applications inc" + }, + { + "cik": 1160308, + "symbol": "svra", + "name": "savara inc" + }, + { + "cik": 1289028, + "symbol": "uexcf", + "name": "uex corp" + }, + { + "cik": 1156174, + "symbol": "lkcru", + "name": "lake area corn processors llc" + }, + { + "cik": 1627606, + "symbol": "dtea", + "name": "davidstea inc" + }, + { + "cik": 8146, + "symbol": "alot", + "name": "astronova inc" + }, + { + "cik": 1560258, + "symbol": "ecor", + "name": "electrocore inc" + }, + { + "cik": 740806, + "symbol": "fmbm", + "name": "f&m bank corp" + }, + { + "cik": 896493, + "symbol": "dpw", + "name": "dpw holdings inc" + }, + { + "cik": 1716947, + "symbol": "lacqw", + "name": "leisure acquisition corp" + }, + { + "cik": 1691507, + "symbol": "cfbi", + "name": "community first bancshares inc" + }, + { + "cik": 1788841, + "symbol": "grnvw", + "name": "greenvision acquisition corp" + }, + { + "cik": 1141240, + "symbol": "lqmt", + "name": "liquidmetal technologies inc" + }, + { + "cik": 1498232, + "symbol": "trrb", + "name": "tripborn inc" + }, + { + "cik": 1714379, + "symbol": "tncpd", + "name": "fact inc" + }, + { + "cik": 891532, + "symbol": "pesi", + "name": "perma fix environmental services inc" + }, + { + "cik": 754811, + "symbol": "grow", + "name": "u s global investors inc" + }, + { + "cik": 1421819, + "symbol": "asin", + "name": "hanjiao group inc" + }, + { + "cik": 25895, + "symbol": "crws", + "name": "crown crafts inc" + }, + { + "cik": 1684425, + "symbol": "petz", + "name": "tdh holdings inc" + }, + { + "cik": 1410187, + "symbol": "cnnc", + "name": "cannonau corp" + }, + { + "cik": 1017673, + "symbol": "dvd", + "name": "dover motorsports inc" + }, + { + "cik": 1134765, + "symbol": "chuc", + "name": "charlies holdings inc" + }, + { + "cik": 1622879, + "symbol": "shwz", + "name": "medicine man technologies inc" + }, + { + "cik": 1434647, + "symbol": "kmph", + "name": "kempharm inc" + }, + { + "cik": 27093, + "symbol": "usau", + "name": "us gold corp" + }, + { + "cik": 1572334, + "symbol": "vabk", + "name": "virginia national bankshares corp" + }, + { + "cik": 1176197, + "symbol": "bfy", + "name": "blackrock new york municipal income trust ii" + }, + { + "cik": 1614744, + "symbol": "ktovw", + "name": "kitov pharma ltd" + }, + { + "cik": 1491434, + "symbol": "seovf", + "name": "sernova corp" + }, + { + "cik": 1792581, + "symbol": "krbp", + "name": "kiromic biopharma inc" + }, + { + "cik": 1401257, + "symbol": "fet", + "name": "forum energy technologies inc" + }, + { + "cik": 1276469, + "symbol": "mfd", + "name": "macquarie first trust global infrastr util div & inc fund" + }, + { + "cik": 1363438, + "symbol": "feo", + "name": "first trust aberdeen emerging opportunity fund" + }, + { + "cik": 1696396, + "symbol": "mito", + "name": "stealth biotherapeutics corp" + }, + { + "cik": 1514743, + "symbol": "iroq", + "name": "if bancorp inc" + }, + { + "cik": 1113513, + "symbol": "most", + "name": "mobilesmith inc" + }, + { + "cik": 1342958, + "symbol": "dgly", + "name": "digital ally inc" + }, + { + "cik": 1708176, + "symbol": "hofvw", + "name": "hall of fame resort & entertainment co" + }, + { + "cik": 1699906, + "symbol": "bkrrf", + "name": "blackrock gold corp" + }, + { + "cik": 896923, + "symbol": "ddf", + "name": "delaware investments dividend & income fund inc" + }, + { + "cik": 1302350, + "symbol": "jmpnz", + "name": "jmp group llc" + }, + { + "cik": 1828376, + "symbol": "wmpn", + "name": "william penn bancorporation" + }, + { + "cik": 69422, + "symbol": "intg", + "name": "intergroup corp" + }, + { + "cik": 1383062, + "symbol": "dbe", + "name": "invesco db energy fund" + }, + { + "cik": 1543637, + "symbol": "numd", + "name": "nu-med plus inc" + }, + { + "cik": 34563, + "symbol": "farm", + "name": "farmer brothers co" + }, + { + "cik": 1483510, + "symbol": "expr", + "name": "express inc" + }, + { + "cik": 1583771, + "symbol": "hepa", + "name": "hepion pharmaceuticals inc" + }, + { + "cik": 806172, + "symbol": "sotk", + "name": "sono tek corp" + }, + { + "cik": 1490596, + "symbol": "gvxxf", + "name": "goviex uranium inc" + }, + { + "cik": 33992, + "symbol": "kins", + "name": "kingstone companies inc" + }, + { + "cik": 1575295, + "symbol": "alid", + "name": "allied corp" + }, + { + "cik": 1667313, + "symbol": "zdge", + "name": "zedge inc" + }, + { + "cik": 1818844, + "symbol": "viri", + "name": "virios therapeutics inc" + }, + { + "cik": 1094038, + "symbol": "mrkr", + "name": "marker therapeutics inc" + }, + { + "cik": 738214, + "symbol": "amtx", + "name": "aemetis inc" + }, + { + "cik": 787253, + "symbol": "naii", + "name": "natural alternatives international inc" + }, + { + "cik": 1474167, + "symbol": "cosm", + "name": "cosmos holdings inc" + }, + { + "cik": 1742056, + "symbol": "laix", + "name": "laix inc" + }, + { + "cik": 1579157, + "symbol": "vnce", + "name": "vince holding corp" + }, + { + "cik": 1088034, + "symbol": "usio", + "name": "usio inc" + }, + { + "cik": 1082506, + "symbol": "gec", + "name": "forest investments inc" + }, + { + "cik": 1505065, + "symbol": "bway", + "name": "brainsway ltd" + }, + { + "cik": 58361, + "symbol": "lee", + "name": "lee enterprises inc" + }, + { + "cik": 1645469, + "symbol": "mnpr", + "name": "monopar therapeutics" + }, + { + "cik": 876717, + "symbol": "fco", + "name": "aberdeen global income fund inc" + }, + { + "cik": 1321851, + "symbol": "seed", + "name": "origin agritech ltd" + }, + { + "cik": 1355250, + "symbol": "ipix", + "name": "innovation pharmaceuticals inc" + }, + { + "cik": 1612875, + "symbol": "ger", + "name": "goldman sachs mlp & energy renaissance fund" + }, + { + "cik": 1687919, + "symbol": "fgnv", + "name": "forge innovation development corp" + }, + { + "cik": 1525773, + "symbol": "inteq", + "name": "intelsat sa" + }, + { + "cik": 887226, + "symbol": "prcp", + "name": "perceptron inc mi" + }, + { + "cik": 907573, + "symbol": "vcf", + "name": "delaware investments colorado municipal income fund inc" + }, + { + "cik": 707511, + "symbol": "rgrx", + "name": "regenerx biopharmaceuticals inc" + }, + { + "cik": 838131, + "symbol": "jmm", + "name": "nuveen multi-market income fund" + }, + { + "cik": 1708441, + "symbol": "ryb", + "name": "ryb education inc" + }, + { + "cik": 1495231, + "symbol": "izea", + "name": "izea worldwide inc" + }, + { + "cik": 911308, + "symbol": "mza", + "name": "blackrock muniyield arizona fund inc" + }, + { + "cik": 1520358, + "symbol": "mmmb", + "name": "mamamancinis holdings inc" + }, + { + "cik": 1622231, + "symbol": "btim", + "name": "boatim inc" + }, + { + "cik": 1631487, + "symbol": "clgn", + "name": "collplant biotechnologies ltd" + }, + { + "cik": 1548536, + "symbol": "szsmf", + "name": "santacruz silver mining ltd" + }, + { + "cik": 314227, + "symbol": "tomzd", + "name": "tomi environmental solutions inc" + }, + { + "cik": 1753648, + "symbol": "jfkkr", + "name": "8i enterprises acquisition corp" + }, + { + "cik": 1433309, + "symbol": "pltyf", + "name": "plastec technologies ltd" + }, + { + "cik": 715446, + "symbol": "anix", + "name": "anixa biosciences inc" + }, + { + "cik": 1323206, + "symbol": "lor", + "name": "lazard world dividend & income fund inc" + }, + { + "cik": 95953, + "symbol": "synl", + "name": "synalloy corp" + }, + { + "cik": 1084577, + "symbol": "cyrn", + "name": "cyren ltd" + }, + { + "cik": 1725293, + "symbol": "grin", + "name": "grindrod shipping holdings ltd" + }, + { + "cik": 1017303, + "symbol": "tact", + "name": "transact technologies inc" + }, + { + "cik": 1113809, + "symbol": "bbw", + "name": "build-a-bear workshop inc" + }, + { + "cik": 1489264, + "symbol": "sbbi", + "name": "sbcp bancorp inc" + }, + { + "cik": 1083643, + "symbol": "fbss", + "name": "fauquier bankshares inc" + }, + { + "cik": 1176334, + "symbol": "mmlp", + "name": "martin midstream partners lp" + }, + { + "cik": 1828957, + "symbol": "ddmxu", + "name": "dd3 acquisition corp ii" + }, + { + "cik": 736744, + "symbol": "tga", + "name": "transglobe energy corp" + }, + { + "cik": 1314102, + "symbol": "eypt", + "name": "eyepoint pharmaceuticals inc" + }, + { + "cik": 1539778, + "symbol": "rayt", + "name": "rayont inc" + }, + { + "cik": 351817, + "symbol": "sbow", + "name": "silverbow resources inc" + }, + { + "cik": 101295, + "symbol": "ug", + "name": "united guardian inc" + }, + { + "cik": 1334325, + "symbol": "coda", + "name": "coda octopus group inc" + }, + { + "cik": 1614067, + "symbol": "ards", + "name": "aridis pharmaceuticals inc" + }, + { + "cik": 1266806, + "symbol": "eyes", + "name": "second sight medical products inc" + }, + { + "cik": 811211, + "symbol": "unib", + "name": "university bancorp inc de" + }, + { + "cik": 1758009, + "symbol": "qubt", + "name": "quantum computing inc" + }, + { + "cik": 770460, + "symbol": "pfbx", + "name": "peoples financial corp ms" + }, + { + "cik": 1337085, + "symbol": "tngl", + "name": "tonogold resources inc" + }, + { + "cik": 1643301, + "symbol": "curr", + "name": "cure pharmaceutical holding corp" + }, + { + "cik": 1044378, + "symbol": "bioc", + "name": "biocept inc" + }, + { + "cik": 1145255, + "symbol": "hnna", + "name": "hennessy advisors inc" + }, + { + "cik": 1624658, + "symbol": "alna", + "name": "allena pharmaceuticals inc" + }, + { + "cik": 878726, + "symbol": "tuesq", + "name": "tuesday morning corp de" + }, + { + "cik": 1786511, + "symbol": "anpc", + "name": "anpac bio-medical science co ltd" + }, + { + "cik": 1703117, + "symbol": "vam", + "name": "vivaldi opportunities fund" + }, + { + "cik": 1596961, + "symbol": "rmbl", + "name": "rumbleon inc" + }, + { + "cik": 6207, + "symbol": "axr", + "name": "amrep corp" + }, + { + "cik": 1448705, + "symbol": "basa", + "name": "basanite inc" + }, + { + "cik": 1052595, + "symbol": "rlh", + "name": "red lion hotels corp" + }, + { + "cik": 1769624, + "symbol": "agbaw", + "name": "agba acquisition ltd" + }, + { + "cik": 1690334, + "symbol": "smhi", + "name": "seacor marine holdings inc" + }, + { + "cik": 1178841, + "symbol": "nbo", + "name": "neuberger berman new york municipal fund inc" + }, + { + "cik": 1578348, + "symbol": "cmfnl", + "name": "investcorp credit management bdc inc" + }, + { + "cik": 1708599, + "symbol": "age", + "name": "agex therapeutics inc" + }, + { + "cik": 1564216, + "symbol": "mie", + "name": "cohen & steers mlp income & energy opportunity fund" + }, + { + "cik": 1620664, + "symbol": "ccrc", + "name": "china customer relations centers inc" + }, + { + "cik": 1506251, + "symbol": "ctxrw", + "name": "citius pharmaceuticals inc" + }, + { + "cik": 804563, + "symbol": "bmbn", + "name": "benchmark bankshares inc" + }, + { + "cik": 1136294, + "symbol": "wlms", + "name": "williams industrial services group inc" + }, + { + "cik": 1497504, + "symbol": "plxp", + "name": "plx pharma inc" + }, + { + "cik": 1514946, + "symbol": "axim", + "name": "axim biotechnologies inc" + }, + { + "cik": 1787518, + "symbol": "brliu", + "name": "brilliant acquisition corp" + }, + { + "cik": 1232863, + "symbol": "mne", + "name": "blackrock muni new york intermediate duration fund inc" + }, + { + "cik": 1713923, + "symbol": "jt", + "name": "jianpu technology inc" + }, + { + "cik": 1305168, + "symbol": "arc", + "name": "arc document solutions inc" + }, + { + "cik": 1006028, + "symbol": "pure", + "name": "pure bioscience inc" + }, + { + "cik": 1639327, + "symbol": "gshn", + "name": "gushen inc" + }, + { + "cik": 1228627, + "symbol": "rexn", + "name": "ocuphire pharma inc" + }, + { + "cik": 1036262, + "symbol": "intt", + "name": "intest corp" + }, + { + "cik": 1499961, + "symbol": "nete", + "name": "net element inc" + }, + { + "cik": 1000045, + "symbol": "nick", + "name": "nicholas financial inc" + }, + { + "cik": 1059272, + "symbol": "bebe", + "name": "bebe stores inc" + }, + { + "cik": 819913, + "symbol": "hall", + "name": "hallmark financial services inc" + }, + { + "cik": 912061, + "symbol": "nhtc", + "name": "natural health trends corp" + }, + { + "cik": 1363958, + "symbol": "wcrs", + "name": "western capital resources inc" + }, + { + "cik": 893739, + "symbol": "turn", + "name": "180 degree capital corp ny" + }, + { + "cik": 1696558, + "symbol": "jrsh", + "name": "jerash holdings (us) inc" + }, + { + "cik": 1622345, + "symbol": "pola", + "name": "polar power inc" + }, + { + "cik": 1696898, + "symbol": "ecrp", + "name": "chee corp" + }, + { + "cik": 748790, + "symbol": "gceh", + "name": "global clean energy holdings inc" + }, + { + "cik": 1587221, + "symbol": "zsan", + "name": "zosano pharma corp" + }, + { + "cik": 1616291, + "symbol": "jp", + "name": "jupai holdings ltd" + }, + { + "cik": 1372117, + "symbol": "irr", + "name": "voya natural resources equity income fund" + }, + { + "cik": 16859, + "symbol": "srl", + "name": "scully royalty ltd" + }, + { + "cik": 1396502, + "symbol": "hty", + "name": "john hancock tax-advantaged global shareholder yield fund" + }, + { + "cik": 850033, + "symbol": "bpt", + "name": "bp prudhoe bay royalty trust" + }, + { + "cik": 1425627, + "symbol": "imled", + "name": "sobr safe inc" + }, + { + "cik": 355948, + "symbol": "rell", + "name": "richardson electronics ltd de" + }, + { + "cik": 1620179, + "symbol": "xela", + "name": "exela technologies inc" + }, + { + "cik": 1590715, + "symbol": "arec", + "name": "american resources corp" + }, + { + "cik": 1408278, + "symbol": "sync", + "name": "synacor inc" + }, + { + "cik": 895574, + "symbol": "vfl", + "name": "delaware investments national municipal income fund" + }, + { + "cik": 1586941, + "symbol": "wrcdf", + "name": "wirecard ag adr" + }, + { + "cik": 1699039, + "symbol": "rngr", + "name": "ranger energy services inc" + }, + { + "cik": 931584, + "symbol": "usap", + "name": "universal stainless & alloy products inc" + }, + { + "cik": 1077618, + "symbol": "obas", + "name": "optibase ltd" + }, + { + "cik": 1657642, + "symbol": "pkkw", + "name": "parkway acquisition corp" + }, + { + "cik": 1703073, + "symbol": "vivc", + "name": "vivic corp" + }, + { + "cik": 1006830, + "symbol": "cbkm", + "name": "consumers bancorp inc oh" + }, + { + "cik": 47307, + "symbol": "crawa", + "name": "crawford united corp" + }, + { + "cik": 1015647, + "symbol": "aau", + "name": "almaden minerals ltd" + }, + { + "cik": 1394039, + "symbol": "cydvf", + "name": "cypress development corp" + }, + { + "cik": 1498403, + "symbol": "blrx", + "name": "biolinerx ltd" + }, + { + "cik": 73290, + "symbol": "bmra", + "name": "biomerica inc" + }, + { + "cik": 1000298, + "symbol": "imh", + "name": "impac mortgage holdings inc" + }, + { + "cik": 1761696, + "symbol": "crkn", + "name": "crown electrokinetics corp" + }, + { + "cik": 1386301, + "symbol": "rsss", + "name": "research solutions inc" + }, + { + "cik": 1738827, + "symbol": "klxe", + "name": "klx energy services holdings inc" + }, + { + "cik": 1439299, + "symbol": "ccgn", + "name": "consumer capital group inc" + }, + { + "cik": 1527709, + "symbol": "mcep", + "name": "mid-con energy partners lp" + }, + { + "cik": 1494891, + "symbol": "srts", + "name": "sensus healthcare inc" + }, + { + "cik": 1672909, + "symbol": "cphc", + "name": "canterbury park holding corp" + }, + { + "cik": 1319183, + "symbol": "fmy", + "name": "first trust mortgage income fund" + }, + { + "cik": 1384195, + "symbol": "rei", + "name": "ring energy inc" + }, + { + "cik": 1305773, + "symbol": "cfms", + "name": "conformis inc" + }, + { + "cik": 1647338, + "symbol": "gsum", + "name": "gridsum holding inc" + }, + { + "cik": 1487197, + "symbol": "brfh", + "name": "barfresh food group inc" + }, + { + "cik": 1692427, + "symbol": "ncsm", + "name": "ncs multistage holdings inc" + }, + { + "cik": 862692, + "symbol": "ccel", + "name": "cryo cell international inc" + }, + { + "cik": 810509, + "symbol": "navb", + "name": "navidea biopharmaceuticals inc" + }, + { + "cik": 1336050, + "symbol": "egf", + "name": "blackrock enhanced government fund inc" + }, + { + "cik": 1617669, + "symbol": "ufab", + "name": "unique fabricating inc" + }, + { + "cik": 1642159, + "symbol": "rgnpd", + "name": "sigyn therapeutics inc" + }, + { + "cik": 1737193, + "symbol": "ldsn", + "name": "luduson g inc" + }, + { + "cik": 1575969, + "symbol": "avhoq", + "name": "avianca holdings sa" + }, + { + "cik": 1586454, + "symbol": "pmhg", + "name": "prime meridian holding co" + }, + { + "cik": 1431959, + "symbol": "trch", + "name": "torchlight energy resources inc" + }, + { + "cik": 1337068, + "symbol": "mgyr", + "name": "magyar bancorp inc" + }, + { + "cik": 1389034, + "symbol": "kalo", + "name": "kallo inc" + }, + { + "cik": 717806, + "symbol": "fusb", + "name": "first us bancshares inc" + }, + { + "cik": 1582581, + "symbol": "vjet", + "name": "voxeljet ag" + }, + { + "cik": 1181749, + "symbol": "gfgy", + "name": "granite falls energy llc" + }, + { + "cik": 1471727, + "symbol": "bttr", + "name": "better choice co inc" + }, + { + "cik": 1641640, + "symbol": "nbrv", + "name": "nabriva therapeutics plc" + }, + { + "cik": 1760903, + "symbol": "jupw", + "name": "jupiter wellness inc" + }, + { + "cik": 1714562, + "symbol": "mllld", + "name": "engine media holdings inc" + }, + { + "cik": 1776932, + "symbol": "mmnff", + "name": "medmen enterprises inc" + }, + { + "cik": 1532619, + "symbol": "pw", + "name": "power reit" + }, + { + "cik": 1769267, + "symbol": "fsea", + "name": "first seacoast bancorp" + }, + { + "cik": 1275101, + "symbol": "botj", + "name": "bank of the james financial group inc" + }, + { + "cik": 828146, + "symbol": "link", + "name": "interlink electronics inc" + }, + { + "cik": 707605, + "symbol": "asrv", + "name": "ameriserv financial inc pa" + }, + { + "cik": 885731, + "symbol": "nxn", + "name": "nuveen new york select tax -free income portfolio" + }, + { + "cik": 921114, + "symbol": "armp", + "name": "armata pharmaceuticals inc" + }, + { + "cik": 1768910, + "symbol": "grcyw", + "name": "greencity acquisition corp" + }, + { + "cik": 33533, + "symbol": "esp", + "name": "espey mfg & electronics corp" + }, + { + "cik": 1708341, + "symbol": "aese", + "name": "allied esports entertainment inc" + }, + { + "cik": 1543066, + "symbol": "ewst", + "name": "e-waste corp" + }, + { + "cik": 1449488, + "symbol": "cclp", + "name": "csi compressco lp" + }, + { + "cik": 1550695, + "symbol": "pfmt", + "name": "performant financial corp" + }, + { + "cik": 1080657, + "symbol": "sqft", + "name": "presidio property trust inc" + }, + { + "cik": 1040470, + "symbol": "aehr", + "name": "aehr test systems" + }, + { + "cik": 1053369, + "symbol": "eltp", + "name": "elite pharmaceuticals inc nv" + }, + { + "cik": 943184, + "symbol": "evk", + "name": "ever-glory international group inc" + }, + { + "cik": 870826, + "symbol": "imbi", + "name": "imedia brands inc" + }, + { + "cik": 876378, + "symbol": "trxc", + "name": "transenterix inc" + }, + { + "cik": 1046327, + "symbol": "rnwk", + "name": "realnetworks inc" + }, + { + "cik": 1588084, + "symbol": "tanh", + "name": "tantech holdings ltd" + }, + { + "cik": 927719, + "symbol": "dwnx", + "name": "delhi bank corp" + }, + { + "cik": 1756180, + "symbol": "ncra", + "name": "nocera inc" + }, + { + "cik": 1540159, + "symbol": "edsa", + "name": "edesa biotech inc" + }, + { + "cik": 779544, + "symbol": "arkr", + "name": "ark restaurants corp" + }, + { + "cik": 1549084, + "symbol": "ekso", + "name": "ekso bionics holdings inc" + }, + { + "cik": 1290476, + "symbol": "vbfc", + "name": "village bank & trust financial corp" + }, + { + "cik": 1365742, + "symbol": "atv", + "name": "acorn international inc" + }, + { + "cik": 1549922, + "symbol": "smlp", + "name": "summit midstream partners lp" + }, + { + "cik": 1621672, + "symbol": "slgg", + "name": "super league gaming inc" + }, + { + "cik": 1644488, + "symbol": "shrg", + "name": "sharing services global corp" + }, + { + "cik": 84112, + "symbol": "rskia", + "name": "george risk industries inc" + }, + { + "cik": 1318482, + "symbol": "kdozf", + "name": "kidoz inc" + }, + { + "cik": 1437260, + "symbol": "nna", + "name": "navios maritime acquisition corp" + }, + { + "cik": 1297341, + "symbol": "kffb", + "name": "kentucky first federal bancorp" + }, + { + "cik": 793628, + "symbol": "chnr", + "name": "china natural resources inc" + }, + { + "cik": 1008586, + "symbol": "strm", + "name": "streamline health solutions inc" + }, + { + "cik": 1001171, + "symbol": "byfc", + "name": "broadway financial corp de" + }, + { + "cik": 1119083, + "symbol": "mndo", + "name": "mind cti ltd" + }, + { + "cik": 1080340, + "symbol": "loan", + "name": "manhattan bridge capital inc" + }, + { + "cik": 728385, + "symbol": "meec", + "name": "midwest energy emissions corp" + }, + { + "cik": 1397047, + "symbol": "fpay", + "name": "flexshopper inc" + }, + { + "cik": 883975, + "symbol": "mbot", + "name": "microbot medical inc" + }, + { + "cik": 1690080, + "symbol": "atnfw", + "name": "180 life sciences corp" + }, + { + "cik": 1748621, + "symbol": "alac", + "name": "alberton acquisition corp" + }, + { + "cik": 1529113, + "symbol": "inpx", + "name": "inpixon" + }, + { + "cik": 1545634, + "symbol": "cdbmf", + "name": "cordoba minerals corp" + }, + { + "cik": 1729750, + "symbol": "kbnt", + "name": "kubient inc" + }, + { + "cik": 1533924, + "symbol": "ampy", + "name": "amplify energy corp" + }, + { + "cik": 1742089, + "symbol": "cbmb", + "name": "cbm bancorp inc" + }, + { + "cik": 1454979, + "symbol": "ncb", + "name": "nuveen california municipal value fund 2" + }, + { + "cik": 1472091, + "symbol": "edge", + "name": "pds biotechnology corp" + }, + { + "cik": 61004, + "symbol": "lgl", + "name": "lgl group inc" + }, + { + "cik": 933738, + "symbol": "eng", + "name": "englobal corp" + }, + { + "cik": 1030471, + "symbol": "utsi", + "name": "utstarcom holdings corp" + }, + { + "cik": 1131343, + "symbol": "pran", + "name": "alterity therapeutics ltd" + }, + { + "cik": 27367, + "symbol": "dxr", + "name": "daxor corp" + }, + { + "cik": 1574232, + "symbol": "adxn", + "name": "addex therapeutics ltd" + }, + { + "cik": 1140215, + "symbol": "reed", + "name": "reeds inc" + }, + { + "cik": 914712, + "symbol": "stcn", + "name": "steel connect inc" + }, + { + "cik": 1181505, + "symbol": "pyn", + "name": "pimco new york municipal income fund iii" + }, + { + "cik": 1709819, + "symbol": "fedu", + "name": "four seasons education (cayman) inc" + }, + { + "cik": 799165, + "symbol": "dwsn", + "name": "dawson geophysical co" + }, + { + "cik": 858707, + "symbol": "irl", + "name": "new ireland fund inc" + }, + { + "cik": 822370, + "symbol": "emmaw", + "name": "emmaus life sciences inc" + }, + { + "cik": 881787, + "symbol": "crt", + "name": "cross timbers royalty trust" + }, + { + "cik": 1609065, + "symbol": "pbhc", + "name": "pathfinder bancorp inc" + }, + { + "cik": 914122, + "symbol": "ppih", + "name": "perma-pipe international holdings inc" + }, + { + "cik": 1563880, + "symbol": "trvi", + "name": "trevi therapeutics inc" + }, + { + "cik": 1598308, + "symbol": "gwhp", + "name": "global wholehealth partners corp" + }, + { + "cik": 1401914, + "symbol": "dare", + "name": "dare bioscience inc" + }, + { + "cik": 1288770, + "symbol": "xtgrf", + "name": "xtra-gold resources corp" + }, + { + "cik": 1611831, + "symbol": "cdelf", + "name": "candelaria mining corp" + }, + { + "cik": 1394056, + "symbol": "oss", + "name": "one stop systems inc" + }, + { + "cik": 1413909, + "symbol": "dsgt", + "name": "dsg global inc" + }, + { + "cik": 1665300, + "symbol": "phunw", + "name": "phunware inc" + }, + { + "cik": 928465, + "symbol": "dit", + "name": "amcon distributing co" + }, + { + "cik": 1079282, + "symbol": "bmsn", + "name": "rivulet media inc" + }, + { + "cik": 1659617, + "symbol": "mbrx", + "name": "moleculin biotech inc" + }, + { + "cik": 1707303, + "symbol": "dogz", + "name": "dogness (international) corp" + }, + { + "cik": 40730, + "symbol": "mtlqu", + "name": "motors liquidation co" + }, + { + "cik": 949961, + "symbol": "ior", + "name": "income opportunity realty investors inc tx" + }, + { + "cik": 1675634, + "symbol": "pixy", + "name": "shiftpixy inc" + }, + { + "cik": 927355, + "symbol": "tess", + "name": "tessco technologies inc" + }, + { + "cik": 1566826, + "symbol": "nxtd", + "name": "nxt-id inc" + }, + { + "cik": 1166126, + "symbol": "jcpnq", + "name": "old copper company inc" + }, + { + "cik": 39092, + "symbol": "frd", + "name": "friedman industries inc" + }, + { + "cik": 1205922, + "symbol": "vcnx", + "name": "vaccinex inc" + }, + { + "cik": 1604924, + "symbol": "fwp", + "name": "forward pharma a s" + }, + { + "cik": 1422142, + "symbol": "arpo", + "name": "aerpio pharmaceuticals inc" + }, + { + "cik": 1630511, + "symbol": "tfecf", + "name": "thin film electronics asa" + }, + { + "cik": 1103090, + "symbol": "rscf", + "name": "reflect scientific inc" + }, + { + "cik": 315131, + "symbol": "phx", + "name": "phx minerals inc" + }, + { + "cik": 1031623, + "symbol": "gifi", + "name": "gulf island fabrication inc" + }, + { + "cik": 315849, + "symbol": "sgb", + "name": "southwest georgia financial corp" + }, + { + "cik": 1101026, + "symbol": "zivo", + "name": "zivo bioscience inc" + }, + { + "cik": 1494558, + "symbol": "ambo", + "name": "ambow education holding ltd" + }, + { + "cik": 740664, + "symbol": "rfil", + "name": "r f industries ltd" + }, + { + "cik": 1472619, + "symbol": "loncf", + "name": "loncor resources inc" + }, + { + "cik": 1163389, + "symbol": "nwpp", + "name": "new peoples bankshares inc" + }, + { + "cik": 1741257, + "symbol": "bfgx", + "name": "bangfu technology group co ltd" + }, + { + "cik": 1434674, + "symbol": "chnd", + "name": "china media inc" + }, + { + "cik": 1751692, + "symbol": "bcow", + "name": "1895 bancorp of wisconsin inc" + }, + { + "cik": 879911, + "symbol": "aerg", + "name": "applied energetics inc" + }, + { + "cik": 925741, + "symbol": "bcdaw", + "name": "biocardia inc" + }, + { + "cik": 1576340, + "symbol": "cen", + "name": "center coast brookfield mlp & energy infrastructure fund" + }, + { + "cik": 1582244, + "symbol": "cnig", + "name": "corning natural gas holding corp" + }, + { + "cik": 1654672, + "symbol": "pnpl", + "name": "pineapple inc" + }, + { + "cik": 1510964, + "symbol": "cvsi", + "name": "cv sciences inc" + }, + { + "cik": 810943, + "symbol": "pcf", + "name": "high income securities fund" + }, + { + "cik": 1408146, + "symbol": "scyyf", + "name": "scandium international mining corp" + }, + { + "cik": 889348, + "symbol": "cvu", + "name": "cpi aerostructures inc" + }, + { + "cik": 924719, + "symbol": "smid", + "name": "smith midland corp" + }, + { + "cik": 833021, + "symbol": "cif", + "name": "mfs intermediate high income fund" + }, + { + "cik": 1005101, + "symbol": "cncg", + "name": "concierge technologies inc" + }, + { + "cik": 1403853, + "symbol": "nes", + "name": "nuverra environmental solutions inc" + }, + { + "cik": 1650575, + "symbol": "brqsw", + "name": "borqs technologies inc" + }, + { + "cik": 1334388, + "symbol": "obelf", + "name": "obsidian energy ltd" + }, + { + "cik": 1296484, + "symbol": "tops", + "name": "top ships inc" + }, + { + "cik": 925528, + "symbol": "hdsn", + "name": "hudson technologies inc ny" + }, + { + "cik": 882508, + "symbol": "quik", + "name": "quicklogic corp" + }, + { + "cik": 1477845, + "symbol": "anvs", + "name": "annovis bio inc" + }, + { + "cik": 1724542, + "symbol": "clps", + "name": "clps inc" + }, + { + "cik": 1051514, + "symbol": "sskn", + "name": "strata skin sciences inc" + }, + { + "cik": 1716338, + "symbol": "pt", + "name": "pintec technology holdings ltd" + }, + { + "cik": 1741534, + "symbol": "mdjh", + "name": "mdjm ltd" + }, + { + "cik": 1686000, + "symbol": "jgldf", + "name": "japan gold corp" + }, + { + "cik": 1043186, + "symbol": "slng", + "name": "stabilis solutions inc" + }, + { + "cik": 949858, + "symbol": "achv", + "name": "achieve life sciences inc" + }, + { + "cik": 1500375, + "symbol": "hfbl", + "name": "home federal bancorp inc of louisiana" + }, + { + "cik": 1087294, + "symbol": "cpix", + "name": "cumberland pharmaceuticals inc" + }, + { + "cik": 1750106, + "symbol": "hfen", + "name": "hf enterprises inc" + }, + { + "cik": 1230058, + "symbol": "kanp", + "name": "kaanapali land llc" + }, + { + "cik": 1751876, + "symbol": "happ", + "name": "happiness biotech group ltd" + }, + { + "cik": 1400897, + "symbol": "srv", + "name": "cushing mlp & infrastructure total return fund" + }, + { + "cik": 1734875, + "symbol": "msvb", + "name": "mid-southern bancorp inc" + }, + { + "cik": 1158420, + "symbol": "hgsh", + "name": "china hgs real estate inc" + }, + { + "cik": 1641614, + "symbol": "pmts", + "name": "cpi card group inc" + }, + { + "cik": 1023198, + "symbol": "sgni", + "name": "stemgen inc" + }, + { + "cik": 811641, + "symbol": "iccc", + "name": "immucell corp de" + }, + { + "cik": 887247, + "symbol": "admp", + "name": "adamis pharmaceuticals corp" + }, + { + "cik": 1691936, + "symbol": "andaw", + "name": "andina acquisition corp iii" + }, + { + "cik": 840715, + "symbol": "clro", + "name": "clearone inc" + }, + { + "cik": 1053691, + "symbol": "dffn", + "name": "diffusion pharmaceuticals inc" + }, + { + "cik": 1711012, + "symbol": "aihs", + "name": "senmiao technology ltd" + }, + { + "cik": 1269026, + "symbol": "sint", + "name": "sintx technologies inc" + }, + { + "cik": 1641398, + "symbol": "ccnc", + "name": "code chain new continent ltd" + }, + { + "cik": 1716951, + "symbol": "occip", + "name": "ofs credit company inc" + }, + { + "cik": 799698, + "symbol": "cytr", + "name": "cytrx corp" + }, + { + "cik": 1752524, + "symbol": "flwpf", + "name": "flowr corp" + }, + { + "cik": 1464165, + "symbol": "betrd", + "name": "betterlife pharma inc" + }, + { + "cik": 1659323, + "symbol": "itrm", + "name": "iterum therapeutics plc" + }, + { + "cik": 1631282, + "symbol": "dtss", + "name": "datasea inc" + }, + { + "cik": 1569340, + "symbol": "clcs", + "name": "cell source inc" + }, + { + "cik": 1574235, + "symbol": "pulm", + "name": "pulmatrix inc" + }, + { + "cik": 946936, + "symbol": "dswl", + "name": "deswell industries inc" + }, + { + "cik": 1538217, + "symbol": "srax", + "name": "srax inc" + }, + { + "cik": 1680637, + "symbol": "nrrwf", + "name": "nuran wireless inc" + }, + { + "cik": 1512927, + "symbol": "cuii", + "name": "china united insurance service inc" + }, + { + "cik": 1681903, + "symbol": "icch", + "name": "icc holdings inc" + }, + { + "cik": 1392994, + "symbol": "fgb", + "name": "first trust specialty finance & financial opportunities fund" + }, + { + "cik": 1657045, + "symbol": "wwin", + "name": "allyme group inc nv" + }, + { + "cik": 1785566, + "symbol": "zcmd", + "name": "zhongchao inc" + }, + { + "cik": 54187, + "symbol": "mays", + "name": "mays j w inc" + }, + { + "cik": 1372183, + "symbol": "mkgi", + "name": "monaker group inc" + }, + { + "cik": 1379329, + "symbol": "ibtn", + "name": "inscorp inc" + }, + { + "cik": 1810140, + "symbol": "goed", + "name": "1847 goedeker inc" + }, + { + "cik": 1023994, + "symbol": "sgbx", + "name": "sg blocks inc" + }, + { + "cik": 1039280, + "symbol": "ntwk", + "name": "netsol technologies inc" + }, + { + "cik": 1438731, + "symbol": "aljj", + "name": "alj regional holdings inc" + }, + { + "cik": 1611277, + "symbol": "hlix", + "name": "helix technologies inc" + }, + { + "cik": 1420565, + "symbol": "alrn", + "name": "aileron therapeutics inc" + }, + { + "cik": 1356949, + "symbol": "hwcc", + "name": "houston wire & cable co" + }, + { + "cik": 1526329, + "symbol": "ttp", + "name": "tortoise pipeline & energy fund inc" + }, + { + "cik": 1109504, + "symbol": "epwcf", + "name": "empower clinics inc" + }, + { + "cik": 22701, + "symbol": "jcs", + "name": "communications systems inc" + }, + { + "cik": 8177, + "symbol": "aame", + "name": "atlantic american corp" + }, + { + "cik": 1494448, + "symbol": "emgc", + "name": "emergent capital inc" + }, + { + "cik": 1725526, + "symbol": "hpr", + "name": "highpoint resources corp" + }, + { + "cik": 1544227, + "symbol": "mlnd", + "name": "millendo therapeutics inc" + }, + { + "cik": 1502758, + "symbol": "nulgf", + "name": "nulegacy gold corp" + }, + { + "cik": 1305197, + "symbol": "fmo", + "name": "fiduciary claymore energy infrastructure fund" + }, + { + "cik": 1166272, + "symbol": "gene", + "name": "genetic technologies ltd" + }, + { + "cik": 1021270, + "symbol": "bbq", + "name": "bbq holdings inc" + }, + { + "cik": 1454789, + "symbol": "catb", + "name": "catabasis pharmaceuticals inc" + }, + { + "cik": 1335105, + "symbol": "lixtw", + "name": "lixte biotechnology holdings inc" + }, + { + "cik": 1584480, + "symbol": "laab", + "name": "startech labs inc" + }, + { + "cik": 1801834, + "symbol": "prfx", + "name": "painreform ltd" + }, + { + "cik": 1346610, + "symbol": "xrf", + "name": "sos ltd" + }, + { + "cik": 1382574, + "symbol": "meds", + "name": "trxade group inc" + }, + { + "cik": 1505413, + "symbol": "voc", + "name": "voc energy trust" + }, + { + "cik": 1707919, + "symbol": "nakd", + "name": "naked brand group ltd" + }, + { + "cik": 929545, + "symbol": "cdor", + "name": "condor hospitality trust inc" + }, + { + "cik": 1702318, + "symbol": "hx", + "name": "xiaobai maimai inc" + }, + { + "cik": 1339970, + "symbol": "life", + "name": "atyr pharma inc" + }, + { + "cik": 1098996, + "symbol": "ornc", + "name": "oranco inc" + }, + { + "cik": 885462, + "symbol": "gure", + "name": "gulf resources inc" + }, + { + "cik": 1099160, + "symbol": "bbgi", + "name": "beasley broadcast group inc" + }, + { + "cik": 13156, + "symbol": "glxz", + "name": "galaxy gaming inc" + }, + { + "cik": 856128, + "symbol": "mfv", + "name": "mfs special value trust" + }, + { + "cik": 1622408, + "symbol": "frfr", + "name": "fritzy tech inc" + }, + { + "cik": 812796, + "symbol": "sngxw", + "name": "soligenix inc" + }, + { + "cik": 1074828, + "symbol": "knwn", + "name": "know labs inc" + }, + { + "cik": 1108967, + "symbol": "oeg", + "name": "orbital energy group inc" + }, + { + "cik": 907654, + "symbol": "abio", + "name": "arca biopharma inc" + }, + { + "cik": 1806524, + "symbol": "lghlw", + "name": "lion group holding ltd" + }, + { + "cik": 1104855, + "symbol": "sprt", + "name": "supportcom inc" + }, + { + "cik": 1660046, + "symbol": "imrnw", + "name": "immuron ltd" + }, + { + "cik": 1489874, + "symbol": "ggrou", + "name": "golden growers cooperative" + }, + { + "cik": 1288750, + "symbol": "tlrs", + "name": "timberline resources corp" + }, + { + "cik": 1499684, + "symbol": "acez", + "name": "ariel clean energy inc" + }, + { + "cik": 1318641, + "symbol": "cbli", + "name": "cleveland biolabs inc" + }, + { + "cik": 1687932, + "symbol": "jill", + "name": "jjill inc" + }, + { + "cik": 855787, + "symbol": "aphe", + "name": "alpha energy inc" + }, + { + "cik": 808439, + "symbol": "tatt", + "name": "tat technologies ltd" + }, + { + "cik": 1178697, + "symbol": "sonm", + "name": "sonim technologies inc" + }, + { + "cik": 746210, + "symbol": "oblg", + "name": "oblong inc" + }, + { + "cik": 1289636, + "symbol": "pfie", + "name": "profire energy inc" + }, + { + "cik": 1320854, + "symbol": "rail", + "name": "freightcar america inc" + }, + { + "cik": 1449792, + "symbol": "ppsi", + "name": "pioneer power solutions inc" + }, + { + "cik": 925173, + "symbol": "ptbs", + "name": "potomac bancshares inc" + }, + { + "cik": 1730773, + "symbol": "bsfc", + "name": "blue star foods corp" + }, + { + "cik": 874292, + "symbol": "aey", + "name": "addvantage technologies group inc" + }, + { + "cik": 1066684, + "symbol": "tglo", + "name": "theglobe com inc" + }, + { + "cik": 1596123, + "symbol": "fbva", + "name": "farmers bankshares inc" + }, + { + "cik": 1781405, + "symbol": "odii", + "name": "odyssey semiconductor technologies inc" + }, + { + "cik": 1106838, + "symbol": "sonn", + "name": "sonnet biotherapeutics holdings inc" + }, + { + "cik": 1724009, + "symbol": "prt", + "name": "permrock royalty trust" + }, + { + "cik": 15847, + "symbol": "buks", + "name": "butler national corp" + }, + { + "cik": 1456189, + "symbol": "leat", + "name": "leatt corp" + }, + { + "cik": 1008848, + "symbol": "acor", + "name": "acorda therapeutics inc" + }, + { + "cik": 1328792, + "symbol": "tpcs", + "name": "techprecision corp" + }, + { + "cik": 1413263, + "symbol": "cjjd", + "name": "china jo-jo drugstores inc" + }, + { + "cik": 829323, + "symbol": "inuv", + "name": "inuvo inc" + }, + { + "cik": 813639, + "symbol": "clhrf", + "name": "nomad royalty co ltd" + }, + { + "cik": 1044676, + "symbol": "hcbc", + "name": "high country bancorp inc" + }, + { + "cik": 1288359, + "symbol": "otel", + "name": "otelco inc" + }, + { + "cik": 728387, + "symbol": "isr", + "name": "isoray inc" + }, + { + "cik": 1301236, + "symbol": "soho", + "name": "sotherly hotels inc" + }, + { + "cik": 109657, + "symbol": "gtbp", + "name": "gt biopharma inc" + }, + { + "cik": 1811109, + "symbol": "auvi", + "name": "applied uv inc" + }, + { + "cik": 1571329, + "symbol": "cpta", + "name": "capitala finance corp" + }, + { + "cik": 898171, + "symbol": "uwhr", + "name": "uwharrie capital corp" + }, + { + "cik": 351998, + "symbol": "daio", + "name": "data i o corp" + }, + { + "cik": 1437491, + "symbol": "zestd", + "name": "ecoark holdings inc" + }, + { + "cik": 1321834, + "symbol": "aker", + "name": "akers biosciences inc" + }, + { + "cik": 1514183, + "symbol": "ucut", + "name": "silo pharma inc" + }, + { + "cik": 1293818, + "symbol": "opgn", + "name": "opgen inc" + }, + { + "cik": 1001500, + "symbol": "lmrxf", + "name": "laramide resources ltd" + }, + { + "cik": 724742, + "symbol": "tphs", + "name": "trinity place holdings inc" + }, + { + "cik": 1015155, + "symbol": "cthr", + "name": "charles & colvard ltd" + }, + { + "cik": 1687451, + "symbol": "zkin", + "name": "zk international group co ltd" + }, + { + "cik": 1731176, + "symbol": "totar", + "name": "tottenham acquisition i ltd" + }, + { + "cik": 1031235, + "symbol": "self", + "name": "global self storage inc" + }, + { + "cik": 1414382, + "symbol": "clev", + "name": "concrete leveling systems inc" + }, + { + "cik": 819050, + "symbol": "bbi", + "name": "brickell biotech inc" + }, + { + "cik": 1074871, + "symbol": "modd", + "name": "modular medical inc" + }, + { + "cik": 751365, + "symbol": "virc", + "name": "virco mfg corporation" + }, + { + "cik": 1395627, + "symbol": "iid", + "name": "voya international high dividend equity income fund" + }, + { + "cik": 1652499, + "symbol": "cnttq", + "name": "canntrust holdings inc" + }, + { + "cik": 1594555, + "symbol": "hvbc", + "name": "hv bancorp inc" + }, + { + "cik": 1023364, + "symbol": "auto", + "name": "autoweb inc" + }, + { + "cik": 1616741, + "symbol": "pati", + "name": "patriot transportation holding inc" + }, + { + "cik": 1585608, + "symbol": "jagx", + "name": "jaguar health inc" + }, + { + "cik": 103872, + "symbol": "volt", + "name": "volt information sciences inc" + }, + { + "cik": 1379006, + "symbol": "nnvc", + "name": "nanoviricides inc" + }, + { + "cik": 771999, + "symbol": "dss", + "name": "document security systems inc" + }, + { + "cik": 1563568, + "symbol": "adom", + "name": "adomani inc" + }, + { + "cik": 1568875, + "symbol": "znrg", + "name": "znergy inc" + }, + { + "cik": 1031233, + "symbol": "ppbn", + "name": "pinnacle bankshares corp" + }, + { + "cik": 1715611, + "symbol": "bmmj", + "name": "body & mind inc" + }, + { + "cik": 50292, + "symbol": "iehc", + "name": "ieh corp" + }, + { + "cik": 1680962, + "symbol": "wgmcf", + "name": "winston gold corp" + }, + { + "cik": 1029125, + "symbol": "snbp", + "name": "panbela therapeutics inc" + }, + { + "cik": 1678022, + "symbol": "newa", + "name": "newater technology inc" + }, + { + "cik": 1420529, + "symbol": "aacg", + "name": "ata creativity global" + }, + { + "cik": 1611747, + "symbol": "bvxv", + "name": "biondvax pharmaceuticals ltd" + }, + { + "cik": 1629606, + "symbol": "drvd", + "name": "driven deliveries inc" + }, + { + "cik": 1009891, + "symbol": "airi", + "name": "air industries group" + }, + { + "cik": 1555074, + "symbol": "aamc", + "name": "altisource asset management corp" + }, + { + "cik": 1030192, + "symbol": "njmc", + "name": "new jersey mining co" + }, + { + "cik": 1023844, + "symbol": "nhld", + "name": "national holdings corp" + }, + { + "cik": 1056358, + "symbol": "mtex", + "name": "mannatech inc" + }, + { + "cik": 1302084, + "symbol": "nsrcf", + "name": "nextsource materials inc" + }, + { + "cik": 1542731, + "symbol": "lemif", + "name": "leading edge materials corp" + }, + { + "cik": 1808665, + "symbol": "asrt", + "name": "assertio holdings inc" + }, + { + "cik": 1299865, + "symbol": "gxsff", + "name": "goldsource mines inc" + }, + { + "cik": 1782309, + "symbol": "edtk", + "name": "skillful craftsman education technology ltd" + }, + { + "cik": 1574186, + "symbol": "zgsi", + "name": "zero gravity solutions inc" + }, + { + "cik": 29332, + "symbol": "dxyn", + "name": "dixie group inc" + }, + { + "cik": 1755058, + "symbol": "atif", + "name": "atif holdings ltd" + }, + { + "cik": 1629210, + "symbol": "pzg", + "name": "paramount gold nevada corp" + }, + { + "cik": 1630430, + "symbol": "gcty", + "name": "gain cities ltd" + }, + { + "cik": 1462047, + "symbol": "pgcg", + "name": "prime global capital group inc" + }, + { + "cik": 81955, + "symbol": "rand", + "name": "rand capital corp" + }, + { + "cik": 814676, + "symbol": "cpsh", + "name": "cps technologies corp de" + }, + { + "cik": 1607962, + "symbol": "rwlk", + "name": "rewalk robotics ltd" + }, + { + "cik": 1333172, + "symbol": "nm", + "name": "navios maritime holdings inc" + }, + { + "cik": 877019, + "symbol": "pnckf", + "name": "galleon gold corp" + }, + { + "cik": 1749849, + "symbol": "ogaa", + "name": "organic agricultural co ltd" + }, + { + "cik": 1092896, + "symbol": "cca", + "name": "mfs california municipal fund" + }, + { + "cik": 1812727, + "symbol": "reli", + "name": "reliance global group inc" + }, + { + "cik": 2186, + "symbol": "bkti", + "name": "bk technologies corp" + }, + { + "cik": 1001907, + "symbol": "astc", + "name": "astrotech corp" + }, + { + "cik": 1787005, + "symbol": "cnnb", + "name": "cincinnati bancorp inc" + }, + { + "cik": 1649009, + "symbol": "syatd", + "name": "siyata mobile inc" + }, + { + "cik": 1043961, + "symbol": "prpo", + "name": "precipio inc" + }, + { + "cik": 1095130, + "symbol": "iotc", + "name": "iota communications inc" + }, + { + "cik": 1009922, + "symbol": "nsfdf", + "name": "nxt energy solutions inc" + }, + { + "cik": 1098146, + "symbol": "pnbk", + "name": "patriot national bancorp inc" + }, + { + "cik": 878828, + "symbol": "wtt", + "name": "wireless telecom group inc" + }, + { + "cik": 12040, + "symbol": "bdl", + "name": "flanigans enterprises inc" + }, + { + "cik": 1442236, + "symbol": "qrhc", + "name": "quest resource holding corp" + }, + { + "cik": 1396633, + "symbol": "sume", + "name": "summer energy holdings inc" + }, + { + "cik": 1647705, + "symbol": "gbbt", + "name": "global boatworks holdings inc" + }, + { + "cik": 1729427, + "symbol": "cnsp", + "name": "cns pharmaceuticals inc" + }, + { + "cik": 1565228, + "symbol": "xgti", + "name": "vislink technologies inc" + }, + { + "cik": 1454981, + "symbol": "nyv", + "name": "nuveen new york municipal value fund 2" + }, + { + "cik": 96536, + "symbol": "tayd", + "name": "taylor devices inc" + }, + { + "cik": 1174940, + "symbol": "ogen", + "name": "oragenics inc" + }, + { + "cik": 1351573, + "symbol": "phcg", + "name": "pure harvest corporate group inc" + }, + { + "cik": 1463833, + "symbol": "idwm", + "name": "idw media holdings inc" + }, + { + "cik": 1308027, + "symbol": "vyst", + "name": "vystar corp" + }, + { + "cik": 1120970, + "symbol": "lode", + "name": "comstock mining inc" + }, + { + "cik": 1100397, + "symbol": "adxs", + "name": "advaxis inc" + }, + { + "cik": 1281845, + "symbol": "inno", + "name": "innocap inc" + }, + { + "cik": 1634447, + "symbol": "peck", + "name": "peck co holdings inc" + }, + { + "cik": 1385508, + "symbol": "opnt", + "name": "opiant pharmaceuticals inc" + }, + { + "cik": 1766526, + "symbol": "tectp", + "name": "tectonic financial inc" + }, + { + "cik": 1742518, + "symbol": "mtc", + "name": "mmtec inc" + }, + { + "cik": 866609, + "symbol": "io", + "name": "ion geophysical corp" + }, + { + "cik": 1371782, + "symbol": "mvo", + "name": "mv oil trust" + }, + { + "cik": 1341170, + "symbol": "esea", + "name": "euroseas ltd" + }, + { + "cik": 1314772, + "symbol": "sumr", + "name": "summer infant inc" + }, + { + "cik": 1106213, + "symbol": "sfrx", + "name": "seafarer exploration corp" + }, + { + "cik": 1601936, + "symbol": "ears", + "name": "auris medical holding ltd" + }, + { + "cik": 1343009, + "symbol": "cnbx", + "name": "cannabics pharmaceuticals inc" + }, + { + "cik": 1708405, + "symbol": "trmt", + "name": "tremont mortgage trust" + }, + { + "cik": 356037, + "symbol": "cspi", + "name": "csp inc ma" + }, + { + "cik": 1376321, + "symbol": "cnet", + "name": "zw data action technologies inc" + }, + { + "cik": 1498382, + "symbol": "dmpi", + "name": "kintara therapeutics inc" + }, + { + "cik": 1061027, + "symbol": "snss", + "name": "sunesis pharmaceuticals inc" + }, + { + "cik": 18172, + "symbol": "ctam", + "name": "a m castle & co" + }, + { + "cik": 1643154, + "symbol": "ithuf", + "name": "ianthus capital holdings inc" + }, + { + "cik": 100625, + "symbol": "srmc", + "name": "sierra monitor corp ca" + }, + { + "cik": 1768225, + "symbol": "emhtf", + "name": "emerald health therapeutics inc" + }, + { + "cik": 1467652, + "symbol": "neos", + "name": "neos therapeutics inc" + }, + { + "cik": 1477009, + "symbol": "cann", + "name": "general cannabis corp" + }, + { + "cik": 1418489, + "symbol": "gnrv", + "name": "grand river commerce inc" + }, + { + "cik": 101538, + "symbol": "uamy", + "name": "united states antimony corp" + }, + { + "cik": 917225, + "symbol": "xpl", + "name": "solitario zinc corp" + }, + { + "cik": 1771885, + "symbol": "huge", + "name": "fsd pharma inc" + }, + { + "cik": 899782, + "symbol": "nom", + "name": "nuveen missouri quality municipal income fund" + }, + { + "cik": 1668370, + "symbol": "tbltw", + "name": "toughbuilt industries inc" + }, + { + "cik": 1087022, + "symbol": "alrt", + "name": "alr technologies inc" + }, + { + "cik": 1484737, + "symbol": "hfbk", + "name": "harford bank" + }, + { + "cik": 1169029, + "symbol": "bzm", + "name": "blackrock maryland municipal bond trust" + }, + { + "cik": 1551206, + "symbol": "hgld", + "name": "patagonia gold corp" + }, + { + "cik": 1105101, + "symbol": "gigm", + "name": "gigamedia ltd" + }, + { + "cik": 1448397, + "symbol": "shipw", + "name": "seanergy maritime holdings corp" + }, + { + "cik": 838875, + "symbol": "wvvip", + "name": "willamette valley vineyards inc" + }, + { + "cik": 1076691, + "symbol": "osbk", + "name": "oconee financial corp" + }, + { + "cik": 1546853, + "symbol": "skky", + "name": "skkynet cloud systems inc" + }, + { + "cik": 1686850, + "symbol": "mots", + "name": "motus gi holdings inc" + }, + { + "cik": 1304161, + "symbol": "pbsv", + "name": "pharma-bio serv inc" + }, + { + "cik": 922521, + "symbol": "falc", + "name": "falconstor software inc" + }, + { + "cik": 1369290, + "symbol": "myo", + "name": "myomo inc" + }, + { + "cik": 1357671, + "symbol": "crtdw", + "name": "creatd inc" + }, + { + "cik": 86759, + "symbol": "sfef", + "name": "santa fe financial corp" + }, + { + "cik": 901824, + "symbol": "mhe", + "name": "blackrock massachusetts tax-exempt trust" + }, + { + "cik": 1069308, + "symbol": "acer", + "name": "acer therapeutics inc" + }, + { + "cik": 1485538, + "symbol": "osn", + "name": "ossen innovation co ltd" + }, + { + "cik": 744452, + "symbol": "apdn", + "name": "applied dna sciences inc" + }, + { + "cik": 880406, + "symbol": "cuba", + "name": "herzfeld caribbean basin fund inc" + }, + { + "cik": 1621199, + "symbol": "ughl", + "name": "union bridge holdings ltd" + }, + { + "cik": 1130166, + "symbol": "cycc", + "name": "cyclacel pharmaceuticals inc" + }, + { + "cik": 1670349, + "symbol": "uswsw", + "name": "us well services inc" + }, + { + "cik": 1737706, + "symbol": "sdrl", + "name": "seadrill ltd" + }, + { + "cik": 1277998, + "symbol": "mhpc", + "name": "manufactured housing properties inc" + }, + { + "cik": 885307, + "symbol": "jctcf", + "name": "jewett cameron trading co ltd" + }, + { + "cik": 1722731, + "symbol": "fdct", + "name": "fdctech inc" + }, + { + "cik": 1759136, + "symbol": "bhat", + "name": "blue hat interactive entertainment technology" + }, + { + "cik": 788965, + "symbol": "hnrg", + "name": "hallador energy co" + }, + { + "cik": 1586452, + "symbol": "lbao", + "name": "luboa group inc" + }, + { + "cik": 1617291, + "symbol": "mbcq", + "name": "mb bancorp inc" + }, + { + "cik": 65759, + "symbol": "mpad", + "name": "micropac industries inc" + }, + { + "cik": 1382231, + "symbol": "ftmr", + "name": "fortem resources inc" + }, + { + "cik": 890066, + "symbol": "glbz", + "name": "glen burnie bancorp" + }, + { + "cik": 1413898, + "symbol": "ahc", + "name": "a h belo corp" + }, + { + "cik": 1297937, + "symbol": "prka", + "name": "parks america inc" + }, + { + "cik": 1617351, + "symbol": "lepx", + "name": "mu yan technology group co ltd" + }, + { + "cik": 890447, + "symbol": "vtnr", + "name": "vertex energy inc" + }, + { + "cik": 1211211, + "symbol": "chmd", + "name": "median group inc" + }, + { + "cik": 850027, + "symbol": "grf", + "name": "eagle capital growth fund inc" + }, + { + "cik": 1314196, + "symbol": "olbg", + "name": "olb group inc" + }, + { + "cik": 79661, + "symbol": "prsi", + "name": "portsmouth square inc" + }, + { + "cik": 1630113, + "symbol": "btcy", + "name": "biotricity inc" + }, + { + "cik": 1527762, + "symbol": "mfh", + "name": "mercurity fintech holding inc" + }, + { + "cik": 1480170, + "symbol": "beob", + "name": "beo bancorp" + }, + { + "cik": 1069394, + "symbol": "fsi", + "name": "flexible solutions international inc" + }, + { + "cik": 1602380, + "symbol": "jroof", + "name": "jericho oil corp" + }, + { + "cik": 1350156, + "symbol": "paxh", + "name": "preaxia health care payment systems inc" + }, + { + "cik": 1019671, + "symbol": "seac", + "name": "seachange international inc" + }, + { + "cik": 864240, + "symbol": "sypr", + "name": "sypris solutions inc" + }, + { + "cik": 1417926, + "symbol": "invod", + "name": "invo bioscience inc" + }, + { + "cik": 823546, + "symbol": "rkfl", + "name": "rocketfuel blockchain inc" + }, + { + "cik": 1336364, + "symbol": "hnckf", + "name": "giga metals corp" + }, + { + "cik": 923883, + "symbol": "tltff", + "name": "theralase technologies inc fi" + }, + { + "cik": 1391933, + "symbol": "qnto", + "name": "quaint oak bancorp inc" + }, + { + "cik": 1659183, + "symbol": "ndvn", + "name": "ndivision inc" + }, + { + "cik": 55529, + "symbol": "kequ", + "name": "kewaunee scientific corp de" + }, + { + "cik": 1463208, + "symbol": "tlss", + "name": "transportation & logistics systems inc" + }, + { + "cik": 1107280, + "symbol": "ovtz", + "name": "oculus visiontech inc" + }, + { + "cik": 1559998, + "symbol": "vino", + "name": "gaucho group holdings inc" + }, + { + "cik": 1682948, + "symbol": "axnvf", + "name": "axion ventures inc" + }, + { + "cik": 1536196, + "symbol": "canf", + "name": "can-fite biopharma ltd" + }, + { + "cik": 1729089, + "symbol": "phcf", + "name": "puhui wealth investment management co ltd" + }, + { + "cik": 1780097, + "symbol": "bxrx", + "name": "baudax bio inc" + }, + { + "cik": 944480, + "symbol": "gvp", + "name": "gse systems inc" + }, + { + "cik": 1745846, + "symbol": "bdrex", + "name": "broadstone real estate access fund" + }, + { + "cik": 766792, + "symbol": "cvv", + "name": "cvd equipment corp" + }, + { + "cik": 1537435, + "symbol": "tgen", + "name": "tecogen inc" + }, + { + "cik": 1587246, + "symbol": "celp", + "name": "cypress environmental partners lp" + }, + { + "cik": 1026980, + "symbol": "apwc", + "name": "asia pacific wire & cable corp ltd" + }, + { + "cik": 880242, + "symbol": "blgo", + "name": "biolargo inc" + }, + { + "cik": 1469443, + "symbol": "rkda", + "name": "arcadia biosciences inc" + }, + { + "cik": 1612851, + "symbol": "plyn", + "name": "palayan resources inc" + }, + { + "cik": 1697834, + "symbol": "stmh", + "name": "stem holdings inc" + }, + { + "cik": 883107, + "symbol": "nanx", + "name": "nanophase technologies corp" + }, + { + "cik": 1495651, + "symbol": "uurad", + "name": "ucore rare metals inc" + }, + { + "cik": 1362898, + "symbol": "avlnf", + "name": "avalon advanced materials inc" + }, + { + "cik": 909724, + "symbol": "tlf", + "name": "tandy leather factory inc" + }, + { + "cik": 320017, + "symbol": "clbs", + "name": "caladrius biosciences inc" + }, + { + "cik": 1085243, + "symbol": "vtsi", + "name": "virtra inc" + }, + { + "cik": 1801762, + "symbol": "mlyf", + "name": "western magnesium corp" + }, + { + "cik": 825324, + "symbol": "gtim", + "name": "good times restaurants inc" + }, + { + "cik": 1381074, + "symbol": "ffhl", + "name": "fuwei films (holdings) co ltd" + }, + { + "cik": 1371451, + "symbol": "heol", + "name": "highwater ethanol llc" + }, + { + "cik": 1420368, + "symbol": "dlti", + "name": "dlt resolution inc" + }, + { + "cik": 93676, + "symbol": "scx", + "name": "starrett l s co" + }, + { + "cik": 1102432, + "symbol": "vkin", + "name": "viking energy group inc" + }, + { + "cik": 353184, + "symbol": "airtw", + "name": "air t inc" + }, + { + "cik": 865058, + "symbol": "nsec", + "name": "national security group inc" + }, + { + "cik": 1083490, + "symbol": "srre", + "name": "sunrise real estate group inc" + }, + { + "cik": 1088413, + "symbol": "glgi", + "name": "greystone logistics inc" + }, + { + "cik": 1590383, + "symbol": "bhtg", + "name": "biohitech global inc" + }, + { + "cik": 1577445, + "symbol": "sctc", + "name": "scoutcam inc" + }, + { + "cik": 1618500, + "symbol": "mdgsw", + "name": "medigus ltd" + }, + { + "cik": 1747661, + "symbol": "hht", + "name": "color star technology co ltd" + }, + { + "cik": 926423, + "symbol": "mindp", + "name": "mind technology inc" + }, + { + "cik": 1499494, + "symbol": "dxf", + "name": "dunxin financial holdings ltd" + }, + { + "cik": 1757840, + "symbol": "indo", + "name": "indonesia energy corp ltd" + }, + { + "cik": 1169483, + "symbol": "msbc", + "name": "mission bancorp" + }, + { + "cik": 1043000, + "symbol": "csu", + "name": "capital senior living corp" + }, + { + "cik": 1210708, + "symbol": "hson", + "name": "hudson global inc" + }, + { + "cik": 748268, + "symbol": "rcat", + "name": "red cat holdings inc" + }, + { + "cik": 1552743, + "symbol": "ecrd", + "name": "ecard inc" + }, + { + "cik": 1382943, + "symbol": "pred", + "name": "predictive technology group inc" + }, + { + "cik": 1296774, + "symbol": "ncty", + "name": "the9 ltd" + }, + { + "cik": 1778805, + "symbol": "trnf", + "name": "taronis fuels inc" + }, + { + "cik": 910679, + "symbol": "wvfc", + "name": "wvs financial corp" + }, + { + "cik": 1050606, + "symbol": "salm", + "name": "salem media group inc de" + }, + { + "cik": 922358, + "symbol": "fgpr", + "name": "ferrellgas partners l p" + }, + { + "cik": 1052054, + "symbol": "evol", + "name": "evolving systems inc" + }, + { + "cik": 1123267, + "symbol": "hannf", + "name": "hannan metals ltd" + }, + { + "cik": 1735012, + "symbol": "ivst", + "name": "innovest global inc" + }, + { + "cik": 878932, + "symbol": "eqs", + "name": "equus total return inc" + }, + { + "cik": 1537561, + "symbol": "arth", + "name": "arch therapeutics inc" + }, + { + "cik": 1682241, + "symbol": "lyl", + "name": "dragon victory international ltd" + }, + { + "cik": 1726711, + "symbol": "adtx", + "name": "aditx therapeutics inc" + }, + { + "cik": 1524326, + "symbol": "siocf", + "name": "crystal lake mining corp" + }, + { + "cik": 1019034, + "symbol": "bkyi", + "name": "bio key international inc" + }, + { + "cik": 1527541, + "symbol": "whlrp", + "name": "wheeler real estate investment trust inc" + }, + { + "cik": 1423586, + "symbol": "rihc", + "name": "rorine international holding corp" + }, + { + "cik": 749038, + "symbol": "ccur", + "name": "ccur holdings inc" + }, + { + "cik": 749647, + "symbol": "clsn", + "name": "celsion corp" + }, + { + "cik": 1443388, + "symbol": "gryn", + "name": "green hygienics holdings inc" + }, + { + "cik": 1567892, + "symbol": "mnk", + "name": "mallinckrodt plc" + }, + { + "cik": 1446189, + "symbol": "avepy", + "name": "aveng ltd" + }, + { + "cik": 1372514, + "symbol": "eyeg", + "name": "eyegate pharmaceuticals inc" + }, + { + "cik": 1098880, + "symbol": "igxt", + "name": "intelgenx technologies corp" + }, + { + "cik": 1784567, + "symbol": "hcdi", + "name": "harbor custom development inc" + }, + { + "cik": 1389545, + "symbol": "nby", + "name": "novabay pharmaceuticals inc" + }, + { + "cik": 1468639, + "symbol": "vicp", + "name": "vicapsys life sciences inc" + }, + { + "cik": 1319150, + "symbol": "pbmlf", + "name": "pacific booker minerals inc" + }, + { + "cik": 1513525, + "symbol": "adilw", + "name": "adial pharmaceuticals inc" + }, + { + "cik": 811240, + "symbol": "biol", + "name": "biolase inc" + }, + { + "cik": 1358164, + "symbol": "sycrf", + "name": "syncora holdings ltd" + }, + { + "cik": 1116548, + "symbol": "mxrof", + "name": "max resource corp" + }, + { + "cik": 1169034, + "symbol": "bhv", + "name": "blackrock virginia municipal bond trust" + }, + { + "cik": 1520048, + "symbol": "pvl", + "name": "permianville royalty trust" + }, + { + "cik": 72633, + "symbol": "nrt", + "name": "north european oil royalty trust" + }, + { + "cik": 882291, + "symbol": "aemd", + "name": "aethlon medical inc" + }, + { + "cik": 1506928, + "symbol": "avgr", + "name": "avinger inc" + }, + { + "cik": 1590695, + "symbol": "tlcc", + "name": "twinlab consolidated holdings inc" + }, + { + "cik": 1642178, + "symbol": "agnpf", + "name": "algernon pharmaceuticals inc" + }, + { + "cik": 1648428, + "symbol": "sqbg", + "name": "sequential brands group inc" + }, + { + "cik": 1172102, + "symbol": "fsrl", + "name": "first reliance bancshares inc" + }, + { + "cik": 946454, + "symbol": "btn", + "name": "ballantyne strong inc" + }, + { + "cik": 1393772, + "symbol": "budz", + "name": "weed inc" + }, + { + "cik": 1755101, + "symbol": "alds", + "name": "applife digital solutions inc" + }, + { + "cik": 1310067, + "symbol": "shldq", + "name": "sears holdings corp" + }, + { + "cik": 1735556, + "symbol": "plin", + "name": "china xiangtai food co ltd" + }, + { + "cik": 1589061, + "symbol": "gyro", + "name": "gyrodyne llc" + }, + { + "cik": 1500198, + "symbol": "nmtc", + "name": "neuroone medical technologies corp" + }, + { + "cik": 1161814, + "symbol": "kiq", + "name": "kelso technologies inc" + }, + { + "cik": 1379368, + "symbol": "hrrb", + "name": "horizon bancorp inc az" + }, + { + "cik": 1651987, + "symbol": "cfdb", + "name": "central federal bancshares inc" + }, + { + "cik": 1611110, + "symbol": "mdly", + "name": "medley management inc" + }, + { + "cik": 1029744, + "symbol": "sofo", + "name": "sonic foundry inc" + }, + { + "cik": 1775085, + "symbol": "cleu", + "name": "china liberal education holdings ltd" + }, + { + "cik": 1128189, + "symbol": "pktx", + "name": "protokinetix inc" + }, + { + "cik": 1491487, + "symbol": "tkat", + "name": "takung art co ltd" + }, + { + "cik": 1282224, + "symbol": "dlpn", + "name": "dolphin entertainment inc" + }, + { + "cik": 315958, + "symbol": "crmz", + "name": "creditriskmonitor com inc" + }, + { + "cik": 806517, + "symbol": "pmd", + "name": "psychemedics corp" + }, + { + "cik": 1444192, + "symbol": "acst", + "name": "acasti pharma inc" + }, + { + "cik": 1630176, + "symbol": "grck", + "name": "grey cloak tech inc" + }, + { + "cik": 1435064, + "symbol": "cetxw", + "name": "cemtrex inc" + }, + { + "cik": 949039, + "symbol": "dofsq", + "name": "diamond offshore drilling inc" + }, + { + "cik": 1076682, + "symbol": "pte", + "name": "polarityte inc" + }, + { + "cik": 1481241, + "symbol": "pshg", + "name": "performance shipping inc" + }, + { + "cik": 1435387, + "symbol": "denr", + "name": "discovery energy corp" + }, + { + "cik": 927761, + "symbol": "mymx", + "name": "mymetics corp" + }, + { + "cik": 1299969, + "symbol": "chci", + "name": "comstock holding companies inc" + }, + { + "cik": 1616262, + "symbol": "rmcf", + "name": "rocky mountain chocolate factory inc" + }, + { + "cik": 1454263, + "symbol": "gnwsf", + "name": "stagezero life sciences ltd" + }, + { + "cik": 894871, + "symbol": "mven", + "name": "themaven inc" + }, + { + "cik": 1547158, + "symbol": "ndp", + "name": "tortoise energy independence fund inc" + }, + { + "cik": 1009829, + "symbol": "jakk", + "name": "jakks pacific inc" + }, + { + "cik": 1682149, + "symbol": "wisa", + "name": "summit wireless technologies inc" + }, + { + "cik": 943034, + "symbol": "isns", + "name": "image sensing systems inc" + }, + { + "cik": 1627469, + "symbol": "ptzh", + "name": "photozou holdings inc" + }, + { + "cik": 1681941, + "symbol": "ifmk", + "name": "ifresh inc" + }, + { + "cik": 1016504, + "symbol": "inbp", + "name": "integrated biopharma inc" + }, + { + "cik": 795212, + "symbol": "twmc", + "name": "kaspien holdings inc" + }, + { + "cik": 1621906, + "symbol": "wstrf", + "name": "western uranium & vanadium corp" + }, + { + "cik": 1681682, + "symbol": "ndraw", + "name": "endra life sciences inc" + }, + { + "cik": 1604191, + "symbol": "azrx", + "name": "azurrx biopharma inc" + }, + { + "cik": 1063537, + "symbol": "ribt", + "name": "ricebran technologies" + }, + { + "cik": 1404281, + "symbol": "nvus", + "name": "eledon pharmaceuticals inc" + }, + { + "cik": 90168, + "symbol": "sif", + "name": "sifco industries inc" + }, + { + "cik": 100716, + "symbol": "unam", + "name": "unico american corp" + }, + { + "cik": 1399708, + "symbol": "nvcn", + "name": "neovasc inc" + }, + { + "cik": 1371217, + "symbol": "rsls", + "name": "reshape lifesciences inc" + }, + { + "cik": 1661039, + "symbol": "tptw", + "name": "tpt global tech inc" + }, + { + "cik": 1507957, + "symbol": "ipwr", + "name": "ideal power inc" + }, + { + "cik": 278165, + "symbol": "omqs", + "name": "omniq corp" + }, + { + "cik": 1596062, + "symbol": "qbio", + "name": "q biomed inc" + }, + { + "cik": 1525852, + "symbol": "mcig", + "name": "bots inc pr" + }, + { + "cik": 1113423, + "symbol": "aezs", + "name": "aeterna zentaris inc" + }, + { + "cik": 1117057, + "symbol": "plag", + "name": "planet green holdings corp" + }, + { + "cik": 1169987, + "symbol": "htgm", + "name": "htg molecular diagnostics inc" + }, + { + "cik": 1006045, + "symbol": "irix", + "name": "iridex corp" + }, + { + "cik": 315545, + "symbol": "pvctw", + "name": "provectus biopharmaceuticals inc" + }, + { + "cik": 1445815, + "symbol": "bixt", + "name": "bioxytran inc" + }, + { + "cik": 1448558, + "symbol": "grwcd", + "name": "grow capital inc" + }, + { + "cik": 1701261, + "symbol": "fami", + "name": "farmmi inc" + }, + { + "cik": 1410172, + "symbol": "rbcn", + "name": "rubicon technology inc" + }, + { + "cik": 1642375, + "symbol": "ghsi", + "name": "guardion health sciences inc" + }, + { + "cik": 1723187, + "symbol": "lhil", + "name": "leader hill corp" + }, + { + "cik": 1038277, + "symbol": "inis", + "name": "international isotopes inc" + }, + { + "cik": 87802, + "symbol": "scnd", + "name": "scientific industries inc" + }, + { + "cik": 1632053, + "symbol": "pcfp", + "name": "apotheca biosciences inc" + }, + { + "cik": 1516805, + "symbol": "moxc", + "name": "moxian inc" + }, + { + "cik": 19871, + "symbol": "cvr", + "name": "chicago rivet & machine co" + }, + { + "cik": 356590, + "symbol": "gtii", + "name": "global tech industries group inc" + }, + { + "cik": 1501268, + "symbol": "bntt", + "name": "bnet media group inc" + }, + { + "cik": 1701756, + "symbol": "gril", + "name": "muscle maker inc" + }, + { + "cik": 1391135, + "symbol": "aqsp", + "name": "acquired sales corp" + }, + { + "cik": 1668438, + "symbol": "imte", + "name": "integrated media technology ltd" + }, + { + "cik": 1099509, + "symbol": "vcsy", + "name": "vertical computer systems inc" + }, + { + "cik": 1163560, + "symbol": "gtmay", + "name": "grupo tmm sab" + }, + { + "cik": 933972, + "symbol": "pwvi", + "name": "powerverde inc" + }, + { + "cik": 1725332, + "symbol": "sfet", + "name": "safe-t group ltd" + }, + { + "cik": 1680139, + "symbol": "hlyk", + "name": "healthlynked corp" + }, + { + "cik": 1438461, + "symbol": "elre", + "name": "yinfu gold corp" + }, + { + "cik": 1711786, + "symbol": "hoth", + "name": "hoth therapeutics inc" + }, + { + "cik": 1274032, + "symbol": "awsm", + "name": "simply inc" + }, + { + "cik": 1267602, + "symbol": "alim", + "name": "alimera sciences inc" + }, + { + "cik": 1567900, + "symbol": "blbx", + "name": "blackboxstocks inc" + }, + { + "cik": 1393435, + "symbol": "grcaf", + "name": "trimetals mining inc" + }, + { + "cik": 1387473, + "symbol": "tigcf", + "name": "triumph gold corp" + }, + { + "cik": 1687542, + "symbol": "husn", + "name": "hudson capital inc" + }, + { + "cik": 1213660, + "symbol": "bimi", + "name": "boqi international medical inc" + }, + { + "cik": 1643918, + "symbol": "mtp", + "name": "midatech pharma plc" + }, + { + "cik": 1127993, + "symbol": "gaxy", + "name": "galaxy next generation inc" + }, + { + "cik": 1007019, + "symbol": "jva", + "name": "coffee holding co inc" + }, + { + "cik": 1488039, + "symbol": "atos", + "name": "atossa therapeutics inc" + }, + { + "cik": 1417370, + "symbol": "yuanf", + "name": "fincera inc" + }, + { + "cik": 1502292, + "symbol": "cnfr", + "name": "conifer holdings inc" + }, + { + "cik": 1358403, + "symbol": "blcm", + "name": "bellicum pharmaceuticals inc" + }, + { + "cik": 1508348, + "symbol": "acan", + "name": "americann inc" + }, + { + "cik": 1716621, + "symbol": "rmed", + "name": "ra medical systems inc" + }, + { + "cik": 1236997, + "symbol": "cpah", + "name": "counterpath corp" + }, + { + "cik": 1004989, + "symbol": "sgrp", + "name": "spar group inc" + }, + { + "cik": 1374328, + "symbol": "ftlf", + "name": "fitlife brands inc" + }, + { + "cik": 914139, + "symbol": "prkr", + "name": "parkervision inc" + }, + { + "cik": 1031093, + "symbol": "svbld", + "name": "silver bull resources inc" + }, + { + "cik": 1533030, + "symbol": "rdgc", + "name": "andina gold corp" + }, + { + "cik": 1415332, + "symbol": "ltum", + "name": "lithium corp" + }, + { + "cik": 1083220, + "symbol": "xelb", + "name": "xcel brands inc" + }, + { + "cik": 846546, + "symbol": "bnso", + "name": "bonso electronics international inc" + }, + { + "cik": 1481504, + "symbol": "banj", + "name": "xeriant inc" + }, + { + "cik": 83350, + "symbol": "rsrv", + "name": "reserve petroleum co" + }, + { + "cik": 1552670, + "symbol": "taop", + "name": "taoping inc" + }, + { + "cik": 1297830, + "symbol": "jrjc", + "name": "china finance online co ltd" + }, + { + "cik": 1383054, + "symbol": "dbs", + "name": "invesco db silver fund" + }, + { + "cik": 1410738, + "symbol": "vplm", + "name": "voip-palcom inc" + }, + { + "cik": 1723980, + "symbol": "sxtc", + "name": "china sxt pharmaceuticals inc" + }, + { + "cik": 1728328, + "symbol": "imlff", + "name": "inmed pharmaceuticals inc" + }, + { + "cik": 1454980, + "symbol": "njv", + "name": "nuveen new jersey municipal value fund" + }, + { + "cik": 1576197, + "symbol": "senr", + "name": "strategic environmental & energy resources inc" + }, + { + "cik": 32621, + "symbol": "msn", + "name": "emerson radio corp" + }, + { + "cik": 910267, + "symbol": "ttnp", + "name": "titan pharmaceuticals inc" + }, + { + "cik": 1059784, + "symbol": "gnbt", + "name": "generex biotechnology corp" + }, + { + "cik": 1458057, + "symbol": "ormnf", + "name": "orex minerals inc" + }, + { + "cik": 1013706, + "symbol": "whlm", + "name": "wilhelmina international inc" + }, + { + "cik": 1205181, + "symbol": "gpft", + "name": "grapefruit usa inc" + }, + { + "cik": 1389067, + "symbol": "ttcm", + "name": "tautachrome inc" + }, + { + "cik": 88000, + "symbol": "slgd", + "name": "scotts liquid gold - inc" + }, + { + "cik": 1449617, + "symbol": "moaef", + "name": "mongolia energy corp ltd" + }, + { + "cik": 1024672, + "symbol": "eltk", + "name": "eltek ltd" + }, + { + "cik": 1743858, + "symbol": "loacw", + "name": "longevity acquisition corp" + }, + { + "cik": 1551887, + "symbol": "vgrbf", + "name": "duesenberg technologies inc" + }, + { + "cik": 1759352, + "symbol": "cgol", + "name": "contact gold corp" + }, + { + "cik": 1464865, + "symbol": "ghmp", + "name": "good hemp inc" + }, + { + "cik": 1000230, + "symbol": "occ", + "name": "optical cable corp" + }, + { + "cik": 12239, + "symbol": "aiki", + "name": "aikido pharma inc" + }, + { + "cik": 867665, + "symbol": "axas", + "name": "abraxas petroleum corp" + }, + { + "cik": 919956, + "symbol": "dvcr", + "name": "diversicare healthcare services inc" + }, + { + "cik": 1468679, + "symbol": "cryo", + "name": "american cryostem corp" + }, + { + "cik": 1506492, + "symbol": "chfsw", + "name": "chf solutions inc" + }, + { + "cik": 829325, + "symbol": "spyr", + "name": "spyr inc" + }, + { + "cik": 1072772, + "symbol": "tmbxf", + "name": "tombstone exploration corp" + }, + { + "cik": 1309082, + "symbol": "cei", + "name": "camber energy inc" + }, + { + "cik": 1696195, + "symbol": "knit", + "name": "kinetic group inc" + }, + { + "cik": 1403570, + "symbol": "qtmm", + "name": "quantum materials corp" + }, + { + "cik": 1720161, + "symbol": "ctrm", + "name": "castor maritime inc" + }, + { + "cik": 922612, + "symbol": "smit", + "name": "schmitt industries inc" + }, + { + "cik": 711665, + "symbol": "gads", + "name": "gadsden properties inc" + }, + { + "cik": 1270436, + "symbol": "cohn", + "name": "cohen & co inc" + }, + { + "cik": 1521168, + "symbol": "per", + "name": "sandridge permian trust" + }, + { + "cik": 1489588, + "symbol": "grtd", + "name": "home bistro inc nv" + }, + { + "cik": 1291855, + "symbol": "spcb", + "name": "supercom ltd" + }, + { + "cik": 1099132, + "symbol": "mhtx", + "name": "manhattan scientifics inc" + }, + { + "cik": 1515251, + "symbol": "aturf", + "name": "sixth wave innovations inc" + }, + { + "cik": 1610853, + "symbol": "hsdt", + "name": "helius medical technologies inc" + }, + { + "cik": 1001601, + "symbol": "mgti", + "name": "mgt capital investments inc" + }, + { + "cik": 1751700, + "symbol": "tbba", + "name": "teb bancorp inc" + }, + { + "cik": 1679817, + "symbol": "ozsc", + "name": "ozop energy solutions inc" + }, + { + "cik": 874710, + "symbol": "ahpi", + "name": "allied healthcare products inc" + }, + { + "cik": 1679426, + "symbol": "atmo", + "name": "americatowne holdings inc" + }, + { + "cik": 908259, + "symbol": "matn", + "name": "mateon therapeutics inc" + }, + { + "cik": 1023109, + "symbol": "cvvuf", + "name": "canalaska uranium ltd" + }, + { + "cik": 1309057, + "symbol": "chhe", + "name": "china health industries holdings inc" + }, + { + "cik": 1638097, + "symbol": "entxw", + "name": "entera bio ltd" + }, + { + "cik": 1121702, + "symbol": "yten", + "name": "yield10 bioscience inc" + }, + { + "cik": 1016178, + "symbol": "carv", + "name": "carver bancorp inc" + }, + { + "cik": 1717556, + "symbol": "ednt", + "name": "vinco ventures inc" + }, + { + "cik": 700841, + "symbol": "rcmt", + "name": "rcm technologies inc" + }, + { + "cik": 1536394, + "symbol": "uslg", + "name": "us lighting group inc" + }, + { + "cik": 727510, + "symbol": "enzn", + "name": "enzon pharmaceuticals inc" + }, + { + "cik": 38264, + "symbol": "ford", + "name": "forward industries inc" + }, + { + "cik": 1104038, + "symbol": "vrmew", + "name": "verifyme inc" + }, + { + "cik": 89140, + "symbol": "svt", + "name": "servotronics inc de" + }, + { + "cik": 1802546, + "symbol": "kgkg", + "name": "kona gold beverage inc" + }, + { + "cik": 1449349, + "symbol": "rdgl", + "name": "vivos inc" + }, + { + "cik": 1661053, + "symbol": "hjliw", + "name": "hancock jaffe laboratories inc" + }, + { + "cik": 895126, + "symbol": "chkvq", + "name": "chesapeake energy corp" + }, + { + "cik": 1678848, + "symbol": "bimt", + "name": "bitmis corp" + }, + { + "cik": 1537028, + "symbol": "icd", + "name": "independence contract drilling inc" + }, + { + "cik": 1522222, + "symbol": "clsh", + "name": "cls holdings usa inc" + }, + { + "cik": 1578019, + "symbol": "trux", + "name": "truxton corp" + }, + { + "cik": 1591890, + "symbol": "fgfpp", + "name": "fg financial group inc" + }, + { + "cik": 915358, + "symbol": "sgma", + "name": "sigmatron international inc" + }, + { + "cik": 1045742, + "symbol": "live", + "name": "live ventures inc" + }, + { + "cik": 1398006, + "symbol": "bkor", + "name": "oak ridge financial services inc" + }, + { + "cik": 797465, + "symbol": "stly", + "name": "hg holdings inc" + }, + { + "cik": 1092289, + "symbol": "tat", + "name": "transatlantic petroleum ltd" + }, + { + "cik": 1348362, + "symbol": "lxrp", + "name": "lexaria bioscience corp" + }, + { + "cik": 1413745, + "symbol": "ante", + "name": "airnet technology inc" + }, + { + "cik": 82473, + "symbol": "iht", + "name": "innsuites hospitality trust" + }, + { + "cik": 1499780, + "symbol": "glbs", + "name": "globus maritime ltd" + }, + { + "cik": 1730869, + "symbol": "obtx", + "name": "obitx inc" + }, + { + "cik": 1106644, + "symbol": "cphi", + "name": "china pharma holdings inc" + }, + { + "cik": 1389002, + "symbol": "mrin", + "name": "marin software inc" + }, + { + "cik": 1716188, + "symbol": "ssbp", + "name": "ssb bancorp inc" + }, + { + "cik": 1608092, + "symbol": "kitl", + "name": "kisses from italy inc" + }, + { + "cik": 1635193, + "symbol": "ggo", + "name": "gabelli go anywhere trust" + }, + { + "cik": 1360565, + "symbol": "wfcfd", + "name": "where food comes from inc" + }, + { + "cik": 1635748, + "symbol": "zpas", + "name": "zoompass holdings inc" + }, + { + "cik": 22872, + "symbol": "chcr", + "name": "advanzeon solutions inc" + }, + { + "cik": 857949, + "symbol": "cga", + "name": "china green agriculture inc" + }, + { + "cik": 768408, + "symbol": "cyan", + "name": "cyanotech corp" + }, + { + "cik": 1407343, + "symbol": "tapp", + "name": "tap resources inc" + }, + { + "cik": 845385, + "symbol": "piac", + "name": "princeton capital corp" + }, + { + "cik": 40570, + "symbol": "job", + "name": "gee group inc" + }, + { + "cik": 1784254, + "symbol": "mdia", + "name": "mediaco holding inc" + }, + { + "cik": 1419951, + "symbol": "dtst", + "name": "data storage corp" + }, + { + "cik": 1526890, + "symbol": "intwf", + "name": "sharc international systems inc" + }, + { + "cik": 943535, + "symbol": "when", + "name": "world health energy holdings inc" + }, + { + "cik": 1563298, + "symbol": "eawd", + "name": "energy & water development corp" + }, + { + "cik": 912967, + "symbol": "fbsi", + "name": "first bancshares inc mo" + }, + { + "cik": 1568628, + "symbol": "bqst", + "name": "bioquest corp" + }, + { + "cik": 1474627, + "symbol": "llit", + "name": "lianluo smart ltd" + }, + { + "cik": 867840, + "symbol": "peye", + "name": "precision optics corporation inc" + }, + { + "cik": 1081938, + "symbol": "cpmd", + "name": "cannapharmarx inc" + }, + { + "cik": 56701, + "symbol": "koss", + "name": "koss corp" + }, + { + "cik": 1421570, + "symbol": "drrsf", + "name": "arianne phosphate inc" + }, + { + "cik": 1961, + "symbol": "wddd", + "name": "worlds inc" + }, + { + "cik": 1755068, + "symbol": "oilff", + "name": "nextleaf solutions ltd" + }, + { + "cik": 1575858, + "symbol": "pubc", + "name": "purebase corp" + }, + { + "cik": 1527587, + "symbol": "dcnpf", + "name": "duncan park holdings corp" + }, + { + "cik": 1635729, + "symbol": "eqtrf", + "name": "altamira gold corp" + }, + { + "cik": 803578, + "symbol": "iaic", + "name": "information analysis inc" + }, + { + "cik": 788611, + "symbol": "sglbw", + "name": "sigma labs inc" + }, + { + "cik": 1451512, + "symbol": "trtc", + "name": "terra tech corp" + }, + { + "cik": 1528308, + "symbol": "iinx", + "name": "ionix technology inc" + }, + { + "cik": 1640043, + "symbol": "pxsaw", + "name": "pyxis tankers inc" + }, + { + "cik": 942126, + "symbol": "tait", + "name": "taitron components inc" + }, + { + "cik": 1454978, + "symbol": "npn", + "name": "nuveen pennsylvania municipal value fund" + }, + { + "cik": 1367083, + "symbol": "snoa", + "name": "sonoma pharmaceuticals inc" + }, + { + "cik": 1084554, + "symbol": "ltbr", + "name": "lightbridge corp" + }, + { + "cik": 811212, + "symbol": "thmo", + "name": "thermogenesis holdings inc" + }, + { + "cik": 1054721, + "symbol": "bsqr", + "name": "bsquare corp wa" + }, + { + "cik": 880984, + "symbol": "acfn", + "name": "acorn energy inc" + }, + { + "cik": 1536089, + "symbol": "vrvr", + "name": "virtual interactive technologies corp" + }, + { + "cik": 1543652, + "symbol": "fflo", + "name": "free flow inc" + }, + { + "cik": 733337, + "symbol": "pwco", + "name": "pwrcor inc" + }, + { + "cik": 1662382, + "symbol": "brsf", + "name": "brain scientific inc" + }, + { + "cik": 45919, + "symbol": "hhs", + "name": "harte hanks inc" + }, + { + "cik": 1528760, + "symbol": "exeo", + "name": "exeo entertainment inc" + }, + { + "cik": 1133818, + "symbol": "bpth", + "name": "bio-path holdings inc" + }, + { + "cik": 1541190, + "symbol": "syhbf", + "name": "skyharbour resources ltd" + }, + { + "cik": 1088638, + "symbol": "mmnd", + "name": "mastermind inc" + }, + { + "cik": 1615999, + "symbol": "klfe", + "name": "neuropathix inc" + }, + { + "cik": 1424864, + "symbol": "ryes", + "name": "rise gold corp" + }, + { + "cik": 1692981, + "symbol": "venv", + "name": "venture vanadium inc" + }, + { + "cik": 718332, + "symbol": "rave", + "name": "rave restaurant group inc" + }, + { + "cik": 863900, + "symbol": "mxe", + "name": "mexico equity & income fund inc" + }, + { + "cik": 352955, + "symbol": "ckx", + "name": "ckx lands inc" + }, + { + "cik": 1358190, + "symbol": "itp", + "name": "it tech packaging inc" + }, + { + "cik": 1534248, + "symbol": "ancn", + "name": "anchiano therapeutics ltd" + }, + { + "cik": 1615219, + "symbol": "slrx", + "name": "salarius pharmaceuticals inc" + }, + { + "cik": 1067873, + "symbol": "iptk", + "name": "as-ip tech inc" + }, + { + "cik": 1085921, + "symbol": "mmtif", + "name": "micromem technologies inc" + }, + { + "cik": 1383701, + "symbol": "hsto", + "name": "histogen inc" + }, + { + "cik": 1549145, + "symbol": "allm", + "name": "alliance bioenergy plus inc" + }, + { + "cik": 1326706, + "symbol": "naov", + "name": "nanovibronix inc" + }, + { + "cik": 1011432, + "symbol": "ctek", + "name": "cynergistek inc" + }, + { + "cik": 1463978, + "symbol": "bkucf", + "name": "blue sky uranium corp" + }, + { + "cik": 1371128, + "symbol": "bsrc", + "name": "biosolar inc" + }, + { + "cik": 1141788, + "symbol": "hdvy", + "name": "health discovery corp" + }, + { + "cik": 1396536, + "symbol": "duot", + "name": "duos technologies group inc" + }, + { + "cik": 1693690, + "symbol": "voni", + "name": "veroni brands corp" + }, + { + "cik": 1084370, + "symbol": "bcii", + "name": "blockchain industries inc" + }, + { + "cik": 1456857, + "symbol": "mjne", + "name": "mj holdings inc" + }, + { + "cik": 944075, + "symbol": "sckt", + "name": "socket mobile inc" + }, + { + "cik": 1769725, + "symbol": "erkh", + "name": "eureka homestead bancorp inc" + }, + { + "cik": 1403870, + "symbol": "garwf", + "name": "golden arrow resources corp" + }, + { + "cik": 1716770, + "symbol": "wafu", + "name": "wah fu education group ltd" + }, + { + "cik": 1619096, + "symbol": "sntw", + "name": "summit networks inc" + }, + { + "cik": 1691077, + "symbol": "yayo", + "name": "rideshare rental inc" + }, + { + "cik": 1492448, + "symbol": "grnf", + "name": "grn holding corp" + }, + { + "cik": 1084267, + "symbol": "mobqd", + "name": "mobiquity technologies inc" + }, + { + "cik": 899394, + "symbol": "hrbr", + "name": "harbor diversified inc" + }, + { + "cik": 1638381, + "symbol": "ntec", + "name": "intec pharma ltd" + }, + { + "cik": 1534525, + "symbol": "xbio", + "name": "xenetic biosciences inc" + }, + { + "cik": 1101433, + "symbol": "qmci", + "name": "quotemedia inc" + }, + { + "cik": 1493712, + "symbol": "cmxc", + "name": "cell medx corp" + }, + { + "cik": 725394, + "symbol": "dfco", + "name": "dalrada financial corp" + }, + { + "cik": 1626644, + "symbol": "odyy", + "name": "odyssey group international inc" + }, + { + "cik": 1610590, + "symbol": "chekz", + "name": "check-cap ltd" + }, + { + "cik": 867038, + "symbol": "spnd", + "name": "spindletop oil & gas co" + }, + { + "cik": 1647866, + "symbol": "bnvif", + "name": "binovi technologies corp" + }, + { + "cik": 1096934, + "symbol": "syte", + "name": "enterprise diversified inc" + }, + { + "cik": 1329606, + "symbol": "cety", + "name": "clean energy technologies inc" + }, + { + "cik": 75340, + "symbol": "pfin", + "name": "p&f industries inc" + }, + { + "cik": 1017655, + "symbol": "payd", + "name": "paid inc" + }, + { + "cik": 1357971, + "symbol": "esoa", + "name": "energy services of america corp" + }, + { + "cik": 875729, + "symbol": "bnet", + "name": "bion environmental technologies inc" + }, + { + "cik": 1706145, + "symbol": "tgiff", + "name": "1933 industries inc" + }, + { + "cik": 1506756, + "symbol": "zxaiy", + "name": "china zenix auto international ltd" + }, + { + "cik": 1095747, + "symbol": "jcdaf", + "name": "jacada ltd" + }, + { + "cik": 910492, + "symbol": "fdlb", + "name": "fidelity federal bancorp" + }, + { + "cik": 1267612, + "symbol": "gzcc", + "name": "guozi zhongyu capital holdings" + }, + { + "cik": 1419051, + "symbol": "tsoi", + "name": "therapeutic solutions international inc" + }, + { + "cik": 1546296, + "symbol": "ipdn", + "name": "professional diversity network inc" + }, + { + "cik": 1391723, + "symbol": "leon", + "name": "leone asset management inc" + }, + { + "cik": 1026785, + "symbol": "hiho", + "name": "highway holdings ltd" + }, + { + "cik": 884247, + "symbol": "yvr", + "name": "liquid media group ltd" + }, + { + "cik": 1482753, + "symbol": "ethof", + "name": "ethos gold corp" + }, + { + "cik": 98338, + "symbol": "tsri", + "name": "tsr inc" + }, + { + "cik": 1673475, + "symbol": "ghhh", + "name": "gpo plus inc" + }, + { + "cik": 1533040, + "symbol": "phio", + "name": "phio pharmaceuticals corp" + }, + { + "cik": 1321992, + "symbol": "oreaf", + "name": "columbus gold corp" + }, + { + "cik": 1168981, + "symbol": "lvrlf", + "name": "cordovacann corp" + }, + { + "cik": 795800, + "symbol": "wscrf", + "name": "north american nickel inc" + }, + { + "cik": 1674227, + "symbol": "worx", + "name": "scworx corp" + }, + { + "cik": 1626696, + "symbol": "swgi", + "name": "star wealth group inc" + }, + { + "cik": 1397016, + "symbol": "opxs", + "name": "optex systems holdings inc" + }, + { + "cik": 1611746, + "symbol": "trpx", + "name": "therapix biosciences ltd" + }, + { + "cik": 1716324, + "symbol": "rgmp", + "name": "regnum corp" + }, + { + "cik": 20639, + "symbol": "abcp", + "name": "ambase corp" + }, + { + "cik": 1687277, + "symbol": "reto", + "name": "reto eco-solutions inc" + }, + { + "cik": 857737, + "symbol": "icon", + "name": "iconix brand group inc" + }, + { + "cik": 1105542, + "symbol": "airo", + "name": "airspan networks inc" + }, + { + "cik": 1652350, + "symbol": "rwrdp", + "name": "iconsumer corp" + }, + { + "cik": 1179821, + "symbol": "bgi", + "name": "birks group inc" + }, + { + "cik": 1582284, + "symbol": "apeuf", + "name": "atlas engineered products ltd" + }, + { + "cik": 1737204, + "symbol": "rvra", + "name": "riviera resources inc" + }, + { + "cik": 1715819, + "symbol": "elcq", + "name": "electromedical technologies inc" + }, + { + "cik": 1378590, + "symbol": "blin", + "name": "bridgeline digital inc" + }, + { + "cik": 30831, + "symbol": "dysl", + "name": "dynasil corp of america" + }, + { + "cik": 34285, + "symbol": "rlby", + "name": "reliability inc" + }, + { + "cik": 1698022, + "symbol": "fmfg", + "name": "farmers & merchants bancshares inc" + }, + { + "cik": 924168, + "symbol": "efoi", + "name": "energy focus inc de" + }, + { + "cik": 1375195, + "symbol": "crtg", + "name": "coretec group inc" + }, + { + "cik": 1645260, + "symbol": "tomdf", + "name": "todos medical ltd" + }, + { + "cik": 721693, + "symbol": "creg", + "name": "china recycling energy corp" + }, + { + "cik": 1403749, + "symbol": "flylf", + "name": "flyht aerospace solutions ltd" + }, + { + "cik": 1099668, + "symbol": "fotb", + "name": "first ottawa bancshares inc" + }, + { + "cik": 1360442, + "symbol": "cbds", + "name": "cannabis sativa inc" + }, + { + "cik": 1392694, + "symbol": "surg", + "name": "surgepays inc" + }, + { + "cik": 1290504, + "symbol": "nugs", + "name": "cannabis strategic ventures" + }, + { + "cik": 1789192, + "symbol": "safo", + "name": "save foods inc" + }, + { + "cik": 722313, + "symbol": "nsys", + "name": "nortech systems inc" + }, + { + "cik": 732026, + "symbol": "trt", + "name": "trio-tech international" + }, + { + "cik": 351789, + "symbol": "else", + "name": "electro sensors inc" + }, + { + "cik": 1808898, + "symbol": "bntc", + "name": "benitec biopharma inc" + }, + { + "cik": 1561180, + "symbol": "pqeff", + "name": "petroteq energy inc" + }, + { + "cik": 1409036, + "symbol": "tarsf", + "name": "alianza minerals ltd" + }, + { + "cik": 1058307, + "symbol": "osat", + "name": "orbsat corp" + }, + { + "cik": 1603345, + "symbol": "agtx", + "name": "agentix corp" + }, + { + "cik": 1054102, + "symbol": "idxg", + "name": "interpace biosciences inc" + }, + { + "cik": 707388, + "symbol": "dradp", + "name": "digirad corp" + }, + { + "cik": 34956, + "symbol": "tenx", + "name": "tenax therapeutics inc" + }, + { + "cik": 1604738, + "symbol": "ainc", + "name": "ashford inc" + }, + { + "cik": 1236275, + "symbol": "ssnt", + "name": "silversun technologies inc" + }, + { + "cik": 1115672, + "symbol": "urlof", + "name": "namesilo technologies corp" + }, + { + "cik": 1047446, + "symbol": "cfok", + "name": "community first bancorp" + }, + { + "cik": 314808, + "symbol": "val", + "name": "valaris plc" + }, + { + "cik": 1000683, + "symbol": "bdr", + "name": "blonder tongue laboratories inc" + }, + { + "cik": 1543268, + "symbol": "myt", + "name": "urban tea inc" + }, + { + "cik": 1652539, + "symbol": "snrg", + "name": "susglobal energy corp" + }, + { + "cik": 1357459, + "symbol": "snca", + "name": "seneca biopharma inc" + }, + { + "cik": 1394108, + "symbol": "suic", + "name": "sino united worldwide consolidated ltd" + }, + { + "cik": 1271075, + "symbol": "pxhi", + "name": "usellcom inc" + }, + { + "cik": 806592, + "symbol": "suwn", + "name": "sunwin stevia international inc" + }, + { + "cik": 890821, + "symbol": "amrhw", + "name": "ameri holdings inc" + }, + { + "cik": 1640152, + "symbol": "clabf", + "name": "core one labs inc" + }, + { + "cik": 1111741, + "symbol": "dynr", + "name": "dynaresource inc" + }, + { + "cik": 1729944, + "symbol": "imacw", + "name": "imac holdings inc" + }, + { + "cik": 1627041, + "symbol": "vcor", + "name": "visiber57 corp" + }, + { + "cik": 1023549, + "symbol": "xtlb", + "name": "xtl biopharmaceuticals ltd" + }, + { + "cik": 1534708, + "symbol": "east", + "name": "eastside distilling inc" + }, + { + "cik": 1603998, + "symbol": "dse", + "name": "duff & phelps select mlp & midstream energy fund inc" + }, + { + "cik": 1485029, + "symbol": "nahd", + "name": "new asia holdings inc" + }, + { + "cik": 1558740, + "symbol": "zyrx", + "name": "zyrox mining international inc" + }, + { + "cik": 1103833, + "symbol": "crwe", + "name": "crown equity holdings inc" + }, + { + "cik": 1600422, + "symbol": "sdpi", + "name": "superior drilling products inc" + }, + { + "cik": 812149, + "symbol": "rgbd", + "name": "regional brands inc" + }, + { + "cik": 1083301, + "symbol": "iknx", + "name": "ikonics corp" + }, + { + "cik": 1473334, + "symbol": "nvfy", + "name": "nova lifestyle inc" + }, + { + "cik": 923601, + "symbol": "smdm", + "name": "singing machine co inc" + }, + { + "cik": 1563463, + "symbol": "nlbs", + "name": "nutralife biosciences inc" + }, + { + "cik": 1591956, + "symbol": "any", + "name": "sphere 3d corp" + }, + { + "cik": 1422892, + "symbol": "sino", + "name": "sino-global shipping america ltd" + }, + { + "cik": 1731388, + "symbol": "edry", + "name": "eurodry ltd" + }, + { + "cik": 1138476, + "symbol": "pfho", + "name": "pacific health care organization inc" + }, + { + "cik": 1333822, + "symbol": "leds", + "name": "semileds corp" + }, + { + "cik": 1292519, + "symbol": "nviv", + "name": "invivo therapeutics holdings corp" + }, + { + "cik": 1377167, + "symbol": "fgco", + "name": "financial gravity companies inc" + }, + { + "cik": 754813, + "symbol": "hewa", + "name": "healthwarehousecom inc" + }, + { + "cik": 1326089, + "symbol": "snde", + "name": "sundance energy inc" + }, + { + "cik": 1022505, + "symbol": "clok", + "name": "cipherloc corp" + }, + { + "cik": 1385799, + "symbol": "abmt", + "name": "advanced biomedical technologies inc" + }, + { + "cik": 1083522, + "symbol": "jsda", + "name": "jones soda co" + }, + { + "cik": 1293977, + "symbol": "itnrf", + "name": "intelligent energy holdings plc" + }, + { + "cik": 1011662, + "symbol": "gdsi", + "name": "global digital solutions inc" + }, + { + "cik": 1632323, + "symbol": "bxng", + "name": "bang holdings corp" + }, + { + "cik": 1001614, + "symbol": "tgc", + "name": "tengasco inc" + }, + { + "cik": 1421289, + "symbol": "lvvv", + "name": "livewire ergogenics inc" + }, + { + "cik": 1086303, + "symbol": "hybt", + "name": "heyu biological technology corp" + }, + { + "cik": 1433607, + "symbol": "nspr", + "name": "inspiremd inc" + }, + { + "cik": 1356093, + "symbol": "crex", + "name": "creative realities inc" + }, + { + "cik": 1295961, + "symbol": "qegy", + "name": "quantum energy inc" + }, + { + "cik": 1165320, + "symbol": "gblx", + "name": "gb sciences inc" + }, + { + "cik": 1069680, + "symbol": "hhse", + "name": "hannover house inc" + }, + { + "cik": 1362705, + "symbol": "snmp", + "name": "sanchez midstream partners lp" + }, + { + "cik": 1042418, + "symbol": "inti", + "name": "inhibitor therapeutics inc" + }, + { + "cik": 1423723, + "symbol": "qhyg", + "name": "qhy group" + }, + { + "cik": 1339688, + "symbol": "qtrrf", + "name": "quaterra resources inc" + }, + { + "cik": 860543, + "symbol": "jksm", + "name": "jacksam corp" + }, + { + "cik": 1718903, + "symbol": "rlm", + "name": "realm therapeutics plc" + }, + { + "cik": 311817, + "symbol": "hmg", + "name": "hmg courtland properties inc" + }, + { + "cik": 826253, + "symbol": "ausi", + "name": "aura systems inc" + }, + { + "cik": 1169717, + "symbol": "adra", + "name": "invesco bldrs index funds trust" + }, + { + "cik": 66418, + "symbol": "mxc", + "name": "mexco energy corp" + }, + { + "cik": 1005119, + "symbol": "crzy", + "name": "crazy woman creek bancorp inc" + }, + { + "cik": 832489, + "symbol": "govxw", + "name": "geovax labs inc" + }, + { + "cik": 1427570, + "symbol": "obln", + "name": "obalon therapeutics inc" + }, + { + "cik": 1462223, + "symbol": "rcrt", + "name": "recruitercom group inc" + }, + { + "cik": 1563665, + "symbol": "bstg", + "name": "biostage inc" + }, + { + "cik": 1164888, + "symbol": "kbph", + "name": "kyto technology & life science inc" + }, + { + "cik": 1446159, + "symbol": "poai", + "name": "predictive oncology inc" + }, + { + "cik": 720875, + "symbol": "dynt", + "name": "dynatronics corp" + }, + { + "cik": 1042187, + "symbol": "ctib", + "name": "yunhong cti ltd" + }, + { + "cik": 839087, + "symbol": "vaso", + "name": "vaso corp" + }, + { + "cik": 96885, + "symbol": "tikk", + "name": "tel instrument electronics corp" + }, + { + "cik": 1172178, + "symbol": "lbsr", + "name": "liberty star uranium & metals corp" + }, + { + "cik": 1156041, + "symbol": "husa", + "name": "houston american energy corp" + }, + { + "cik": 1005516, + "symbol": "bosc", + "name": "bos better online solutions ltd" + }, + { + "cik": 744825, + "symbol": "ams", + "name": "american shared hospital services" + }, + { + "cik": 1643721, + "symbol": "lbuy", + "name": "leafbuyer technologies inc" + }, + { + "cik": 312257, + "symbol": "ivfh", + "name": "innovative food holdings inc" + }, + { + "cik": 1289850, + "symbol": "nuro", + "name": "neurometrix inc" + }, + { + "cik": 1592782, + "symbol": "nukk", + "name": "nukkleus inc" + }, + { + "cik": 1103640, + "symbol": "omps", + "name": "omphalos corp" + }, + { + "cik": 1021604, + "symbol": "otiv", + "name": "on track innovations ltd" + }, + { + "cik": 1429393, + "symbol": "tkls", + "name": "trutankless inc" + }, + { + "cik": 1819074, + "symbol": "ptnyf", + "name": "parcelpal technology inc" + }, + { + "cik": 1698702, + "symbol": "argc", + "name": "arion group corp" + }, + { + "cik": 1157075, + "symbol": "pmcb", + "name": "pharmacyte biotech inc" + }, + { + "cik": 1545224, + "symbol": "prpcf", + "name": "silver elephant mining corp" + }, + { + "cik": 1336277, + "symbol": "fugi", + "name": "fuego enterprises inc" + }, + { + "cik": 1320760, + "symbol": "tssi", + "name": "tss inc" + }, + { + "cik": 747540, + "symbol": "sprs", + "name": "surge components inc" + }, + { + "cik": 1349929, + "symbol": "cgix", + "name": "cancer genetics inc" + }, + { + "cik": 1301713, + "symbol": "shvlf", + "name": "starcore international mines ltd" + }, + { + "cik": 1275477, + "symbol": "bmnm", + "name": "bimini capital management inc" + }, + { + "cik": 1190370, + "symbol": "ivdn", + "name": "innovative designs inc" + }, + { + "cik": 1127307, + "symbol": "ggthf", + "name": "golden goliath resources ltd" + }, + { + "cik": 1475430, + "symbol": "jshg", + "name": "joshua gold resources inc" + }, + { + "cik": 1654595, + "symbol": "mdrrp", + "name": "medalist diversified reit inc" + }, + { + "cik": 1445175, + "symbol": "ltgj", + "name": "xiamen lutong international travel agency co ltd" + }, + { + "cik": 1090396, + "symbol": "tbtc", + "name": "table trac inc" + }, + { + "cik": 1119897, + "symbol": "pctl", + "name": "pct ltd" + }, + { + "cik": 813298, + "symbol": "dxlg", + "name": "destination xl group inc" + }, + { + "cik": 1706509, + "symbol": "cosg", + "name": "cosmos group holdings inc" + }, + { + "cik": 1626556, + "symbol": "amct", + "name": "american education center inc" + }, + { + "cik": 1658880, + "symbol": "brmt", + "name": "bare metal standard inc" + }, + { + "cik": 1022899, + "symbol": "ptix", + "name": "protagenic therapeutics inc new" + }, + { + "cik": 1081745, + "symbol": "inlx", + "name": "intellinetics inc" + }, + { + "cik": 66496, + "symbol": "mmtrs", + "name": "mills music trust" + }, + { + "cik": 1670869, + "symbol": "rmhb", + "name": "rocky mountain high brands inc" + }, + { + "cik": 1415684, + "symbol": "mslp", + "name": "musclepharm corp" + }, + { + "cik": 826326, + "symbol": "arcw", + "name": "arc group worldwide inc" + }, + { + "cik": 1792554, + "symbol": "eqmef", + "name": "equity metals corp" + }, + { + "cik": 727346, + "symbol": "gbcs", + "name": "global healthcare reit inc" + }, + { + "cik": 1398713, + "symbol": "nvdef", + "name": "nevada exploration inc" + }, + { + "cik": 1026662, + "symbol": "clwt", + "name": "euro tech holdings co ltd" + }, + { + "cik": 1478682, + "symbol": "empm", + "name": "empire post media inc" + }, + { + "cik": 1358254, + "symbol": "esbs", + "name": "es bancshares inc" + }, + { + "cik": 7623, + "symbol": "artw", + "name": "arts way manufacturing co inc" + }, + { + "cik": 1491829, + "symbol": "anav", + "name": "alpha network alliance ventures inc" + }, + { + "cik": 1138608, + "symbol": "xlrm", + "name": "xlr medical corp" + }, + { + "cik": 1516551, + "symbol": "embi", + "name": "emerald bioscience inc" + }, + { + "cik": 101594, + "symbol": "useg", + "name": "us energy corp" + }, + { + "cik": 1023298, + "symbol": "alpe", + "name": "alpha-en corp" + }, + { + "cik": 844856, + "symbol": "hcmc", + "name": "healthier choices management corp" + }, + { + "cik": 1077640, + "symbol": "wmllf", + "name": "wealth minerals ltd" + }, + { + "cik": 912764, + "symbol": "ksbi", + "name": "ks bancorp inc" + }, + { + "cik": 875355, + "symbol": "isig", + "name": "insignia systems inc mn" + }, + { + "cik": 1379043, + "symbol": "dkmr", + "name": "duke mountain resources inc" + }, + { + "cik": 1516887, + "symbol": "wcui", + "name": "wellness center usa inc" + }, + { + "cik": 1482541, + "symbol": "srna", + "name": "surna inc" + }, + { + "cik": 1591565, + "symbol": "blyq", + "name": "bally corp" + }, + { + "cik": 1584693, + "symbol": "hitc", + "name": "healthcare integrated technologies inc" + }, + { + "cik": 1689231, + "symbol": "libff", + "name": "nova mentis life science corp" + }, + { + "cik": 888981, + "symbol": "nnup", + "name": "nocopi technologies inc md" + }, + { + "cik": 1434737, + "symbol": "srsg", + "name": "spirits time international inc" + }, + { + "cik": 941685, + "symbol": "iwsy", + "name": "imageware systems inc" + }, + { + "cik": 1569329, + "symbol": "ygyip", + "name": "youngevity international inc" + }, + { + "cik": 1095981, + "symbol": "pstv", + "name": "plus therapeutics inc" + }, + { + "cik": 1819663, + "symbol": "ndynd", + "name": "vinings holdings inc" + }, + { + "cik": 1442101, + "symbol": "zyjt", + "name": "zhong ya international ltd" + }, + { + "cik": 1289496, + "symbol": "cbai", + "name": "cba florida inc" + }, + { + "cik": 1285543, + "symbol": "sford", + "name": "strikeforce technologies inc" + }, + { + "cik": 1703253, + "symbol": "blilf", + "name": "bearing lithium corp" + }, + { + "cik": 1409680, + "symbol": "mlrkf", + "name": "millrock resources inc" + }, + { + "cik": 1571398, + "symbol": "snny", + "name": "sunnyside bancorp inc" + }, + { + "cik": 1634293, + "symbol": "exdw", + "name": "exceed world inc" + }, + { + "cik": 1640384, + "symbol": "lmfaw", + "name": "lm funding america inc" + }, + { + "cik": 1482436, + "symbol": "wrpsf", + "name": "oro x mining corp" + }, + { + "cik": 919567, + "symbol": "rcg", + "name": "renn fund inc" + }, + { + "cik": 10048, + "symbol": "brn", + "name": "barnwell industries inc" + }, + { + "cik": 719274, + "symbol": "giga", + "name": "giga tronics inc" + }, + { + "cik": 1657214, + "symbol": "ilal", + "name": "international land alliance inc" + }, + { + "cik": 1584831, + "symbol": "oxbr", + "name": "oxbridge re holdings ltd" + }, + { + "cik": 1500620, + "symbol": "bgavf", + "name": "bravada gold corp" + }, + { + "cik": 1300734, + "symbol": "tyht", + "name": "shineco inc" + }, + { + "cik": 1437736, + "symbol": "prsef", + "name": "prosafe se adr" + }, + { + "cik": 819689, + "symbol": "micr", + "name": "micron solutions inc de" + }, + { + "cik": 726293, + "symbol": "nbgv", + "name": "newbridge global ventures inc" + }, + { + "cik": 1418149, + "symbol": "hlrtf", + "name": "hillcrest petroleum ltd" + }, + { + "cik": 1539680, + "symbol": "hmmr", + "name": "hammer fiber optics holdings corp" + }, + { + "cik": 730349, + "symbol": "tofb", + "name": "tofutti brands inc" + }, + { + "cik": 1091596, + "symbol": "aurx", + "name": "nuo therapeutics inc" + }, + { + "cik": 1621221, + "symbol": "artlw", + "name": "artelo biosciences inc" + }, + { + "cik": 1669400, + "symbol": "vfrm", + "name": "veritas farms inc" + }, + { + "cik": 319458, + "symbol": "ensv", + "name": "enservco corp" + }, + { + "cik": 879682, + "symbol": "vive", + "name": "viveve medical inc" + }, + { + "cik": 1658304, + "symbol": "clci", + "name": "clic technology inc" + }, + { + "cik": 1524769, + "symbol": "chkr", + "name": "chesapeake granite wash trust" + }, + { + "cik": 1603519, + "symbol": "alxef", + "name": "alx resources corp" + }, + { + "cik": 1681769, + "symbol": "ccycd", + "name": "clancy corp" + }, + { + "cik": 1372954, + "symbol": "gryo", + "name": "ameritrust corp" + }, + { + "cik": 1080448, + "symbol": "pgol", + "name": "patriot gold corp" + }, + { + "cik": 1418115, + "symbol": "vrty", + "name": "healthcare solutions management group inc" + }, + { + "cik": 1211805, + "symbol": "mysz", + "name": "my size inc" + }, + { + "cik": 1676163, + "symbol": "avmr", + "name": "avra medical robotics inc" + }, + { + "cik": 1300524, + "symbol": "amih", + "name": "american international holdings corp" + }, + { + "cik": 711034, + "symbol": "thmg", + "name": "thunder mountain gold inc" + }, + { + "cik": 1175596, + "symbol": "axref", + "name": "amarc resources ltd" + }, + { + "cik": 874499, + "symbol": "gpor", + "name": "gulfport energy corp" + }, + { + "cik": 1451797, + "symbol": "ahcpd", + "name": "changsheng international group ltd" + }, + { + "cik": 1377149, + "symbol": "crvw", + "name": "careview communications inc" + }, + { + "cik": 1175158, + "symbol": "tvlf", + "name": "tennessee valley financial holdings inc" + }, + { + "cik": 1714024, + "symbol": "vtlr", + "name": "virtualarmour international inc" + }, + { + "cik": 868822, + "symbol": "crcud", + "name": "canagold resources ltd" + }, + { + "cik": 1507181, + "symbol": "wrss", + "name": "mountain high acquisitions corp" + }, + { + "cik": 1271580, + "symbol": "bvtef", + "name": "iconic minerals ltd" + }, + { + "cik": 1504167, + "symbol": "tmbr", + "name": "timber pharmaceuticals inc" + }, + { + "cik": 1443611, + "symbol": "sing", + "name": "singlepoint inc" + }, + { + "cik": 831378, + "symbol": "ftgi", + "name": "finotec group inc" + }, + { + "cik": 1409175, + "symbol": "wect", + "name": "weconnect tech international inc" + }, + { + "cik": 1613979, + "symbol": "zphyf", + "name": "zephyr minerals ltd" + }, + { + "cik": 1061069, + "symbol": "awx", + "name": "avalon holdings corp" + }, + { + "cik": 1593204, + "symbol": "adadd", + "name": "adaiah distribution inc" + }, + { + "cik": 1261002, + "symbol": "gnolf", + "name": "genoil inc" + }, + { + "cik": 1078799, + "symbol": "mcoa", + "name": "marijuana co of america inc" + }, + { + "cik": 1676580, + "symbol": "hccc", + "name": "vision hydrogen corp" + }, + { + "cik": 1463000, + "symbol": "grusf", + "name": "grown rogue international inc" + }, + { + "cik": 1288855, + "symbol": "ophc", + "name": "optimumbank holdings inc" + }, + { + "cik": 1450894, + "symbol": "iaalf", + "name": "ibc advanced alloys corp" + }, + { + "cik": 1096275, + "symbol": "fnhi", + "name": "worksport ltd" + }, + { + "cik": 887396, + "symbol": "empr", + "name": "empire petroleum corp" + }, + { + "cik": 1499717, + "symbol": "staf", + "name": "staffing 360 solutions inc" + }, + { + "cik": 1578505, + "symbol": "hwis", + "name": "home bancorp wisconsin inc" + }, + { + "cik": 105744, + "symbol": "gbr", + "name": "new concept energy inc" + }, + { + "cik": 1020186, + "symbol": "cbev", + "name": "capital beverage corp" + }, + { + "cik": 1133519, + "symbol": "mcujf", + "name": "medicure inc" + }, + { + "cik": 1435163, + "symbol": "ctdt", + "name": "centaurus diamond technologies inc" + }, + { + "cik": 1442620, + "symbol": "rcon", + "name": "recon technology ltd" + }, + { + "cik": 1662574, + "symbol": "grmm", + "name": "grom social enterprises inc" + }, + { + "cik": 1021435, + "symbol": "hpto", + "name": "hopto inc" + }, + { + "cik": 900475, + "symbol": "smkg", + "name": "smartcard marketing systems inc" + }, + { + "cik": 1572384, + "symbol": "rssv", + "name": "resort savers inc" + }, + { + "cik": 830656, + "symbol": "pbio", + "name": "pressure biosciences inc" + }, + { + "cik": 1651932, + "symbol": "xito", + "name": "xenous holdings inc" + }, + { + "cik": 1099369, + "symbol": "dsny", + "name": "destiny media technologies inc" + }, + { + "cik": 1002771, + "symbol": "igpk", + "name": "integrated cannabis solutions inc" + }, + { + "cik": 1638911, + "symbol": "usdr", + "name": "uas drone corp" + }, + { + "cik": 1318268, + "symbol": "mdex", + "name": "madison technologies inc" + }, + { + "cik": 1619227, + "symbol": "clow", + "name": "cloudweb inc" + }, + { + "cik": 1436229, + "symbol": "btcs", + "name": "btcs inc" + }, + { + "cik": 1346346, + "symbol": "cmot", + "name": "curtiss motorcycle company inc" + }, + { + "cik": 1519469, + "symbol": "anldf", + "name": "anfield energy inc" + }, + { + "cik": 319016, + "symbol": "fzmd", + "name": "fuse medical inc" + }, + { + "cik": 1023023, + "symbol": "ervff", + "name": "erin ventures inc" + }, + { + "cik": 1741489, + "symbol": "elvg", + "name": "elvictor group inc" + }, + { + "cik": 910612, + "symbol": "cbleq", + "name": "cbl & associates properties inc" + }, + { + "cik": 844887, + "symbol": "dhcc", + "name": "diamondhead casino corp" + }, + { + "cik": 1586554, + "symbol": "cbdy", + "name": "target group inc" + }, + { + "cik": 1527702, + "symbol": "iqst", + "name": "iqstel inc" + }, + { + "cik": 1639142, + "symbol": "plrtf", + "name": "plymouth rock technologies inc" + }, + { + "cik": 819690, + "symbol": "fqfc", + "name": "fuquan financial co" + }, + { + "cik": 719494, + "symbol": "inrd", + "name": "inrad optics inc" + }, + { + "cik": 1518461, + "symbol": "ampg", + "name": "amplitech group inc" + }, + { + "cik": 1549631, + "symbol": "qurt", + "name": "quarta-rad inc" + }, + { + "cik": 1014763, + "symbol": "amar", + "name": "amarillo biosciences inc" + }, + { + "cik": 709005, + "symbol": "nrom", + "name": "noble romans inc" + }, + { + "cik": 1653031, + "symbol": "hschf", + "name": "h-source holdings ltd" + }, + { + "cik": 1464192, + "symbol": "lgmh", + "name": "light media holdings inc" + }, + { + "cik": 1581545, + "symbol": "grlb", + "name": "gl brands inc" + }, + { + "cik": 96793, + "symbol": "ssy", + "name": "sunlink health systems inc" + }, + { + "cik": 1643715, + "symbol": "nrgmf", + "name": "nrg metals inc" + }, + { + "cik": 1421636, + "symbol": "cbnt", + "name": "c-bond systems inc" + }, + { + "cik": 1134982, + "symbol": "pvnc", + "name": "prevention insurance com inc" + }, + { + "cik": 1388180, + "symbol": "nrbt", + "name": "novus robotics inc" + }, + { + "cik": 1199392, + "symbol": "egmcf", + "name": "emgold mining corp" + }, + { + "cik": 1128252, + "symbol": "sipn", + "name": "sipp international industries inc" + }, + { + "cik": 1409999, + "symbol": "dgdm", + "name": "digital development partners inc" + }, + { + "cik": 1350102, + "symbol": "asti", + "name": "ascent solar technologies inc" + }, + { + "cik": 1470683, + "symbol": "cccl", + "name": "antelope enterprise holdings ltd" + }, + { + "cik": 96699, + "symbol": "tcco", + "name": "technical communications corp" + }, + { + "cik": 1282980, + "symbol": "nvnt", + "name": "novint technologies inc" + }, + { + "cik": 1508381, + "symbol": "bnkl", + "name": "bionik laboratories corp" + }, + { + "cik": 1319643, + "symbol": "lsmg", + "name": "lode-star mining inc" + }, + { + "cik": 1284237, + "symbol": "abcff", + "name": "abacus mining & exploration corp" + }, + { + "cik": 1172706, + "symbol": "unir", + "name": "uniroyal global engineered products inc" + }, + { + "cik": 1700844, + "symbol": "unex", + "name": "unex holdings inc" + }, + { + "cik": 845819, + "symbol": "ktel", + "name": "konatel inc" + }, + { + "cik": 1510178, + "symbol": "tglty", + "name": "tglt sa adr" + }, + { + "cik": 1723047, + "symbol": "vaucf", + "name": "viva gold corp" + }, + { + "cik": 1346022, + "symbol": "enrt", + "name": "enertopia corp" + }, + { + "cik": 1546383, + "symbol": "kbsf", + "name": "kbs fashion group ltd" + }, + { + "cik": 313364, + "symbol": "mtr", + "name": "mesa royalty trust tx" + }, + { + "cik": 1458891, + "symbol": "ne", + "name": "noble holding corp plc" + }, + { + "cik": 1609436, + "symbol": "mexgf", + "name": "mexican gold corp" + }, + { + "cik": 710782, + "symbol": "evgi", + "name": "evergreen international corp" + }, + { + "cik": 862861, + "symbol": "jan", + "name": "janone inc" + }, + { + "cik": 1393540, + "symbol": "igen", + "name": "igen networks corp" + }, + { + "cik": 1790368, + "symbol": "zyqg", + "name": "zyqc group holding ltd" + }, + { + "cik": 1571636, + "symbol": "opvs", + "name": "nanoflex power corp" + }, + { + "cik": 1415758, + "symbol": "nvsgf", + "name": "nevada sunrise gold corp" + }, + { + "cik": 1632121, + "symbol": "blnc", + "name": "balance labs inc" + }, + { + "cik": 1310630, + "symbol": "cfoo", + "name": "china foods holdings ltd" + }, + { + "cik": 831749, + "symbol": "hxbm", + "name": "helix biomedix inc" + }, + { + "cik": 1599407, + "symbol": "efsh", + "name": "1847 holdings llc" + }, + { + "cik": 1648087, + "symbol": "areb", + "name": "american rebel holdings inc" + }, + { + "cik": 894158, + "symbol": "syn", + "name": "synthetic biologics inc" + }, + { + "cik": 758743, + "symbol": "vide", + "name": "video display corp" + }, + { + "cik": 1515139, + "symbol": "cwrk", + "name": "currencyworks inc" + }, + { + "cik": 1165639, + "symbol": "clts", + "name": "earth life sciences inc" + }, + { + "cik": 1559356, + "symbol": "imun", + "name": "immune therapeutics inc" + }, + { + "cik": 1025771, + "symbol": "cpka", + "name": "chase packaging corp" + }, + { + "cik": 1652958, + "symbol": "pire", + "name": "fourth wave energy inc" + }, + { + "cik": 890394, + "symbol": "mosy", + "name": "mosys inc" + }, + { + "cik": 849401, + "symbol": "admt", + "name": "adm tronics unlimited inc" + }, + { + "cik": 102109, + "symbol": "uuu", + "name": "universal security instruments inc" + }, + { + "cik": 812306, + "symbol": "pcyn", + "name": "procyon corp" + }, + { + "cik": 1805024, + "symbol": "amhg", + "name": "amergent hospitality group inc" + }, + { + "cik": 891417, + "symbol": "nmgx", + "name": "nano magic inc" + }, + { + "cik": 1119643, + "symbol": "nphc", + "name": "nutra pharma corp" + }, + { + "cik": 1301838, + "symbol": "pmpg", + "name": "premier product group inc" + }, + { + "cik": 1425203, + "symbol": "asdn", + "name": "astro aerospace ltd" + }, + { + "cik": 1083922, + "symbol": "arao", + "name": "aurasource inc" + }, + { + "cik": 830616, + "symbol": "scia", + "name": "sci engineered materials inc" + }, + { + "cik": 1593001, + "symbol": "ngtf", + "name": "nightfood holdings inc" + }, + { + "cik": 1095146, + "symbol": "gpla", + "name": "gameplan inc" + }, + { + "cik": 1002037, + "symbol": "ltre", + "name": "learning tree international inc" + }, + { + "cik": 1461679, + "symbol": "cavr", + "name": "cavu resources inc" + }, + { + "cik": 1374567, + "symbol": "luvu", + "name": "luvu brands inc" + }, + { + "cik": 1586495, + "symbol": "bdic", + "name": "blow & drive interlock corp" + }, + { + "cik": 1493137, + "symbol": "lctc", + "name": "lifeloc technologies inc" + }, + { + "cik": 1750777, + "symbol": "hwke", + "name": "hawkeye systems inc" + }, + { + "cik": 1781726, + "symbol": "gjcu", + "name": "gj culture group us inc" + }, + { + "cik": 1349810, + "symbol": "sstt", + "name": "sstartradetech inc" + }, + { + "cik": 1680378, + "symbol": "snes", + "name": "senestech inc" + }, + { + "cik": 1399352, + "symbol": "warm", + "name": "cool technologies inc" + }, + { + "cik": 781902, + "symbol": "ibal", + "name": "international baler corp" + }, + { + "cik": 1488419, + "symbol": "siaf", + "name": "sino agro food inc" + }, + { + "cik": 1701963, + "symbol": "vs", + "name": "versus systems inc" + }, + { + "cik": 768710, + "symbol": "relv", + "name": "reliv international inc" + }, + { + "cik": 1142790, + "symbol": "taug", + "name": "tauriga sciences inc" + }, + { + "cik": 1574910, + "symbol": "segn", + "name": "renavotio inc" + }, + { + "cik": 934796, + "symbol": "nwcn", + "name": "network cn inc" + }, + { + "cik": 1479681, + "symbol": "clnh", + "name": "clinigence holdings inc" + }, + { + "cik": 1302946, + "symbol": "turv", + "name": "two rivers water & farming co" + }, + { + "cik": 1094738, + "symbol": "mfbp", + "name": "m&f bancorp inc nc" + }, + { + "cik": 1726744, + "symbol": "exnn", + "name": "exent corp" + }, + { + "cik": 1515317, + "symbol": "mage", + "name": "magellan gold corp" + }, + { + "cik": 748592, + "symbol": "ntn", + "name": "ntn buzztime inc" + }, + { + "cik": 1421642, + "symbol": "icotf", + "name": "ico therapeutics inc" + }, + { + "cik": 1443863, + "symbol": "bicx", + "name": "biocorrx inc" + }, + { + "cik": 1353406, + "symbol": "sndd", + "name": "redhawk holdings corp" + }, + { + "cik": 1648903, + "symbol": "fifg", + "name": "first foods group inc" + }, + { + "cik": 62362, + "symbol": "marps", + "name": "marine petroleum trust" + }, + { + "cik": 1789383, + "symbol": "axxa", + "name": "exxe group inc" + }, + { + "cik": 1025561, + "symbol": "mtsl", + "name": "mer telemanagement solutions ltd" + }, + { + "cik": 1358654, + "symbol": "rmes", + "name": "red metal resources ltd" + }, + { + "cik": 884363, + "symbol": "fnam", + "name": "evolutionary genomics inc" + }, + { + "cik": 1166708, + "symbol": "bwmg", + "name": "brownies marine group inc" + }, + { + "cik": 1114936, + "symbol": "umewf", + "name": "umeworld ltd" + }, + { + "cik": 1310488, + "symbol": "bfnh", + "name": "bioforce nanosciences holdings inc" + }, + { + "cik": 1745078, + "symbol": "vynd", + "name": "vynleads inc" + }, + { + "cik": 869495, + "symbol": "dwog", + "name": "deep well oil & gas inc" + }, + { + "cik": 792935, + "symbol": "grst", + "name": "ethema health corp" + }, + { + "cik": 711477, + "symbol": "kiry", + "name": "kiewit royalty trust" + }, + { + "cik": 1473490, + "symbol": "wsco", + "name": "wall street media co inc" + }, + { + "cik": 1100644, + "symbol": "vldi", + "name": "validian corp" + }, + { + "cik": 1142801, + "symbol": "amsu", + "name": "amanasu environment corp" + }, + { + "cik": 1263364, + "symbol": "gtvi", + "name": "joway health industries group inc" + }, + { + "cik": 1580490, + "symbol": "ioni", + "name": "i-on digital corp" + }, + { + "cik": 1353499, + "symbol": "maxd", + "name": "max sound corp" + }, + { + "cik": 1648636, + "symbol": "tcff", + "name": "trillion energy international inc" + }, + { + "cik": 863678, + "symbol": "gcfff", + "name": "goldcliff resource corp" + }, + { + "cik": 1281984, + "symbol": "wdlf", + "name": "social life network inc" + }, + { + "cik": 1509228, + "symbol": "sdttu", + "name": "sandridge mississippian trust i" + }, + { + "cik": 789318, + "symbol": "clsi", + "name": "clancy systems international inc co" + }, + { + "cik": 1068897, + "symbol": "fxby", + "name": "foxby corp" + }, + { + "cik": 1453099, + "symbol": "cbbt", + "name": "cerebain biotech corp" + }, + { + "cik": 1402328, + "symbol": "sbfm", + "name": "sunshine biopharma inc" + }, + { + "cik": 1301991, + "symbol": "smme", + "name": "smartmetric inc" + }, + { + "cik": 1694617, + "symbol": "royl", + "name": "royale energy inc" + }, + { + "cik": 1627480, + "symbol": "pvnnf", + "name": "pv nano cell ltd" + }, + { + "cik": 1144225, + "symbol": "decn", + "name": "decision diagnostics corp" + }, + { + "cik": 64463, + "symbol": "mkty", + "name": "mechanical technology inc" + }, + { + "cik": 1161582, + "symbol": "phot", + "name": "growlife inc" + }, + { + "cik": 1205059, + "symbol": "repcf", + "name": "replicel life sciences inc" + }, + { + "cik": 1355736, + "symbol": "avcrf", + "name": "avricore health inc" + }, + { + "cik": 1068689, + "symbol": "atds", + "name": "data443 risk mitigation inc" + }, + { + "cik": 1279620, + "symbol": "zdpy", + "name": "zoned properties inc" + }, + { + "cik": 1498148, + "symbol": "aitx", + "name": "artificial intelligence technology solutions inc" + }, + { + "cik": 1376804, + "symbol": "vnue", + "name": "vnue inc" + }, + { + "cik": 1303936, + "symbol": "cdycf", + "name": "cardero resource corp" + }, + { + "cik": 1589361, + "symbol": "banm", + "name": "banner energy services corp" + }, + { + "cik": 1306035, + "symbol": "yusg", + "name": "yus international group ltd" + }, + { + "cik": 1355839, + "symbol": "peer", + "name": "paltalk inc" + }, + { + "cik": 1454742, + "symbol": "gmer", + "name": "good gaming inc" + }, + { + "cik": 1622244, + "symbol": "owpc", + "name": "one world pharma inc" + }, + { + "cik": 932021, + "symbol": "gtll", + "name": "global technologies ltd" + }, + { + "cik": 1771755, + "symbol": "swisf", + "name": "globex data ltd" + }, + { + "cik": 1689084, + "symbol": "qron", + "name": "qrons inc" + }, + { + "cik": 1353487, + "symbol": "trnx", + "name": "bbhc inc" + }, + { + "cik": 1465311, + "symbol": "zicx", + "name": "zicix corp" + }, + { + "cik": 1094084, + "symbol": "tkoi", + "name": "telkonet inc" + }, + { + "cik": 1527102, + "symbol": "genh", + "name": "generation hemp inc" + }, + { + "cik": 1352952, + "symbol": "cnfn", + "name": "cfn enterprises inc" + }, + { + "cik": 1469207, + "symbol": "smrn", + "name": "smartag international inc" + }, + { + "cik": 1341726, + "symbol": "gspe", + "name": "gulfslope energy inc" + }, + { + "cik": 1684688, + "symbol": "jupgf", + "name": "jupiter gold corp" + }, + { + "cik": 919175, + "symbol": "sgmd", + "name": "sugarmade inc" + }, + { + "cik": 1110607, + "symbol": "dpdw", + "name": "deep down inc" + }, + { + "cik": 924515, + "symbol": "gthp", + "name": "guided therapeutics inc" + }, + { + "cik": 1014052, + "symbol": "dtgi", + "name": "digerati technologies inc" + }, + { + "cik": 1408057, + "symbol": "icct", + "name": "icoreconnect inc" + }, + { + "cik": 1683131, + "symbol": "gein", + "name": "genesys industries inc" + }, + { + "cik": 1623590, + "symbol": "vxel", + "name": "vitaxel group ltd" + }, + { + "cik": 1342936, + "symbol": "avoi", + "name": "advanced voice recognition systems inc" + }, + { + "cik": 930775, + "symbol": "ecia", + "name": "encision inc" + }, + { + "cik": 1625288, + "symbol": "nxen", + "name": "nexien biopharma inc" + }, + { + "cik": 1104280, + "symbol": "sgbi", + "name": "sangui biotech international inc" + }, + { + "cik": 1103795, + "symbol": "qsep", + "name": "qs energy inc" + }, + { + "cik": 1591913, + "symbol": "ipsi", + "name": "innovative payment solutions inc" + }, + { + "cik": 1718500, + "symbol": "rviv", + "name": "reviv3 procare co" + }, + { + "cik": 1698370, + "symbol": "trlfd", + "name": "true leaf brands inc" + }, + { + "cik": 786947, + "symbol": "acur", + "name": "acura pharmaceuticals inc" + }, + { + "cik": 1279715, + "symbol": "iwsh", + "name": "wright investors service holdings inc" + }, + { + "cik": 1833089, + "symbol": "rpnrf", + "name": "rapid nutrition plc" + }, + { + "cik": 1659559, + "symbol": "rzznd", + "name": "jialijia group corp ltd" + }, + { + "cik": 1082733, + "symbol": "vism", + "name": "visium technologies inc" + }, + { + "cik": 793306, + "symbol": "bdco", + "name": "blue dolphin energy co" + }, + { + "cik": 1629261, + "symbol": "lbcc", + "name": "long blockchain corp" + }, + { + "cik": 1028357, + "symbol": "bittf", + "name": "bitterroot resources ltd" + }, + { + "cik": 842295, + "symbol": "torm", + "name": "tor minerals international inc" + }, + { + "cik": 1362516, + "symbol": "clri", + "name": "cleartronic inc" + }, + { + "cik": 1636051, + "symbol": "fust", + "name": "fuse group holding inc" + }, + { + "cik": 1413488, + "symbol": "mctc", + "name": "cannabis global inc" + }, + { + "cik": 66600, + "symbol": "mmmm", + "name": "quad m solutions inc" + }, + { + "cik": 1746563, + "symbol": "potn", + "name": "potnetwork holdings inc" + }, + { + "cik": 317340, + "symbol": "mkrs", + "name": "mikros systems corp" + }, + { + "cik": 1543623, + "symbol": "ucle", + "name": "us nuclear corp" + }, + { + "cik": 59860, + "symbol": "grmc", + "name": "goldrich mining co" + }, + { + "cik": 1639068, + "symbol": "hbuv", + "name": "hubilu venture corp" + }, + { + "cik": 14195, + "symbol": "bgg", + "name": "briggs & stratton corp" + }, + { + "cik": 1368637, + "symbol": "bbls", + "name": "petrolia energy corp" + }, + { + "cik": 1653606, + "symbol": "ehvvf", + "name": "ehave inc" + }, + { + "cik": 1162283, + "symbol": "mghld", + "name": "morgan group holding co" + }, + { + "cik": 945617, + "symbol": "ammj", + "name": "american cannabis company inc" + }, + { + "cik": 841533, + "symbol": "srmx", + "name": "saddle ranch media inc" + }, + { + "cik": 1409197, + "symbol": "bspk", + "name": "bespoke extracts inc" + }, + { + "cik": 1530425, + "symbol": "arrt", + "name": "artisan consumer goods inc" + }, + { + "cik": 1160191, + "symbol": "snnaf", + "name": "sienna resources inc" + }, + { + "cik": 1498576, + "symbol": "ccihy", + "name": "chinacache international holdings ltd" + }, + { + "cik": 1123596, + "symbol": "babb", + "name": "bab inc" + }, + { + "cik": 1572386, + "symbol": "gwti", + "name": "greenway technologies inc" + }, + { + "cik": 922330, + "symbol": "rgus", + "name": "regi u s inc" + }, + { + "cik": 1664127, + "symbol": "altd", + "name": "altitude international holdings inc" + }, + { + "cik": 700764, + "symbol": "vyey", + "name": "victory oilfield tech inc" + }, + { + "cik": 352998, + "symbol": "tlgt", + "name": "teligent inc" + }, + { + "cik": 1651992, + "symbol": "asft", + "name": "appsoft technologies inc" + }, + { + "cik": 1582249, + "symbol": "rasp", + "name": "rasna therapeutics inc" + }, + { + "cik": 1431934, + "symbol": "owcp", + "name": "owc pharmaceutical research corp" + }, + { + "cik": 896747, + "symbol": "abmc", + "name": "american bio medica corp" + }, + { + "cik": 1414953, + "symbol": "mojo", + "name": "mojo organics inc" + }, + { + "cik": 1510518, + "symbol": "gfood", + "name": "genufood energy enzymes corp" + }, + { + "cik": 1438943, + "symbol": "vbio", + "name": "vitality biopharma inc" + }, + { + "cik": 862022, + "symbol": "hgtxu", + "name": "hugoton royalty trust" + }, + { + "cik": 1422669, + "symbol": "vrscf", + "name": "valterra resource corp" + }, + { + "cik": 1565146, + "symbol": "gultu", + "name": "gulf coast ultra deep royalty trust" + }, + { + "cik": 720762, + "symbol": "nimu", + "name": "non invasive monitoring systems inc fl" + }, + { + "cik": 867028, + "symbol": "etfm", + "name": "fomo corp" + }, + { + "cik": 1789330, + "symbol": "mjhi", + "name": "mj harvest inc" + }, + { + "cik": 1323838, + "symbol": "dxied", + "name": "dxi energy inc" + }, + { + "cik": 99106, + "symbol": "tnlx", + "name": "trans lux corp" + }, + { + "cik": 1078037, + "symbol": "remi", + "name": "remedent inc" + }, + { + "cik": 1572565, + "symbol": "inqd", + "name": "indoor harvest corp" + }, + { + "cik": 1372184, + "symbol": "nwyu", + "name": "new you inc" + }, + { + "cik": 8328, + "symbol": "amnl", + "name": "applied minerals inc" + }, + { + "cik": 1490366, + "symbol": "borny", + "name": "china new borun corp" + }, + { + "cik": 1281774, + "symbol": "club", + "name": "town sports international holdings inc" + }, + { + "cik": 1445109, + "symbol": "cctc", + "name": "clean coal technologies inc" + }, + { + "cik": 1603793, + "symbol": "nris", + "name": "norris industries inc" + }, + { + "cik": 1401835, + "symbol": "srgz", + "name": "star gold corp" + }, + { + "cik": 1317833, + "symbol": "sign", + "name": "signet international holdings inc" + }, + { + "cik": 1522165, + "symbol": "alkm", + "name": "alkame holdings inc" + }, + { + "cik": 1552448, + "symbol": "rycff", + "name": "amira nature foods ltd" + }, + { + "cik": 1691430, + "symbol": "qnta", + "name": "quanta inc" + }, + { + "cik": 1329944, + "symbol": "ndtp", + "name": "mistral ventures inc" + }, + { + "cik": 1036848, + "symbol": "acy", + "name": "aerocentury corp" + }, + { + "cik": 897078, + "symbol": "koan", + "name": "resonate blends inc" + }, + { + "cik": 1404935, + "symbol": "thct", + "name": "thc therapeutics inc" + }, + { + "cik": 1552189, + "symbol": "exdi", + "name": "exactus inc" + }, + { + "cik": 1713909, + "symbol": "wtnw", + "name": "water now inc" + }, + { + "cik": 1661600, + "symbol": "sedo", + "name": "seedo corp" + }, + { + "cik": 1579026, + "symbol": "towtf", + "name": "tower one wireless corp" + }, + { + "cik": 827099, + "symbol": "cpwr", + "name": "ocean thermal energy corp" + }, + { + "cik": 1624517, + "symbol": "arsn", + "name": "aureus inc" + }, + { + "cik": 1117095, + "symbol": "tikrf", + "name": "tikcro technologies ltd" + }, + { + "cik": 1487931, + "symbol": "fssn", + "name": "fision corp" + }, + { + "cik": 1622057, + "symbol": "nbio", + "name": "nascent biotech inc" + }, + { + "cik": 1726286, + "symbol": "sode", + "name": "social detention inc" + }, + { + "cik": 1084475, + "symbol": "nihk", + "name": "video river networks inc" + }, + { + "cik": 1138724, + "symbol": "gahc", + "name": "global arena holding inc" + }, + { + "cik": 743758, + "symbol": "clwd", + "name": "cloudcommerce inc" + }, + { + "cik": 1493212, + "symbol": "plsi", + "name": "phoenix life sciences international limited" + }, + { + "cik": 1133062, + "symbol": "janl", + "name": "janel corp" + }, + { + "cik": 1020825, + "symbol": "mghcf", + "name": "minco gold corp" + }, + { + "cik": 1471781, + "symbol": "gtch", + "name": "gbt technologies inc" + }, + { + "cik": 1398488, + "symbol": "stsn", + "name": "stemsation international inc" + }, + { + "cik": 1424812, + "symbol": "ambs", + "name": "amarantus bioscience holdings inc" + }, + { + "cik": 1474835, + "symbol": "ipci", + "name": "intellipharmaceutics international inc" + }, + { + "cik": 1276531, + "symbol": "scgy", + "name": "scientific energy inc" + }, + { + "cik": 802257, + "symbol": "miti", + "name": "mitesco inc" + }, + { + "cik": 1066130, + "symbol": "askdf", + "name": "first energy metals ltd" + }, + { + "cik": 1627554, + "symbol": "qsmg", + "name": "quest management inc" + }, + { + "cik": 1653876, + "symbol": "mmnt", + "name": "momentous holdings corp" + }, + { + "cik": 1559157, + "symbol": "ssok", + "name": "sunstock inc" + }, + { + "cik": 856984, + "symbol": "usaq", + "name": "usa equities corp" + }, + { + "cik": 1437517, + "symbol": "cloq", + "name": "cyberloq technologies inc" + }, + { + "cik": 1411879, + "symbol": "innv", + "name": "innovus pharmaceuticals inc" + }, + { + "cik": 1355790, + "symbol": "isco", + "name": "international stem cell corp" + }, + { + "cik": 725929, + "symbol": "btdg", + "name": "b2digital inc" + }, + { + "cik": 1437476, + "symbol": "gsfi", + "name": "green stream holdings inc" + }, + { + "cik": 1538822, + "symbol": "royt", + "name": "pacific coast oil trust" + }, + { + "cik": 883943, + "symbol": "cbkc", + "name": "christopher & banks corp" + }, + { + "cik": 1687505, + "symbol": "snnn", + "name": "sinorama corp" + }, + { + "cik": 1520118, + "symbol": "intv", + "name": "integrated ventures inc" + }, + { + "cik": 1487798, + "symbol": "ect", + "name": "eca marcellus trust i" + }, + { + "cik": 1102358, + "symbol": "hcgs", + "name": "highcom global security inc" + }, + { + "cik": 1355677, + "symbol": "mxsgd", + "name": "mexus gold us" + }, + { + "cik": 1286964, + "symbol": "hlbyl", + "name": "heron lake bioenergy llc" + }, + { + "cik": 1417664, + "symbol": "veii", + "name": "value exchange international inc" + }, + { + "cik": 1394638, + "symbol": "clcn", + "name": "creative learning corp" + }, + { + "cik": 1415744, + "symbol": "nmex", + "name": "northern minerals & exploration ltd" + }, + { + "cik": 1599117, + "symbol": "mntr", + "name": "mentor capital inc" + }, + { + "cik": 1569568, + "symbol": "lrdg", + "name": "lord global corp" + }, + { + "cik": 1463459, + "symbol": "emge", + "name": "emergent health corp" + }, + { + "cik": 1191832, + "symbol": "tumif", + "name": "kingsmen resources ltd" + }, + { + "cik": 1135202, + "symbol": "ecpn", + "name": "el capitan precious metals inc" + }, + { + "cik": 931336, + "symbol": "dfodq", + "name": "dean foods co" + }, + { + "cik": 1502152, + "symbol": "soan", + "name": "angiosoma inc" + }, + { + "cik": 1388319, + "symbol": "usrm", + "name": "us stem cell inc" + }, + { + "cik": 1109189, + "symbol": "basx", + "name": "basic energy services inc" + }, + { + "cik": 1637866, + "symbol": "dgwr", + "name": "deep green waste & recycling inc" + }, + { + "cik": 1270200, + "symbol": "vspc", + "name": "viaspace inc" + }, + { + "cik": 1522787, + "symbol": "cybf", + "name": "cyberfort software inc" + }, + { + "cik": 1737647, + "symbol": "ivitf", + "name": "invictus md strategies corp" + }, + { + "cik": 1555972, + "symbol": "stcc", + "name": "sterling consolidated corp" + }, + { + "cik": 812152, + "symbol": "rdga", + "name": "ridgefield acquisition corp" + }, + { + "cik": 1004724, + "symbol": "rhe", + "name": "regional health properties inc" + }, + { + "cik": 895665, + "symbol": "scon", + "name": "superconductor technologies inc" + }, + { + "cik": 1575345, + "symbol": "blgid", + "name": "blgi inc" + }, + { + "cik": 1671502, + "symbol": "apopw", + "name": "cellect biotechnology ltd" + }, + { + "cik": 925661, + "symbol": "sect", + "name": "sector 10 inc" + }, + { + "cik": 882800, + "symbol": "pacv", + "name": "pacific ventures group inc" + }, + { + "cik": 1376793, + "symbol": "cvat", + "name": "cavitation technologies inc" + }, + { + "cik": 884650, + "symbol": "imci", + "name": "infinite group inc" + }, + { + "cik": 1383394, + "symbol": "tegy", + "name": "transact energy corp" + }, + { + "cik": 1346655, + "symbol": "cmgo", + "name": "cmg holdings group inc" + }, + { + "cik": 831355, + "symbol": "lkai", + "name": "lka gold inc de" + }, + { + "cik": 1635136, + "symbol": "duuo", + "name": "duo world inc" + }, + { + "cik": 32567, + "symbol": "mtwd", + "name": "metwood inc" + }, + { + "cik": 1388410, + "symbol": "prlx", + "name": "parallax health sciences inc" + }, + { + "cik": 1177167, + "symbol": "lmdcf", + "name": "lingo media corp" + }, + { + "cik": 1530739, + "symbol": "idfb", + "name": "idaho first bank" + }, + { + "cik": 1616156, + "symbol": "wewa", + "name": "wewards inc" + }, + { + "cik": 1597892, + "symbol": "jrss", + "name": "jrsis health care corp" + }, + { + "cik": 1365357, + "symbol": "zzll", + "name": "zzll information technology inc" + }, + { + "cik": 1045942, + "symbol": "trck", + "name": "track group inc" + }, + { + "cik": 1550020, + "symbol": "ewll", + "name": "ewellness healthcare corp" + }, + { + "cik": 1589149, + "symbol": "msrt", + "name": "massroots inc" + }, + { + "cik": 1088005, + "symbol": "nxmr", + "name": "nextmart inc" + }, + { + "cik": 1369128, + "symbol": "digaf", + "name": "digatrade financial corp" + }, + { + "cik": 1399855, + "symbol": "nauh", + "name": "national american university holdings inc" + }, + { + "cik": 1493526, + "symbol": "prtt", + "name": "protect pharmaceutical corp" + }, + { + "cik": 1470550, + "symbol": "ilcc", + "name": "international leaders capital corp" + }, + { + "cik": 1405663, + "symbol": "imahf", + "name": "i-minerals inc" + }, + { + "cik": 1607450, + "symbol": "abvn", + "name": "abv consulting inc" + }, + { + "cik": 824416, + "symbol": "qprc", + "name": "quest patent research corp" + }, + { + "cik": 805729, + "symbol": "chyl", + "name": "china senior living industry international holding corp" + }, + { + "cik": 1591165, + "symbol": "hcyt", + "name": "h-cyte inc" + }, + { + "cik": 1680132, + "symbol": "csui", + "name": "cannabis suisse corp" + }, + { + "cik": 1128281, + "symbol": "skas", + "name": "saker aviation services inc" + }, + { + "cik": 1430523, + "symbol": "vrus", + "name": "verus international inc" + }, + { + "cik": 1381240, + "symbol": "gsrx", + "name": "gsrx industries inc" + }, + { + "cik": 1557798, + "symbol": "ciit", + "name": "tianci international inc" + }, + { + "cik": 820901, + "symbol": "aret", + "name": "arete industries inc" + }, + { + "cik": 1346917, + "symbol": "gntof", + "name": "gentor resources inc" + }, + { + "cik": 1089815, + "symbol": "usnu", + "name": "us neurosurgical holdings inc" + }, + { + "cik": 1025953, + "symbol": "novc", + "name": "novation companies inc" + }, + { + "cik": 1610820, + "symbol": "bctxf", + "name": "briacell therapeutics corp" + }, + { + "cik": 1386049, + "symbol": "byoc", + "name": "beyond commerce inc" + }, + { + "cik": 1434110, + "symbol": "prop", + "name": "pledge petroleum corp" + }, + { + "cik": 1761540, + "symbol": "srus", + "name": "stratus capital corp" + }, + { + "cik": 724445, + "symbol": "bzyr", + "name": "burzynski research institute inc" + }, + { + "cik": 925660, + "symbol": "flxt", + "name": "flexpoint sensor systems inc" + }, + { + "cik": 1358656, + "symbol": "milc", + "name": "millennium investment & acquisition co inc" + }, + { + "cik": 1518336, + "symbol": "drem", + "name": "dream homes & development corp" + }, + { + "cik": 1561880, + "symbol": "prcd", + "name": "legacy education alliance inc" + }, + { + "cik": 1407878, + "symbol": "dloc", + "name": "digital locations inc" + }, + { + "cik": 1609988, + "symbol": "flcx", + "name": "flooidcx corp" + }, + { + "cik": 1563227, + "symbol": "spup", + "name": "sipup corp" + }, + { + "cik": 1127475, + "symbol": "dbmm", + "name": "digital brand media & marketing group inc" + }, + { + "cik": 1481443, + "symbol": "rmdm", + "name": "techcom inc" + }, + { + "cik": 1540684, + "symbol": "bmix", + "name": "brazil minerals inc" + }, + { + "cik": 1350073, + "symbol": "icnb", + "name": "iconic brands inc" + }, + { + "cik": 1520528, + "symbol": "reac", + "name": "reac group inc" + }, + { + "cik": 1517342, + "symbol": "pacd", + "name": "pacific drilling sa" + }, + { + "cik": 1438901, + "symbol": "fles", + "name": "4less group inc" + }, + { + "cik": 1419793, + "symbol": "ocln", + "name": "originclear inc" + }, + { + "cik": 1317839, + "symbol": "umhl", + "name": "umatrin holding ltd" + }, + { + "cik": 819926, + "symbol": "seiid", + "name": "sharing economy international inc" + }, + { + "cik": 1512886, + "symbol": "ntrr", + "name": "neutra corp" + }, + { + "cik": 1647170, + "symbol": "tapm", + "name": "tapinator inc" + }, + { + "cik": 1089061, + "symbol": "find", + "name": "findex com inc" + }, + { + "cik": 945828, + "symbol": "amty", + "name": "amerityre corp" + }, + { + "cik": 1452872, + "symbol": "rlly", + "name": "arc group inc" + }, + { + "cik": 225628, + "symbol": "pssr", + "name": "passur aerospace inc" + }, + { + "cik": 1162896, + "symbol": "wizd", + "name": "wizard brands inc" + }, + { + "cik": 946822, + "symbol": "alye", + "name": "aly energy services inc" + }, + { + "cik": 1375793, + "symbol": "gtxo", + "name": "gtx corp" + }, + { + "cik": 1304409, + "symbol": "ahnr", + "name": "athena silver corp" + }, + { + "cik": 836937, + "symbol": "updc", + "name": "upd holding corp" + }, + { + "cik": 866439, + "symbol": "dpls", + "name": "darkpulse inc" + }, + { + "cik": 1708410, + "symbol": "winrw", + "name": "simplicity esports & gaming co" + }, + { + "cik": 822746, + "symbol": "ifny", + "name": "infinity energy resources inc" + }, + { + "cik": 1403676, + "symbol": "gltc", + "name": "geltech solutions inc" + }, + { + "cik": 1605481, + "symbol": "ngldd", + "name": "nevada canyon gold corp" + }, + { + "cik": 1412659, + "symbol": "rgin", + "name": "regenicin inc" + }, + { + "cik": 1218683, + "symbol": "wizp", + "name": "wize pharma inc" + }, + { + "cik": 1473654, + "symbol": "lvbx", + "name": "levelblox inc" + }, + { + "cik": 1509957, + "symbol": "canb", + "name": "can b corp" + }, + { + "cik": 1187953, + "symbol": "celz", + "name": "creative medical technology holdings inc" + }, + { + "cik": 1539894, + "symbol": "afh", + "name": "atlas financial holdings inc" + }, + { + "cik": 1518720, + "symbol": "fpvd", + "name": "force protection video equipment corp" + }, + { + "cik": 1304741, + "symbol": "cngt", + "name": "cannagistics inc" + }, + { + "cik": 924095, + "symbol": "wscc", + "name": "waterside capital corp" + }, + { + "cik": 1440799, + "symbol": "mmex", + "name": "mmex resources corp" + }, + { + "cik": 1605331, + "symbol": "abqq", + "name": "ab international group corp" + }, + { + "cik": 849997, + "symbol": "fecof", + "name": "fec resources inc" + }, + { + "cik": 1483646, + "symbol": "begi", + "name": "blackstar enterprise group inc" + }, + { + "cik": 1533427, + "symbol": "pzoo", + "name": "pazoo inc" + }, + { + "cik": 1494413, + "symbol": "twoh", + "name": "two hands corp" + }, + { + "cik": 727634, + "symbol": "isgn", + "name": "isign solutions inc" + }, + { + "cik": 1469346, + "symbol": "chmjf", + "name": "chemistree technology inc" + }, + { + "cik": 1353538, + "symbol": "ntwn", + "name": "newtown lane marketing inc" + }, + { + "cik": 1471302, + "symbol": "aivi", + "name": "kemiao garment holding group" + }, + { + "cik": 1443089, + "symbol": "whsi", + "name": "wearable health solutions inc" + }, + { + "cik": 1284450, + "symbol": "chgi", + "name": "china carbon graphite group inc" + }, + { + "cik": 1407583, + "symbol": "bhll", + "name": "bunker hill mining corp" + }, + { + "cik": 1444839, + "symbol": "brvo", + "name": "bravo multinational inc" + }, + { + "cik": 1500305, + "symbol": "spgx", + "name": "sustainable projects group inc" + }, + { + "cik": 1797956, + "symbol": "hpty", + "name": "rcmw group inc" + }, + { + "cik": 1395445, + "symbol": "prpi", + "name": "perpetual industries inc" + }, + { + "cik": 1524872, + "symbol": "tnrg", + "name": "thunder energies corp" + }, + { + "cik": 934543, + "symbol": "acmc", + "name": "american church mortgage co" + }, + { + "cik": 849636, + "symbol": "rspi", + "name": "respirerx pharmaceuticals inc" + }, + { + "cik": 1518985, + "symbol": "wtxr", + "name": "west texas resources inc" + }, + { + "cik": 918573, + "symbol": "grve", + "name": "groove botanicals inc" + }, + { + "cik": 1159275, + "symbol": "kwbt", + "name": "kiwa bio-tech products group corp" + }, + { + "cik": 1607549, + "symbol": "appb", + "name": "applied biosciences corp" + }, + { + "cik": 1399935, + "symbol": "fran", + "name": "francescas holdings corp" + }, + { + "cik": 844161, + "symbol": "apex", + "name": "apex global brands inc" + }, + { + "cik": 1008653, + "symbol": "ecmt", + "name": "ecomat inc" + }, + { + "cik": 1054274, + "symbol": "adyx", + "name": "adynxx inc" + }, + { + "cik": 1550737, + "symbol": "sfiv", + "name": "sector 5 inc" + }, + { + "cik": 814926, + "symbol": "capc", + "name": "capstone companies inc" + }, + { + "cik": 1061164, + "symbol": "pgid", + "name": "peregrine industries inc" + }, + { + "cik": 1731911, + "symbol": "sklv", + "name": "skye life ventures ltd" + }, + { + "cik": 1062128, + "symbol": "atms", + "name": "artemis therapeutics inc" + }, + { + "cik": 773318, + "symbol": "vrtc", + "name": "veritec inc" + }, + { + "cik": 1537058, + "symbol": "whzt", + "name": "whiting usa trust ii" + }, + { + "cik": 1829311, + "symbol": "ress", + "name": "sandy springs holdings inc" + }, + { + "cik": 1426506, + "symbol": "smgi", + "name": "smg industries inc" + }, + { + "cik": 6494, + "symbol": "andr", + "name": "andrea electronics corp" + }, + { + "cik": 1654588, + "symbol": "hlty", + "name": "precheck health services inc" + }, + { + "cik": 1459482, + "symbol": "ciix", + "name": "chineseinvestorscom inc" + }, + { + "cik": 1414043, + "symbol": "fdbl", + "name": "friendable inc" + }, + { + "cik": 1515275, + "symbol": "rdco", + "name": "redefy corp" + }, + { + "cik": 1494162, + "symbol": "kpay", + "name": "kinerjapay corp" + }, + { + "cik": 1506929, + "symbol": "vrdr", + "name": "verde resources inc" + }, + { + "cik": 1490054, + "symbol": "vbhi", + "name": "verde bio holdings inc" + }, + { + "cik": 1609258, + "symbol": "ptco", + "name": "petrogas co" + }, + { + "cik": 1108630, + "symbol": "livc", + "name": "live current media inc" + }, + { + "cik": 775057, + "symbol": "altx", + "name": "altex industries inc" + }, + { + "cik": 1421907, + "symbol": "tdnt", + "name": "trident brands inc" + }, + { + "cik": 1343465, + "symbol": "snpw", + "name": "sun pacific holding corp" + }, + { + "cik": 1089531, + "symbol": "kgji", + "name": "kingold jewelry inc" + }, + { + "cik": 1514113, + "symbol": "ghav", + "name": "grand havana inc" + }, + { + "cik": 1563536, + "symbol": "equr", + "name": "e-qure corp" + }, + { + "cik": 764897, + "symbol": "brst", + "name": "broad street realty inc" + }, + { + "cik": 1602143, + "symbol": "tcnt", + "name": "toucan interactive corp" + }, + { + "cik": 1544238, + "symbol": "cdxi", + "name": "cardax inc" + }, + { + "cik": 1396054, + "symbol": "lith", + "name": "us lithium corp" + }, + { + "cik": 1576724, + "symbol": "vibi", + "name": "vilacto bio inc" + }, + { + "cik": 1168663, + "symbol": "ansu", + "name": "amanasu techno holdings corp" + }, + { + "cik": 1428389, + "symbol": "blxx", + "name": "blox inc" + }, + { + "cik": 892832, + "symbol": "sdon", + "name": "sandston corp" + }, + { + "cik": 1208261, + "symbol": "imnpq", + "name": "immune pharmaceuticals inc" + }, + { + "cik": 1551906, + "symbol": "wcvc", + "name": "west coast ventures group corp" + }, + { + "cik": 1211351, + "symbol": "rtwi", + "name": "rtw retailwinds inc" + }, + { + "cik": 1416090, + "symbol": "imii", + "name": "inception mining inc" + }, + { + "cik": 1424768, + "symbol": "vyco", + "name": "vycor medical inc" + }, + { + "cik": 1092570, + "symbol": "fulo", + "name": "fullnet communications inc" + }, + { + "cik": 752294, + "symbol": "elst", + "name": "electronic systems technology inc" + }, + { + "cik": 852747, + "symbol": "cppxf", + "name": "continental energy corp" + }, + { + "cik": 1485074, + "symbol": "frzt", + "name": "freeze tag inc" + }, + { + "cik": 1080088, + "symbol": "lvwd", + "name": "liveworld inc" + }, + { + "cik": 894560, + "symbol": "bothd", + "name": "bioethics ltd" + }, + { + "cik": 1239188, + "symbol": "gsih", + "name": "general steel holdings inc" + }, + { + "cik": 1316317, + "symbol": "cntfy", + "name": "china techfaith wireless communication technology ltd" + }, + { + "cik": 1652866, + "symbol": "abilf", + "name": "ability inc" + }, + { + "cik": 1178377, + "symbol": "emrn", + "name": "emarine global inc" + }, + { + "cik": 1617431, + "symbol": "poyn", + "name": "po yuen cultural holdings (hong kong) co ltd" + }, + { + "cik": 1530163, + "symbol": "saml", + "name": "samsara luggage inc" + }, + { + "cik": 1342219, + "symbol": "krbf", + "name": "kreido biofuels inc" + }, + { + "cik": 318299, + "symbol": "srco", + "name": "sparta commercial services inc" + }, + { + "cik": 1611852, + "symbol": "cldc", + "name": "roan holdings group co ltd" + }, + { + "cik": 716688, + "symbol": "mfco", + "name": "microwave filter co inc ny" + }, + { + "cik": 1424404, + "symbol": "wolv", + "name": "wolverine technologies corp" + }, + { + "cik": 1014111, + "symbol": "glae", + "name": "glassbridge enterprises inc" + }, + { + "cik": 1703625, + "symbol": "blis", + "name": "treasure & shipwreck recovery inc" + }, + { + "cik": 1376231, + "symbol": "vprb", + "name": "vpr brands lp" + }, + { + "cik": 1736865, + "symbol": "dvlp", + "name": "golden developing solutions inc" + }, + { + "cik": 1287900, + "symbol": "trxo", + "name": "t-rex oil inc" + }, + { + "cik": 1556801, + "symbol": "jrvs", + "name": "imine corp" + }, + { + "cik": 1422296, + "symbol": "shnl", + "name": "shentang international inc" + }, + { + "cik": 949428, + "symbol": "cdti", + "name": "cdti advanced materials inc" + }, + { + "cik": 1510247, + "symbol": "lfap", + "name": "lgbtq loyalty holdings inc" + }, + { + "cik": 1505497, + "symbol": "brtx", + "name": "biorestorative therapies inc" + }, + { + "cik": 1543272, + "symbol": "mjtv", + "name": "mj biotech inc" + }, + { + "cik": 1582341, + "symbol": "mydx", + "name": "mydx inc" + }, + { + "cik": 1511161, + "symbol": "askh", + "name": "astika holdings inc" + }, + { + "cik": 1527675, + "symbol": "aita", + "name": "wunong asia pacific co ltd" + }, + { + "cik": 1472862, + "symbol": "wsml", + "name": "williamsville sears management inc" + }, + { + "cik": 843212, + "symbol": "aegg", + "name": "american energy group ltd" + }, + { + "cik": 1720201, + "symbol": "ipic", + "name": "ipic entertainment inc" + }, + { + "cik": 930245, + "symbol": "aasp", + "name": "all american sportpark inc" + }, + { + "cik": 1040792, + "symbol": "hmny", + "name": "helios & matheson analytics inc" + }, + { + "cik": 1671132, + "symbol": "nuvg", + "name": "nuvus gro corp" + }, + { + "cik": 820771, + "symbol": "gfmh", + "name": "goliath film & media holdings" + }, + { + "cik": 1064722, + "symbol": "gmpw", + "name": "givemepower corp" + }, + { + "cik": 1515740, + "symbol": "biei", + "name": "premier biomedical inc" + }, + { + "cik": 1597659, + "symbol": "psv", + "name": "hermitage offshore services ltd" + }, + { + "cik": 1585380, + "symbol": "inkw", + "name": "greene concepts inc" + }, + { + "cik": 1290506, + "symbol": "ecos", + "name": "ecolocap solutions inc" + }, + { + "cik": 1559172, + "symbol": "dpww", + "name": "diego pellicer worldwide inc" + }, + { + "cik": 1442492, + "symbol": "lrdc", + "name": "laredo oil inc" + }, + { + "cik": 1373690, + "symbol": "ircc", + "name": "indigenous roots corp" + }, + { + "cik": 1333519, + "symbol": "byin", + "name": "baying ecological holding group inc" + }, + { + "cik": 1402737, + "symbol": "vica", + "name": "rafina innovations inc" + }, + { + "cik": 1533106, + "symbol": "argq", + "name": "argentum 47 inc" + }, + { + "cik": 1308569, + "symbol": "mlfb", + "name": "major league football inc" + }, + { + "cik": 1128725, + "symbol": "icld", + "name": "intercloud systems inc" + }, + { + "cik": 1548240, + "symbol": "yewb", + "name": "yew bio-pharm group inc" + }, + { + "cik": 1502966, + "symbol": "digp", + "name": "digipath inc" + }, + { + "cik": 1041588, + "symbol": "accr", + "name": "access-power & co inc" + }, + { + "cik": 1661264, + "symbol": "skyf", + "name": "sky440 inc" + }, + { + "cik": 1547996, + "symbol": "ngbl", + "name": "notis global inc" + }, + { + "cik": 51011, + "symbol": "itdn", + "name": "interdyne co" + }, + { + "cik": 1506742, + "symbol": "txso", + "name": "texas south energy inc" + }, + { + "cik": 1082027, + "symbol": "neik", + "name": "northstar electronics inc" + }, + { + "cik": 1695473, + "symbol": "gcan", + "name": "greater cannabis company inc" + }, + { + "cik": 1498301, + "symbol": "asna", + "name": "ascena retail group inc" + }, + { + "cik": 847942, + "symbol": "stqn", + "name": "strategic acquisitions inc nv" + }, + { + "cik": 1552164, + "symbol": "avrn", + "name": "avra inc" + }, + { + "cik": 1001463, + "symbol": "acca", + "name": "acacia diversified holdings inc" + }, + { + "cik": 1537258, + "symbol": "abwn", + "name": "airborne wireless network" + }, + { + "cik": 730669, + "symbol": "fcic", + "name": "fccc inc" + }, + { + "cik": 1310527, + "symbol": "qpwrd", + "name": "qsam biosciences inc" + }, + { + "cik": 1574676, + "symbol": "glfh", + "name": "galenfeha inc" + }, + { + "cik": 1174814, + "symbol": "skyl", + "name": "sky resort international ltd" + }, + { + "cik": 1435181, + "symbol": "phbi", + "name": "pharmagreen biotech inc" + }, + { + "cik": 1533357, + "symbol": "dtii", + "name": "defense technologies international corp" + }, + { + "cik": 1405660, + "symbol": "aiko", + "name": "alternative investment corp" + }, + { + "cik": 1223533, + "symbol": "frli", + "name": "frelii inc" + }, + { + "cik": 1803977, + "symbol": "blab", + "name": "bio lab naturals inc" + }, + { + "cik": 1300938, + "symbol": "abce", + "name": "abco energy inc" + }, + { + "cik": 1063197, + "symbol": "crgs", + "name": "curaegis technologies inc" + }, + { + "cik": 1421204, + "symbol": "nspxd", + "name": "inspyr therapeutics inc" + }, + { + "cik": 1399306, + "symbol": "siml", + "name": "simlatus corp" + }, + { + "cik": 1572840, + "symbol": "sbes", + "name": "south beach spirits inc" + }, + { + "cik": 1614466, + "symbol": "dlcr", + "name": "kibush capital corp" + }, + { + "cik": 704172, + "symbol": "phigw", + "name": "phi group inc" + }, + { + "cik": 1604930, + "symbol": "lclp", + "name": "life clips inc" + }, + { + "cik": 1174672, + "symbol": "intp", + "name": "boston carriers inc" + }, + { + "cik": 1456802, + "symbol": "ccob", + "name": "century cobalt corp" + }, + { + "cik": 1290658, + "symbol": "itox", + "name": "iiot-oxys inc" + }, + { + "cik": 1062506, + "symbol": "alda", + "name": "atlantica inc" + }, + { + "cik": 1455926, + "symbol": "irnc", + "name": "ironclad encryption corp" + }, + { + "cik": 1822529, + "symbol": "tqlb", + "name": "torque lifestyle brands inc" + }, + { + "cik": 1539551, + "symbol": "sfhi", + "name": "sports field holdings inc" + }, + { + "cik": 1704795, + "symbol": "bant", + "name": "bantec inc" + }, + { + "cik": 1473579, + "symbol": "bthe", + "name": "boston therapeutics inc" + }, + { + "cik": 1371424, + "symbol": "rymm", + "name": "royal mines & minerals corp" + }, + { + "cik": 1669812, + "symbol": "lksdq", + "name": "lsc communications inc" + }, + { + "cik": 1497251, + "symbol": "ezcl", + "name": "ezy cloud holding inc" + }, + { + "cik": 1398137, + "symbol": "gnal", + "name": "generation alpha inc" + }, + { + "cik": 1615169, + "symbol": "jwhi", + "name": "jin wan hong international holdings ltd" + }, + { + "cik": 1464623, + "symbol": "ntcxf", + "name": "natcore technology inc" + }, + { + "cik": 1582919, + "symbol": "ftws", + "name": "flitways technology inc" + }, + { + "cik": 1516079, + "symbol": "ucbb", + "name": "us-china biomedical technology inc" + }, + { + "cik": 1091983, + "symbol": "fvrg", + "name": "forevergreen worldwide corp" + }, + { + "cik": 862668, + "symbol": "esmc", + "name": "escalon medical corp" + }, + { + "cik": 1300867, + "symbol": "onci", + "name": "on4 communications inc" + }, + { + "cik": 1490873, + "symbol": "essi", + "name": "eco science solutions inc" + }, + { + "cik": 1039466, + "symbol": "xsnxd", + "name": "novaccess global inc" + }, + { + "cik": 1557668, + "symbol": "beag", + "name": "blue eagle lithium inc" + }, + { + "cik": 1122742, + "symbol": "ferld", + "name": "fearless films inc" + }, + { + "cik": 1445467, + "symbol": "avpmd", + "name": "avrupa minerals ltd" + }, + { + "cik": 1404804, + "symbol": "omtk", + "name": "omnitek engineering corp" + }, + { + "cik": 1280396, + "symbol": "vtna", + "name": "vetanova inc" + }, + { + "cik": 1538495, + "symbol": "unov", + "name": "earth science tech inc" + }, + { + "cik": 1811999, + "symbol": "fmhs", + "name": "farmhouse inc nv" + }, + { + "cik": 1425565, + "symbol": "rgseq", + "name": "real goods solar inc" + }, + { + "cik": 1482075, + "symbol": "coil", + "name": "citadel exploration inc" + }, + { + "cik": 1527355, + "symbol": "kred", + "name": "konared corp" + }, + { + "cik": 1066764, + "symbol": "spin", + "name": "spine injury solutions inc" + }, + { + "cik": 1420108, + "symbol": "gluc", + "name": "glucose health inc" + }, + { + "cik": 1142488, + "symbol": "gbhl", + "name": "global entertainment holdings inc" + }, + { + "cik": 1525306, + "symbol": "fstj", + "name": "first america resources corp" + }, + { + "cik": 1587476, + "symbol": "psww", + "name": "principal solar inc" + }, + { + "cik": 1629205, + "symbol": "gmvp", + "name": "gridiron bionutrients inc" + }, + { + "cik": 1609139, + "symbol": "innd", + "name": "innerscope hearing technologies inc" + }, + { + "cik": 1109067, + "symbol": "mves", + "name": "movie studio inc" + }, + { + "cik": 1307624, + "symbol": "hybg", + "name": "hyb holding corp" + }, + { + "cik": 1412126, + "symbol": "rmsl", + "name": "remsleep holdings inc" + }, + { + "cik": 825322, + "symbol": "xdsl", + "name": "mphase technologies inc" + }, + { + "cik": 1532424, + "symbol": "ccan", + "name": "canadian cannabis corp" + }, + { + "cik": 1413891, + "symbol": "sgsi", + "name": "spectrum global solutions inc" + }, + { + "cik": 1286459, + "symbol": "afom", + "name": "all for one media corp" + }, + { + "cik": 1405073, + "symbol": "arexq", + "name": "approach resources inc" + }, + { + "cik": 1321828, + "symbol": "dclt", + "name": "data call technologies" + }, + { + "cik": 927454, + "symbol": "adsv", + "name": "allied security innovations inc" + }, + { + "cik": 1763329, + "symbol": "twgl", + "name": "20 20 global inc" + }, + { + "cik": 1343460, + "symbol": "mblv", + "name": "mobiventures inc" + }, + { + "cik": 1553467, + "symbol": "sdlpf", + "name": "seadrill partners llc" + }, + { + "cik": 1464300, + "symbol": "ptpf", + "name": "all marketing solutions inc" + }, + { + "cik": 1409253, + "symbol": "nafs", + "name": "north america frac sand inc" + }, + { + "cik": 1381871, + "symbol": "czni", + "name": "cruzani inc" + }, + { + "cik": 1579010, + "symbol": "lfer", + "name": "life on earth inc" + }, + { + "cik": 1316175, + "symbol": "anth", + "name": "anthera pharmaceuticals inc" + }, + { + "cik": 1089319, + "symbol": "fsnr", + "name": "freestone resources inc" + }, + { + "cik": 928953, + "symbol": "prle", + "name": "pillarstone capital reit" + }, + { + "cik": 884940, + "symbol": "smrt", + "name": "stein mart inc" + }, + { + "cik": 1591387, + "symbol": "atin", + "name": "ati nationwide holding corp" + }, + { + "cik": 1558465, + "symbol": "pgas", + "name": "petrogress inc" + }, + { + "cik": 1697935, + "symbol": "lvxi", + "name": "maptelligent inc" + }, + { + "cik": 1140310, + "symbol": "esnc", + "name": "ensync inc" + }, + { + "cik": 1030916, + "symbol": "prhl", + "name": "premier holding corp" + }, + { + "cik": 1437822, + "symbol": "etah", + "name": "eternity healthcare inc" + }, + { + "cik": 1567802, + "symbol": "ooil", + "name": "perkins oil & gas inc" + }, + { + "cik": 1757067, + "symbol": "papa", + "name": "w o group inc" + }, + { + "cik": 1722287, + "symbol": "cvia", + "name": "covia holdings corp" + }, + { + "cik": 737207, + "symbol": "atrx", + "name": "adhera therapeutics inc" + }, + { + "cik": 886835, + "symbol": "spn", + "name": "superior energy services inc" + }, + { + "cik": 797542, + "symbol": "vbix", + "name": "viewbix inc" + }, + { + "cik": 1011060, + "symbol": "asnb", + "name": "ekimas corp" + }, + { + "cik": 921560, + "symbol": "mgpc", + "name": "moregain pictures inc" + }, + { + "cik": 1124160, + "symbol": "zimcf", + "name": "zim corp" + }, + { + "cik": 1528172, + "symbol": "endv", + "name": "endonovo therapeutics inc" + }, + { + "cik": 831489, + "symbol": "scrh", + "name": "scores holding co inc" + }, + { + "cik": 1446152, + "symbol": "seny", + "name": "sauer energy inc" + }, + { + "cik": 1431074, + "symbol": "brgo", + "name": "bergio international inc" + }, + { + "cik": 1128353, + "symbol": "etck", + "name": "enerteck corp" + }, + { + "cik": 1434601, + "symbol": "tmgi", + "name": "marquie group inc" + }, + { + "cik": 225211, + "symbol": "ohgi", + "name": "touchpoint group holdings inc" + }, + { + "cik": 1231339, + "symbol": "asre", + "name": "astra energy inc" + }, + { + "cik": 1098462, + "symbol": "mtlk", + "name": "metalink ltd" + }, + { + "cik": 1517389, + "symbol": "jfil", + "name": "jubilant flame international ltd" + }, + { + "cik": 1442711, + "symbol": "cypw", + "name": "cyclone power technologies inc" + }, + { + "cik": 75439, + "symbol": "mdit", + "name": "medite cancer diagnostics inc" + }, + { + "cik": 1157817, + "symbol": "sito", + "name": "sito mobile ltd" + }, + { + "cik": 1436161, + "symbol": "cnabq", + "name": "united cannabis corp" + }, + { + "cik": 1018281, + "symbol": "itkg", + "name": "integral technologies inc" + }, + { + "cik": 1417028, + "symbol": "mjtk", + "name": "cannasys inc" + }, + { + "cik": 1411036, + "symbol": "clth", + "name": "cleantech biofuels inc" + }, + { + "cik": 1368275, + "symbol": "wesc", + "name": "w&e source corp" + }, + { + "cik": 885074, + "symbol": "aghc", + "name": "aeon global health corp" + }, + { + "cik": 1416697, + "symbol": "blpg", + "name": "blue line protection group inc" + }, + { + "cik": 1164256, + "symbol": "dbrm", + "name": "daybreak oil & gas inc" + }, + { + "cik": 1702541, + "symbol": "rivx", + "name": "rivex technology corp" + }, + { + "cik": 1456212, + "symbol": "brti", + "name": "blackridge technology international inc" + }, + { + "cik": 1575142, + "symbol": "bdpt", + "name": "bioadaptives inc" + }, + { + "cik": 1133798, + "symbol": "txhg", + "name": "tx holdings inc" + }, + { + "cik": 1535079, + "symbol": "mccx", + "name": "mcx technologies corp" + }, + { + "cik": 797564, + "symbol": "hstc", + "name": "hst global inc" + }, + { + "cik": 1550053, + "symbol": "gpiw", + "name": "grand perfecta inc" + }, + { + "cik": 1727535, + "symbol": "gdet", + "name": "gd entertainment & technology inc" + }, + { + "cik": 1530746, + "symbol": "kaysd", + "name": "kaya holdings inc" + }, + { + "cik": 1380277, + "symbol": "ifxy", + "name": "infrax systems inc" + }, + { + "cik": 1375618, + "symbol": "amaz", + "name": "amazing energy oil & gas co" + }, + { + "cik": 1375063, + "symbol": "syne", + "name": "synthesis energy systems inc" + }, + { + "cik": 1402453, + "symbol": "hher", + "name": "her imports" + }, + { + "cik": 1526689, + "symbol": "vend", + "name": "generation next franchise brands inc" + }, + { + "cik": 811522, + "symbol": "qzmrf", + "name": "quartz mountain resources ltd" + }, + { + "cik": 1492091, + "symbol": "asck", + "name": "auscrete corp" + }, + { + "cik": 1487718, + "symbol": "boxs", + "name": "boxscore brands inc" + }, + { + "cik": 1131903, + "symbol": "fccn", + "name": "spectral capital corp" + }, + { + "cik": 1581220, + "symbol": "xall", + "name": "xalles holdings inc" + }, + { + "cik": 1603961, + "symbol": "mdfzf", + "name": "medifocus inc" + }, + { + "cik": 820608, + "symbol": "qtxb", + "name": "quantrx biomedical corp" + }, + { + "cik": 1407704, + "symbol": "boty", + "name": "lingerie fighting championships inc" + }, + { + "cik": 768216, + "symbol": "logq", + "name": "logicquest technology inc" + }, + { + "cik": 1555995, + "symbol": "devv", + "name": "bioscience neutraceuticals inc" + }, + { + "cik": 1113313, + "symbol": "avni", + "name": "arvana inc" + }, + { + "cik": 1174891, + "symbol": "buuz", + "name": "calethos inc" + }, + { + "cik": 1833214, + "symbol": "bcyp", + "name": "big cypress acquisition corp" + }, + { + "cik": 1076784, + "symbol": "dbub", + "name": "dbub group inc" + }, + { + "cik": 1043894, + "symbol": "evtnd", + "name": "enviro technologies us inc" + }, + { + "cik": 764630, + "symbol": "usbl", + "name": "united states basketball league inc" + }, + { + "cik": 352991, + "symbol": "aoxy", + "name": "advanced oxygen technologies inc" + }, + { + "cik": 723733, + "symbol": "muss", + "name": "multi solutions ii inc" + }, + { + "cik": 1563855, + "symbol": "sphs", + "name": "sophiris bio inc" + }, + { + "cik": 1709563, + "symbol": "ygty", + "name": "sslj com ltd" + }, + { + "cik": 1518171, + "symbol": "jadg", + "name": "jade global holdings inc" + }, + { + "cik": 1382112, + "symbol": "gmev", + "name": "gme innotainment inc" + }, + { + "cik": 1040850, + "symbol": "agtk", + "name": "agritek holdings inc" + }, + { + "cik": 1017110, + "symbol": "gthr", + "name": "genethera inc" + }, + { + "cik": 1636509, + "symbol": "vcbd", + "name": "vitalibis inc" + }, + { + "cik": 1104265, + "symbol": "grso", + "name": "grow solutions holdings inc" + }, + { + "cik": 1144169, + "symbol": "ecox", + "name": "eco innovation group inc" + }, + { + "cik": 1592603, + "symbol": "gwsn", + "name": "gulf west security network inc" + }, + { + "cik": 1284454, + "symbol": "evcc", + "name": "environmental control corp" + }, + { + "cik": 1110648, + "symbol": "imtl", + "name": "image protect inc" + }, + { + "cik": 1409446, + "symbol": "nhmd", + "name": "nates food co" + }, + { + "cik": 1456787, + "symbol": "dgji", + "name": "dragon jade international ltd" + }, + { + "cik": 1393570, + "symbol": "paso", + "name": "patient access solutions inc" + }, + { + "cik": 1423325, + "symbol": "icnn", + "name": "incoming inc" + }, + { + "cik": 1060888, + "symbol": "lqwc", + "name": "lifequest world corp" + }, + { + "cik": 1385329, + "symbol": "cwss", + "name": "creative waste solutions inc" + }, + { + "cik": 1049011, + "symbol": "kdce", + "name": "kid castle educational corp" + }, + { + "cik": 1455819, + "symbol": "vape", + "name": "vape holdings inc" + }, + { + "cik": 1386018, + "symbol": "tgro", + "name": "tiger oil & energy inc" + }, + { + "cik": 1431880, + "symbol": "ptam", + "name": "potash america inc" + }, + { + "cik": 1737372, + "symbol": "sysx", + "name": "sysorex inc" + }, + { + "cik": 1589150, + "symbol": "rgbp", + "name": "regen biopharma inc" + }, + { + "cik": 825171, + "symbol": "hhhef", + "name": "37 capital inc" + }, + { + "cik": 1419583, + "symbol": "eopt", + "name": "eos petro inc" + }, + { + "cik": 1509477, + "symbol": "ndmt", + "name": "nownews digital media technology co ltd" + }, + { + "cik": 1363343, + "symbol": "zmdc", + "name": "usa zhimingde international group corp" + }, + { + "cik": 1085277, + "symbol": "skvi", + "name": "skinvisible inc" + }, + { + "cik": 1631463, + "symbol": "brll", + "name": "barrel energy inc" + }, + { + "cik": 895287, + "symbol": "vmhg", + "name": "victory marine holdings corp" + }, + { + "cik": 1449447, + "symbol": "etni", + "name": "entest group inc" + }, + { + "cik": 1580262, + "symbol": "rton", + "name": "right on brands inc" + }, + { + "cik": 1417754, + "symbol": "linuf", + "name": "liniu technology group" + }, + { + "cik": 1689066, + "symbol": "sigo", + "name": "sunset island group" + }, + { + "cik": 1490949, + "symbol": "vcps", + "name": "vincompass corp" + }, + { + "cik": 1597426, + "symbol": "evarf", + "name": "lombard medical inc" + }, + { + "cik": 1458581, + "symbol": "zeno", + "name": "zenosense inc" + }, + { + "cik": 704366, + "symbol": "wodi", + "name": "wod retail solutions inc" + }, + { + "cik": 1556226, + "symbol": "curm", + "name": "cur media inc" + }, + { + "cik": 918545, + "symbol": "bisa", + "name": "baltic international usa inc" + }, + { + "cik": 1163612, + "symbol": "pveg", + "name": "pacific vegas global strategies inc" + }, + { + "cik": 1689490, + "symbol": "ntpy", + "name": "netpay international inc" + }, + { + "cik": 1627611, + "symbol": "retc", + "name": "12 retech corp" + }, + { + "cik": 1602929, + "symbol": "hmpq", + "name": "hempamericana inc" + }, + { + "cik": 1517681, + "symbol": "ppcbd", + "name": "propanc biopharma inc" + }, + { + "cik": 715788, + "symbol": "evio", + "name": "evio inc" + }, + { + "cik": 1511820, + "symbol": "gntw", + "name": "globe net wireless corp" + }, + { + "cik": 1760026, + "symbol": "mssv", + "name": "meso numismatics inc" + }, + { + "cik": 1567771, + "symbol": "bdgy", + "name": "bridgeway national corp" + }, + { + "cik": 944696, + "symbol": "cpfh", + "name": "capital financial holdings inc" + }, + { + "cik": 1752108, + "symbol": "rbzaw", + "name": "reebonz holding ltd" + }, + { + "cik": 1083706, + "symbol": "exnt", + "name": "enxnet inc" + }, + { + "cik": 822997, + "symbol": "ybao", + "name": "ybcc inc" + }, + { + "cik": 1349437, + "symbol": "twer", + "name": "towerstream corp" + }, + { + "cik": 1495536, + "symbol": "encr", + "name": "ener-core inc" + }, + { + "cik": 1388295, + "symbol": "wbsi", + "name": "websafety inc" + }, + { + "cik": 1486452, + "symbol": "clka", + "name": "clikia corp" + }, + { + "cik": 1077319, + "symbol": "slch", + "name": "spotlight capital holdings inc" + }, + { + "cik": 1265572, + "symbol": "kona", + "name": "kona grill inc" + }, + { + "cik": 1561686, + "symbol": "sset", + "name": "starstream entertainment inc" + }, + { + "cik": 1509786, + "symbol": "gkin", + "name": "guskin gold corp" + }, + { + "cik": 1362703, + "symbol": "obmp", + "name": "theralink technologies inc" + }, + { + "cik": 1672326, + "symbol": "yumaq", + "name": "yuma energy inc" + }, + { + "cik": 869531, + "symbol": "adgo", + "name": "advantego corp" + }, + { + "cik": 1080029, + "symbol": "mydp", + "name": "doughertys pharmacy inc" + }, + { + "cik": 1513403, + "symbol": "glph", + "name": "gala pharmaceutical inc" + }, + { + "cik": 1503161, + "symbol": "ngrp", + "name": "ngen technologies holdings corp" + }, + { + "cik": 1496690, + "symbol": "bcrd", + "name": "blueone card inc" + }, + { + "cik": 1028153, + "symbol": "axpwq", + "name": "axion power international inc" + }, + { + "cik": 1375686, + "symbol": "thti", + "name": "tht heat transfer technology inc" + }, + { + "cik": 1497130, + "symbol": "vnth", + "name": "nano mobile healthcare inc" + }, + { + "cik": 1227282, + "symbol": "spowf", + "name": "strata power corp" + }, + { + "cik": 1054476, + "symbol": "orgh", + "name": "orgharvest inc" + }, + { + "cik": 1084133, + "symbol": "rlbd", + "name": "real brands inc" + }, + { + "cik": 922247, + "symbol": "cythw", + "name": "cyclo therapeutics inc" + }, + { + "cik": 1327238, + "symbol": "bngi", + "name": "bangi inc" + }, + { + "cik": 1765826, + "symbol": "bzrd", + "name": "blubuzzard inc" + }, + { + "cik": 1143238, + "symbol": "dsox", + "name": "triton emission solutions inc" + }, + { + "cik": 813716, + "symbol": "cirx", + "name": "cirtran corp" + }, + { + "cik": 1081834, + "symbol": "uoli", + "name": "uonlive corp" + }, + { + "cik": 1450704, + "symbol": "vivk", + "name": "vivakor inc" + }, + { + "cik": 1381435, + "symbol": "gigl", + "name": "giggles n hugs inc" + }, + { + "cik": 1776048, + "symbol": "ammxd", + "name": "ameramex international inc" + }, + { + "cik": 896985, + "symbol": "dest", + "name": "destination maternity corp" + }, + { + "cik": 1355559, + "symbol": "cxus", + "name": "celexus inc" + }, + { + "cik": 1119807, + "symbol": "encc", + "name": "trailblazer resources inc" + }, + { + "cik": 1409916, + "symbol": "nrtsf", + "name": "nobilis health corp" + }, + { + "cik": 1422768, + "symbol": "hlwd", + "name": "almost never films inc" + }, + { + "cik": 106455, + "symbol": "wlbaq", + "name": "westmoreland coal co" + }, + { + "cik": 1623595, + "symbol": "atls", + "name": "atlas energy group llc" + }, + { + "cik": 1277575, + "symbol": "scgx", + "name": "saxon capital group inc" + }, + { + "cik": 1073489, + "symbol": "cxcq", + "name": "cardxx inc" + }, + { + "cik": 1567503, + "symbol": "tkci", + "name": "turnkey capital inc" + }, + { + "cik": 1393901, + "symbol": "medh", + "name": "medx holdings inc" + }, + { + "cik": 932265, + "symbol": "fteg", + "name": "for the earth corp" + }, + { + "cik": 1479000, + "symbol": "ottv", + "name": "viva entertainment group inc" + }, + { + "cik": 1045707, + "symbol": "mdin", + "name": "medgen inc" + }, + { + "cik": 1116734, + "symbol": "unrg", + "name": "united energy corp nv" + }, + { + "cik": 1370489, + "symbol": "bfre", + "name": "bluefire renewables inc" + }, + { + "cik": 1098343, + "symbol": "tvog", + "name": "turner valley oil & gas inc" + }, + { + "cik": 1061288, + "symbol": "coglf", + "name": "chelsea oil & gas ltd" + }, + { + "cik": 1388486, + "symbol": "stlt", + "name": "spotlight innovation inc" + }, + { + "cik": 931799, + "symbol": "glye", + "name": "glyeco inc" + }, + { + "cik": 1522704, + "symbol": "mfst", + "name": "medifirst solutions inc" + }, + { + "cik": 811222, + "symbol": "cdix", + "name": "cardiff lexington corp" + }, + { + "cik": 1004411, + "symbol": "glla", + "name": "gilla inc" + }, + { + "cik": 1660839, + "symbol": "pxpp", + "name": "phoenix apps inc" + }, + { + "cik": 1043156, + "symbol": "strz", + "name": "star buffet inc" + }, + { + "cik": 1499573, + "symbol": "fwlaf", + "name": "flatworld acquisition corp" + }, + { + "cik": 1501257, + "symbol": "pnat", + "name": "pura naturals inc" + }, + { + "cik": 1334589, + "symbol": "plyz", + "name": "plyzer technologies inc" + }, + { + "cik": 1419995, + "symbol": "dnaxd", + "name": "dna brands inc" + }, + { + "cik": 81157, + "symbol": "pgai", + "name": "pgi inc" + }, + { + "cik": 1448695, + "symbol": "ungs", + "name": "sylios corp" + }, + { + "cik": 1485922, + "symbol": "paqwf", + "name": "prime acquisition corp" + }, + { + "cik": 1724293, + "symbol": "kync", + "name": "kyn capital group inc" + }, + { + "cik": 860131, + "symbol": "ways", + "name": "wave sync corp" + }, + { + "cik": 1373467, + "symbol": "vtxb", + "name": "vortex brands co" + }, + { + "cik": 1335493, + "symbol": "pvho", + "name": "provision holding inc" + }, + { + "cik": 1691906, + "symbol": "aggg", + "name": "antilia group corp" + }, + { + "cik": 1278465, + "symbol": "euenf", + "name": "eurasia energy ltd" + }, + { + "cik": 1641751, + "symbol": "vtnl", + "name": "brewbilt manufacturing inc" + }, + { + "cik": 931059, + "symbol": "rnvaw", + "name": "rennova health inc" + }, + { + "cik": 1584137, + "symbol": "oncx", + "name": "oncolix inc" + }, + { + "cik": 1505611, + "symbol": "dpsi", + "name": "decisionpoint systems inc" + }, + { + "cik": 1715688, + "symbol": "aept", + "name": "american energy partners inc" + }, + { + "cik": 1423579, + "symbol": "legx", + "name": "legacyxchange inc" + }, + { + "cik": 1407573, + "symbol": "phbr", + "name": "phonebrasil internetional inc" + }, + { + "cik": 1742550, + "symbol": "corx", + "name": "core lithium corp" + }, + { + "cik": 908256, + "symbol": "cshef", + "name": "china enterprises ltd" + }, + { + "cik": 1441769, + "symbol": "dirv", + "name": "directview holdings inc" + }, + { + "cik": 1125699, + "symbol": "dlyt", + "name": "dais corp" + }, + { + "cik": 1585755, + "symbol": "asnt", + "name": "arias intel corp" + }, + { + "cik": 1437738, + "symbol": "foeaf", + "name": "dolphin drilling asa adr" + }, + { + "cik": 1496818, + "symbol": "stth", + "name": "stealth technologies inc" + }, + { + "cik": 790179, + "symbol": "pgec", + "name": "prestige capital corp" + }, + { + "cik": 1212787, + "symbol": "bmmcf", + "name": "kbridge energy corp" + }, + { + "cik": 1776073, + "symbol": "cbdl", + "name": "cbd life sciences inc" + }, + { + "cik": 1465872, + "symbol": "vtdrf", + "name": "vantage drilling international" + }, + { + "cik": 1374584, + "symbol": "gpls", + "name": "geopulse exploration inc" + }, + { + "cik": 1338929, + "symbol": "gftx", + "name": "global fiber technologies inc" + }, + { + "cik": 1091418, + "symbol": "nbdr", + "name": "no borders inc" + }, + { + "cik": 1628104, + "symbol": "xspt", + "name": "xsport global inc" + }, + { + "cik": 1681556, + "symbol": "gxxmd", + "name": "gex management inc" + }, + { + "cik": 1616788, + "symbol": "lgyv", + "name": "legacy ventures international inc" + }, + { + "cik": 1498122, + "symbol": "arst", + "name": "arista financial corp" + }, + { + "cik": 1362959, + "symbol": "rosgq", + "name": "rosetta genomics ltd" + }, + { + "cik": 1527844, + "symbol": "gbpt", + "name": "globe photos inc" + }, + { + "cik": 1756704, + "symbol": "sirc", + "name": "solar integrated roofing corp" + }, + { + "cik": 1556416, + "symbol": "bkit", + "name": "biohemp international inc" + }, + { + "cik": 1427644, + "symbol": "qban", + "name": "telco cuba inc" + }, + { + "cik": 1145898, + "symbol": "cwnof", + "name": "chineseworldnet com inc" + }, + { + "cik": 1497055, + "symbol": "grog", + "name": "grogenesis inc" + }, + { + "cik": 1592411, + "symbol": "dkgh", + "name": "dkg capital inc" + }, + { + "cik": 1523526, + "symbol": "sirr", + "name": "sierra income corp" + }, + { + "cik": 1412347, + "symbol": "wmlpq", + "name": "westmoreland resource partners lp" + }, + { + "cik": 1295560, + "symbol": "iorg", + "name": "intreorg systems inc" + }, + { + "cik": 1523486, + "symbol": "mjds", + "name": "mojo data solutions inc" + }, + { + "cik": 1532926, + "symbol": "brkk", + "name": "gen 2 technologies inc" + }, + { + "cik": 1428765, + "symbol": "geth", + "name": "green envirotech holdings corp" + }, + { + "cik": 1058330, + "symbol": "fpfi", + "name": "fresh promise foods inc" + }, + { + "cik": 1099215, + "symbol": "prtx", + "name": "protalex inc" + }, + { + "cik": 1593470, + "symbol": "tgrr", + "name": "tiger reef inc" + }, + { + "cik": 1449574, + "symbol": "bvtk", + "name": "bravatek solutions inc" + }, + { + "cik": 1403802, + "symbol": "spdl", + "name": "spindle inc" + }, + { + "cik": 1639874, + "symbol": "tchc", + "name": "tech central inc" + }, + { + "cik": 1421603, + "symbol": "invb", + "name": "inventabiotech inc" + }, + { + "cik": 1076522, + "symbol": "ictv", + "name": "ictv brands inc" + }, + { + "cik": 1486299, + "symbol": "biqif", + "name": "biqi international holdings corp" + }, + { + "cik": 1384939, + "symbol": "bncm", + "name": "24 7 labs corp" + }, + { + "cik": 1615942, + "symbol": "olmm", + "name": "onelife technologies corp" + }, + { + "cik": 1823635, + "symbol": "ecxj", + "name": "cxj group co ltd" + }, + { + "cik": 1397795, + "symbol": "qutrd", + "name": "born inc" + }, + { + "cik": 723533, + "symbol": "lwlw", + "name": "longwen group corp" + }, + { + "cik": 836564, + "symbol": "ptsc", + "name": "mosaic immunoengineering inc" + }, + { + "cik": 1664038, + "symbol": "hpmmd", + "name": "hemp naturals inc" + }, + { + "cik": 1157509, + "symbol": "msmy", + "name": "mc endeavors inc" + }, + { + "cik": 1479526, + "symbol": "cmci", + "name": "china modern agricultural information inc" + }, + { + "cik": 1444403, + "symbol": "cgac", + "name": "code green apparel corp" + }, + { + "cik": 1499855, + "symbol": "bthr", + "name": "sports venues of florida inc" + }, + { + "cik": 1093248, + "symbol": "mihi", + "name": "medical innovation holdings inc" + }, + { + "cik": 1325159, + "symbol": "freef", + "name": "freeseas inc" + }, + { + "cik": 1414767, + "symbol": "vstr", + "name": "netcapital inc" + }, + { + "cik": 1543083, + "symbol": "ngey", + "name": "new global energy inc" + }, + { + "cik": 1685570, + "symbol": "klmnd", + "name": "nanovation microtech inc" + }, + { + "cik": 1405227, + "symbol": "urald", + "name": "united rail inc" + }, + { + "cik": 1607281, + "symbol": "eltz", + "name": "elite group inc" + }, + { + "cik": 1591157, + "symbol": "gteh", + "name": "gentech holdings inc" + }, + { + "cik": 1622767, + "symbol": "srup", + "name": "sirrus corp" + }, + { + "cik": 1428816, + "symbol": "epxy", + "name": "epoxy inc" + }, + { + "cik": 747435, + "symbol": "ahix", + "name": "aluf holdings inc" + }, + { + "cik": 1403674, + "symbol": "potgd", + "name": "portage resources inc" + }, + { + "cik": 1562201, + "symbol": "bpol", + "name": "blackpoll fleet international inc" + }, + { + "cik": 1572317, + "symbol": "uneq", + "name": "uneeqo inc" + }, + { + "cik": 1076310, + "symbol": "infx", + "name": "infinex ventures inc" + }, + { + "cik": 1350421, + "symbol": "hkeb", + "name": "hk ebus corp" + }, + { + "cik": 1439397, + "symbol": "ncap", + "name": "northsight capital inc" + }, + { + "cik": 850971, + "symbol": "fjhld", + "name": "fovea jewelry holdings ltd" + }, + { + "cik": 1553734, + "symbol": "epti", + "name": "environmental packaging technologies holdings inc" + }, + { + "cik": 1083848, + "symbol": "ccre", + "name": "can cal resources ltd" + }, + { + "cik": 1368620, + "symbol": "cnna", + "name": "cann american corp" + }, + { + "cik": 745543, + "symbol": "atptd", + "name": "petro usa inc" + }, + { + "cik": 1616314, + "symbol": "mrt", + "name": "medequities realty trust inc" + }, + { + "cik": 720002, + "symbol": "msfg", + "name": "mainsource financial group" + }, + { + "cik": 1819704, + "symbol": "mrm", + "name": "medirom healthcare technologies inc" + }, + { + "cik": 1830180, + "symbol": "mrac", + "name": "marquee raine acquisition corp" + }, + { + "cik": 1826600, + "symbol": "mntk", + "name": "montauk renewables inc" + }, + { + "cik": 864509, + "symbol": "moc", + "name": "command security corp" + }, + { + "cik": 1619174, + "symbol": "momc", + "name": "blockhold capital corp" + }, + { + "cik": 1822359, + "symbol": "motnu", + "name": "motion acquisition corp" + }, + { + "cik": 1827821, + "symbol": "motv", + "name": "motive capital corp" + }, + { + "cik": 1582962, + "symbol": "mpgr", + "name": "canna corp" + }, + { + "cik": 1170534, + "symbol": "mitl", + "name": "mitel networks corp" + }, + { + "cik": 1770236, + "symbol": "mitq", + "name": "moving image technologies inc" + }, + { + "cik": 1697412, + "symbol": "mgom", + "name": "migom global corp" + }, + { + "cik": 1778630, + "symbol": "ml", + "name": "meili auto holdings ltd" + }, + { + "cik": 1793129, + "symbol": "ndmo", + "name": "nuveen dynamic municipal opportunities fund" + }, + { + "cik": 1804585, + "symbol": "ngio", + "name": "nugenerex immuno-oncology inc" + }, + { + "cik": 1819493, + "symbol": "ngac", + "name": "nextgen acquisition corp" + }, + { + "cik": 1826018, + "symbol": "nebcu", + "name": "nebula caravel acquisition corp" + }, + { + "cik": 1748137, + "symbol": "neov", + "name": "neovolta inc" + }, + { + "cik": 1387713, + "symbol": "neul", + "name": "neulion inc" + }, + { + "cik": 1560186, + "symbol": "nadl", + "name": "north atlantic drilling ltd" + }, + { + "cik": 1619870, + "symbol": "naex", + "name": "national art exchange inc" + }, + { + "cik": 1826667, + "symbol": "mtacu", + "name": "medtech acquisition corp" + }, + { + "cik": 1693687, + "symbol": "msyn", + "name": "ms young adventure enterprise inc" + }, + { + "cik": 1516973, + "symbol": "mtge", + "name": "mtge investment corp" + }, + { + "cik": 1503658, + "symbol": "lvdw", + "name": "liquidvalue development inc" + }, + { + "cik": 1823767, + "symbol": "luxaw", + "name": "lux health tech acquisition corp" + }, + { + "cik": 1436975, + "symbol": "lvpr", + "name": "lightstone value plus real estate investment trust ii inc" + }, + { + "cik": 1732406, + "symbol": "ltcn", + "name": "grayscale litecoin trust (ltc)" + }, + { + "cik": 1496254, + "symbol": "ltifx", + "name": "alternative strategies fund" + }, + { + "cik": 1094348, + "symbol": "matr", + "name": "mattersight corp" + }, + { + "cik": 1740695, + "symbol": "lxam", + "name": "lux amber corp" + }, + { + "cik": 1805795, + "symbol": "macu", + "name": "mallard acquisition corp" + }, + { + "cik": 1052354, + "symbol": "madl", + "name": "man ahl diversified i lp" + }, + { + "cik": 1819263, + "symbol": "maac", + "name": "montes archimedes acquisition corp" + }, + { + "cik": 1126115, + "symbol": "lzgi", + "name": "lzg international inc" + }, + { + "cik": 1759413, + "symbol": "medu", + "name": "meten international education group" + }, + { + "cik": 1671077, + "symbol": "mdvp", + "name": "med spa vacations inc" + }, + { + "cik": 1536577, + "symbol": "mdlq", + "name": "medley llc" + }, + { + "cik": 1523289, + "symbol": "msfdx", + "name": "destra multi-alternative fund" + }, + { + "cik": 1831992, + "symbol": "lmaca", + "name": "liberty media acquisition corp" + }, + { + "cik": 1301611, + "symbol": "lpnt", + "name": "legacy lifepoint health inc" + }, + { + "cik": 1785880, + "symbol": "loha", + "name": "loha co ltd" + }, + { + "cik": 1821769, + "symbol": "lokb", + "name": "live oak acquisition corp ii" + }, + { + "cik": 1746278, + "symbol": "lova", + "name": "lovarra" + }, + { + "cik": 1581720, + "symbol": "loxo", + "name": "loxo oncology inc" + }, + { + "cik": 1672572, + "symbol": "lnby", + "name": "landbay inc" + }, + { + "cik": 1823575, + "symbol": "lnfa", + "name": "l&f acquisition corp" + }, + { + "cik": 57528, + "symbol": "lnce", + "name": "snyders-lance inc" + }, + { + "cik": 1658645, + "symbol": "lendx", + "name": "stone ridge trust v" + }, + { + "cik": 1820272, + "symbol": "legou", + "name": "legato merger corp" + }, + { + "cik": 1822492, + "symbol": "lcyaw", + "name": "landcadia holdings iii inc" + }, + { + "cik": 1822873, + "symbol": "lftrw", + "name": "lefteris acquisition corp" + }, + { + "cik": 1661166, + "symbol": "lgcp", + "name": "legion capital corp" + }, + { + "cik": 1753712, + "symbol": "larax", + "name": "lord abbett credit opportunities fund" + }, + { + "cik": 888504, + "symbol": "layn", + "name": "layne christensen co" + }, + { + "cik": 1441082, + "symbol": "lakf", + "name": "lake forest minerals inc" + }, + { + "cik": 1823525, + "symbol": "lcpu", + "name": "lcp acquisition corp" + }, + { + "cik": 1802450, + "symbol": "lcap", + "name": "lionheart acquisition corp ii" + }, + { + "cik": 1830162, + "symbol": "lbps", + "name": "4d pharma plc" + }, + { + "cik": 1535778, + "symbol": "hmsi", + "name": "msc income fund inc" + }, + { + "cik": 1461640, + "symbol": "hmta", + "name": "hometown bankshares corp" + }, + { + "cik": 1829042, + "symbol": "hmcou", + "name": "humanco acquisition corp" + }, + { + "cik": 1653629, + "symbol": "hpgn", + "name": "hypgen inc" + }, + { + "cik": 1821440, + "symbol": "homs", + "name": "caliber home loans inc" + }, + { + "cik": 1814329, + "symbol": "holuu", + "name": "holicity inc" + }, + { + "cik": 1537663, + "symbol": "hrdv", + "name": "health-right discoveries inc" + }, + { + "cik": 1600347, + "symbol": "htbc", + "name": "hotapp blockchain inc" + }, + { + "cik": 741815, + "symbol": "hh", + "name": "hooper holmes inc" + }, + { + "cik": 1807616, + "symbol": "higr", + "name": "hi-great group holding co" + }, + { + "cik": 1665421, + "symbol": "hghh", + "name": "high desert holding corp" + }, + { + "cik": 1826814, + "symbol": "hlah", + "name": "hamilton lane alliance holdings i inc" + }, + { + "cik": 1742341, + "symbol": "hkit", + "name": "hitek global inc" + }, + { + "cik": 1803901, + "symbol": "heccw", + "name": "hudson executive investment corp" + }, + { + "cik": 313716, + "symbol": "hdng", + "name": "hardinge inc" + }, + { + "cik": 1804506, + "symbol": "hdls", + "name": "hub deals corp" + }, + { + "cik": 1487986, + "symbol": "hcom", + "name": "hawaiian telcom holdco inc" + }, + { + "cik": 1824846, + "symbol": "hcaru", + "name": "healthcare services acquisition corp" + }, + { + "cik": 1364962, + "symbol": "impv", + "name": "imperva inc" + }, + { + "cik": 1740279, + "symbol": "inab", + "name": "in8bio inc" + }, + { + "cik": 1814963, + "symbol": "ilag", + "name": "intelligent living application group inc" + }, + { + "cik": 1750149, + "symbol": "ikt", + "name": "inhibikase therapeutics inc" + }, + { + "cik": 1819496, + "symbol": "igacw", + "name": "ig acquisition corp" + }, + { + "cik": 1688487, + "symbol": "xdiv", + "name": "metaurus equity component trust" + }, + { + "cik": 703361, + "symbol": "idti", + "name": "integrated device technology inc" + }, + { + "cik": 1698508, + "symbol": "ihta", + "name": "invesco high income 2024 target term fund" + }, + { + "cik": 1434620, + "symbol": "iilg", + "name": "ilg llc" + }, + { + "cik": 1825042, + "symbol": "iiac", + "name": "investindustrial acquisition corp" + }, + { + "cik": 1829889, + "symbol": "iiii", + "name": "insu acquisition corp iii" + }, + { + "cik": 1698113, + "symbol": "lgc", + "name": "parts id inc" + }, + { + "cik": 1824036, + "symbol": "idba", + "name": "idex biometrics asa" + }, + { + "cik": 1598924, + "symbol": "icgl", + "name": "image chain group limited inc" + }, + { + "cik": 1754303, + "symbol": "hz", + "name": "hezhong international (holding) ltd" + }, + { + "cik": 1806220, + "symbol": "hygo", + "name": "hygo energy transition ltd" + }, + { + "cik": 1791725, + "symbol": "hudi", + "name": "huadi international group co ltd" + }, + { + "cik": 1714420, + "symbol": "hthc", + "name": "hightimes holding corp" + }, + { + "cik": 1561032, + "symbol": "htia", + "name": "healthcare trust inc" + }, + { + "cik": 1828817, + "symbol": "htpa", + "name": "highland transcend partners i corp" + }, + { + "cik": 1172136, + "symbol": "htm", + "name": "us geothermal inc" + }, + { + "cik": 1358633, + "symbol": "intb", + "name": "intelligent buying inc" + }, + { + "cik": 1053374, + "symbol": "ipas", + "name": "ipass inc" + }, + { + "cik": 1826671, + "symbol": "inka", + "name": "kludein i acquisition corp" + }, + { + "cik": 1528985, + "symbol": "inre", + "name": "inland real estate income trust inc" + }, + { + "cik": 1530256, + "symbol": "irdef", + "name": "iren spa adr" + }, + { + "cik": 1562004, + "symbol": "iqndy", + "name": "iqnovate ltd" + }, + { + "cik": 1195933, + "symbol": "ipcc", + "name": "infinity property & casualty corp" + }, + { + "cik": 1029974, + "symbol": "ipglf", + "name": "interpump group spa fi" + }, + { + "cik": 1393020, + "symbol": "ivty", + "name": "invuity inc" + }, + { + "cik": 1816696, + "symbol": "itacw", + "name": "industrial tech acquisitions inc" + }, + { + "cik": 1537528, + "symbol": "jemc", + "name": "jem capital inc" + }, + { + "cik": 1580185, + "symbol": "jgw", + "name": "jg wentworth co" + }, + { + "cik": 1817868, + "symbol": "jaqcu", + "name": "jupiter acquisition corp" + }, + { + "cik": 1822312, + "symbol": "jcicu", + "name": "jack creek investment corp" + }, + { + "cik": 1610607, + "symbol": "jctg", + "name": "jiucaitong group ltd" + }, + { + "cik": 1702783, + "symbol": "kyyhf", + "name": "kyushu railway company adr" + }, + { + "cik": 1823086, + "symbol": "kwac", + "name": "kingswood acquisition corp" + }, + { + "cik": 906193, + "symbol": "ktec", + "name": "key technology inc" + }, + { + "cik": 1820875, + "symbol": "kinz", + "name": "kins technology group inc" + }, + { + "cik": 1823323, + "symbol": "klaq", + "name": "kl acquisition corp" + }, + { + "cik": 1482430, + "symbol": "kbsr", + "name": "kbs real estate investment trust iii inc" + }, + { + "cik": 911148, + "symbol": "kdus", + "name": "cadus corp" + }, + { + "cik": 1411059, + "symbol": "kbrs", + "name": "kbs real estate investment trust ii inc" + }, + { + "cik": 1524190, + "symbol": "kang", + "name": "ikang healthcare group inc" + }, + { + "cik": 1805594, + "symbol": "jwel", + "name": "jowell global ltd" + }, + { + "cik": 1816172, + "symbol": "jzxn", + "name": "jiuzi holdings inc" + }, + { + "cik": 1680237, + "symbol": "jsmm", + "name": "china king spirit group ltd" + }, + { + "cik": 1778651, + "symbol": "juvaf", + "name": "juva life inc canada" + }, + { + "cik": 1594864, + "symbol": "juno", + "name": "juno therapeutics inc" + }, + { + "cik": 1735664, + "symbol": "jmexf", + "name": "jmax international ltd" + }, + { + "cik": 1316898, + "symbol": "jmba", + "name": "jamba inc" + }, + { + "cik": 1460235, + "symbol": "pplt", + "name": "aberdeen standard platinum etf trust" + }, + { + "cik": 1455886, + "symbol": "pppmf", + "name": "primero mining corp" + }, + { + "cik": 1568905, + "symbol": "prdex", + "name": "predex" + }, + { + "cik": 1805521, + "symbol": "psac", + "name": "property solutions acquisition corp" + }, + { + "cik": 1748669, + "symbol": "prmi", + "name": "priam properties inc" + }, + { + "cik": 1476204, + "symbol": "phec", + "name": "phillips edison & company inc" + }, + { + "cik": 1825724, + "symbol": "phicu", + "name": "population health investment co inc" + }, + { + "cik": 1822835, + "symbol": "pipp", + "name": "pine island acquisition corp" + }, + { + "cik": 1723701, + "symbol": "pmflx", + "name": "pimco flexible municipal income fund" + }, + { + "cik": 1742691, + "symbol": "pmtg", + "name": "pimco mortgage income trust inc" + }, + { + "cik": 1690842, + "symbol": "pltm", + "name": "graniteshares platinum trust" + }, + { + "cik": 1620749, + "symbol": "pnht", + "name": "panamera healthcare corp" + }, + { + "cik": 1825480, + "symbol": "posh", + "name": "poshmark inc" + }, + { + "cik": 1828316, + "symbol": "phar", + "name": "pharming group nv" + }, + { + "cik": 900349, + "symbol": "pery", + "name": "perry ellis international inc" + }, + { + "cik": 1688554, + "symbol": "pflex", + "name": "pimco flexible credit income fund" + }, + { + "cik": 1756404, + "symbol": "pdskx", + "name": "principal diversified select real asset fund" + }, + { + "cik": 1830033, + "symbol": "pct", + "name": "roth ch acquisition i co parent corp" + }, + { + "cik": 1824993, + "symbol": "pcpc", + "name": "periphas capital partnering corp" + }, + { + "cik": 1359555, + "symbol": "pco", + "name": "pendrell corp" + }, + { + "cik": 1452936, + "symbol": "pcok", + "name": "pacific oak strategic opportunity reit inc" + }, + { + "cik": 1748680, + "symbol": "owscx", + "name": "1ws credit income fund" + }, + { + "cik": 1546652, + "symbol": "ounz", + "name": "vaneck merk gold trust" + }, + { + "cik": 1312073, + "symbol": "pay", + "name": "verifone systems inc" + }, + { + "cik": 1459862, + "symbol": "pall", + "name": "aberdeen standard palladium etf trust" + }, + { + "cik": 1810560, + "symbol": "paicw", + "name": "petra acquisition inc" + }, + { + "cik": 899175, + "symbol": "pbkc", + "name": "pioneer bankcorp inc" + }, + { + "cik": 1511071, + "symbol": "pbsk", + "name": "poage bankshares inc" + }, + { + "cik": 1302573, + "symbol": "omed", + "name": "oncomed pharmaceuticals inc" + }, + { + "cik": 54639, + "symbol": "okasy", + "name": "onward kashiyama co ltd" + }, + { + "cik": 1412067, + "symbol": "onty", + "name": "cascadian therapeutics inc" + }, + { + "cik": 1768206, + "symbol": "onl", + "name": "oxford northeast ltd" + }, + { + "cik": 1498380, + "symbol": "ondr", + "name": "online disruptive technologies inc" + }, + { + "cik": 1094139, + "symbol": "opco", + "name": "ourpets co" + }, + { + "cik": 1801169, + "symbol": "ipob", + "name": "opendoor technologies inc" + }, + { + "cik": 1680056, + "symbol": "orla", + "name": "orla mining ltd" + }, + { + "cik": 1827669, + "symbol": "oca", + "name": "omnichannel acquisition corp" + }, + { + "cik": 1110647, + "symbol": "oclr", + "name": "oclaro inc" + }, + { + "cik": 1578932, + "symbol": "ocip", + "name": "oci partners lp" + }, + { + "cik": 1489300, + "symbol": "odza", + "name": "odenza corp" + }, + { + "cik": 1333170, + "symbol": "nxtm", + "name": "nxstage medical inc" + }, + { + "cik": 1777398, + "symbol": "nwrcf", + "name": "northway resources corp" + }, + { + "cik": 70502, + "symbol": "nruc", + "name": "national rural utilities cooperative finance corp dc" + }, + { + "cik": 1737270, + "symbol": "nexcf", + "name": "nextech ar solutions corp" + }, + { + "cik": 1663712, + "symbol": "nrszx", + "name": "nexpoint real estate strategies fund" + }, + { + "cik": 1805385, + "symbol": "nhicw", + "name": "newhold investment corp" + }, + { + "cik": 1503707, + "symbol": "nhhs", + "name": "northstar healthcare income inc" + }, + { + "cik": 1736510, + "symbol": "nichx", + "name": "variant alternative income fund" + }, + { + "cik": 1606254, + "symbol": "nlrt", + "name": "nogales resources corp" + }, + { + "cik": 1784440, + "symbol": "notr", + "name": "nowtransit inc" + }, + { + "cik": 1824888, + "symbol": "noacu", + "name": "natural order acquisition corp" + }, + { + "cik": 1774342, + "symbol": "nmco", + "name": "nuveen municipal credit opportunities fund" + }, + { + "cik": 1819157, + "symbol": "nmmc", + "name": "north mountain merger corp" + }, + { + "cik": 1815903, + "symbol": "ptpi", + "name": "petros pharmaceuticals inc" + }, + { + "cik": 1821075, + "symbol": "pticu", + "name": "proptech investment corp ii" + }, + { + "cik": 1793882, + "symbol": "pta", + "name": "cohen & steers tax-advantaged preferred securities & income fund" + }, + { + "cik": 1608016, + "symbol": "psoix", + "name": "palmer square opportunistic income fund" + }, + { + "cik": 1094032, + "symbol": "qdm", + "name": "qdm international inc" + }, + { + "cik": 1779578, + "symbol": "qli", + "name": "qilian international holding group ltd" + }, + { + "cik": 1811623, + "symbol": "pxmd", + "name": "paxmedica inc" + }, + { + "cik": 1254699, + "symbol": "qvcc", + "name": "qvc inc" + }, + { + "cik": 1128790, + "symbol": "qwikf", + "name": "qwick media inc" + }, + { + "cik": 1824734, + "symbol": "raacu", + "name": "revolution acceleration acquisition corp" + }, + { + "cik": 1776641, + "symbol": "qqcy", + "name": "green grass ecological technology development co ltd" + }, + { + "cik": 1665598, + "symbol": "rccc", + "name": "rc-1 inc" + }, + { + "cik": 1628040, + "symbol": "rciax", + "name": "alternative credit income fund" + }, + { + "cik": 1817786, + "symbol": "rchg", + "name": "recharge acquisition corp" + }, + { + "cik": 1315098, + "symbol": "rblx", + "name": "roblox corp" + }, + { + "cik": 1657249, + "symbol": "rdmr", + "name": "road marshall inc" + }, + { + "cik": 1762692, + "symbol": "reey", + "name": "reed ltd" + }, + { + "cik": 1824403, + "symbol": "roccu", + "name": "roth ch acquisition ii co" + }, + { + "cik": 1588216, + "symbol": "rspp", + "name": "rsp permian inc" + }, + { + "cik": 1828318, + "symbol": "rsvau", + "name": "rodgers silicon valley acquisition corp" + }, + { + "cik": 1509432, + "symbol": "rpxc", + "name": "rpx corp" + }, + { + "cik": 1828105, + "symbol": "rtpz", + "name": "reinvent technology partners z" + }, + { + "cik": 1496268, + "symbol": "rvall", + "name": "reva medical inc" + }, + { + "cik": 1556179, + "symbol": "rmri", + "name": "rocky mountain industrials inc" + }, + { + "cik": 1620928, + "symbol": "rmp", + "name": "rice midstream partners lp" + }, + { + "cik": 1644771, + "symbol": "rsf", + "name": "rivernorth specialty finance corp" + }, + { + "cik": 1820143, + "symbol": "rmgbu", + "name": "rmg acquisition corp ii" + }, + { + "cik": 1546381, + "symbol": "rlje", + "name": "rlj entertainment inc" + }, + { + "cik": 1663038, + "symbol": "rllt", + "name": "reliant service inc" + }, + { + "cik": 1294250, + "symbol": "rlog", + "name": "rand logistics inc" + }, + { + "cik": 1397516, + "symbol": "rexx", + "name": "rex energy corp" + }, + { + "cik": 319200, + "symbol": "regt", + "name": "regent technologies inc" + }, + { + "cik": 1168696, + "symbol": "rgc", + "name": "regal entertainment group" + }, + { + "cik": 1790177, + "symbol": "rfm", + "name": "rivernorth flexible municipal income fund inc" + }, + { + "cik": 1537667, + "symbol": "sir", + "name": "select income reit" + }, + { + "cik": 1713809, + "symbol": "npwi", + "name": "chengda technology co ltd" + }, + { + "cik": 1086313, + "symbol": "skdi", + "name": "sun kissed industries inc" + }, + { + "cik": 1450922, + "symbol": "sivr", + "name": "aberdeen standard silver etf trust" + }, + { + "cik": 1450923, + "symbol": "sgol", + "name": "aberdeen standard gold etf trust" + }, + { + "cik": 1820160, + "symbol": "shacu", + "name": "scp & co healthcare acquisition co" + }, + { + "cik": 1675426, + "symbol": "smge", + "name": "sigmata electronics inc" + }, + { + "cik": 1674440, + "symbol": "slgb", + "name": "slinger bag inc" + }, + { + "cik": 1643319, + "symbol": "slpa", + "name": "sleepaid holding co" + }, + { + "cik": 1823854, + "symbol": "snrhu", + "name": "senior connect acquisition corp i" + }, + { + "cik": 1123979, + "symbol": "snmx", + "name": "senomyx inc" + }, + { + "cik": 1642363, + "symbol": "snhr", + "name": "seguin natural hair products inc" + }, + { + "cik": 1430602, + "symbol": "sni", + "name": "scripps networks interactive inc" + }, + { + "cik": 1783546, + "symbol": "sbglf", + "name": "sibanye-stillwater limited adr" + }, + { + "cik": 1062750, + "symbol": "sapmf", + "name": "saipem s p a fi" + }, + { + "cik": 313151, + "symbol": "saddp", + "name": "saddlebrook resorts inc" + }, + { + "cik": 1816048, + "symbol": "saiiw", + "name": "software acquisition group inc ii" + }, + { + "cik": 1639953, + "symbol": "sagn", + "name": "sagoon inc" + }, + { + "cik": 1307895, + "symbol": "saig", + "name": "safe auto insurance group inc" + }, + { + "cik": 1063489, + "symbol": "sgil", + "name": "sunburst acquisitions v inc" + }, + { + "cik": 1803487, + "symbol": "scit", + "name": "sancai holding group ltd" + }, + { + "cik": 1828985, + "symbol": "scoau", + "name": "scion tech growth i" + }, + { + "cik": 1734669, + "symbol": "sdec", + "name": "smart decision inc" + }, + { + "cik": 1812923, + "symbol": "sdhy", + "name": "pgim short duration high yield opportunities fund" + }, + { + "cik": 1753931, + "symbol": "solq", + "name": "shengda network technology inc" + }, + { + "cik": 1763660, + "symbol": "seav", + "name": "seatech ventures corp" + }, + { + "cik": 1587205, + "symbol": "segr", + "name": "southeastern grocers inc" + }, + { + "cik": 1740076, + "symbol": "atryx", + "name": "american beacon apollo total return fund" + }, + { + "cik": 1713210, + "symbol": "attp", + "name": "agape atp corp" + }, + { + "cik": 1554818, + "symbol": "audd", + "name": "clip interactive llc" + }, + { + "cik": 1131096, + "symbol": "athn", + "name": "athenahealth inc" + }, + { + "cik": 1762459, + "symbol": "atc", + "name": "atotech ltd" + }, + { + "cik": 1629071, + "symbol": "avrpx", + "name": "stone ridge trust iii" + }, + { + "cik": 39677, + "symbol": "avhi", + "name": "av homes inc" + }, + { + "cik": 1799207, + "symbol": "auna", + "name": "auna saa" + }, + { + "cik": 835662, + "symbol": "aixnd", + "name": "aixin life international inc" + }, + { + "cik": 1286597, + "symbol": "baa", + "name": "banro corp" + }, + { + "cik": 1690437, + "symbol": "bar", + "name": "graniteshares gold trust" + }, + { + "cik": 1553920, + "symbol": "bbmpy", + "name": "bbmg corporation adr" + }, + { + "cik": 849547, + "symbol": "bbox", + "name": "black box corp" + }, + { + "cik": 1172139, + "symbol": "bbg", + "name": "bill barrett corp" + }, + { + "cik": 1814140, + "symbol": "bcacu", + "name": "brookline capital acquisition corp" + }, + { + "cik": 1835059, + "symbol": "arvl", + "name": "arrival group" + }, + { + "cik": 1562519, + "symbol": "arraf", + "name": "arria nlg plc" + }, + { + "cik": 1105533, + "symbol": "args", + "name": "argos therapeutics inc" + }, + { + "cik": 1823794, + "symbol": "arko", + "name": "arko corp" + }, + { + "cik": 1534155, + "symbol": "armt", + "name": "ameri metro inc (formerly yellowwood)" + }, + { + "cik": 1825254, + "symbol": "ata", + "name": "americas technology acquisition corp" + }, + { + "cik": 1823945, + "symbol": "atacu", + "name": "altimar acquisition corp" + }, + { + "cik": 1793855, + "symbol": "asgi", + "name": "aberdeen standard global infrastructure income fund" + }, + { + "cik": 1797381, + "symbol": "asle", + "name": "monocle holdings inc" + }, + { + "cik": 1716885, + "symbol": "ascix", + "name": "angel oak strategic credit fund" + }, + { + "cik": 1669368, + "symbol": "asav", + "name": "asi aviation inc" + }, + { + "cik": 1344376, + "symbol": "anwwq", + "name": "aegean marine petroleum network inc" + }, + { + "cik": 1570132, + "symbol": "anvi", + "name": "anvi global holdings inc" + }, + { + "cik": 1602277, + "symbol": "anhgy", + "name": "mediclinic international plc adr" + }, + { + "cik": 1176316, + "symbol": "ancx", + "name": "access national corp" + }, + { + "cik": 1823826, + "symbol": "arbgu", + "name": "aequi acquisition corp" + }, + { + "cik": 1653710, + "symbol": "apxx", + "name": "apex resources inc nv" + }, + { + "cik": 1820807, + "symbol": "ahn", + "name": "amerihome inc" + }, + { + "cik": 1702015, + "symbol": "aidg", + "name": "ais holdings group inc" + }, + { + "cik": 1826397, + "symbol": "agri", + "name": "agriforce growing systems ltd" + }, + { + "cik": 1818382, + "symbol": "ahac", + "name": "alpha healthcare acquisition corp" + }, + { + "cik": 1614824, + "symbol": "ahi", + "name": "avadim health inc" + }, + { + "cik": 1344980, + "symbol": "ahgp", + "name": "alliance holdings gp lp" + }, + { + "cik": 1826574, + "symbol": "akicu", + "name": "sports ventures acquisition corp" + }, + { + "cik": 1554054, + "symbol": "ampo", + "name": "amperico ltd" + }, + { + "cik": 1788028, + "symbol": "amhcw", + "name": "amplitude healthcare acquisition corp" + }, + { + "cik": 1822366, + "symbol": "altuu", + "name": "altitude acquisition corp" + }, + { + "cik": 1122304, + "symbol": "aet", + "name": "aetna inc pa" + }, + { + "cik": 1724001, + "symbol": "aexl", + "name": "axelerex corp" + }, + { + "cik": 799231, + "symbol": "afam", + "name": "almost family inc" + }, + { + "cik": 1823406, + "symbol": "afbi", + "name": "affinity bancshares inc" + }, + { + "cik": 1820953, + "symbol": "afrm", + "name": "affirm holdings inc" + }, + { + "cik": 1469038, + "symbol": "affg", + "name": "aff holding group inc" + }, + { + "cik": 1085596, + "symbol": "aggx", + "name": "angiogenex inc" + }, + { + "cik": 1830232, + "symbol": "agcb", + "name": "altimeter growth corp 2" + }, + { + "cik": 1712543, + "symbol": "aanc", + "name": "andover national corp" + }, + { + "cik": 1754927, + "symbol": "aaidx", + "name": "axonic alternative income fund" + }, + { + "cik": 1802457, + "symbol": "aacqw", + "name": "artius acquisition inc" + }, + { + "cik": 1708646, + "symbol": "aaau", + "name": "goldman sachs physical gold etf" + }, + { + "cik": 1438558, + "symbol": "abfof", + "name": "abertis infraestructuras sa" + }, + { + "cik": 1823878, + "symbol": "acacu", + "name": "acies acquisition corp" + }, + { + "cik": 1404296, + "symbol": "acfc", + "name": "atlantic coast financial corp" + }, + { + "cik": 1790121, + "symbol": "ackiu", + "name": "ackrell spac partners i co" + }, + { + "cik": 1824502, + "symbol": "acic", + "name": "atlas crest investment corp" + }, + { + "cik": 1820630, + "symbol": "actcw", + "name": "arclight clean transition corp" + }, + { + "cik": 1690996, + "symbol": "cnrlx", + "name": "city national rochdale select strategies fund" + }, + { + "cik": 1737936, + "symbol": "cnrox", + "name": "city national rochdale strategic credit fund" + }, + { + "cik": 1582586, + "symbol": "cnrq", + "name": "china soar information technology inc" + }, + { + "cik": 1028734, + "symbol": "cobz", + "name": "cobiz financial inc" + }, + { + "cik": 1211759, + "symbol": "cnxr", + "name": "connecture inc" + }, + { + "cik": 1130889, + "symbol": "cncl", + "name": "cancer capital corp" + }, + { + "cik": 1780785, + "symbol": "cney", + "name": "cn energy group inc" + }, + { + "cik": 1824301, + "symbol": "cnd", + "name": "concord acquisition corp" + }, + { + "cik": 1819615, + "symbol": "clvrw", + "name": "clever leaves holdings inc" + }, + { + "cik": 1770540, + "symbol": "cmds", + "name": "cloudminds inc" + }, + { + "cik": 1818331, + "symbol": "cmlfw", + "name": "cm life sciences inc" + }, + { + "cik": 1498547, + "symbol": "cmrf", + "name": "cim real estate finance trust inc" + }, + { + "cik": 1608638, + "symbol": "civi", + "name": "civitas solutions inc" + }, + { + "cik": 1519995, + "symbol": "ckdxf", + "name": "opthea ltd adr" + }, + { + "cik": 1791100, + "symbol": "clhn", + "name": "cole haan inc" + }, + { + "cik": 1822791, + "symbol": "clnn", + "name": "clene inc" + }, + { + "cik": 34115, + "symbol": "cle", + "name": "claires stores inc" + }, + { + "cik": 1765048, + "symbol": "chmt", + "name": "charmt inc" + }, + { + "cik": 802510, + "symbol": "chod", + "name": "enerkon solar international inc" + }, + { + "cik": 1785041, + "symbol": "chpmw", + "name": "chp merger corp" + }, + { + "cik": 1812234, + "symbol": "ccv", + "name": "churchill capital corp v" + }, + { + "cik": 794107, + "symbol": "ccaa", + "name": "cala corp" + }, + { + "cik": 1696411, + "symbol": "cccp", + "name": "crona corp" + }, + { + "cik": 1735964, + "symbol": "cclfx", + "name": "cliffwater corporate lending fund" + }, + { + "cik": 721447, + "symbol": "caw", + "name": "cca industries inc" + }, + { + "cik": 1175609, + "symbol": "cavm", + "name": "cavium inc" + }, + { + "cik": 1828723, + "symbol": "cbah", + "name": "cbre acquisition holdings inc" + }, + { + "cik": 1822309, + "symbol": "cas", + "name": "cascade acquisition corp" + }, + { + "cik": 1787100, + "symbol": "carh", + "name": "car house holding co ltd" + }, + { + "cik": 764579, + "symbol": "casm", + "name": "cas medical systems inc" + }, + { + "cik": 1825249, + "symbol": "cfiv", + "name": "cf acquisition corp iv" + }, + { + "cik": 1676197, + "symbol": "cgccx", + "name": "griffin institutional access credit fund" + }, + { + "cik": 1824893, + "symbol": "chfw", + "name": "consonance-hfw acquisition corp" + }, + { + "cik": 1478726, + "symbol": "chfn", + "name": "charter financial corp" + }, + { + "cik": 1786485, + "symbol": "cdp", + "name": "cdp holdings ltd" + }, + { + "cik": 1722837, + "symbol": "cedax", + "name": "destra international & event-driven credit fund" + }, + { + "cik": 1818644, + "symbol": "cfacu", + "name": "cf finance acquisition corp iii" + }, + { + "cik": 1813756, + "symbol": "bowxw", + "name": "bowx acquisition corp" + }, + { + "cik": 1630132, + "symbol": "boja", + "name": "bojangles inc" + }, + { + "cik": 1472494, + "symbol": "bno", + "name": "united states brent oil fund lp" + }, + { + "cik": 1817640, + "symbol": "brezu", + "name": "breeze holdings acquisition corp" + }, + { + "cik": 1718224, + "symbol": "btbd", + "name": "bt brands inc" + }, + { + "cik": 1680525, + "symbol": "btlr", + "name": "battlers corp" + }, + { + "cik": 1815086, + "symbol": "btwnw", + "name": "bridgetown holdings ltd" + }, + { + "cik": 1821146, + "symbol": "bwacu", + "name": "better world acquisition corp" + }, + { + "cik": 356028, + "symbol": "ca", + "name": "ca inc" + }, + { + "cik": 1801417, + "symbol": "bynou", + "name": "bynordic acquisition corp" + }, + { + "cik": 1750145, + "symbol": "bxt", + "name": "united states bitcoin & treasury investment trust" + }, + { + "cik": 1680689, + "symbol": "bxxy", + "name": "boxxy inc" + }, + { + "cik": 1722438, + "symbol": "cap", + "name": "capitol investment corp v" + }, + { + "cik": 1816431, + "symbol": "capau", + "name": "highcape capital acquisition corp" + }, + { + "cik": 1035748, + "symbol": "cald", + "name": "callidus software inc" + }, + { + "cik": 1635581, + "symbol": "cafd", + "name": "8point3 energy partners lp" + }, + { + "cik": 1678124, + "symbol": "cadcx", + "name": "cion ares diversified credit fund" + }, + { + "cik": 1817944, + "symbol": "bluw", + "name": "blue water acquisition corp" + }, + { + "cik": 1425289, + "symbol": "bltn", + "name": "brightlane corp" + }, + { + "cik": 1582138, + "symbol": "blucx", + "name": "bluestone community development fund" + }, + { + "cik": 1522420, + "symbol": "blmt", + "name": "bsb bancorp inc" + }, + { + "cik": 1580733, + "symbol": "blgfx", + "name": "bmo lgm frontier markets equity fund" + }, + { + "cik": 1400561, + "symbol": "blyyf", + "name": "boart longyear ltd" + }, + { + "cik": 1815566, + "symbol": "bird", + "name": "infobird co ltd" + }, + { + "cik": 1753391, + "symbol": "bign", + "name": "bigeon corp" + }, + { + "cik": 1534287, + "symbol": "bioa", + "name": "bioamber inc" + }, + { + "cik": 1759528, + "symbol": "bksw", + "name": "baikang biological group holdings ltd" + }, + { + "cik": 886035, + "symbol": "bgc", + "name": "general cable corp de" + }, + { + "cik": 1710523, + "symbol": "bgfdx", + "name": "blackstone gso floating rate enhanced income fund" + }, + { + "cik": 1759186, + "symbol": "bhsew", + "name": "bull horn holdings corp" + }, + { + "cik": 1614826, + "symbol": "bhcv", + "name": "edge data solutions inc" + }, + { + "cik": 1758951, + "symbol": "beer", + "name": "bricktown brewery restaurants llc" + }, + { + "cik": 1749817, + "symbol": "belp", + "name": "belpointe reit inc" + }, + { + "cik": 1828735, + "symbol": "beneu", + "name": "benessere capital acquisition corp" + }, + { + "cik": 1562528, + "symbol": "besp", + "name": "benefit street partners realty trust inc" + }, + { + "cik": 1827248, + "symbol": "ephy", + "name": "epiphany technology acquisition corp" + }, + { + "cik": 1754836, + "symbol": "eic", + "name": "eagle point income co inc" + }, + { + "cik": 1751156, + "symbol": "eioax", + "name": "ellington income opportunities fund" + }, + { + "cik": 1769768, + "symbol": "ejh", + "name": "e-home household service holdings ltd" + }, + { + "cik": 31347, + "symbol": "elon", + "name": "echelon corp" + }, + { + "cik": 1639669, + "symbol": "elecu", + "name": "electrum special acquisition corp" + }, + { + "cik": 1122388, + "symbol": "elli", + "name": "ellie mae inc" + }, + { + "cik": 1348952, + "symbol": "elu", + "name": "entergy louisiana llc" + }, + { + "cik": 1822929, + "symbol": "eucru", + "name": "eucrates biomedical acquisition corp" + }, + { + "cik": 1725210, + "symbol": "ethe", + "name": "grayscale ethereum trust (eth)" + }, + { + "cik": 1705181, + "symbol": "etcg", + "name": "grayscale ethereum classic trust (etc)" + }, + { + "cik": 1814728, + "symbol": "etacw", + "name": "emerge technology acquisition corp" + }, + { + "cik": 1632933, + "symbol": "eqgp", + "name": "eqgp holdings lp" + }, + { + "cik": 1814287, + "symbol": "eresw", + "name": "east resources acquisition co" + }, + { + "cik": 1302343, + "symbol": "edr", + "name": "education realty trust inc" + }, + { + "cik": 1817153, + "symbol": "edtxu", + "name": "edtechx holdings acquisition corp ii" + }, + { + "cik": 1017968, + "symbol": "edgw", + "name": "edgewater technology inc de" + }, + { + "cik": 1781397, + "symbol": "eeiq", + "name": "elite education group international ltd" + }, + { + "cik": 1544229, + "symbol": "egl", + "name": "engility holdings inc" + }, + { + "cik": 1817232, + "symbol": "dune", + "name": "dune acquisition corp" + }, + { + "cik": 1812360, + "symbol": "dwin", + "name": "delwinds insurance acquisition corp" + }, + { + "cik": 1824920, + "symbol": "dmyi", + "name": "dmy technology group inc iii" + }, + { + "cik": 1439567, + "symbol": "dno", + "name": "united states short oil fund lp" + }, + { + "cik": 1791929, + "symbol": "dpui", + "name": "discount print usa inc" + }, + { + "cik": 1500861, + "symbol": "dnxg", + "name": "dongxing international inc" + }, + { + "cik": 714603, + "symbol": "dst", + "name": "dst systems inc" + }, + { + "cik": 1823466, + "symbol": "dsac", + "name": "duddell street acquisition corp" + }, + { + "cik": 1788399, + "symbol": "dly", + "name": "doubleline yield opportunities fund" + }, + { + "cik": 1818605, + "symbol": "distu", + "name": "distoken acquisition corp" + }, + { + "cik": 1825786, + "symbol": "diam", + "name": "diamond standard trust" + }, + { + "cik": 1799567, + "symbol": "ddi", + "name": "doubledown interactive co ltd" + }, + { + "cik": 1162556, + "symbol": "dde", + "name": "dover downs gaming & entertainment inc" + }, + { + "cik": 1716583, + "symbol": "dcrbw", + "name": "decarbonization plus acquisition corp" + }, + { + "cik": 1799191, + "symbol": "dfph", + "name": "dfp healthcare acquisitions corp" + }, + { + "cik": 1813914, + "symbol": "dfht", + "name": "deerfield healthcare technology acquisitions corp" + }, + { + "cik": 1741220, + "symbol": "cwpe", + "name": "cw petroleum corp" + }, + { + "cik": 1585023, + "symbol": "cway", + "name": "coastway bancorp inc" + }, + { + "cik": 1567925, + "symbol": "cvmca", + "name": "sila realty trust inc" + }, + { + "cik": 1354730, + "symbol": "dbv", + "name": "invesco db g10 currency harvest fund" + }, + { + "cik": 1166141, + "symbol": "dcm", + "name": "ntt docomo inc" + }, + { + "cik": 1396446, + "symbol": "cys", + "name": "cys investments inc" + }, + { + "cik": 1592329, + "symbol": "csbk", + "name": "clifton bancorp inc" + }, + { + "cik": 1731899, + "symbol": "csca", + "name": "cornerstone management inc" + }, + { + "cik": 1557725, + "symbol": "crrex", + "name": "resource real estate diversified income fund" + }, + { + "cik": 1770561, + "symbol": "crn", + "name": "coronado global resources inc" + }, + { + "cik": 1824577, + "symbol": "ctac", + "name": "cerberus telecom acquisition corp" + }, + { + "cik": 1823634, + "symbol": "ctaqu", + "name": "carney technology acquisition corp ii" + }, + { + "cik": 1603386, + "symbol": "cywdf", + "name": "countrywide plc adr" + }, + { + "cik": 1348334, + "symbol": "cuda", + "name": "barracuda networks inc" + }, + { + "cik": 1594337, + "symbol": "cori", + "name": "corium international inc" + }, + { + "cik": 1829953, + "symbol": "cool", + "name": "corner growth acquisition corp" + }, + { + "cik": 1823000, + "symbol": "conxw", + "name": "conx corp" + }, + { + "cik": 1762562, + "symbol": "cprdx", + "name": "clarion partners real estate income fund inc" + }, + { + "cik": 1558235, + "symbol": "cpya", + "name": "corporate property associates 18 global inc" + }, + { + "cik": 1828326, + "symbol": "flacu", + "name": "frazier lifesciences acquisition corp" + }, + { + "cik": 1659207, + "symbol": "fllz", + "name": "fellazo corp" + }, + { + "cik": 1787462, + "symbol": "flrz", + "name": "f5 finishes inc" + }, + { + "cik": 726516, + "symbol": "fepi", + "name": "first equity properties inc" + }, + { + "cik": 713095, + "symbol": "ffkt", + "name": "farmers capital bank corp" + }, + { + "cik": 886137, + "symbol": "finl", + "name": "finish line inc in" + }, + { + "cik": 1823855, + "symbol": "finu", + "name": "marlin technology corp" + }, + { + "cik": 1818502, + "symbol": "fgna", + "name": "fg new america acquisition corp" + }, + { + "cik": 1786119, + "symbol": "excl", + "name": "excellerant inc" + }, + { + "cik": 1806904, + "symbol": "ezgo", + "name": "ezgo technologies ltd" + }, + { + "cik": 1017907, + "symbol": "fac", + "name": "first acceptance corp de" + }, + { + "cik": 1816233, + "symbol": "fcac", + "name": "falcon capital acquisition corp" + }, + { + "cik": 1747624, + "symbol": "fbox", + "name": "fit boxx holdings ltd" + }, + { + "cik": 1144546, + "symbol": "fcaa", + "name": "ficaar inc" + }, + { + "cik": 1688897, + "symbol": "fcrex", + "name": "fs credit income fund" + }, + { + "cik": 1831417, + "symbol": "frgt", + "name": "hudson capital merger sub i inc" + }, + { + "cik": 1829999, + "symbol": "foxw", + "name": "foxwayne enterprises acquisition corp" + }, + { + "cik": 1723141, + "symbol": "fqjr", + "name": "fuqin fintech ltd" + }, + { + "cik": 1737268, + "symbol": "fnnax", + "name": "fs multi-alternative income fund" + }, + { + "cik": 1828937, + "symbol": "foa", + "name": "finance of america companies inc" + }, + { + "cik": 1829280, + "symbol": "fora", + "name": "forian inc" + }, + { + "cik": 1488613, + "symbol": "fmi", + "name": "foundation medicine inc" + }, + { + "cik": 1163199, + "symbol": "fnbg", + "name": "fnb bancorp ca" + }, + { + "cik": 1010858, + "symbol": "fmsa", + "name": "bison merger sub i llc" + }, + { + "cik": 1430592, + "symbol": "fngn", + "name": "financial engines llc" + }, + { + "cik": 1353614, + "symbol": "fxa", + "name": "invesco currencyshares australian dollar trust" + }, + { + "cik": 1353611, + "symbol": "fxb", + "name": "invesco currencyshares british pound sterling trust" + }, + { + "cik": 1824434, + "symbol": "fvt", + "name": "fortress value acquisition corp iii" + }, + { + "cik": 1353612, + "symbol": "fxc", + "name": "invesco currencyshares canadian dollar trust" + }, + { + "cik": 1353615, + "symbol": "fxf", + "name": "invesco currencyshares swiss franc trust" + }, + { + "cik": 20520, + "symbol": "ftrq", + "name": "frontier communications corp" + }, + { + "cik": 1829328, + "symbol": "ftcvu", + "name": "fintech acquisition corp v" + }, + { + "cik": 1785424, + "symbol": "fsrvw", + "name": "finserv acquisition corp" + }, + { + "cik": 1826889, + "symbol": "frx", + "name": "forest road acquisition corp" + }, + { + "cik": 1732078, + "symbol": "fropx", + "name": "flat rock opportunity fund" + }, + { + "cik": 1571804, + "symbol": "gvbt", + "name": "green vision biotechnology corp" + }, + { + "cik": 1752828, + "symbol": "gxgxu", + "name": "gx acquisition corp" + }, + { + "cik": 1824013, + "symbol": "haacu", + "name": "health assurance acquisition corp" + }, + { + "cik": 1431372, + "symbol": "gst", + "name": "gastar exploration inc" + }, + { + "cik": 1668523, + "symbol": "gsgg", + "name": "gsg group inc" + }, + { + "cik": 1804469, + "symbol": "grdaf", + "name": "guardforce ai co ltd" + }, + { + "cik": 1392449, + "symbol": "gplb", + "name": "green planet bio engineering co ltd" + }, + { + "cik": 1566912, + "symbol": "grah", + "name": "griffin-american healthcare reit iii inc" + }, + { + "cik": 1699031, + "symbol": "gral", + "name": "grail inc" + }, + { + "cik": 1791405, + "symbol": "goxs", + "name": "goxus inc" + }, + { + "cik": 1781929, + "symbol": "gmwx", + "name": "gameworks inc" + }, + { + "cik": 1606363, + "symbol": "gnbc", + "name": "green bancorp inc" + }, + { + "cik": 1790665, + "symbol": "gnrsw", + "name": "greenrose acquisition corp" + }, + { + "cik": 1819810, + "symbol": "gnpk", + "name": "genesis park acquisition corp" + }, + { + "cik": 1823896, + "symbol": "gfx", + "name": "golden falcon acquisition corp" + }, + { + "cik": 1324410, + "symbol": "gbnk", + "name": "guaranty bancorp" + }, + { + "cik": 1823365, + "symbol": "gbny", + "name": "generations bancorp ny inc" + }, + { + "cik": 1498233, + "symbol": "gcacu", + "name": "growth capital acquisition corp" + }, + { + "cik": 1379606, + "symbol": "gcc", + "name": "wisdomtree continuous commodity index fund" + }, + { + "cik": 1600626, + "symbol": "gcea", + "name": "griffin capital essential asset reit inc" + }, + { + "cik": 1597634, + "symbol": "gcrex", + "name": "griffin institutional access real estate fund" + }, + { + "cik": 1375348, + "symbol": "glns", + "name": "golden star resource corp" + }, + { + "cik": 1030749, + "symbol": "glf", + "name": "gulfmark offshore inc" + }, + { + "cik": 1483386, + "symbol": "gltr", + "name": "aberdeen standard precious metals basket etf trust" + }, + { + "cik": 1821169, + "symbol": "glspu", + "name": "global spac partners co" + }, + { + "cik": 1275229, + "symbol": "gmol", + "name": "general moly inc" + }, + { + "cik": 1387636, + "symbol": "upzsd", + "name": "unique foods corp" + }, + { + "cik": 1819394, + "symbol": "ghviu", + "name": "gores holdings vi inc" + }, + { + "cik": 1780731, + "symbol": "gip", + "name": "global internet of people inc" + }, + { + "cik": 1651721, + "symbol": "gipr", + "name": "generation income properties inc" + }, + { + "cik": 1823383, + "symbol": "glaqu", + "name": "globis acquisition corp" + }, + { + "cik": 1618181, + "symbol": "gldw", + "name": "world gold trust" + }, + { + "cik": 1405513, + "symbol": "unl", + "name": "united states 12 month natural gas fund lp" + }, + { + "cik": 1751707, + "symbol": "unxp", + "name": "united express inc" + }, + { + "cik": 1677897, + "symbol": "upyy", + "name": "upay" + }, + { + "cik": 1809616, + "symbol": "upc", + "name": "universe pharmaceuticals inc" + }, + { + "cik": 1479247, + "symbol": "cper", + "name": "united states commodity index funds trust" + }, + { + "cik": 757011, + "symbol": "usg", + "name": "usg corp" + }, + { + "cik": 1405528, + "symbol": "usl", + "name": "united states 12 month oil fund lp" + }, + { + "cik": 1453932, + "symbol": "unblf", + "name": "unibail-rodamco se adr" + }, + { + "cik": 932352, + "symbol": "urgp", + "name": "urigen pharmaceuticals inc" + }, + { + "cik": 1763543, + "symbol": "uwhgf", + "name": "united world holding group ltd" + }, + { + "cik": 277058, + "symbol": "uwn", + "name": "nevada gold & casinos inc" + }, + { + "cik": 1691570, + "symbol": "usqix", + "name": "usq core real estate fund" + }, + { + "cik": 1289237, + "symbol": "uspb", + "name": "u s premium beef llc" + }, + { + "cik": 1265848, + "symbol": "usvr", + "name": "us vr globalcom inc" + }, + { + "cik": 1383151, + "symbol": "uup", + "name": "invesco db us dollar index bullish fund" + }, + { + "cik": 1793081, + "symbol": "utxou", + "name": "utxo acquisition inc" + }, + { + "cik": 1821424, + "symbol": "ukomw", + "name": "ucommune international ltd" + }, + { + "cik": 1706524, + "symbol": "ugro", + "name": "urban-gro inc" + }, + { + "cik": 1353633, + "symbol": "uifd", + "name": "unifunds ltd" + }, + { + "cik": 1396878, + "symbol": "uga", + "name": "united states gasoline fund lp" + }, + { + "cik": 1831583, + "symbol": "ufin", + "name": "ufin tek limited" + }, + { + "cik": 1383149, + "symbol": "udn", + "name": "invesco db us dollar index bearish fund" + }, + { + "cik": 1576778, + "symbol": "ubli", + "name": "yinghong guangda technology ltd" + }, + { + "cik": 1723517, + "symbol": "ucasu", + "name": "uc asset lp" + }, + { + "cik": 1438533, + "symbol": "rtrx", + "name": "travere therapeutics inc" + }, + { + "cik": 1820566, + "symbol": "tvacu", + "name": "thayer ventures acquisition corp" + }, + { + "cik": 1819313, + "symbol": "twctw", + "name": "twc tech holdings ii corp" + }, + { + "cik": 1117045, + "symbol": "tryf", + "name": "trycera financial inc" + }, + { + "cik": 1277250, + "symbol": "trwo", + "name": "goip global inc" + }, + { + "cik": 50104, + "symbol": "tso", + "name": "andeavor llc" + }, + { + "cik": 1725295, + "symbol": "tsifx", + "name": "ecofin tax-advantaged social impact fund inc" + }, + { + "cik": 1826000, + "symbol": "tsiau", + "name": "ts innovation acquisitions corp" + }, + { + "cik": 1560905, + "symbol": "trtk", + "name": "tortec group corp" + }, + { + "cik": 1811530, + "symbol": "tksi", + "name": "turnkey solutions inc" + }, + { + "cik": 1613685, + "symbol": "tmin", + "name": "trendmaker inc ltd" + }, + { + "cik": 1821606, + "symbol": "tmkr", + "name": "tastemaker acquisition corp" + }, + { + "cik": 1823524, + "symbol": "tmpmu", + "name": "turmeric acquisition corp" + }, + { + "cik": 879575, + "symbol": "tnh", + "name": "terra nitrogen co l p de" + }, + { + "cik": 1822553, + "symbol": "tmtsw", + "name": "spartacus acquisition corp" + }, + { + "cik": 1581005, + "symbol": "srrix", + "name": "stone ridge trust ii" + }, + { + "cik": 1821682, + "symbol": "srsau", + "name": "sarissa capital acquisition corp" + }, + { + "cik": 92679, + "symbol": "spa", + "name": "sparton corp" + }, + { + "cik": 1808945, + "symbol": "spel", + "name": "spinal elements holdings inc" + }, + { + "cik": 1729895, + "symbol": "speyx", + "name": "american beacon sound point enhanced income fund" + }, + { + "cik": 1825079, + "symbol": "spfr", + "name": "jaws spitfire acquisition corp" + }, + { + "cik": 1490161, + "symbol": "anfc", + "name": "black ridge oil & gas inc" + }, + { + "cik": 1821850, + "symbol": "sprq", + "name": "spartan acquisition corp ii" + }, + { + "cik": 1585389, + "symbol": "stsff", + "name": "smartstop self storage reit inc" + }, + { + "cik": 1819438, + "symbol": "stwo", + "name": "acon s2 acquisition corp" + }, + { + "cik": 1626078, + "symbol": "svdn", + "name": "savden group corp" + }, + { + "cik": 1793497, + "symbol": "svix", + "name": "vs trust" + }, + { + "cik": 1794905, + "symbol": "svacw", + "name": "starboard value acquisition corp" + }, + { + "cik": 737563, + "symbol": "svrh", + "name": "sevier county bancshares inc" + }, + { + "cik": 1647822, + "symbol": "svmb", + "name": "savmobi technology inc" + }, + { + "cik": 1828672, + "symbol": "svoku", + "name": "seven oaks acquisition corp" + }, + { + "cik": 1819574, + "symbol": "bark", + "name": "northern star acquisition corp" + }, + { + "cik": 1619087, + "symbol": "stdy", + "name": "steadymed ltd" + }, + { + "cik": 1661779, + "symbol": "stgc", + "name": "startengine crowdfunding inc" + }, + { + "cik": 1585219, + "symbol": "stfr", + "name": "steadfast apartment reit inc" + }, + { + "cik": 1450160, + "symbol": "staef", + "name": "stanley electric co ltd adr" + }, + { + "cik": 1560449, + "symbol": "tcai", + "name": "phmc inc" + }, + { + "cik": 949852, + "symbol": "tcci", + "name": "thanksgiving coffee co inc" + }, + { + "cik": 1725472, + "symbol": "takax", + "name": "carlyle tactical private credit fund" + }, + { + "cik": 1426011, + "symbol": "talr", + "name": "talon real estate holding corp" + }, + { + "cik": 1820378, + "symbol": "tbld", + "name": "thornburg income builder opportunities trust" + }, + { + "cik": 1040426, + "symbol": "synt", + "name": "syntel inc" + }, + { + "cik": 1826991, + "symbol": "taca", + "name": "trepont acquistion corp i" + }, + { + "cik": 1579963, + "symbol": "swpff", + "name": "swire properties limited adr" + }, + { + "cik": 1176373, + "symbol": "tier", + "name": "tier reit inc" + }, + { + "cik": 1409431, + "symbol": "thro", + "name": "theron resource group" + }, + { + "cik": 1782941, + "symbol": "tirx", + "name": "tian ruixiang holdings ltd" + }, + { + "cik": 1324189, + "symbol": "tis", + "name": "orchids paper products co de" + }, + { + "cik": 1820144, + "symbol": "tinv", + "name": "tiga acquisition corp" + }, + { + "cik": 1551047, + "symbol": "tiplx", + "name": "bluerock total income (plus) real estate fund" + }, + { + "cik": 1436775, + "symbol": "tcyby", + "name": "tietoenator oyj" + }, + { + "cik": 1822027, + "symbol": "tekku", + "name": "tekkorp digital acquisition corp" + }, + { + "cik": 1822145, + "symbol": "vtaqu", + "name": "ventoux ccm acquisition corp" + }, + { + "cik": 1348259, + "symbol": "vr", + "name": "validus holdings ltd" + }, + { + "cik": 1708331, + "symbol": "vrpx", + "name": "virpax pharmaceuticals inc" + }, + { + "cik": 1096385, + "symbol": "vvc", + "name": "vectren corp" + }, + { + "cik": 1716166, + "symbol": "vvos", + "name": "vivos therapeutics inc" + }, + { + "cik": 1724569, + "symbol": "wall", + "name": "golden metropolis international ltd" + }, + { + "cik": 1075857, + "symbol": "vysm", + "name": "view systems inc" + }, + { + "cik": 1645155, + "symbol": "wbst", + "name": "webstar technology group inc" + }, + { + "cik": 1800044, + "symbol": "wcap", + "name": "white cap supply holdings inc" + }, + { + "cik": 1826011, + "symbol": "viiu", + "name": "7gc & co holdings inc" + }, + { + "cik": 1810491, + "symbol": "vmacw", + "name": "vistas media acquisition co inc" + }, + { + "cik": 1687898, + "symbol": "vcrrx", + "name": "versus capital real assets fund llc" + }, + { + "cik": 1820190, + "symbol": "vcka", + "name": "vickers vantage corp i" + }, + { + "cik": 1515001, + "symbol": "vcmix", + "name": "versus capital multi-manager real estate income fund llc" + }, + { + "cik": 1821595, + "symbol": "vcvcu", + "name": "10x capital venture acquisition corp" + }, + { + "cik": 1823857, + "symbol": "vhaq", + "name": "viveon health acquisition corp" + }, + { + "cik": 1681717, + "symbol": "vflex", + "name": "relative value fund" + }, + { + "cik": 1826470, + "symbol": "woof", + "name": "pet acquisition llc" + }, + { + "cik": 1415952, + "symbol": "wloc", + "name": "willow creek enterprises inc" + }, + { + "cik": 1771951, + "symbol": "weix", + "name": "dynamic shares trust" + }, + { + "cik": 1826660, + "symbol": "glfwd", + "name": "wetouch technology inc" + }, + { + "cik": 1586009, + "symbol": "wesfx", + "name": "wildermuth endowment fund" + }, + { + "cik": 1717976, + "symbol": "weib", + "name": "weiss strategic interval fund" + }, + { + "cik": 1449732, + "symbol": "wg", + "name": "willbros group inc new" + }, + { + "cik": 105608, + "symbol": "wga", + "name": "ag&e holdings inc" + }, + { + "cik": 1729678, + "symbol": "xalcx", + "name": "bny mellon alcentra global multi-strategy credit fund inc" + }, + { + "cik": 1515324, + "symbol": "xadcx", + "name": "ares dynamic credit allocation fund inc" + }, + { + "cik": 1627854, + "symbol": "xdcfx", + "name": "bny mellon alcentra global credit income 2024 target term fund inc" + }, + { + "cik": 1668039, + "symbol": "xbtc", + "name": "vaneck solidx bitcoin trust" + }, + { + "cik": 1467631, + "symbol": "xcapx", + "name": "acap strategic fund" + }, + { + "cik": 1721413, + "symbol": "xclix", + "name": "thrivent church loan & income fund" + }, + { + "cik": 1642563, + "symbol": "xgeix", + "name": "guggenheim energy & income fund" + }, + { + "cik": 1685531, + "symbol": "xfeax", + "name": "fs energy total return fund" + }, + { + "cik": 1616037, + "symbol": "xilsx", + "name": "pioneer ils interval fund" + }, + { + "cik": 1661806, + "symbol": "xntfx", + "name": "cc real estate income fund-t" + }, + { + "cik": 1624985, + "symbol": "xnda", + "name": "xinda international corp" + }, + { + "cik": 1819006, + "symbol": "xmet", + "name": "xxstream entertainment inc" + }, + { + "cik": 1655199, + "symbol": "xnafx", + "name": "cc real estate income fund" + }, + { + "cik": 1677615, + "symbol": "xptfx", + "name": "federated hermes project & trade finance tender fund" + }, + { + "cik": 1062292, + "symbol": "xoxo", + "name": "xo group inc" + }, + { + "cik": 1655020, + "symbol": "xog", + "name": "extraction oil & gas inc" + }, + { + "cik": 1682662, + "symbol": "xpasx", + "name": "peachtree alternative strategies fund" + }, + { + "cik": 1609211, + "symbol": "xpeax", + "name": "amg pantheon fund llc" + }, + { + "cik": 104897, + "symbol": "wsci", + "name": "wsi industries inc" + }, + { + "cik": 1124959, + "symbol": "xsiax", + "name": "voya senior income fund" + }, + { + "cik": 1555085, + "symbol": "xwamx", + "name": "western asset middle market debt fund inc" + }, + { + "cik": 1525355, + "symbol": "xwmfx", + "name": "western asset middle market income fund inc" + }, + { + "cik": 1311673, + "symbol": "yftd", + "name": "yacht finders inc" + }, + { + "cik": 1699709, + "symbol": "yjgj", + "name": "yijia group corp" + }, + { + "cik": 1445283, + "symbol": "pti", + "name": "yumanity therapeutics inc" + }, + { + "cik": 1823587, + "symbol": "ysacw", + "name": "yellowstone acquisition co" + }, + { + "cik": 1778404, + "symbol": "zghb", + "name": "china eco-materials group co ltd" + }, + { + "cik": 1823652, + "symbol": "znteu", + "name": "zanite acquisition corp" + }, + { + "cik": 1594879, + "symbol": "zoes", + "name": "zoes kitchen inc" + }, + { + "cik": 312070, + "symbol": "xvz", + "name": "barclays bank plc" + }, + { + "cik": 110390, + "symbol": "un", + "name": "unilever n v" + }, + { + "cik": 769594, + "symbol": "nttyy", + "name": "nippon telegraph & telephone corp" + }, + { + "cik": 750556, + "symbol": "sti", + "name": "suntrust banks inc" + }, + { + "cik": 869425, + "symbol": "adrny", + "name": "royal ahold delhaize" + }, + { + "cik": 57083, + "symbol": "kyocy", + "name": "kyocera corp" + }, + { + "cik": 1173431, + "symbol": "amtd", + "name": "td ameritrade holding corp" + }, + { + "cik": 722830, + "symbol": "immu", + "name": "immunomedics inc" + }, + { + "cik": 1639225, + "symbol": "lvgo", + "name": "livongo health inc" + }, + { + "cik": 1712356, + "symbol": "hrnnf", + "name": "hydro one ltd" + }, + { + "cik": 1611820, + "symbol": "ln", + "name": "line corp" + }, + { + "cik": 1140471, + "symbol": "nistf", + "name": "nippon steel corp" + }, + { + "cik": 1552451, + "symbol": "myok", + "name": "myokardia inc" + }, + { + "cik": 1015780, + "symbol": "etfc", + "name": "e trade financial corp" + }, + { + "cik": 808461, + "symbol": "glibp", + "name": "grizzly merger sub 1 llc" + }, + { + "cik": 1122535, + "symbol": "tltzy", + "name": "tele2 ab" + }, + { + "cik": 1357204, + "symbol": "dnkn", + "name": "dunkin brands group inc" + }, + { + "cik": 1623613, + "symbol": "myl", + "name": "mylan ii bv" + }, + { + "cik": 1525494, + "symbol": "wuba", + "name": "58com inc" + }, + { + "cik": 1635327, + "symbol": "tsg", + "name": "flutter entertainment plc" + }, + { + "cik": 1567683, + "symbol": "cwen", + "name": "clearway energy inc" + }, + { + "cik": 1235010, + "symbol": "mnta", + "name": "momenta pharmaceuticals inc" + }, + { + "cik": 1066116, + "symbol": "tsu", + "name": "tim participacoes sa" + }, + { + "cik": 1607716, + "symbol": "vslr", + "name": "vivint solar inc" + }, + { + "cik": 790703, + "symbol": "tecd", + "name": "tech data corp" + }, + { + "cik": 1622867, + "symbol": "hwgg", + "name": "ho wah genting group ltd" + }, + { + "cik": 1172494, + "symbol": "auoty", + "name": "au optronics corp" + }, + { + "cik": 704051, + "symbol": "lmhb", + "name": "legg mason inc" + }, + { + "cik": 1599947, + "symbol": "terp", + "name": "terraform power ny holdings inc" + }, + { + "cik": 1420302, + "symbol": "logm", + "name": "logmein inc" + }, + { + "cik": 72207, + "symbol": "nbl", + "name": "noble energy inc" + }, + { + "cik": 1492658, + "symbol": "wmgi", + "name": "wright medical group nv" + }, + { + "cik": 933141, + "symbol": "ibkc", + "name": "iberiabank corp" + }, + { + "cik": 52795, + "symbol": "axe", + "name": "anixter international inc" + }, + { + "cik": 1510487, + "symbol": "prnb", + "name": "principia biopharma inc" + }, + { + "cik": 3153, + "symbol": "aprdn", + "name": "alabama power co" + }, + { + "cik": 1029730, + "symbol": "ltsk", + "name": "ladenburg thalmann financial services inc" + }, + { + "cik": 31978, + "symbol": "ee", + "name": "el paso electric co tx" + }, + { + "cik": 926864, + "symbol": "eoccy", + "name": "enel generacion chile sa" + }, + { + "cik": 900278, + "symbol": "apelf", + "name": "alps alpine co ltd" + }, + { + "cik": 1585790, + "symbol": "adsw", + "name": "advanced disposal services inc" + }, + { + "cik": 1160846, + "symbol": "oibrq", + "name": "oi sa - in judicial reorganization" + }, + { + "cik": 1096061, + "symbol": "nbgif", + "name": "national bank of greece sa" + }, + { + "cik": 1631650, + "symbol": "aimt", + "name": "aimmune therapeutics inc" + }, + { + "cik": 1683252, + "symbol": "tkcm", + "name": "token communities ltd" + }, + { + "cik": 1260729, + "symbol": "gdv", + "name": "gabelli dividend & income trust" + }, + { + "cik": 1662524, + "symbol": "akca", + "name": "akcea therapeutics inc" + }, + { + "cik": 1707092, + "symbol": "dlph", + "name": "delphi technologies plc" + }, + { + "cik": 1145057, + "symbol": "fsct", + "name": "forescout technologies inc" + }, + { + "cik": 1269021, + "symbol": "ptla", + "name": "portola pharmaceuticals inc" + }, + { + "cik": 911109, + "symbol": "mini", + "name": "mobile mini inc" + }, + { + "cik": 7323, + "symbol": "eae", + "name": "entergy arkansas llc" + }, + { + "cik": 1499781, + "symbol": "bita", + "name": "bitauto holdings ltd" + }, + { + "cik": 1427437, + "symbol": "ezt", + "name": "entergy texas inc" + }, + { + "cik": 925645, + "symbol": "cetv", + "name": "central european media enterprises ltd" + }, + { + "cik": 1225525, + "symbol": "cadnf", + "name": "cascades inc" + }, + { + "cik": 1679450, + "symbol": "hntwf", + "name": "hunter maritime acquisition corp" + }, + { + "cik": 1470099, + "symbol": "mobl", + "name": "mobileiron inc" + }, + { + "cik": 1610418, + "symbol": "cnxm", + "name": "cnx midstream partners lp" + }, + { + "cik": 1351285, + "symbol": "rst", + "name": "rosetta stone inc" + }, + { + "cik": 1714368, + "symbol": "hud", + "name": "hudson ltd" + }, + { + "cik": 1626853, + "symbol": "mjco", + "name": "majesco" + }, + { + "cik": 875622, + "symbol": "bstc", + "name": "biospecifics technologies corp" + }, + { + "cik": 1729756, + "symbol": "ftac", + "name": "fintech acquisition corp iii" + }, + { + "cik": 1820852, + "symbol": "seah", + "name": "sports entertainment acquisition corp" + }, + { + "cik": 1726293, + "symbol": "pacq", + "name": "pure acquisition corp" + }, + { + "cik": 1253317, + "symbol": "olbk", + "name": "old line bancshares inc" + }, + { + "cik": 792977, + "symbol": "amag", + "name": "amag pharmaceuticals inc" + }, + { + "cik": 1078099, + "symbol": "meet", + "name": "meet group inc" + }, + { + "cik": 1407067, + "symbol": "fsb", + "name": "franklin financial network inc" + }, + { + "cik": 1561387, + "symbol": "bfyt", + "name": "benefytt technologies inc" + }, + { + "cik": 1478121, + "symbol": "pfnx", + "name": "pfenex inc" + }, + { + "cik": 1760764, + "symbol": "gmmvf", + "name": "g medical innovations holdings ltd" + }, + { + "cik": 1343304, + "symbol": "avdr", + "name": "avedro inc" + }, + { + "cik": 1622353, + "symbol": "jcap", + "name": "jernigan capital inc" + }, + { + "cik": 1395848, + "symbol": "iots", + "name": "adesto technologies corp" + }, + { + "cik": 1728041, + "symbol": "cffaw", + "name": "cf finance acquisition corp" + }, + { + "cik": 1776903, + "symbol": "nfinw", + "name": "netfin acquisition corp" + }, + { + "cik": 835887, + "symbol": "pgnx", + "name": "progenics pharmaceuticals inc" + }, + { + "cik": 1746037, + "symbol": "aryau", + "name": "arya sciences acquisition corp" + }, + { + "cik": 892222, + "symbol": "brew", + "name": "craft brew alliance inc" + }, + { + "cik": 1181250, + "symbol": "bkk", + "name": "blackrock municipal 2020 term trust" + }, + { + "cik": 1754170, + "symbol": "mnclw", + "name": "aersale corp" + }, + { + "cik": 1402606, + "symbol": "bcomf", + "name": "b communications ltd" + }, + { + "cik": 911649, + "symbol": "sdi", + "name": "standard diversified inc" + }, + { + "cik": 1158399, + "symbol": "burof", + "name": "burcon nutrascience corp" + }, + { + "cik": 1444363, + "symbol": "gcap", + "name": "gain capital holdings inc" + }, + { + "cik": 1597680, + "symbol": "jmei", + "name": "jumei international holding ltd" + }, + { + "cik": 1037016, + "symbol": "nihd", + "name": "nii holdings inc" + }, + { + "cik": 1112920, + "symbol": "gsb", + "name": "globalscape inc" + }, + { + "cik": 1028954, + "symbol": "sbbx", + "name": "sb one bancorp" + }, + { + "cik": 1350381, + "symbol": "inwk", + "name": "innerworkings inc" + }, + { + "cik": 1736874, + "symbol": "hcchr", + "name": "hl acquisitions corp" + }, + { + "cik": 1639457, + "symbol": "jhy", + "name": "nuveen high income 2020 target term fund" + }, + { + "cik": 1594124, + "symbol": "skys", + "name": "sky solar holdings ltd" + }, + { + "cik": 1518419, + "symbol": "qtrh", + "name": "quarterhill inc" + }, + { + "cik": 1697805, + "symbol": "xyn", + "name": "xynomic pharmaceuticals holdings inc" + }, + { + "cik": 1764711, + "symbol": "paacw", + "name": "proficient alpha acquisition corp" + }, + { + "cik": 1420811, + "symbol": "ondk", + "name": "on deck capital inc" + }, + { + "cik": 1068963, + "symbol": "tli", + "name": "western asset corporate loan fund inc" + }, + { + "cik": 1001258, + "symbol": "asfi", + "name": "asta funding inc" + }, + { + "cik": 1299393, + "symbol": "gfy", + "name": "western asset variable rate strategic fund inc" + }, + { + "cik": 1181249, + "symbol": "bfo", + "name": "blackrock florida municipal 2020 term trust" + }, + { + "cik": 1183082, + "symbol": "gfnl", + "name": "genesis financial inc" + }, + { + "cik": 318996, + "symbol": "kegx", + "name": "key energy services inc" + }, + { + "cik": 1509892, + "symbol": "gars", + "name": "garrison capital inc" + }, + { + "cik": 1100778, + "symbol": "rokk", + "name": "rokk3r inc" + }, + { + "cik": 1579762, + "symbol": "gmz", + "name": "goldman sachs mlp income opportunities fund" + }, + { + "cik": 942149, + "symbol": "mrddf", + "name": "outcrop gold corp" + }, + { + "cik": 1770251, + "symbol": "orsnw", + "name": "orisun acquisition corp" + }, + { + "cik": 1502034, + "symbol": "gnciq", + "name": "gnc holdings inc" + }, + { + "cik": 1675192, + "symbol": "ottw", + "name": "ottawa bancorp inc" + }, + { + "cik": 76321, + "symbol": "pkdc", + "name": "parker drilling co de" + }, + { + "cik": 1167470, + "symbol": "bqh", + "name": "blackrock new york municipal bond trust" + }, + { + "cik": 1486640, + "symbol": "fgcn", + "name": "flagship global corp" + }, + { + "cik": 1366340, + "symbol": "fnjn", + "name": "finjan holdings inc" + }, + { + "cik": 792161, + "symbol": "nnutu", + "name": "royal hawaiian orchards lp" + }, + { + "cik": 1523854, + "symbol": "wein", + "name": "west end indiana bancshares inc" + }, + { + "cik": 1743886, + "symbol": "flfg", + "name": "federal life group inc" + }, + { + "cik": 1637921, + "symbol": "fork", + "name": "fuling global inc" + }, + { + "cik": 98752, + "symbol": "ttlo", + "name": "torotel inc" + }, + { + "cik": 1668340, + "symbol": "bctf", + "name": "bancorp 34 inc" + }, + { + "cik": 1635626, + "symbol": "eqfn", + "name": "equitable financial corp" + }, + { + "cik": 1752039, + "symbol": "pphi", + "name": "positive physicians holdings inc" + }, + { + "cik": 1704235, + "symbol": "qes", + "name": "quintana energy services inc" + }, + { + "cik": 1699683, + "symbol": "lfin", + "name": "longfin corp" + }, + { + "cik": 1514056, + "symbol": "triq", + "name": "traqiq inc" + }, + { + "cik": 910569, + "symbol": "norzf", + "name": "norzinc ltd" + }, + { + "cik": 1699018, + "symbol": "efbi", + "name": "eagle financial bancorp inc" + }, + { + "cik": 1101246, + "symbol": "tldn", + "name": "telidyne inc" + }, + { + "cik": 936446, + "symbol": "paos", + "name": "amerinac holding corp" + }, + { + "cik": 783005, + "symbol": "emms", + "name": "emmis communications corp" + }, + { + "cik": 1513856, + "symbol": "ntrp", + "name": "neurotrope inc" + }, + { + "cik": 851726, + "symbol": "sfeg", + "name": "santa fe gold corp" + }, + { + "cik": 1361937, + "symbol": "hrst", + "name": "harvest oil & gas corp" + }, + { + "cik": 1795749, + "symbol": "bitcf", + "name": "first bitcoin capital corp" + }, + { + "cik": 1644482, + "symbol": "nwbb", + "name": "new bancorp inc" + }, + { + "cik": 1346980, + "symbol": "chapq", + "name": "chaparral energy inc" + }, + { + "cik": 1700175, + "symbol": "hrgg", + "name": "heritage nola bancorp inc" + }, + { + "cik": 1667944, + "symbol": "wcfb", + "name": "wcf bancorp inc" + }, + { + "cik": 1629702, + "symbol": "cacad", + "name": "china crawfish ltd" + }, + { + "cik": 1659122, + "symbol": "roswq", + "name": "rosehill resources inc" + }, + { + "cik": 1373707, + "symbol": "ttph", + "name": "tetraphase pharmaceuticals inc" + }, + { + "cik": 1584952, + "symbol": "epegq", + "name": "ep energy corp" + }, + { + "cik": 1549848, + "symbol": "hcrsq", + "name": "hi-crush inc" + }, + { + "cik": 884217, + "symbol": "tlrdq", + "name": "tailored brands inc" + }, + { + "cik": 1708715, + "symbol": "snnf", + "name": "seneca financial corp" + }, + { + "cik": 708819, + "symbol": "mdriq", + "name": "mcdermott international inc" + }, + { + "cik": 1376986, + "symbol": "tve", + "name": "tennessee valley authority" + }, + { + "cik": 1613092, + "symbol": "snipf", + "name": "snipp interactive inc" + }, + { + "cik": 1483405, + "symbol": "bxeff", + "name": "bellatrix exploration ltd" + }, + { + "cik": 1027662, + "symbol": "emitf", + "name": "elbit imaging ltd" + }, + { + "cik": 1487843, + "symbol": "yriv", + "name": "yangtze river port & logistics ltd" + }, + { + "cik": 1213106, + "symbol": "jtbk", + "name": "jetblack corp" + }, + { + "cik": 1168220, + "symbol": "ulur", + "name": "uluru inc" + }, + { + "cik": 1568969, + "symbol": "apyp", + "name": "appyea inc" + }, + { + "cik": 1619055, + "symbol": "cofe", + "name": "coffeesmiths collective inc" + }, + { + "cik": 904979, + "symbol": "shloq", + "name": "shiloh industries inc" + }, + { + "cik": 1115864, + "symbol": "ilxp", + "name": "international luxury products inc" + }, + { + "cik": 790715, + "symbol": "sigm", + "name": "sigma designs inc" + }, + { + "cik": 1002135, + "symbol": "wstl", + "name": "westell technologies inc" + }, + { + "cik": 1443979, + "symbol": "cnwhf", + "name": "china networks international holdings ltd" + }, + { + "cik": 881524, + "symbol": "vvusq", + "name": "vivus inc" + }, + { + "cik": 36369, + "symbol": "fhrt", + "name": "first hartford corp" + }, + { + "cik": 1621499, + "symbol": "altnd", + "name": "alternus energy inc" + }, + { + "cik": 1663641, + "symbol": "adhg", + "name": "ando holdings ltd" + }, + { + "cik": 1512077, + "symbol": "geenq", + "name": "global eagle entertainment inc" + }, + { + "cik": 1661920, + "symbol": "loneq", + "name": "lonestar resources us inc" + }, + { + "cik": 1538267, + "symbol": "sdrmu", + "name": "sandridge mississippian trust ii" + }, + { + "cik": 1682593, + "symbol": "ccsb", + "name": "community savings bancorp inc" + }, + { + "cik": 1065598, + "symbol": "dgtw", + "name": "digitaltown inc" + }, + { + "cik": 758938, + "symbol": "qbak", + "name": "qualstar corp" + }, + { + "cik": 1381105, + "symbol": "ptoi", + "name": "plastic2oil inc" + }, + { + "cik": 1037131, + "symbol": "pntv", + "name": "players network" + }, + { + "cik": 5656, + "symbol": "aivn", + "name": "american international ventures inc de" + }, + { + "cik": 1527974, + "symbol": "wmgr", + "name": "wellness matrix group inc" + }, + { + "cik": 76149, + "symbol": "parf", + "name": "paradise inc" + }, + { + "cik": 1013606, + "symbol": "elgxq", + "name": "endologix inc de" + }, + { + "cik": 1084332, + "symbol": "slnm", + "name": "salon media group inc" + }, + { + "cik": 1739376, + "symbol": "ggbxf", + "name": "green growth brands inc" + }, + { + "cik": 1760233, + "symbol": "ubid", + "name": "rde inc" + }, + { + "cik": 1041633, + "symbol": "mismd", + "name": "mission mining co" + }, + { + "cik": 1530185, + "symbol": "atvk", + "name": "ameritek ventures" + }, + { + "cik": 3116, + "symbol": "akrxq", + "name": "akorn inc" + }, + { + "cik": 1552845, + "symbol": "ntru", + "name": "natur international corp" + }, + { + "cik": 1282266, + "symbol": "win", + "name": "windstream holdings inc" + }, + { + "cik": 66388, + "symbol": "mlls", + "name": "miller industries inc" + }, + { + "cik": 1063104, + "symbol": "pteod", + "name": "proteo inc" + }, + { + "cik": 1562733, + "symbol": "snyr", + "name": "synergy chc corp" + }, + { + "cik": 1650445, + "symbol": "qhccq", + "name": "quorum health corp" + }, + { + "cik": 86264, + "symbol": "crbo", + "name": "carbon energy corp" + }, + { + "cik": 1398529, + "symbol": "gkit", + "name": "greenkraft inc" + }, + { + "cik": 1564709, + "symbol": "thst", + "name": "truett-hurst inc" + }, + { + "cik": 1680966, + "symbol": "aghi", + "name": "agora holdings inc" + }, + { + "cik": 917523, + "symbol": "rvlt", + "name": "revolution lighting technologies inc" + }, + { + "cik": 1435224, + "symbol": "vegl", + "name": "vegalab inc" + }, + { + "cik": 1104206, + "symbol": "ntah", + "name": "nevtah capital management corp" + }, + { + "cik": 1580264, + "symbol": "mobo", + "name": "mobile lads corp" + }, + { + "cik": 798949, + "symbol": "untcq", + "name": "unit corp" + }, + { + "cik": 836809, + "symbol": "aftm", + "name": "aftermaster inc" + }, + { + "cik": 927720, + "symbol": "sbsaa", + "name": "spanish broadcasting system inc" + }, + { + "cik": 1514732, + "symbol": "saexq", + "name": "saexploration holdings inc" + }, + { + "cik": 1394029, + "symbol": "ygehy", + "name": "yingli green energy holding co ltd" + }, + { + "cik": 887151, + "symbol": "caps", + "name": "capstone therapeutics corp" + }, + { + "cik": 1434477, + "symbol": "ssol", + "name": "sunvalley solar inc" + }, + { + "cik": 1056757, + "symbol": "syev", + "name": "seychelle environmental technologies inc ca" + }, + { + "cik": 1090159, + "symbol": "igld", + "name": "internet gold golden lines ltd" + }, + { + "cik": 1263872, + "symbol": "takd", + "name": "transakt ltd" + }, + { + "cik": 1728599, + "symbol": "bthi", + "name": "big time holdings inc" + }, + { + "cik": 1445235, + "symbol": "hcti", + "name": "hybrid coating technologies inc" + }, + { + "cik": 1523855, + "symbol": "tehg", + "name": "technovative group inc" + }, + { + "cik": 1579252, + "symbol": "jasnq", + "name": "jason industries inc" + }, + { + "cik": 1299139, + "symbol": "tear", + "name": "tearlab corp" + }, + { + "cik": 1473597, + "symbol": "stri", + "name": "str holdings inc" + }, + { + "cik": 1086082, + "symbol": "capd", + "name": "cannapowder inc" + }, + { + "cik": 847464, + "symbol": "cyig", + "name": "spring pharmaceutical group inc" + }, + { + "cik": 1437557, + "symbol": "llex", + "name": "lilis energy inc" + }, + { + "cik": 1022646, + "symbol": "upl", + "name": "ultra petroleum corp" + }, + { + "cik": 1393548, + "symbol": "clis", + "name": "clickstream corp" + }, + { + "cik": 822411, + "symbol": "imucw", + "name": "immunocellular therapeutics ltd" + }, + { + "cik": 1040721, + "symbol": "cmhz", + "name": "banny cosmic international holdings inc" + }, + { + "cik": 1416876, + "symbol": "fchs", + "name": "first choice healthcare solutions inc" + }, + { + "cik": 945384, + "symbol": "cicn", + "name": "cicero inc" + }, + { + "cik": 1771077, + "symbol": "psyc", + "name": "telemynd inc" + }, + { + "cik": 1452804, + "symbol": "pkph", + "name": "peak pharmaceuticals inc" + }, + { + "cik": 1099574, + "symbol": "etbi", + "name": "eastgate biotech corp" + }, + { + "cik": 844143, + "symbol": "ctrcq", + "name": "centric brands inc" + }, + { + "cik": 1703497, + "symbol": "yogaq", + "name": "yogaworks inc" + }, + { + "cik": 1540729, + "symbol": "felpq", + "name": "foresight energy lp" + }, + { + "cik": 902274, + "symbol": "lbyyq", + "name": "libbey inc" + }, + { + "cik": 1058828, + "symbol": "hdii", + "name": "hypertension diagnostics inc mn" + }, + { + "cik": 1011395, + "symbol": "gsph", + "name": "geospatial corp" + }, + { + "cik": 1535635, + "symbol": "svte", + "name": "service team inc" + }, + { + "cik": 1606180, + "symbol": "aach", + "name": "aac holdings inc" + }, + { + "cik": 1528837, + "symbol": "snecq", + "name": "sanchez energy corp" + }, + { + "cik": 1591615, + "symbol": "pvdg", + "name": "poverty dignified inc" + }, + { + "cik": 1013238, + "symbol": "ardmq", + "name": "aradigm corp" + }, + { + "cik": 1434842, + "symbol": "flss", + "name": "forbes energy services ltd" + }, + { + "cik": 1311735, + "symbol": "fbec", + "name": "fbec worldwide inc" + }, + { + "cik": 1490630, + "symbol": "rhno", + "name": "rhino resource partners lp" + }, + { + "cik": 1424549, + "symbol": "futl", + "name": "futureland corp" + }, + { + "cik": 1043222, + "symbol": "chwe", + "name": "chinawe com inc" + }, + { + "cik": 1172298, + "symbol": "ptrc", + "name": "petro river oil corp" + }, + { + "cik": 1404079, + "symbol": "ssnyy", + "name": "samson oil & gas ltd" + }, + { + "cik": 278130, + "symbol": "pirrq", + "name": "pier 1 imports inc de" + }, + { + "cik": 1131227, + "symbol": "hossq", + "name": "hornbeck offshore services inc la" + }, + { + "cik": 1313938, + "symbol": "snnc", + "name": "sibannac inc" + }, + { + "cik": 1171008, + "symbol": "admg", + "name": "adamant dri processing & minerals group" + }, + { + "cik": 1019787, + "symbol": "pfti", + "name": "puradyn filter technologies inc" + }, + { + "cik": 1101588, + "symbol": "coho", + "name": "crednology holding corp" + }, + { + "cik": 1421601, + "symbol": "wmtn", + "name": "westmountain gold inc" + }, + { + "cik": 1055454, + "symbol": "scoo", + "name": "school specialty inc" + }, + { + "cik": 1503458, + "symbol": "ftxp", + "name": "foothills exploration inc" + }, + { + "cik": 1502557, + "symbol": "cxkj", + "name": "cx network group inc" + }, + { + "cik": 1099234, + "symbol": "inct", + "name": "incapta inc" + }, + { + "cik": 1009672, + "symbol": "crrtq", + "name": "carbo ceramics inc" + }, + { + "cik": 1543739, + "symbol": "apty", + "name": "apt systems inc" + }, + { + "cik": 1628871, + "symbol": "tmpsw", + "name": "tempus applied solutions holdings inc" + }, + { + "cik": 1354591, + "symbol": "geur", + "name": "petlife pharmaceuticals inc" + }, + { + "cik": 1245791, + "symbol": "gidyl", + "name": "gi dynamics inc" + }, + { + "cik": 6885, + "symbol": "ssinq", + "name": "stage stores inc" + }, + { + "cik": 1609472, + "symbol": "ghhc", + "name": "gh capital inc" + }, + { + "cik": 1794311, + "symbol": "bleg", + "name": "branded legacy inc" + }, + { + "cik": 1415306, + "symbol": "psru", + "name": "purespectrum inc" + }, + { + "cik": 1301501, + "symbol": "akaoq", + "name": "achaogen inc" + }, + { + "cik": 1441849, + "symbol": "cldpq", + "name": "cloud peak energy inc" + }, + { + "cik": 1386026, + "symbol": "zngyq", + "name": "zenergy brands inc" + }, + { + "cik": 1346287, + "symbol": "cnct", + "name": "china teletech holding inc" + }, + { + "cik": 724571, + "symbol": "fred", + "name": "freds inc" + }, + { + "cik": 1309442, + "symbol": "itcc", + "name": "inspro technologies corp" + }, + { + "cik": 1056087, + "symbol": "mniqq", + "name": "mcclatchy co" + }, + { + "cik": 753772, + "symbol": "mzeiq", + "name": "medizone international inc" + }, + { + "cik": 310056, + "symbol": "vcon", + "name": "vicon industries inc ny" + }, + { + "cik": 1422222, + "symbol": "adac", + "name": "adama technologies corp" + }, + { + "cik": 1619250, + "symbol": "vlrxq", + "name": "valeritas holdings inc" + }, + { + "cik": 1568079, + "symbol": "prhrq", + "name": "petroshare corp" + }, + { + "cik": 1575975, + "symbol": "vbvt", + "name": "viabuilt ventures inc" + }, + { + "cik": 1079297, + "symbol": "pgus", + "name": "progreen us inc" + }, + { + "cik": 1574863, + "symbol": "drng", + "name": "drone guarder inc" + }, + { + "cik": 316736, + "symbol": "fppp", + "name": "fieldpoint petroleum corp" + }, + { + "cik": 1102392, + "symbol": "roye", + "name": "royal energy resources inc" + }, + { + "cik": 1400683, + "symbol": "stwc", + "name": "stwc holdings inc" + }, + { + "cik": 1177135, + "symbol": "stjo", + "name": "st joseph inc" + }, + { + "cik": 948426, + "symbol": "cote", + "name": "coates international ltd" + }, + { + "cik": 1650505, + "symbol": "aifm", + "name": "aifarm ltd" + }, + { + "cik": 317889, + "symbol": "btgi", + "name": "bulova technologies group inc" + }, + { + "cik": 1463471, + "symbol": "mnelf", + "name": "mission newenergy ltd" + }, + { + "cik": 1521013, + "symbol": "tpni", + "name": "pulse network inc" + }, + { + "cik": 1135657, + "symbol": "esesq", + "name": "eco-stim energy solutions inc" + }, + { + "cik": 1621697, + "symbol": "nhel", + "name": "natural health farm holdings inc" + }, + { + "cik": 1387976, + "symbol": "csrh", + "name": "consorteum holdings inc" + }, + { + "cik": 1491525, + "symbol": "grsu", + "name": "greenhouse solutions inc" + }, + { + "cik": 1404943, + "symbol": "mtst", + "name": "metastat inc" + }, + { + "cik": 863895, + "symbol": "omsh", + "name": "omni shrimp inc" + }, + { + "cik": 1404597, + "symbol": "crsm", + "name": "carsmartt inc" + }, + { + "cik": 1530981, + "symbol": "pbya", + "name": "probility media corp" + }, + { + "cik": 1425173, + "symbol": "novz", + "name": "novagen ingenium inc" + }, + { + "cik": 1795851, + "symbol": "favo", + "name": "favo realty inc" + }, + { + "cik": 1307140, + "symbol": "lmnk", + "name": "lifestyle medical network inc" + }, + { + "cik": 1401112, + "symbol": "prgnf", + "name": "paragon shipping inc" + }, + { + "cik": 1608430, + "symbol": "rbnw", + "name": "renewable energy & power inc" + }, + { + "cik": 1681282, + "symbol": "anvv", + "name": "anvia holdings corp" + }, + { + "cik": 1561622, + "symbol": "tsgl", + "name": "staffing group ltd" + }, + { + "cik": 1114446, + "symbol": "wtiu", + "name": "ubs ag" + }, + { + "cik": 1415311, + "symbol": "zsl", + "name": "proshares trust ii" + }, + { + "cik": 1516479, + "symbol": "insy", + "name": "insys therapeutics inc" + }, + { + "cik": 1591096, + "symbol": "lens", + "name": "presbia plc" + }, + { + "cik": 1516559, + "symbol": "mcpi", + "name": "mansfield-martin exploration mining inc" + }, + { + "cik": 1609951, + "symbol": "ncom", + "name": "national commerce corp" + }, + { + "cik": 1624826, + "symbol": "mpmq", + "name": "mpm holdings inc" + }, + { + "cik": 1053092, + "symbol": "zivzf", + "name": "credit suisse ag" + }, + { + "cik": 1671854, + "symbol": "scacw", + "name": "saban capital acquisition corp" + }, + { + "cik": 1347613, + "symbol": "sgyp", + "name": "synergy pharmaceuticals llc" + }, + { + "cik": 1656328, + "symbol": "snna", + "name": "sienna biopharmaceuticals inc" + }, + { + "cik": 1610940, + "symbol": "bdry", + "name": "etf managers group commodity trust i" + }, + { + "cik": 352960, + "symbol": "eeh", + "name": "swedish export credit corp swed" + }, + { + "cik": 1024126, + "symbol": "ptx", + "name": "pernix therapeutics holdings inc" + }, + { + "cik": 1432196, + "symbol": "pglc", + "name": "pershing gold corp" + }, + { + "cik": 350403, + "symbol": "phiik", + "name": "phi group inc de" + }, + { + "cik": 827809, + "symbol": "nvln", + "name": "novelion therapeutics inc" + }, + { + "cik": 1648893, + "symbol": "nvtr", + "name": "nuvectra corp" + }, + { + "cik": 1607245, + "symbol": "oasm", + "name": "oasmia pharmaceutical ab" + }, + { + "cik": 1647320, + "symbol": "cmta", + "name": "clementia pharmaceuticals inc" + }, + { + "cik": 1725063, + "symbol": "cnjg", + "name": "jufeel international group" + }, + { + "cik": 1535365, + "symbol": "cmdt", + "name": "ishares commodity optimized trust" + }, + { + "cik": 823277, + "symbol": "chscp", + "name": "chs inc" + }, + { + "cik": 1601545, + "symbol": "bhbk", + "name": "blue hills bancorp inc" + }, + { + "cik": 1609989, + "symbol": "buff", + "name": "blue buffalo pet products inc" + }, + { + "cik": 1471824, + "symbol": "weat", + "name": "teucrium commodity trust" + }, + { + "cik": 1502154, + "symbol": "alo", + "name": "alio gold inc" + }, + { + "cik": 1690769, + "symbol": "amrww", + "name": "alta mesa resources inc de" + }, + { + "cik": 1519405, + "symbol": "fxch", + "name": "invesco currencyshares chinese renminbi trust" + }, + { + "cik": 1353616, + "symbol": "fxs", + "name": "invesco currencyshares swedish krona trust" + }, + { + "cik": 1433994, + "symbol": "fxsg", + "name": "invesco currencyshares singapore dollar trust" + }, + { + "cik": 1071411, + "symbol": "fsnn", + "name": "fusion connect inc" + }, + { + "cik": 1575360, + "symbol": "ftd", + "name": "gue liquidation companies inc" + }, + { + "cik": 68622, + "symbol": "ctbb", + "name": "qwest corp" + }, + { + "cik": 1586105, + "symbol": "eglt", + "name": "zyla life sciences" + }, + { + "cik": 1552800, + "symbol": "tts", + "name": "tile shop holdings inc" + }, + { + "cik": 1671686, + "symbol": "usou", + "name": "uscf funds trust" + }, + { + "cik": 1419465, + "symbol": "stb", + "name": "student transportation inc" + }, + { + "cik": 1698209, + "symbol": "veacw", + "name": "vantage energy acquisition corp" + }, + { + "cik": 320193, + "symbol": "aapl", + "name": "apple inc" + } +] \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Functions/Price.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,51 @@ +// +// RequestPrices.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 3/1/21. +// + +import SwiftUI + +class Price: ObservableObject { + @Published var result = [PriceModel]() + @Published var showingView = false + @Published var showingAlert = false + + func request(symbol: String) { + guard let url = URL(string: priceUrl(symbol: symbol, sandbox: true)) else { // Change sandbox when production + print("Invalid URL") + return + } + let request = URLRequest(url: url) + URLSession.shared.dataTask(with: request) { data, response, error in + if let data = data { + if let decodedResponse = try? JSONDecoder().decode([PriceModel].self, from: data) { + // we have good data – go back to the main thread + DispatchQueue.main.async { + // update our UI + self.result = decodedResponse + print("API request ok") + + // Check if data is empty + if self.result.isEmpty || self.result.count <= 1 { + print("Data is empty") + self.showingView = false + self.showingAlert = true + } else { + print("Showing view...") + self.showingView = true + } + + } + + // everything is good, so we can exit + return + } + } + + // if we're still here it means there was a problem + print("Fetch failed: \(error?.localizedDescription ?? "Unknown error")") + }.resume() + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Functions/ReadJson.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,35 @@ +// +// ReadJson.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 31/12/20. +// + +import SwiftUI + +import SwiftUI + +// With this function I parse the local JSON file to read it and create a list with its items. +let companiesData: [CompanyData] = load("companies.json") + +func load<T: Decodable>(_ filename: String) -> T { + let data: Data + + guard let file = Bundle.main.url(forResource: filename, withExtension: nil) + else { + fatalError("Couldn't find \(filename) in main bundle.") + } + + do { + data = try Data(contentsOf: file) + } catch { + fatalError("Couldn't load \(filename) from main bundle:\n\(error)") + } + + do { + let decoder = JSONDecoder() + return try decoder.decode(T.self, from: data) + } catch { + fatalError("Couldn't parse \(filename) as \(T.self):\n\(error)") + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Functions/Transaction.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,51 @@ +// +// Insiders.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 4/1/21. +// + +import SwiftUI + +class Transaction: ObservableObject { + @Published var result = [TransactionModel]() + @Published var showingView = false + @Published var showingAlert = false + + func request(cik: String, date: String) { + guard let url = URL(string: transactionUrl(cik: cik, date: date)) else { // Change sandbox when production + print("Invalid URL") + return + } + let request = URLRequest(url: url) + URLSession.shared.dataTask(with: request) { data, response, error in + if let data = data { + if let decodedResponse = try? JSONDecoder().decode([TransactionModel].self, from: data) { + // we have good data – go back to the main thread + DispatchQueue.main.async { + // update our UI + self.result = decodedResponse + print("API request ok") + + // Check if data is empty + if self.result.isEmpty || self.result.count <= 1 { + print("Data is empty") + self.showingView = false + self.showingAlert = true + } else { + print("Showing view...") + self.showingView = true + } + + } + + // everything is good, so we can exit + return + } + } + + // if we're still here it means there was a problem + print("Fetch failed: \(error?.localizedDescription ?? "Unknown error")") + }.resume() + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Info.plist Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,59 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleDevelopmentRegion</key> + <string>$(DEVELOPMENT_LANGUAGE)</string> + <key>CFBundleDisplayName</key> + <string>LazyBear</string> + <key>CFBundleExecutable</key> + <string>$(EXECUTABLE_NAME)</string> + <key>CFBundleIdentifier</key> + <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>$(PRODUCT_NAME)</string> + <key>CFBundlePackageType</key> + <string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string> + <key>CFBundleShortVersionString</key> + <string>$(MARKETING_VERSION)</string> + <key>CFBundleVersion</key> + <string>$(CURRENT_PROJECT_VERSION)</string> + <key>LSRequiresIPhoneOS</key> + <true/> + <key>UIApplicationSceneManifest</key> + <dict> + <key>UIApplicationSupportsMultipleScenes</key> + <false/> + </dict> + <key>UIApplicationSupportsIndirectInputEvents</key> + <true/> + <key>UILaunchScreen</key> + <dict> + <key>UIColorName</key> + <string>launch</string> + <key>UIImageName</key> + <string>launchLogo</string> + <key>UIImageRespectsSafeAreaInsets</key> + <false/> + </dict> + <key>UIRequiredDeviceCapabilities</key> + <array> + <string>armv7</string> + </array> + <key>UIRequiresFullScreen</key> + <true/> + <key>UISupportedInterfaceOrientations</key> + <array> + <string>UIInterfaceOrientationPortrait</string> + </array> + <key>UISupportedInterfaceOrientations~ipad</key> + <array> + <string>UIInterfaceOrientationPortrait</string> + <string>UIInterfaceOrientationPortraitUpsideDown</string> + <string>UIInterfaceOrientationLandscapeLeft</string> + <string>UIInterfaceOrientationLandscapeRight</string> + </array> +</dict> +</plist>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Insiders.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,109 @@ +// +// Insiders.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 2/1/21. +// + +import SwiftUI +import SwiftUICharts + +struct Insiders: View { + // Company arguments + var cik: Int + var symbol: String + var name: String + + @ObservedObject var transaction = Transaction() + + // Picker + var dateFormatter: DateFormatter { + let formatter = DateFormatter() + formatter.dateFormat = "yyyy-MM-dd" + return formatter + } + + @State private var selectedDate = Date().addingTimeInterval(-6*30*24*60*60) // month*days*hours*minutes*seconds + + var body: some View { + if transaction.showingView { + GeometryReader { geo in + VStack { + // Graph + let cumBuys = cumSum(array: getTransactions(acquisitionOrDisposition: "A")) + let cumSells = cumSum(array: getTransactions(acquisitionOrDisposition: "D")) + let green = GradientColor(start: .green, end: .green) + let red = GradientColor(start: .red, end: .red) + + let width = geo.size.height*0.6 + MultiLineChartView(data: [(cumBuys, green), (cumSells, red)], title: "Buys and sells", form: CGSize(width: width, height: width/2.3), rateValue: pct(buy: cumBuys.last!, sell: cumSells.last!)) + .padding() + + DatePicker(selection: $selectedDate, in: ...Date(), displayedComponents: .date) { Text("Transactions since").font(.headline) } + .padding([.leading, .top, .trailing]) + .onChange(of: self.selectedDate, perform: { date in + transaction.request(cik: String(cik), date: dateFormatter.string(from: selectedDate)) + }) + + List { + ForEach(transaction.result, id:\.self) { trans in + TransactionRow(trans: trans) + } + } + .offset(y: 10) + } + } + } + else { + VStack { + Spacer() + ProgressView() + Spacer() + } + .onAppear { + transaction.request(cik: String(cik), date: dateFormatter.string(from: selectedDate)) + } + .alert(isPresented: $transaction.showingAlert) { + Alert(title: Text("There is no data available"), + message: Text("We have no data about this company. Try another one."), + dismissButton: .default(Text("Got it!"))) + } + } + } + // Function to sum an array and return a cumulative sum array + func cumSum(array: [Double]) -> [Double] { + var iterateArray = [Double]() + var cumSumArray = [Double]() + for value in array { + iterateArray.append(value) + cumSumArray.append(iterateArray.reduce(0, +)) + } + return cumSumArray + } + // Return two arrays with buys and sells + func getTransactions(acquisitionOrDisposition: String) -> [Double] { + var result = [Double]() + + for trans in transaction.result { + if trans.acquisition_disposition == acquisitionOrDisposition { + result.append(Double(trans.number_securities_transacted)) + } + } + + return result + } + // Get pct of net buys over sells + func pct(buy: Double, sell: Double) -> Int { + let pctOfBuys = buy / (buy+sell) + let pctOfSells = sell / (buy+sell) + let pct = pctOfBuys - pctOfSells + + return Int(pct*100) + } +} + +struct Insiders_Previews: PreviewProvider { + static var previews: some View { + Insiders(cik: 320193, symbol: "aapl", name: "apple inc") + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/LazyBear.xcdatamodeld/LazyBear.xcdatamodel/contents Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<model type="com.apple.IDECoreDataModeler.DataModel" documentVersion="1.0" lastSavedToolsVersion="17709" systemVersion="20C69" minimumToolsVersion="Automatic" sourceLanguage="Swift" userDefinedModelVersionIdentifier=""> + <entity name="Favourite" representedClassName="Favourite" syncable="YES"> + <attribute name="cik" optional="YES" attributeType="Integer 16" defaultValueString="0" usesScalarValueType="YES"/> + <attribute name="isFavourite" optional="YES" attributeType="Boolean" usesScalarValueType="YES"/> + </entity> + <elements> + <element name="Favourite" positionX="-63" positionY="-18" width="128" height="59"/> + </elements> +</model> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/LazyBearApp.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,23 @@ +// +// LazyBearApp.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 27/09/2020. +// + +import SwiftUI + +@main +struct LazyBearApp: App { + let persistenceController = PersistenceController.shared + + var body: some Scene { + WindowGroup { + NavigationView { + TestFavourites() + .environment(\.managedObjectContext, persistenceController.container.viewContext) + } + .navigationViewStyle(StackNavigationViewStyle()) + } + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Main.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,87 @@ +// +// Main.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 12/1/21. +// + +import SwiftUI + +struct Main: View { + @State var searchedCompany: String = "" + @State var showingSettings = false + @State var showingUser = false + @State public var showingSearch: Bool = false // Search Bar + + var body: some View { + VStack { + if showingSearch == false { + // Setting and user + HStack { + Button(action: {self.showingSettings.toggle()} + ) { + Image(systemName: "gear") + .imageIconModifier() + }.sheet(isPresented: $showingSettings) { + About() + } + + Spacer() + /* + Button(action: {self.showingUser.toggle() + }) { + Image(systemName: "person") + .imageIconModifier() + }.sheet(isPresented: $showingUser) { + User() + } + */ + } + .transition(.move(edge: .top)) + .animation(.default) + .padding() + } + + SearchBar(searchedText: $searchedCompany, placeholder: "Search ...", showingSearch: $showingSearch) + + if showingSearch == false { + Companies() + .transition(.move(edge: .bottom)) + .animation(.default) + + } else { + if searchedCompany.count > 2 { + Spacer() + List { + ForEach(companiesData.filter({ searchedCompany.isEmpty ? true : $0.name.localizedStandardContains(searchedCompany) }), id: \.cik) { company in + CompanyRow(company: company) + } + } + .edgesIgnoringSafeArea(.bottom) + .cornerRadius(20) + .id(UUID()) // Increase speed in search the list + } + Spacer() + } + } + .navigationBarHidden(true) + } +} +extension Image { + func imageIconModifier() -> some View { + self + .resizable() + .aspectRatio(contentMode: .fit) + .frame(maxWidth: 30) + } +} + + +struct Main_Previews: PreviewProvider { + static var previews: some View { + NavigationView { + Main() + .navigationViewStyle(StackNavigationViewStyle()) + } + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Models/CompanyData.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,14 @@ +// +// CompanyData.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 31/12/20. +// + +import SwiftUI + +struct CompanyData: Hashable, Codable { + var cik: Int + var symbol: String + var name: String +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Models/PriceModel.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,16 @@ +// +// Prices.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 3/1/21. +// + +import SwiftUI + +struct PriceModel: Codable { + var close: Double + var date: String + var symbol: String + var volume: Float + var changePercent: Double +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Models/TransactionModel.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,16 @@ +// +// Insiders.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 4/1/21. +// + +import SwiftUI + +struct TransactionModel: Codable, Hashable { + var acquisition_disposition: String + var transaction_date: String + var reporting_owner: String + var transaction_type: String + var number_securities_transacted: Int +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Preview Content/Preview Assets.xcassets/Contents.json Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Stock.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,102 @@ +// +// Stock.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 2/1/21. +// + +import SwiftUI +import SwiftUICharts + +struct Stock: View { + // Company arguments + var cik: Int + var symbol: String + var name: String + + @ObservedObject var price = Price() + + var body: some View { + if price.showingView { + GeometryReader { geo in + VStack { + HStack { + Text("$ " + String(price.result.last!.close)) + .font(.title) + .fontWeight(.bold) + + let pct = price.result.last!.changePercent * 100 + Text(String(format: "%.2f", pct) + " %") + .font(.headline) + .foregroundColor(whichColor()) + + Spacer() + } + .padding([.leading, .top, .trailing]) + + HStack { + Text(String(price.result.last!.date) + " last price") + .font(.caption) + .padding([.leading]) + .opacity(0.5) + + Spacer() + } + + // Stock Price + let width = geo.size.height*0.6 + let prices = price.result.map { $0.close } // Get an array of a variable in the struct + LineChartView(data: prices, title: "Stock price", legend: "Last 20 days", form: CGSize(width: width, height: width/1.8), rateValue: nil) + .padding() + + Spacer() + + // Volume + let volume = price.result.map { $0.volume } + BarChartView(data: ChartData(points: volume), title: "Volume", form: CGSize(width: width, height: width/1.6)) + .padding() + + } + } + } + else { + VStack{ + Spacer() + ProgressView() + Spacer() + } + .onAppear { + print(symbol) + price.request(symbol: symbol) + } + .alert(isPresented: $price.showingAlert) { + Alert(title: Text("There is no data available"), + message: Text("We have no data about this company. Try another one."), + dismissButton: .default(Text("Got it!"))) + } + } + } + + func whichColor() -> Color { + if price.result.last!.changePercent < 0 { + return Color(.red) + } + else { + return Color(.green) + } + } +} +extension Image { + func favouriteIcon() -> some View { + self + .resizable() + .frame(width: 25, height: 25) + .foregroundColor(.yellow) + } +} + +struct Stock_Previews: PreviewProvider { + static var previews: some View { + Stock(cik: 320193, symbol: "aapl", name: "apple inc") + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Supply/AboutButton.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,30 @@ +// +// AboutButton.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 31/12/20. +// + +import SwiftUI + +struct AboutButton: View { + @State var image: String + @State var name: String + + var body: some View { + HStack { + Image(systemName: image) + .renderingMode(.original) + .resizable() + .frame(width: 25, height: 25) + + Text(name) + } + } +} + +struct AboutButton_Previews: PreviewProvider { + static var previews: some View { + AboutButton(image: "sparkles", name: "What's new") + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Supply/AppInfo.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,41 @@ +// +// AppInfo.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 31/12/20. +// + +import SwiftUI + +struct AppInfo: View { + var body: some View { + HStack { + Spacer() + Image("launchLogo") + .resizable() + .frame(width: /*@START_MENU_TOKEN@*/100/*@END_MENU_TOKEN@*/, height: /*@START_MENU_TOKEN@*/100/*@END_MENU_TOKEN@*/, alignment: /*@START_MENU_TOKEN@*/.center/*@END_MENU_TOKEN@*/) + + VStack { + Text("Lazybear " + getVersion()) + .fontWeight(/*@START_MENU_TOKEN@*/.bold/*@END_MENU_TOKEN@*/) + + Text("By Dennis Concepción") + } + Spacer() + } + .padding() + } + + // Get app version + func getVersion() -> String { + let dictionary = Bundle.main.infoDictionary! + let version = dictionary["CFBundleShortVersionString"] as! String + return version + } +} + +struct AppInfo_Previews: PreviewProvider { + static var previews: some View { + AppInfo() + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Supply/Companies.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,52 @@ +// +// Companies.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 27/12/20. +// + +import SwiftUI + +struct Companies: View { + var colours = [Color(.systemBlue), Color(.systemYellow), Color(.systemRed), Color(.systemGreen), Color(.systemIndigo), Color(.systemOrange), Color(.systemPink), Color(.systemPurple), Color(.systemTeal), Color(.systemRed)] + + var names = ["adobe", "amazon", "apple", "facebook", "google", "jp", "netflix", "paypal", "salesforce", "tesla"] + var ciks = [796343, 1018724, 320193, 1326801, 1652044, 19617, 1065280, 1633917, 1108524, 1318605] + var symbols = ["adbe", "amzn", "aapl", "fb", "googl", "amj", "nflx", "pypl", "crm", "tsla"] + + let columns = [ + GridItem(.flexible()), + GridItem(.flexible()) + ] + + var body: some View { + ScrollView { + LazyVGrid(columns: columns, spacing: 20) { // Create ScrollView with two columns per row + ForEach((0...9), id: \.self) { index in + NavigationLink(destination: Company(cik: 796343, symbol: symbols[index], name: names[index]) + .navigationBarTitle(names[index].capitalized) + ) { + VStack { + Image(names[index]) + .resizable() + .aspectRatio(contentMode: .fit) + + Text(names[index].capitalized) + .foregroundColor(.white) + .fontWeight(.bold) + } + .padding(40) + .background(colours[index].cornerRadius(20)) + } + } + } + .padding() + } + } +} + +struct Companies_Previews: PreviewProvider { + static var previews: some View { + Companies() + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Supply/CompanyRow.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,28 @@ +// +// CompanyRown.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 31/12/20. +// + +import SwiftUI + +struct CompanyRow: View { + var company: CompanyData + + var body: some View { + HStack { + NavigationLink(destination: Company(cik: company.cik, symbol: company.symbol, name: company.name) + .navigationBarTitle(company.name.capitalized) + ) { + Text(company.name.capitalized) + } + } + } +} + +struct CompanyRown_Previews: PreviewProvider { + static var previews: some View { + CompanyRow(company: companiesData[0]) + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Supply/SearchBar.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,74 @@ +// +// SearchBar.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 27/12/20. +// + +import SwiftUI + +struct SearchBar: View { + + // Text field + @Binding var searchedText: String + @State var searchBarIsEditing = false + @State var placeholder: String + @Binding var showingSearch: Bool // Content View + + var body: some View { + HStack { + TextField(placeholder, text: $searchedText) + .padding(10) + .padding(.horizontal, 45) + .overlay( + HStack { + Image(systemName: "globe") + .frame(minWidth: 0, maxWidth: .infinity, alignment: .leading) + .padding(.leading) + .foregroundColor(Color("placeholder")) + + if searchBarIsEditing { + Button(action: { + self.searchedText = "" + }) { + Image(systemName: "multiply.circle.fill") + .foregroundColor(Color("placeholder")) + .padding(.trailing) + } + } + } + ) + .background(Color(.systemGray6)) + .cornerRadius(10) + .onTapGesture { + self.searchBarIsEditing = true + withAnimation { + self.showingSearch = true // Content View + } + + } + + if searchBarIsEditing { + Button(action: { + self.searchedText = "" + self.searchBarIsEditing = false + withAnimation { + self.showingSearch = false // Content View + } + // Force hide keyboard + UIApplication.shared.sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil) + + }) { + Text("Cancel") + } + } + } + .padding() + } +} + +struct SearchBar_Previews: PreviewProvider { + static var previews: some View { + SearchBar(searchedText: .constant(""), placeholder: "Placeholder", showingSearch: .constant(true)) + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Supply/Selection.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,75 @@ +// +// Selection.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 30/12/20. +// + +import SwiftUI + +struct Selection: View { + @Binding var showingInsiders: Bool + @Binding var showingStocks: Bool + + var body: some View { + // Buttons + HStack { + Group { + // Insiders + Button(action: {toggle(type: "insider")}) { + if showingInsiders { + Image(systemName: "person.fill") + .resizable() + .frame(width: 35, height: 35) + } else { + Image(systemName: "person") + .resizable() + .frame(width: 35, height: 35) + } + } + + // Stock + Button(action: {toggle(type: "stock")}) { + if showingStocks { + Image(systemName: "dollarsign.square.fill") + .resizable() + .frame(width: 35, height: 35) + + } else { + Image(systemName: "dollarsign.square") + .resizable() + .frame(width: 35, height: 35) + } + } + } + .padding().padding().padding() + } + } + + func toggle(type: String) { + if type == "insider" { + self.showingStocks = false + self.showingInsiders = true + } + + if type == "stock" { + self.showingStocks = true + self.showingInsiders = false + } + + if type == "description" { + self.showingStocks = false + self.showingInsiders = false + } + } +} + +struct Selection_Previews: PreviewProvider { + static var previews: some View { + Selection(showingInsiders: .constant(false), showingStocks: .constant(true)) + } +} + +/* + + */
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Supply/TipJar.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,20 @@ +// +// TipJar.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 31/12/20. +// + +import SwiftUI + +struct TipJar: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +struct TipJar_Previews: PreviewProvider { + static var previews: some View { + TipJar() + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Supply/TransactionRow.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,44 @@ +// +// TransactionRow.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 4/1/21. +// + +import SwiftUI + +struct TransactionRow: View { + var trans: TransactionModel + + var body: some View { + VStack(alignment: .leading) { + HStack { + Image(systemName: "person.fill") + Text(trans.reporting_owner.capitalized) + Spacer() + Text(String(trans.number_securities_transacted)) + .foregroundColor(colourShares(type: trans.acquisition_disposition)) + } + HStack { + Image(systemName: "calendar") + Text(trans.transaction_date) + } + } + .padding() + } + + func colourShares(type: String) -> Color { + if type == "A" { // If aquisition_disposition == A, means "Acquisition" -> buy + return Color(.green) + } + else { + return Color(.red) + } + } +} + +struct TransactionRow_Previews: PreviewProvider { + static var previews: some View { + TransactionRow(trans: TransactionModel(acquisition_disposition: "A", transaction_date: "2020-01-01", reporting_owner: "steve jobs", transaction_type: "F-SomeStuff", number_securities_transacted: 12345)) + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Supply/WhatsNew.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,63 @@ +// +// WhatsNew.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 31/12/20. +// + +import SwiftUI +import SwiftUICharts + +struct WhatsNew: View { + var body: some View { + GeometryReader { geo in + ScrollView { + VStack(alignment: .leading, spacing: 20) { + let intro = "This new version comes with lots of changes and many cool stuff. I've been working hard to improve the backend efficiency, deploy a new API and other boring stuff that you probably are not interested in. So let's talk about the cool stuff." + Text(intro) + + let title1 = "New design" + let text1 = "As you can see, there is a completely new design, more clean, colourful, and simple. Now you can check the date for the company you want in three clicks. Less is more." + Text(title1 + " 😎") + .title() + + Text(text1) + + let title2 = "Charts! A bunch!" + let text2 = "Look how cool they are" + Text(title2) + .title() + + Text(text2 + " 😁") + HStack { + Spacer() + let width = geo.size.height*0.4 + LineChartView(data: [8,23,54,32,12,37,7,23,43], title: "Some cool title", form: CGSize(width: width, height: width/2), rateValue: 14) + Spacer() + } + + let title3 = "Stock prices" + let text3 = "Finally I found a not-so-expensive method to show stock prices. In this version you can see the latest stock price from the previous day, but I promise you in future versions I am going to add real-time stock prices." + Text(title3) + .title() + + Text(text3) + } + .padding() + } + } + } +} +extension Text { + func title() -> some View { + self + .font(/*@START_MENU_TOKEN@*/.title/*@END_MENU_TOKEN@*/) + .fontWeight(.semibold) + } +} + +struct WhatsNew_Previews: PreviewProvider { + static var previews: some View { + WhatsNew() + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/Tests/TestFavourites.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,79 @@ +// +// TestFavourites.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 12/1/21. +// + +import SwiftUI + +struct TestFavourites: View { + @Environment(\.managedObjectContext) private var viewContext + @FetchRequest(entity: Favourite.entity(), sortDescriptors: []) + var favourites: FetchedResults<Favourite> + + var body: some View { + VStack { + // Add to favourite + Button(action: { addFavourite() }) { + Text("Add to favourite") + } + + // Display favourites + List { + ForEach(favourites) { favourite in + HStack { + Text(String(favourite.cik)) + Spacer() + Text(String(favourite.isFavourite)) + // Update cik -> I could use that to update bool + Spacer() + Button(action: { updateFavourite(favourite: favourite) }) { + Text("Update bool") + .foregroundColor(.blue) + } + }.padding() + } + // Delete from persistent storage + .onDelete { indexSet in + for index in indexSet { + viewContext.delete(favourites[index]) + } + do { + try viewContext.save() + print("Company deleted") + } catch { + print(error.localizedDescription) + } + } + } + } + } + + func addFavourite() { + let favourite = Favourite(context: viewContext) + favourite.cik = 12345 + favourite.isFavourite = true + do { + try viewContext.save() + print("Company saved.") + } catch { + print(error.localizedDescription) + } + } + + func updateFavourite(favourite: Favourite) { + let newStatus = false + viewContext.performAndWait { + favourite.isFavourite = newStatus + try? viewContext.save() + print("Company updated") + } + } +} + +struct TestFavourites_Previews: PreviewProvider { + static var previews: some View { + TestFavourites() + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lazybear/User.swift Tue Jan 12 21:32:39 2021 +0000 @@ -0,0 +1,49 @@ +// +// User.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 27/12/20. +// + +import SwiftUI + +struct User: View { + @Environment(\.presentationMode) var userPresentation + + var body: some View { + VStack(alignment:.leading) { + HStack { + Button(action: {self.userPresentation.wrappedValue.dismiss() + }) { + Image(systemName: "multiply") + .resizable() + .frame(width: 25, height: 25) + + Spacer() + } + } + + Text("My favourites") + .font(.largeTitle) + .fontWeight(/*@START_MENU_TOKEN@*/.bold/*@END_MENU_TOKEN@*/) + + List { + HStack { + Image(systemName: "star") + .renderingMode(.original) + .resizable() + .frame(width: 25, height: 25) + + Text("Company 1") + } + } + } + .padding() + } +} + +struct User_Previews: PreviewProvider { + static var previews: some View { + User() + } +}