Skip to content

Commit

Permalink
Update vaccine products and manufacturer
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinHaendel committed Aug 6, 2022
1 parent c84a655 commit 7425139
Showing 1 changed file with 25 additions and 3 deletions.
28 changes: 25 additions & 3 deletions lib/green_validator/payload/cert_entry_vaccination.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class CertEntryVaccination extends CertEntry {
if (medicalProductCode == 'EU/1/20/1528') return 'Comirnaty';
if (medicalProductCode == 'EU/1/20/1507') return 'Spikevax';
if (medicalProductCode == 'EU/1/21/1529') return 'Vaxzevria';
if (medicalProductCode == 'EU/1/20/1525') return 'COVID-19 Vaccine Janssen';
if (medicalProductCode == 'EU/1/20/1525') return 'Jcovden';
if (medicalProductCode == 'CVnCoV') return 'CVnCoV';
if (medicalProductCode == 'NVX-CoV2373') return 'NVX-CoV2373';
if (medicalProductCode == 'Sputnik-V') return 'Sputnik V';
Expand All @@ -50,8 +50,8 @@ class CertEntryVaccination extends CertEntry {
if (medicalProductCode == 'BBIBP-CorV') return 'BBIBP-CorV';
if (medicalProductCode == 'Inactivated-SARS-CoV-2-Vero-Cell') return 'Inactivated SARS-CoV-2 (Vero Cell)';
if (medicalProductCode == 'CoronaVac') return 'CoronaVac';
if (medicalProductCode == 'Covaxin') return 'Covaxin (also known as BBV152 A, B, C)';
if (medicalProductCode == 'Covishield') return 'Covishield (ChAdOx1_nCoV-19)';
if (medicalProductCode == 'Covaxin') return 'Covaxin';
if (medicalProductCode == 'Covishield') return 'Covishield';
if (medicalProductCode == 'Covid-19-recombinant') return 'Covid-19 (recombinant)';
if (medicalProductCode == 'R-COVI') return 'R-COVI';
if (medicalProductCode == 'CoviVac') return 'CoviVac';
Expand All @@ -60,6 +60,20 @@ class CertEntryVaccination extends CertEntry {
if (medicalProductCode == 'Abdala') return 'Abdala';
if (medicalProductCode == 'WIBP-CorV') return 'WIBP-CorV';
if (medicalProductCode == 'MVC-COV1901') return 'MVC COVID-19 Vaccine';
if (medicalProductCode == 'EU/1/21/1618') return 'Nuvaxovid';
if (medicalProductCode == 'Covovax') return 'Covovax';
if (medicalProductCode == 'Vidprevtyn') return 'Vidprevtyn';
if (medicalProductCode == 'VLA2001') return 'VLA2001';
if (medicalProductCode == 'EpiVacCorona-N') return 'EpiVacCorona-N';
if (medicalProductCode == 'Sputnik-M') return 'Sputnik M';
if (medicalProductCode == 'Covid-19-adsorvida-inativada') return 'Vacina adsorvida covid-19 (inativada)';
if (medicalProductCode == 'NVSI-06-08') return 'NVSI-06-08';
if (medicalProductCode == 'YS-SC2-010') return 'YS-SC2-010';
if (medicalProductCode == 'SCTV01C') return 'SCTV01C';
if (medicalProductCode == 'Covifenz') return 'Covifenz';
if (medicalProductCode == 'AZD2816') return 'AZD2816';
if (medicalProductCode == 'Soberana-02') return 'Soberana 02';
if (medicalProductCode == 'Soberana-Plus') return 'Soberana Plus';

return 'Unknown';
}
Expand Down Expand Up @@ -87,6 +101,14 @@ class CertEntryVaccination extends CertEntry {
if (manufacturerCode == 'CIGB') return 'Center for Genetic Engineering and Biotechnology';
if (manufacturerCode == 'Sinopharm-WIBP') return 'Sinopharm - Wuhan Institute of Biological Products';
if (manufacturerCode == 'ORG-100033914') return 'Medigen Vaccine Biologics Corporation';
if (manufacturerCode == 'ORG-100000788') return 'Sanofi Pasteur';
if (manufacturerCode == 'ORG-100036422') return 'Valneva France';
if (manufacturerCode == 'Instituto-Butantan') return 'Instituto Butantan';
if (manufacturerCode == 'NVSI') return 'National Vaccine and Serum Institute, China';
if (manufacturerCode == 'Yisheng-Biopharma') return 'Yisheng Biopharma';
if (manufacturerCode == 'ORG-100026614') return 'Sinocelltech Ltd.';
if (manufacturerCode == 'ORG-100008549') return 'Medicago Inc.';
if (manufacturerCode == 'Finlay-Institute') return 'Finlay Institute of Vaccines';

return 'Unknown';
}
Expand Down

0 comments on commit 7425139

Please sign in to comment.