Merge branch 'main' into pages

This commit is contained in:
frankknoll
2023-01-31 10:40:05 +01:00
49012 changed files with 50168 additions and 81 deletions
+30
View File
@@ -0,0 +1,30 @@
class BatchcodeCombinationSelection {
static getSelectBatchcodeCombination({ histograms, onSelect }) {
const selectBatchcodeCombination = UIUtils.instantiateTemplate('template-selectBatchcodeCombination');
const batchcodesSelect = selectBatchcodeCombination.querySelector('#batchcodesSelect');
this.#addBatchcodeCombinationOptions(batchcodesSelect, histograms);
batchcodesSelect.addEventListener(
'change',
event => {
const histoDescr = histograms[event.target.value];
onSelect(histoDescr);
});
return selectBatchcodeCombination;
}
static #addBatchcodeCombinationOptions(batchcodesSelect, histograms) {
this.#getBatchcodeCombinationOptions(histograms).forEach(option => batchcodesSelect.add(option));
}
static #getBatchcodeCombinationOptions(histograms) {
return histograms.map(this.#getBatchcodeCombinationOption);
}
static #getBatchcodeCombinationOption(histoDescr, index) {
const option = document.createElement("option");
option.text = histoDescr.batchcodes.join(', ');
option.value = index;
return option;
}
}
+11
View File
@@ -0,0 +1,11 @@
class HistoDescrsProvider {
static getHistoDescrsForBatchcode(batchcode) {
return fetch(`data/histograms/${batchcode}.json`)
.then(response => response.json())
.then(histoDescrs => {
histoDescrs.histograms.sort((histoDescr1, histoDescr2) => histoDescr1.batchcodes.length - histoDescr2.batchcodes.length);
return histoDescrs;
});
}
}
+63
View File
@@ -0,0 +1,63 @@
class HistogramChartView {
#canvas;
#chart;
constructor(canvas) {
this.#canvas = canvas;
}
displayChart(histoDescr) {
if (this.#chart != null) {
this.#chart.destroy();
}
this.#chart = new Chart(
this.#canvas,
{
type: 'bar',
data: this.#getData(histoDescr),
options: this.#getOptions()
});
}
setData(histoDescr) {
const data = this.#getData(histoDescr);
this.#chart.config.data = data;
this.#chart.update();
}
#getData(histoDescr) {
const { 'keys': symptoms, 'values': frequencies } = Utils.getKeysAlignedWithValues(histoDescr.histogram);
return {
labels: symptoms,
datasets: [{
label: histoDescr.batchcodes.join(', '),
data: frequencies
}]
};
}
#getOptions() {
return {
indexAxis: 'y',
responsive: true,
scales: {
y: {
title: {
display: true,
text: 'Symptom'
}
},
x: {
ticks: {
precision: 0
},
title: {
display: true,
text: 'Frequency'
}
}
}
};
}
}
+98
View File
@@ -0,0 +1,98 @@
class HistogramView {
#uiContainer;
constructor(uiContainer) {
this.#uiContainer = uiContainer
}
displayHistogramViewForBatchcode(batchcode) {
this
.#loadHistoDescrsForBatchcode(batchcode)
.then(histoDescrs => this.#displayHistogramViewForHistoDescrs(histoDescrs));
}
#loadHistoDescrsForBatchcode(batchcode) {
const loadingText = document.createTextNode('Loading...');
this.#uiContainer.appendChild(loadingText);
return HistoDescrsProvider
.getHistoDescrsForBatchcode(batchcode)
.then(histoDescrs => {
loadingText.remove();
return histoDescrs;
});
}
#displayHistogramViewForHistoDescrs(histoDescrs) {
this.#displayHeading(histoDescrs.batchcode);
const chartWithSlider = UIUtils.instantiateTemplate('template-chartWithSlider');
const histogramChartView = new HistogramChartView(chartWithSlider.querySelector("canvas"));
this.#displaySelectBatchcodeCombination(histoDescrs.histograms, histogramChartView, chartWithSlider);
this.#uiContainer.appendChild(chartWithSlider);
this.#displayHistogram(histoDescrs.histograms[0], histogramChartView, chartWithSlider);
}
#displayHeading(batchcode) {
const h1 = document.createElement("h3");
h1.appendChild(document.createTextNode(`Frequencies of reported Symptoms for Batch Code Combinations containing ${batchcode}`));
this.#uiContainer.appendChild(h1);
}
#displaySelectBatchcodeCombination(histograms, histogramChartView, chartWithSlider) {
const selectBatchcodeCombination =
BatchcodeCombinationSelection.getSelectBatchcodeCombination(
{
histograms: histograms,
onSelect: histoDescr => this.#displayHistogram(histoDescr, histogramChartView, chartWithSlider)
});
this.#uiContainer.appendChild(selectBatchcodeCombination);
}
#displayHistogram(histoDescr, histogramChartView, chartWithSlider) {
histogramChartView.displayChart(histoDescr);
this.#createSlider(
{
sliderElement: chartWithSlider.querySelector(".slider"),
range: {
min: 0,
max: Object.keys(histoDescr.histogram).length
},
orientation: 'vertical',
height: chartWithSlider.querySelector("canvas").style.height,
onUpdate: range => histogramChartView.setData(this.#slice(histoDescr, range))
});
}
#slice(histoDescr, { start, endInclusive }) {
return {
batchcodes: histoDescr.batchcodes,
histogram: Utils.sliceDict(histoDescr.histogram, start, endInclusive + 1)
};
}
#createSlider({ sliderElement, range, orientation, height = null, onUpdate }) {
if ('noUiSlider' in sliderElement) {
sliderElement.noUiSlider.destroy();
}
noUiSlider.create(
sliderElement,
{
start: [range.min, range.max],
connect: true,
range: range,
step: 1,
orientation: orientation
});
sliderElement.noUiSlider.on(
'update',
([start, endInclusive]) =>
onUpdate(
{
start: parseInt(start, 10),
endInclusive: parseInt(endInclusive, 10)
}));
if (height != null) {
sliderElement.style.height = height;
}
}
}
+4
View File
@@ -4,6 +4,10 @@ class UIUtils {
return document.getElementById(templateId).content.firstElementChild.cloneNode(true);
}
static createCanvas() {
return UIUtils.instantiateTemplate('template-canvas');
}
static createChartViewElementWithHeading(heading) {
const chartViewElement = UIUtils.instantiateTemplate('template-ChartView');
chartViewElement.querySelector(".heading").textContent = heading;
+14
View File
@@ -6,4 +6,18 @@ class Utils {
const nums = [...arr].sort((a, b) => a - b);
return arr.length % 2 !== 0 ? nums[mid] : (nums[mid - 1] + nums[mid]) / 2;
}
static getKeysAlignedWithValues(dict) {
const keys = [];
const values = [];
for (const [key, value] of Object.entries(dict)) {
keys.push(key);
values.push(value);
}
return { 'keys': keys, 'values': values };
}
static sliceDict(dict, start, end) {
return Object.fromEntries(Object.entries(dict).slice(start, end));
}
}
+14
View File
@@ -4,4 +4,18 @@
.dataTables_length {
float: right !important;
}
.chartWithSlider {
display: flex;
flex-wrap: nowrap;
flex-direction: row;
}
.chartWithSlider .chartContainer {
flex: 95%;
}
.chartWithSlider .sliderContainer {
flex: 5%;
}
+33 -2
View File
@@ -4,12 +4,21 @@
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>Batch Codes of Coronavirus 2019 Vaccines</title>
<link href="https://cdn.datatables.net/1.11.4/css/jquery.dataTables.css" rel="stylesheet" type="text/css"/>
<link href="https://cdn.datatables.net/1.13.1/css/jquery.dataTables.css" rel="stylesheet" type="text/css"/>
<link href="batchCodeTable.css" rel="stylesheet" type="text/css"/>
<link href="forkMeOnGitHub.css" rel="stylesheet" type="text/css"/>
<script crossorigin="anonymous" integrity="sha512-T5Bneq9hePRO8JR0S/0lQ7gdW+ceLThvC80UjwkMRz+8q+4DARVZ4dqKoyENC7FcYresjfJ6ubaOgIE35irf4w==" referrerpolicy="no-referrer" src="https://cdnjs.cloudflare.com/ajax/libs/noUiSlider/15.5.1/nouislider.min.js"></script>
<link crossorigin="anonymous" href="https://cdnjs.cloudflare.com/ajax/libs/noUiSlider/15.5.1/nouislider.css" integrity="sha512-MKxcSu/LDtbIYHBNAWUQwfB3iVoG9xeMCm32QV5hZ/9lFaQZJVaXfz9aFa0IZExWzCpm7OWvp9zq9gVip/nLMg==" referrerpolicy="no-referrer" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script charset="utf8" src="https://cdn.datatables.net/1.11.4/js/jquery.dataTables.min.js" type="text/javascript"></script>
<script charset="utf8" src="https://cdn.datatables.net/1.13.1/js/jquery.dataTables.min.js" type="text/javascript"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.2.0/dist/chart.umd.min.js"></script>
<script src="./Utils.js"></script>
<script src="./UIUtils.js"></script>
<script src="./batchCodeTable.js"></script>
<script src="./HistoDescrsProvider.js"></script>
<script src="./HistogramChartView.js"></script>
<script src="./BatchcodeCombinationSelection.js"></script>
<script src="./HistogramView.js"></script>
<script>
$(document).ready(function () {
const batchCodeTableInitializer =
@@ -38,6 +47,7 @@
<table class="display" id="batchCodeTable">
<thead>
<tr>
<th></th>
<th>Batch</th>
<th>Adverse Reaction Reports</th>
<th>Deaths</th>
@@ -54,5 +64,26 @@
<a href="https://vaers.hhs.gov/data/datasets.html" target="_blank">Vaccine Adverse Event Reporting System
(VAERS)</a>
</p>
<template id="template-canvas">
<canvas></canvas>
</template>
<template id="template-selectBatchcodeCombination">
<div>
<label>Select batchcode combination:
<select id="batchcodesSelect" name="batchcodes">
</select>
</label>
</div>
</template>
<template id="template-chartWithSlider">
<div class="chartWithSlider">
<div class="chartContainer">
<canvas class="canvas"></canvas>
</div>
<div class="sliderContainer">
<div class="slider"></div>
</div>
</div>
</template>
</body>
</html>
+93 -25
View File
@@ -14,21 +14,11 @@ class BatchCodeTableInitializer {
initialize() {
this.#batchCodeTable = this.#createEmptyBatchCodeTable();
this.#countrySelect.addEventListener('change', event => this.#displayCountry(event.target.value));
this.#displayCountry('Global')
this.#displayCountry('Global');
this.#initializeHistogramView();
}
#createEmptyBatchCodeTable() {
const columnIndex = {
'Batch': 0,
'Adverse Reaction Reports': 1,
'Deaths': 2,
'Disabilities': 3,
'Life Threatening Illnesses': 4,
'Company': 5,
'Countries': 6,
'Severe reports': 7,
'Lethality': 8
};
return this.#batchCodeTableElement.DataTable(
{
language:
@@ -41,41 +31,94 @@ class BatchCodeTableInitializer {
},
processing: true,
deferRender: true,
order: [[columnIndex['Adverse Reaction Reports'], "desc"]],
order: [[this.#getColumnIndex('Adverse Reaction Reports'), "desc"]],
columnDefs:
[
{
className: 'dt-control',
orderable: false,
data: null,
defaultContent: '',
targets: this.#getColumnIndex('control')
},
{
searchable: false,
targets: [
columnIndex['Adverse Reaction Reports'],
columnIndex['Deaths'],
columnIndex['Disabilities'],
columnIndex['Life Threatening Illnesses'],
columnIndex['Company'],
columnIndex['Countries'],
columnIndex['Severe reports'],
columnIndex['Lethality']
this.#getColumnIndex('Adverse Reaction Reports'),
this.#getColumnIndex('Deaths'),
this.#getColumnIndex('Disabilities'),
this.#getColumnIndex('Life Threatening Illnesses'),
this.#getColumnIndex('Company'),
this.#getColumnIndex('Countries'),
this.#getColumnIndex('Severe reports'),
this.#getColumnIndex('Lethality')
]
},
{
orderable: false,
targets: columnIndex['Countries']
targets: this.#getColumnIndex('Countries')
},
{
render: (data, type, row) => {
const numberInPercent = parseFloat(data);
return !isNaN(numberInPercent) ? numberInPercent.toFixed(2) + " %" : '';
},
targets: [columnIndex['Severe reports'], columnIndex['Lethality']]
targets: [this.#getColumnIndex('Severe reports'), this.#getColumnIndex('Lethality')]
}
]
});
}
#getColumnIndex(columnName) {
switch (columnName) {
case 'control':
return 0;
case 'Batch':
return 1;
case 'Adverse Reaction Reports':
return 2;
case 'Deaths':
return 3;
case 'Disabilities':
return 4;
case 'Life Threatening Illnesses':
return 5;
case 'Company':
return 6;
case 'Countries':
return 7;
case 'Severe reports':
return 8;
case 'Lethality':
return 9;
}
}
#displayCountry(country) {
this.#heading.textContent = country == 'Global' ? 'Global Batch Codes' : `Batch Codes for ${country}`;
this.#batchCodeTable.ajax.url(`data/batchCodeTables/${country}.json`).load();
this.#selectInput();
fetch(`data/batchCodeTables/${country}.json`)
.then(response => response.json())
.then(json => {
this.#_addEmptyControlColumn(json);
return json;
})
.then(json => {
this.#setTableRows(json.data);
this.#selectInput();
this.#displayControlColumn(country == 'Global');
});
}
#_addEmptyControlColumn(json) {
json.columns.unshift('control');
json.data.forEach(row => row.unshift(null));
}
#setTableRows(rows) {
this.#batchCodeTable
.clear()
.rows.add(rows)
.draw();
}
#selectInput() {
@@ -83,4 +126,29 @@ class BatchCodeTableInitializer {
input.focus();
input.select();
}
#displayControlColumn(isVisible) {
this.#batchCodeTable.column(this.#getColumnIndex('control')).visible(isVisible);
}
#initializeHistogramView() {
const thisClassInstance = this;
$(`#${this.#batchCodeTableElement[0].id} tbody`).on(
'click',
'td.dt-control',
function () {
const tr = $(this).closest('tr');
const row = thisClassInstance.#batchCodeTable.row(tr);
if (row.child.isShown()) {
row.child.hide();
tr.removeClass('shown');
} else {
const uiContainer = document.createElement("div");
row.child(uiContainer).show();
tr.addClass('shown');
const batchcode = row.data()[thisClassInstance.#getColumnIndex('Batch')];
new HistogramView(uiContainer).displayHistogramViewForBatchcode(batchcode);
}
});
}
}
+1 -1
View File
@@ -1 +1 @@
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["FJI966",1,0,1,0,"PFIZER\\BIONTECH","Argentina",null,null],["085MZIA",1,1,0,0,"MODERNA","Argentina",null,null],["NK0084",1,1,0,0,"MODERNA","Argentina",null,null],["I-750421",1,0,0,1,"MODERNA","Argentina",null,null],["045C22A",1,0,0,1,"MODERNA","Argentina",null,null],["940885",11,2,0,5,"MODERNA","Argentina",null,null],["053M21A",24,0,0,10,"MODERNA","Argentina",null,null],["022D21A",35,5,0,8,"MODERNA","Argentina",null,null],["085M21A",13,1,0,3,"MODERNA","Argentina",null,null],["024D21A",19,0,0,4,"MODERNA","Argentina",null,null],["068B22A",10,2,0,0,"MODERNA","Argentina",null,null],["FN0087",5,0,1,0,"PFIZER\\BIONTECH","Argentina",null,null],["FN1672",6,0,1,0,"PFIZER\\BIONTECH","Argentina",null,null],["087M21A",8,0,0,1,"MODERNA","Argentina",null,null],["080C21A",49,4,0,2,"MODERNA","Argentina",null,null],["940920",26,0,0,3,"MODERNA","Argentina",null,null],["940915",23,1,0,0,"MODERNA","Argentina",null,null],["FN3815",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FNO087",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["O85M21A",1,0,0,0,"MODERNA","Argentina",null,null],["D80C21A",1,0,0,0,"MODERNA","Argentina",null,null],["EC2971",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["EN1926",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["EN6203",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["EW0171",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["EW0217",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FA6780",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FC3180",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FF2587",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FH1672",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FJ 4188",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FJ1926",3,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["O24D217",1,0,0,0,"MODERNA","Argentina",null,null],["O22D21A",2,0,0,0,"MODERNA","Argentina",null,null],["II-740621",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FJ1966",2,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FJ4188",2,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FT0366",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FJ8198",4,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["D78C21A",1,0,0,0,"MODERNA","Argentina",null,null],["FK8888",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FK8892",4,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FL7309",2,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FP0665",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FN1455",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["0",2,0,0,0,"MODERNA","Argentina",null,null],["40915",1,0,0,0,"MODERNA","Argentina",null,null],["A24D21A",1,0,0,0,"MODERNA","Argentina",null,null],["068B22R",1,0,0,0,"MODERNA","Argentina",null,null],["0800C21A",1,0,0,0,"MODERNA","Argentina",null,null],["078R21A",1,0,0,0,"MODERNA","Argentina",null,null],["078C21A",8,0,0,0,"MODERNA","Argentina",null,null],["078C217",1,0,0,0,"MODERNA","Argentina",null,null],["078C21",8,0,0,0,"MODERNA","Argentina",null,null],["068B23A",1,0,0,0,"MODERNA","Argentina",null,null],["053M21",1,0,0,0,"MODERNA","Argentina",null,null],["8002117",1,0,0,0,"MODERNA","Argentina",null,null],["030M20A",1,0,0,0,"MODERNA","Argentina",null,null],["024D21R",1,0,0,0,"MODERNA","Argentina",null,null],["024D21D",1,0,0,0,"MODERNA","Argentina",null,null],["02402IA",1,0,0,0,"MODERNA","Argentina",null,null],["022D1A",1,0,0,0,"MODERNA","Argentina",null,null],["00342A",1,0,0,0,"MODERNA","Argentina",null,null],["080C\/21A",1,0,0,0,"MODERNA","Argentina",null,null],["080C21",2,0,0,0,"MODERNA","Argentina",null,null],["080C214",1,0,0,0,"MODERNA","Argentina",null,null],["080C217",1,0,0,0,"MODERNA","Argentina",null,null],["080C2IA",1,0,0,0,"MODERNA","Argentina",null,null],["080L2VA",1,0,0,0,"MODERNA","Argentina",null,null],["087M8IA",1,0,0,0,"MODERNA","Argentina",null,null],["08C21A",1,0,0,0,"MODERNA","Argentina",null,null],["20210681432",1,0,0,0,"MODERNA","Argentina",null,null],["202107B1876",1,0,0,0,"MODERNA","Argentina",null,null],["205A21A",1,0,0,0,"JANSSEN","Argentina",null,null],["220211",1,0,0,0,"MODERNA","Argentina",null,null],["241214",1,0,0,0,"MODERNA","Argentina",null,null],["24D21A",1,0,0,0,"MODERNA","Argentina",null,null],["30145BA",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["000342A",5,0,0,0,"MODERNA","Argentina",null,null],["421A",1,0,0,0,"MODERNA","Argentina",null,null],["OS3M21A",1,0,0,0,"MODERNA","Argentina",null,null]]}
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["FJI966",1,0,1,0,"PFIZER\\BIONTECH","Argentina",null,null],["NK0084",1,1,0,0,"MODERNA","Argentina",null,null],["I-750421",1,0,0,1,"MODERNA","Argentina",null,null],["045C22A",1,0,0,1,"MODERNA","Argentina",null,null],["940885",11,2,0,5,"MODERNA","Argentina",null,null],["053M21A",24,0,0,10,"MODERNA","Argentina",null,null],["022D21A",35,5,0,8,"MODERNA","Argentina",null,null],["085M21A",13,1,0,3,"MODERNA","Argentina",null,null],["024D21A",19,0,0,4,"MODERNA","Argentina",null,null],["FN0087",5,0,1,0,"PFIZER\\BIONTECH","Argentina",null,null],["068B22A",10,2,0,0,"MODERNA","Argentina",null,null],["FN1672",6,0,1,0,"PFIZER\\BIONTECH","Argentina",null,null],["087M21A",8,0,0,1,"MODERNA","Argentina",null,null],["080C21A",49,4,0,2,"MODERNA","Argentina",null,null],["940920",26,0,0,3,"MODERNA","Argentina",null,null],["940915",23,1,0,0,"MODERNA","Argentina",null,null],["EW0171",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["EW0217",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["EN1926",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FA6780",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["EC2971",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FC3180",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FF2587",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FH1672",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["D80C21A",1,0,0,0,"MODERNA","Argentina",null,null],["FJ 4188",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FJ1926",3,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["EN6203",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["0",2,0,0,0,"MODERNA","Argentina",null,null],["FJ1966",2,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FJ4188",2,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FJ8198",4,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["D78C21A",1,0,0,0,"MODERNA","Argentina",null,null],["FK8892",4,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FL7309",2,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FN1455",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FN3815",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FNO087",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FP0665",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["FT0366",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["II-740621",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["O22D21A",2,0,0,0,"MODERNA","Argentina",null,null],["O24D217",1,0,0,0,"MODERNA","Argentina",null,null],["O85M21A",1,0,0,0,"MODERNA","Argentina",null,null],["FK8888",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["421A",1,0,0,0,"MODERNA","Argentina",null,null],["A24D21A",1,0,0,0,"MODERNA","Argentina",null,null],["068B22R",1,0,0,0,"MODERNA","Argentina",null,null],["0800C21A",1,0,0,0,"MODERNA","Argentina",null,null],["078R21A",1,0,0,0,"MODERNA","Argentina",null,null],["078C21A",8,0,0,0,"MODERNA","Argentina",null,null],["078C217",1,0,0,0,"MODERNA","Argentina",null,null],["078C21",8,0,0,0,"MODERNA","Argentina",null,null],["068B23A",1,0,0,0,"MODERNA","Argentina",null,null],["053M21",1,0,0,0,"MODERNA","Argentina",null,null],["8002117",1,0,0,0,"MODERNA","Argentina",null,null],["030M20A",1,0,0,0,"MODERNA","Argentina",null,null],["024D21R",1,0,0,0,"MODERNA","Argentina",null,null],["024D21D",1,0,0,0,"MODERNA","Argentina",null,null],["02402IA",1,0,0,0,"MODERNA","Argentina",null,null],["022D1A",1,0,0,0,"MODERNA","Argentina",null,null],["00342A",1,0,0,0,"MODERNA","Argentina",null,null],["080C\/21A",1,0,0,0,"MODERNA","Argentina",null,null],["080C21",2,0,0,0,"MODERNA","Argentina",null,null],["080C214",1,0,0,0,"MODERNA","Argentina",null,null],["080C217",1,0,0,0,"MODERNA","Argentina",null,null],["080C2IA",1,0,0,0,"MODERNA","Argentina",null,null],["080L2VA",1,0,0,0,"MODERNA","Argentina",null,null],["087M8IA",1,0,0,0,"MODERNA","Argentina",null,null],["08C21A",1,0,0,0,"MODERNA","Argentina",null,null],["20210681432",1,0,0,0,"MODERNA","Argentina",null,null],["202107B1876",1,0,0,0,"MODERNA","Argentina",null,null],["205A21A",1,0,0,0,"JANSSEN","Argentina",null,null],["220211",1,0,0,0,"MODERNA","Argentina",null,null],["241214",1,0,0,0,"MODERNA","Argentina",null,null],["24D21A",1,0,0,0,"MODERNA","Argentina",null,null],["30145BA",1,0,0,0,"PFIZER\\BIONTECH","Argentina",null,null],["40915",1,0,0,0,"MODERNA","Argentina",null,null],["000342A",5,0,0,0,"MODERNA","Argentina",null,null],["OS3M21A",1,0,0,0,"MODERNA","Argentina",null,null]]}
+1 -1
View File
@@ -1 +1 @@
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["FF4222",1,0,1,0,"PFIZER\\BIONTECH","Australia",null,null],["FL350",1,0,1,0,"PFIZER\\BIONTECH","Australia",null,null],["FF3438",1,0,1,0,"PFIZER\\BIONTECH","Australia",null,null],["FJ5973",1,0,0,1,"PFIZER\\BIONTECH","Australia",null,null],["EP2163 SERIAL 1",1,1,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FP1430",1,0,1,0,"PFIZER\\BIONTECH","Australia",null,null],["EX2405",1,0,1,0,"PFIZER\\BIONTECH","Australia",null,null],["FE8163",3,0,2,0,"PFIZER\\BIONTECH","Australia",null,null],["FH3221",2,0,1,0,"PFIZER\\BIONTECH","Australia",null,null],["FF4206",2,0,1,0,"PFIZER\\BIONTECH","Australia",null,null],["FC3558",3,0,1,0,"PFIZER\\BIONTECH","Australia",null,null],["FL7649",5,0,1,1,"PFIZER\\BIONTECH","Australia",null,null],["NO BATCH NUMBER",42,7,1,0,"PFIZER\\BIONTECH","Australia",null,null],["FG3712",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FL5333",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FL3560",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FN0565",2,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FP8290",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FK6268",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["PCA0074",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["PCB0020",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["UKNOWN",1,0,0,0,"UNKNOWN MANUFACTURER","Australia",null,null],["UNK",2,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FH3219",2,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FG7372",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["000002A",2,0,0,0,"MODERNA","Australia",null,null],["FG1657",2,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FF4222-013",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["000031A",1,0,0,0,"MODERNA","Australia",null,null],["1F1056A",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["1F1057A",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["210957",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["3006325",1,0,0,0,"MODERNA","Australia",null,null],["EJ8516",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["ER7449",2,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["EX6564",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FA4598",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FA7338",2,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FA7812",2,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FA7912",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FE3430",2,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FE3712",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["00002A",1,0,0,0,"MODERNA","Australia",null,null],["UNSURE",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null]]}
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["FL350",1,0,1,0,"PFIZER\\BIONTECH","Australia",null,null],["FF4222",1,0,1,0,"PFIZER\\BIONTECH","Australia",null,null],["FF3438",1,0,1,0,"PFIZER\\BIONTECH","Australia",null,null],["FE8163",2,0,2,0,"PFIZER\\BIONTECH","Australia",null,null],["3002188",1,0,0,1,"MODERNA","Australia",null,null],["EP2163 SERIAL 1",1,1,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FP1430",1,0,1,0,"PFIZER\\BIONTECH","Australia",null,null],["EX2405",1,0,1,0,"PFIZER\\BIONTECH","Australia",null,null],["FJ5973",1,0,0,1,"PFIZER\\BIONTECH","Australia",null,null],["FF4206",2,0,1,0,"PFIZER\\BIONTECH","Australia",null,null],["FL7649",5,0,1,1,"PFIZER\\BIONTECH","Australia",null,null],["NO BATCH NUMBER",42,7,1,0,"PFIZER\\BIONTECH","Australia",null,null],["FH3219",2,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FH3221",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FK6268",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FN0565",2,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FL3560",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FL5333",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FG3712",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FP8290",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["PCA0074",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["PCB0020",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["UKNOWN",1,0,0,0,"MODERNA","Australia",null,null],["UNK",2,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FG7372",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["000002A",2,0,0,0,"MODERNA","Australia",null,null],["FG1657",2,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["EX6564",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["000031A",1,0,0,0,"MODERNA","Australia",null,null],["1F1056A",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["1F1057A",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["210957",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["3006325",1,0,0,0,"MODERNA","Australia",null,null],["EJ8516",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["ER7449",2,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FA4598",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FF4222-013",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FA7338",2,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FA7812",2,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FA7912",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FC3558",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FE3430",2,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["FE3712",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null],["00002A",1,0,0,0,"MODERNA","Australia",null,null],["UNSURE",1,0,0,0,"PFIZER\\BIONTECH","Australia",null,null]]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1 +1 @@
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["A4875",1,0,0,1,"PFIZER\\BIONTECH","Colombia",null,null],["FA0579",1,0,0,1,"PFIZER\\BIONTECH","Colombia",null,null],["EY00586",1,1,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EY0585",2,0,1,0,"PFIZER\\BIONTECH","Colombia",null,null],["213A21A",2,1,0,0,"MODERNA","Colombia",null,null],["212A21A",4,0,1,0,"JANSSEN","Colombia",null,null],["EY0574",4,0,0,1,"PFIZER\\BIONTECH","Colombia",null,null],["ET6924",5,0,0,1,"PFIZER\\BIONTECH","Colombia",null,null],["EW0171",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW1095",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EX0438",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW4109",6,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW3344",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW0217",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW0161",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW0206",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW0195",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW0191",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW0179",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW0173",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW0216",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["015F21A",1,0,0,0,"MODERNA","Colombia",null,null],["EY0579",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EVO586",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EY0586",6,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EY4825",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FA 5843",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FA-9100",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FA5843",6,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FA7478",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FA9100",4,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FF 88 43",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FF2588",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FG352B",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FH8024",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FJ1966",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FY0575",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW-0195",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["ET692Y",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["ET6949",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["2915BA",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["0585",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["060M21A",1,0,0,0,"MODERNA","Colombia",null,null],["1026596867",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["18970",1,0,0,0,"MODERNA","Colombia",null,null],["202G21A",1,0,0,0,"JANSSEN","Colombia",null,null],["203S21A",1,0,0,0,"JANSSEN","Colombia",null,null],["204A21A",2,0,0,0,"JANSSEN","Colombia",null,null],["206#21A",1,0,0,0,"JANSSEN","Colombia",null,null],["207A21A",1,0,0,0,"JANSSEN","Colombia",null,null],["2081A211A",1,0,0,0,"JANSSEN","Colombia",null,null],["208A21A",1,0,0,0,"JANSSEN","Colombia",null,null],["210958",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["210963",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["213A 21A",1,0,0,0,"JANSSEN","Colombia",null,null],["ACC5853",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["055021A",1,0,0,0,"MODERNA","Colombia",null,null],["E40585",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["E40586",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EA5843",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EM9809",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EN0191",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EN1145",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EN1194",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EN1195",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["ER1742",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["ER4449",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["ER8727",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["ER9449",7,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["ET 6924",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["ET6924 OR ET692",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["PCA0074",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null]]}
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["A4875",1,0,0,1,"PFIZER\\BIONTECH","Colombia",null,null],["FA0579",1,0,0,1,"PFIZER\\BIONTECH","Colombia",null,null],["EY00586",1,1,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EY0585",2,0,1,0,"PFIZER\\BIONTECH","Colombia",null,null],["213A21A",2,1,0,0,"MODERNA","Colombia",null,null],["212A21A",4,0,1,0,"JANSSEN","Colombia",null,null],["EY0574",4,0,0,1,"PFIZER\\BIONTECH","Colombia",null,null],["ET6924",6,0,0,1,"PFIZER\\BIONTECH","Colombia",null,null],["EW0171",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW1095",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EX0438",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW4109",6,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW3344",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW0217",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW0161",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW0206",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW0195",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW0191",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW0179",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW0173",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW0216",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["015F21A",1,0,0,0,"MODERNA","Colombia",null,null],["EY0579",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EVO586",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EY0586",6,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EY4825",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FA 5843",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FA-9100",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FA5843",6,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FA7478",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FA9100",4,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FF 88 43",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FF2588",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FG352B",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FH8024",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FJ1966",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["FY0575",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EW-0195",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["ET692Y",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["ET6949",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["2915BA",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["0585",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["060M21A",1,0,0,0,"MODERNA","Colombia",null,null],["1026596867",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["18970",1,0,0,0,"MODERNA","Colombia",null,null],["202G21A",1,0,0,0,"JANSSEN","Colombia",null,null],["203S21A",1,0,0,0,"JANSSEN","Colombia",null,null],["204A21A",2,0,0,0,"JANSSEN","Colombia",null,null],["206#21A",1,0,0,0,"JANSSEN","Colombia",null,null],["207A21A",1,0,0,0,"JANSSEN","Colombia",null,null],["2081A211A",1,0,0,0,"JANSSEN","Colombia",null,null],["208A21A",1,0,0,0,"JANSSEN","Colombia",null,null],["210958",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["210963",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["213A 21A",1,0,0,0,"JANSSEN","Colombia",null,null],["ACC5853",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["055021A",1,0,0,0,"MODERNA","Colombia",null,null],["E40585",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["E40586",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EA5843",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EM9809",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EN0191",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EN1145",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EN1194",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["EN1195",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["ER1742",2,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["ER4449",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["ER8727",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["ER9449",7,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["ET 6924",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["ET6924 OR ET692",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null],["PCA0074",1,0,0,0,"PFIZER\\BIONTECH","Colombia",null,null]]}
@@ -1 +1 @@
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["EJ6789",1,1,0,0,"PFIZER\\BIONTECH","French Polynesia",null,null]]}
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["EJ6789",1,1,0,0,"PFIZER\\BIONTECH","French Polynesia",null,null],["EW6126",1,0,0,0,"PFIZER\\BIONTECH","French Polynesia",null,null]]}
+1 -1
View File
@@ -1 +1 @@
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["ER7449",8,1,0,0,"PFIZER\\BIONTECH","Georgia",null,null],["EY0581",17,0,0,1,"PFIZER\\BIONTECH","Georgia",null,null],["FC3180",1,0,0,0,"PFIZER\\BIONTECH","Georgia",null,null],["FD8813",3,0,0,0,"PFIZER\\BIONTECH","Georgia",null,null],["FF2153",1,0,0,0,"PFIZER\\BIONTECH","Georgia",null,null],["FF7416",1,0,0,0,"PFIZER\\BIONTECH","Georgia",null,null],["FF8844",1,0,0,0,"PFIZER\\BIONTECH","Georgia",null,null],["FG2872",2,0,0,0,"PFIZER\\BIONTECH","Georgia",null,null],["FG2943",2,0,0,0,"PFIZER\\BIONTECH","Georgia",null,null],["FP9681",1,0,0,0,"PFIZER\\BIONTECH","Georgia",null,null]]}
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["ER7449",10,1,0,0,"PFIZER\\BIONTECH","Georgia",null,null],["EY0581",19,0,0,1,"PFIZER\\BIONTECH","Georgia",null,null],["FC3180",1,0,0,0,"PFIZER\\BIONTECH","Georgia",null,null],["FD8813",5,0,0,0,"PFIZER\\BIONTECH","Georgia",null,null],["FF2153",1,0,0,0,"PFIZER\\BIONTECH","Georgia",null,null],["FF7416",1,0,0,0,"PFIZER\\BIONTECH","Georgia",null,null],["FF8844",1,0,0,0,"PFIZER\\BIONTECH","Georgia",null,null],["FG2872",2,0,0,0,"PFIZER\\BIONTECH","Georgia",null,null],["FG2943",2,0,0,0,"PFIZER\\BIONTECH","Georgia",null,null]]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1 +1 @@
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["FE8163",1,0,1,0,"PFIZER\\BIONTECH","Malaysia",null,null],["ET9096",1,0,1,1,"PFIZER\\BIONTECH","Malaysia",null,null],["FG1807",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["FN4075",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["FM9281",7,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["FM3809",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["FK6858",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["FJ1926",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["FH8773",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["FH4752",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["1F1044A",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["1K077-1A",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["FC2083",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["EY0584",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["EW0198",2,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["EP9605",2,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["EP2163",2,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["A1085",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["35559TB",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["FP8233",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null]]}
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["FE8163",1,0,1,0,"PFIZER\\BIONTECH","Malaysia",null,null],["ET9096",1,0,1,1,"PFIZER\\BIONTECH","Malaysia",null,null],["FG1807",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["FN4075",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["FM9281",6,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["FM3809",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["FK6858",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["FJ1926",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["FH8773",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["FH4752",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["1F1044A",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["1K077-1A",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["EY0584",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["EW0198",2,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["EP9605",2,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["EP2163",2,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["A1085",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["35559TB",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null],["FP8233",1,0,0,0,"PFIZER\\BIONTECH","Malaysia",null,null]]}
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1 +1 @@
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["FE1573",1,0,0,0,"PFIZER\\BIONTECH","Morocco",null,null]]}
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["FE1573",1,0,0,0,"PFIZER\\BIONTECH","Morocco",null,null],["FE2707",1,0,0,0,"PFIZER\\BIONTECH","Morocco",null,null]]}
+1 -1
View File
@@ -1 +1 @@
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["XE437",1,0,0,0,"JANSSEN","Namibia",null,null],["XE495",2,0,0,0,"JANSSEN","Namibia",null,null]]}
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[]}
+5 -1
View File
@@ -1 +1,5 @@
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["FJ8372-003",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FF4206-013",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FL1072-003",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FL1072-002",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["ET 9096",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FG0050",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FG7372-00054",1,0,1,1,"PFIZER\\BIONTECH","New Zealand",null,null],["FD9234.001",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FH9678",1,1,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FF4206-004",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FL1072",2,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FG7373-001",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FH3219",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["0040211",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FK0115-0100105",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FK9414",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FL072",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FG7372-D0052",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FF4222-011|20PG",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FG0050-006",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["1F1028A",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FF4222",2,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FE8163",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FC5029-005",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FC3558-003",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["F2382-002",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["EX2405",2,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["ET9096",2,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["ER7449-024",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["1F1057A",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FL4210",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null]]}
<<<<<<< HEAD
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["FJ8372-003",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FF4206-013",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FL1072-003",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FL1072-002",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["ET 9096",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FG0050",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FG7372-00054",1,0,1,1,"PFIZER\\BIONTECH","New Zealand",null,null],["FD9234.001",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FH9678",1,1,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FF4206-004",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FL1072",2,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FG7373-001",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FH3219",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["0040211",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FK0115-0100105",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FK9414",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FL072",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FG7372-D0052",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FF4222-011|20PG",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FG0050-006",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["1F1028A",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FF4222",2,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FE8163",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FC5029-005",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FC3558-003",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["F2382-002",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["EX2405",2,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["ET9096",2,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["ER7449-024",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["1F1057A",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FL4210",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null]]}
=======
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["FL1072-003",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FG7372-00054",1,0,1,1,"PFIZER\\BIONTECH","New Zealand",null,null],["FL1072-002",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["ET 9096",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FJ8372-003",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FH9678",1,1,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FD9234.001",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FF4206-004",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FF4206-013",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FG0050",1,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FL1072",2,0,1,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FK9414",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FK0115-0100105",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FH3219",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FG7373-001",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FG7372-D0052",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["0040211",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FG0050-006",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["1F1057A",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FF4222",2,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FE8163",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FC5029-005",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FC3558-003",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["F2382-002",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["EX2405",2,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["ET9096",2,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["ER7449-024",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null],["FF4222-011|20PG",1,0,0,0,"PFIZER\\BIONTECH","New Zealand",null,null]]}
>>>>>>> main
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["1B004A",1,0,0,1,"PFIZER\\BIONTECH","Russian Federation",null,null],["ASKU",1,0,0,1,"MODERNA","Russian Federation",null,null]]}
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["1B004A",1,0,0,1,"PFIZER\\BIONTECH","Russian Federation",null,null]]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1 +1 @@
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["TRC049F21A",1,1,0,0,"MODERNA","Thailand",null,null],["084M21A",1,1,0,0,"MODERNA","Thailand",null,null],["TRC3005841",3,2,0,0,"MODERNA","Thailand",null,null],["30125BA",3,0,2,1,"PFIZER\\BIONTECH","Thailand",null,null],["TR021F21A",2,1,0,0,"MODERNA","Thailand",null,null],["3005841",52,5,0,0,"MODERNA","Thailand",null,null],["021F21A",53,5,0,0,"MODERNA","Thailand",null,null],["049F21A",98,3,0,0,"MODERNA","Thailand",null,null],["FN1430",2,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["FF8841",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["FH3226",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["J07BX03",1,0,0,0,"MODERNA","Thailand",null,null],["FN4073",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["940913",4,0,0,0,"MODERNA","Thailand",null,null],["PCA0068",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["TRC021F21A",1,0,0,0,"MODERNA","Thailand",null,null],["EW0151",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["021F214",1,0,0,0,"MODERNA","Thailand",null,null],["8000844",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["36715TB",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["35627TB",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["3005841\/SR.4157",1,0,0,0,"MODERNA","Thailand",null,null],["1L085A",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["1K078A",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["1I064A",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["1F1060A",2,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["063K21A",8,0,0,0,"MODERNA","Thailand",null,null],["049F214",2,0,0,0,"MODERNA","Thailand",null,null],["36642TB",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null]]}
{"columns":["Batch","Adverse Reaction Reports","Deaths","Disabilities","Life Threatening Illnesses","Company","Countries","Severe reports","Lethality"],"data":[["TRC049F21A",1,1,0,0,"MODERNA","Thailand",null,null],["084M21A",1,1,0,0,"MODERNA","Thailand",null,null],["TRC3005841",3,2,0,0,"MODERNA","Thailand",null,null],["30125BA",3,0,2,1,"PFIZER\\BIONTECH","Thailand",null,null],["TR021F21A",2,1,0,0,"MODERNA","Thailand",null,null],["3005841",52,5,0,0,"MODERNA","Thailand",null,null],["021F21A",53,5,0,0,"MODERNA","Thailand",null,null],["049F21A",98,3,0,0,"MODERNA","Thailand",null,null],["FH3226",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["TRC021F21A",1,0,0,0,"MODERNA","Thailand",null,null],["PCA0068",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["J07BX03",1,0,0,0,"MODERNA","Thailand",null,null],["FN4073",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["FN1430",2,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["021F214",1,0,0,0,"MODERNA","Thailand",null,null],["FF8841",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["EW0151",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["3005841\/SR.4157",1,0,0,0,"MODERNA","Thailand",null,null],["1K078A",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["1I064A",1,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["1F1060A",2,0,0,0,"PFIZER\\BIONTECH","Thailand",null,null],["063K21A",8,0,0,0,"MODERNA","Thailand",null,null],["049F214",2,0,0,0,"MODERNA","Thailand",null,null],["940913",4,0,0,0,"MODERNA","Thailand",null,null]]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1
View File
@@ -0,0 +1 @@
{"batchcode": "!D0181", "histograms": [{"batchcodes": ["!D0181"], "histogram": {"Circulatory collapse": 1, "Hyperhidrosis": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "# 009C01A", "histograms": [{"batchcodes": ["# 009C01A"], "histogram": {"Blood pressure measurement": 1, "Body temperature": 1, "Headache": 1, "Pyrexia": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "# 015M20A", "histograms": [{"batchcodes": ["# 015M20A", "# 048A21A"], "histogram": {"Chills": 1, "Headache": 1, "Injection site pruritus": 1, "Injection site rash": 1, "Pain": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "# 048A21A", "histograms": [{"batchcodes": ["# 015M20A", "# 048A21A"], "histogram": {"Chills": 1, "Headache": 1, "Injection site pruritus": 1, "Injection site rash": 1, "Pain": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "# EN6201", "histograms": [{"batchcodes": ["# EN6201"], "histogram": {"Body temperature decreased": 1, "Body temperature increased": 1, "Chills": 1, "Headache": 1, "Injection site erythema": 1, "Injection site pain": 1, "Listless": 1, "Nausea": 1, "Pain": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "# EN6206", "histograms": [{"batchcodes": ["# EN6206"], "histogram": {"Hypoaesthesia": 1, "Paraesthesia": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "# EN6208", "histograms": [{"batchcodes": ["# EN6208"], "histogram": {"Dizziness": 1, "Feeling abnormal": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#$2613", "histograms": [{"batchcodes": ["#$2613", "EN6199"], "histogram": {"Amenorrhoea": 1, "Menstruation irregular": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#$8735", "histograms": [{"batchcodes": ["#$8735", "EW0168"], "histogram": {"Cardiomyopathy": 1, "Chest pain": 1, "Echocardiogram abnormal": 1, "Ejection fraction decreased": 1, "Electrocardiogram ST segment depression": 1, "Electrocardiogram ST segment elevation": 1, "Electrocardiogram abnormal": 1, "Left ventricular dysfunction": 1, "Stress cardiomyopathy": 1, "Troponin increased": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#0.3", "histograms": [{"batchcodes": ["#0.3"], "histogram": {"Chills": 1, "Fatigue": 1, "Headache": 1, "Myalgia": 1, "Nausea": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#001A21A", "histograms": [{"batchcodes": ["#001A21A"], "histogram": {"Abdominal discomfort": 1, "Dizziness": 1, "Fatigue": 1, "Gaze palsy": 1, "Headache": 1, "Hypoaesthesia": 1, "Loss of consciousness": 1, "Lymphadenopathy": 1, "Nasopharyngitis": 1, "Neck pain": 1, "Pain in extremity": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#001B214", "histograms": [{"batchcodes": ["#001B214"], "histogram": {"Asthenia": 1, "Back injury": 1, "Diarrhoea": 1, "Dizziness": 1, "Fall": 1, "Feeling abnormal": 1, "Feeling cold": 1, "Headache": 1, "Pyrexia": 1, "Vomiting": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#001B21A", "histograms": [{"batchcodes": ["#001B21A"], "histogram": {"Product administered to patient of inappropriate age": 2, "No adverse event": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#002A21A", "histograms": [{"batchcodes": ["#002A21A"], "histogram": {"Pulmonary embolism": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#002F21A", "histograms": [{"batchcodes": ["#002F21A"], "histogram": {"Off label use": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#003A21A", "histograms": [{"batchcodes": ["#003A21A"], "histogram": {"Herpes zoster": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#003B21A", "histograms": [{"batchcodes": ["#003B21A"], "histogram": {"Rash pruritic": 2, "Erythema": 1, "Injection site erythema": 1, "Injection site pain": 1, "Injection site reaction": 1, "Injection site swelling": 1, "Rash erythematous": 1, "Swelling": 1, "Vaccination site rash": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#003C21A", "histograms": [{"batchcodes": ["#003C21A"], "histogram": {"Chills": 1, "Feeling hot": 1, "Hyperhidrosis": 1, "Pain": 1, "Pyrexia": 1, "Vaccination site pain": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#004M20A", "histograms": [{"batchcodes": ["#004M20A"], "histogram": {"No adverse event": 2, "Chills": 1, "Musculoskeletal stiffness": 1, "Pain": 1, "Pain in extremity": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#005C21A", "histograms": [{"batchcodes": ["#005C21A", "#027B21A"], "histogram": {"Fatigue": 1, "Intermenstrual bleeding": 1, "Oligomenorrhoea": 1}}, {"batchcodes": ["#005C21A"], "histogram": {"Interchange of vaccine products": 1, "No adverse event": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#005M21A", "histograms": [{"batchcodes": ["#005M21A", "#033F21A", "#1802068"], "histogram": {"Body temperature increased": 1, "COVID-19": 1, "Chest X-ray abnormal": 1, "Pneumonia": 1, "SARS-CoV-2 test positive": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#006B21A", "histograms": [{"batchcodes": ["#006B21A", "#037B21A"], "histogram": {"Abdominal discomfort": 1, "Asthenia": 1, "Chills": 1, "Nausea": 1, "Pyrexia": 1}}, {"batchcodes": ["#006B21A", "#046B21A"], "histogram": {"Cough": 1, "Diarrhoea": 1, "Headache": 1, "Impaired work ability": 1, "Pyrexia": 1, "Rib fracture": 1, "Wheezing": 1}}, {"batchcodes": ["#006B21A"], "histogram": {"Chills": 1, "Decreased appetite": 1, "Injection site pain": 1, "Pain in extremity": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#006C21A", "histograms": [{"batchcodes": ["#006C21A"], "histogram": {"Vaccination site discharge": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#006M20A", "histograms": [{"batchcodes": ["#006M20A"], "histogram": {"Eye pruritus": 1, "Headache": 1, "Ocular hyperaemia": 1, "Pyrexia": 1, "Swelling of eyelid": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#007M20A", "histograms": [{"batchcodes": ["#007M20A"], "histogram": {"Fatigue": 1, "Headache": 1, "Injection site erythema": 1, "Pain in extremity": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#008B21A", "histograms": [{"batchcodes": ["#008B21A"], "histogram": {"Blood pressure increased": 1, "Feeling abnormal": 1, "Vaccine positive rechallenge": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#008B27-2A", "histograms": [{"batchcodes": ["#008B27-2A"], "histogram": {"Injection site erythema": 1, "Injection site rash": 1, "Rash papular": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#009D21A", "histograms": [{"batchcodes": ["#009D21A"], "histogram": {"Dizziness": 1, "Dyspnoea": 1, "Headache": 1, "Listless": 1, "Vaccination site pain": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#010A21A", "histograms": [{"batchcodes": ["#010A21A"], "histogram": {"Arthralgia": 1, "Asthenopia": 1, "Dyspnoea": 1, "Fatigue": 1, "Myalgia": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#010M20A", "histograms": [{"batchcodes": ["#010M20A"], "histogram": {"Asthenia": 1, "Feeling abnormal": 1, "Guillain-Barre syndrome": 1, "Immunoglobulin therapy": 1, "Lumbar puncture abnormal": 1}}]}
@@ -0,0 +1 @@
{"batchcode": "#011 MZOA (7/16", "histograms": [{"batchcodes": ["#011 MZOA (7/16"], "histogram": {"Erythema": 1, "Induration": 1, "Pain": 1, "Pruritus": 1, "Swelling": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#011A21A", "histograms": [{"batchcodes": ["#011A21A"], "histogram": {"Arthralgia": 1, "Asthenia": 1, "Chills": 1, "Deafness": 1, "Dizziness": 1, "Fatigue": 1, "Head discomfort": 1, "Headache": 1, "Hyperacusis": 1, "Hypoaesthesia": 1, "Myalgia": 1, "Nausea": 1, "Tinnitus": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#011J20A", "histograms": [{"batchcodes": ["#011J20A"], "histogram": {"Dermatitis allergic": 1, "Hypersensitivity": 1, "Loss of personal independence in daily activities": 1, "Vasculitis": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#011L20A; 030L", "histograms": [{"batchcodes": ["#011L20A; 030L"], "histogram": {"Angiogram": 1, "Blood test": 1, "Computerised tomogram head abnormal": 1, "IIIrd nerve paralysis": 1, "Lumbar puncture": 1, "Magnetic resonance imaging head abnormal": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#011M20A", "histograms": [{"batchcodes": ["#011M20A", "030A21A"], "histogram": {"Body temperature increased": 1, "Injection site erythema": 1, "Injection site pain": 1, "Injection site pruritus": 1, "Injection site swelling": 1, "Injection site warmth": 1}}, {"batchcodes": ["#011M20A"], "histogram": {"Skin warm": 3, "Fatigue": 2, "Nasal congestion": 2, "Rash erythematous": 2, "Rash pruritic": 2, "Throat irritation": 2, "Blood test": 1, "Chest X-ray": 1, "Dyspepsia": 1, "Erythema": 1, "Fear": 1, "Feeling abnormal": 1, "Hypersensitivity": 1, "Insomnia": 1, "Malaise": 1, "Pain": 1, "Pain in extremity": 1, "Peripheral swelling": 1, "Respiratory arrest": 1, "Vaccination site pain": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#011M21A", "histograms": [{"batchcodes": ["#011M21A"], "histogram": {"Arthralgia": 1, "Depression": 1, "Dizziness": 1, "Fatigue": 1, "Headache": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#012120A", "histograms": [{"batchcodes": ["#012120A"], "histogram": {"Arthralgia": 1, "Diarrhoea": 1, "Fatigue": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#012A21A", "histograms": [{"batchcodes": ["#012A21A"], "histogram": {"Abdominal discomfort": 1, "Arthralgia": 1, "Burning sensation": 1, "Chills": 1, "Decreased appetite": 1, "Diarrhoea": 1, "Dyspepsia": 1, "Fatigue": 1, "Flatulence": 1, "Headache": 1, "Injection site erythema": 1, "Injection site pain": 1, "Injection site pruritus": 1, "Injection site swelling": 1, "Insomnia": 1, "Limb discomfort": 1, "Lymphadenopathy": 1, "Nausea": 1, "Oropharyngeal pain": 1, "Pain": 1, "Tenderness": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#012F21A", "histograms": [{"batchcodes": ["#012F21A"], "histogram": {"Back pain": 1, "Chills": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#012L20A", "histograms": [{"batchcodes": ["#012L20A"], "histogram": {"Condition aggravated": 1, "Pneumonia aspiration": 1, "Pruritus": 1, "Pyrexia": 1, "Rash": 1, "Seizure": 1, "Status epilepticus": 1, "Urticaria": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#012M20A", "histograms": [{"batchcodes": ["#012M20A"], "histogram": {"Hypersensitivity": 1, "Injection site mass": 1, "Injection site pruritus": 1, "Injection site rash": 1, "Injection site swelling": 1, "Oedema peripheral": 1, "Pain": 1, "Pruritus": 1, "Rash macular": 1, "Skin warm": 1, "Tenderness": 1, "Urticaria": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#013A21A", "histograms": [{"batchcodes": ["#013A21A"], "histogram": {"Arthralgia": 1, "Blood pressure measurement": 1, "Chills": 1, "Dizziness": 1, "Fatigue": 1, "Feeling abnormal": 1, "Headache": 1, "Insomnia": 1, "Nausea": 1, "Pain": 1, "Pruritus": 1, "Pyrexia": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#013L20A", "histograms": [{"batchcodes": ["#013L20A"], "histogram": {"Aphasia": 1, "Cerebral infarction": 1, "Computerised tomogram head abnormal": 1, "Erythema": 1, "Injection site erythema": 1, "Injection site warmth": 1, "Pruritus": 1, "Rash": 1, "Rash erythematous": 1, "Rash pruritic": 1, "Transient ischaemic attack": 1, "Vaccination site pain": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#013L2OA", "histograms": [{"batchcodes": ["#013L2OA"], "histogram": {"Fatigue": 1, "Headache": 1, "Oropharyngeal pain": 1}}]}
@@ -0,0 +1 @@
{"batchcode": "#013M20A, # 030", "histograms": [{"batchcodes": ["#013M20A, # 030"], "histogram": {"Aggression": 1, "Anion gap": 1, "Basophil percentage": 1, "Bilirubin urine": 1, "Blood calcium normal": 1, "Blood chloride increased": 1, "Blood creatinine normal": 1, "Blood glucose normal": 1, "Blood potassium normal": 1, "Blood sodium normal": 1, "Blood urea normal": 1, "Blood urine present": 1, "Carbon dioxide normal": 1, "Chest X-ray": 1, "Computerised tomogram head": 1, "Confusional state": 1, "Differential white blood cell count": 1, "Eosinophil percentage": 1, "Full blood count": 1, "Glomerular filtration rate normal": 1, "Glucose urine absent": 1, "Haematocrit normal": 1, "Haemoglobin normal": 1, "Lymphocyte count": 1, "Lymphocyte percentage decreased": 1, "Mean cell haemoglobin concentration normal": 1, "Mean cell haemoglobin increased": 1, "Mean cell volume increased": 1, "Mean platelet volume decreased": 1, "Metabolic function test": 1, "Monocyte count": 1, "Monocyte percentage increased": 1, "Neutrophil count": 1, "Neutrophil percentage increased": 1, "Nitrite urine absent": 1, "Platelet count normal": 1, "Protein urine absent": 1, "Red blood cell count decreased": 1, "Red blood cells urine positive": 1, "Red cell distribution width normal": 1, "Specific gravity urine normal": 1, "Urinary sediment present": 1, "Urine analysis abnormal": 1, "Urine ketone body absent": 1, "Urine leukocyte esterase": 1, "Urobilinogen urine": 1, "White blood cell count normal": 1, "White blood cells urine positive": 1, "pH urine increased": 1}}]}
@@ -0,0 +1 @@
{"batchcode": "#013M20A, #030A", "histograms": [{"batchcodes": ["#013M20A, #030A"], "histogram": {"Basophil percentage decreased": 1, "COVID-19": 1, "Chest X-ray": 1, "Cough": 1, "Differential white blood cell count": 1, "Electrocardiogram": 1, "Eosinophil percentage decreased": 1, "Full blood count": 1, "Haematocrit normal": 1, "Haemoglobin normal": 1, "Headache": 1, "Hypoxia": 1, "Lymphocyte count decreased": 1, "Lymphocyte percentage decreased": 1, "Mean cell haemoglobin concentration normal": 1, "Mean cell haemoglobin normal": 1, "Mean cell volume normal": 1, "Mean platelet volume normal": 1, "Monocyte count": 1, "Monocyte percentage": 1, "Myalgia": 1, "Neutrophil count increased": 1, "Neutrophil percentage increased": 1, "Platelet count normal": 1, "Red blood cell count normal": 1, "Red cell distribution width normal": 1, "SARS-CoV-2 test positive": 1, "White blood cell count increased": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#013M20A", "histograms": [{"batchcodes": ["#013M20A"], "histogram": {"Anxiety": 1, "Dizziness": 1, "Feeling abnormal": 1, "Heart rate irregular": 1, "Nervousness": 1, "Respiratory rate decreased": 1, "Stress": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#014F21A", "histograms": [{"batchcodes": ["#014F21A", "#ER2613", "#EW0161"], "histogram": {"Cerebral artery occlusion": 1, "Cerebral thrombosis": 1, "Cerebrovascular accident": 1, "Computerised tomogram": 1, "Computerised tomogram head abnormal": 1, "Condition aggravated": 1, "Electrocardiogram": 1, "Fatigue": 1, "Hypertension": 1, "Injection site pain": 1, "Laboratory test": 1, "Magnetic resonance imaging": 1, "Nausea": 1, "Vertigo": 1, "Vomiting": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#014M20A", "histograms": [{"batchcodes": ["#014M20A"], "histogram": {"Balance disorder": 1, "Chest X-ray": 1, "Computerised tomogram": 1, "Concussion": 1, "Dizziness": 1, "Fall": 1, "Fatigue": 1, "Head injury": 1}}]}
@@ -0,0 +1 @@
{"batchcode": "#015M20A, #044A", "histograms": [{"batchcodes": ["#015M20A, #044A"], "histogram": {"Alanine aminotransferase normal": 1, "Anion gap normal": 1, "Aspartate aminotransferase increased": 1, "Base excess": 1, "Basophil percentage decreased": 1, "Bilirubin urine": 1, "Blood albumin decreased": 1, "Blood alkaline phosphatase normal": 1, "Blood bicarbonate increased": 1, "Blood bilirubin normal": 1, "Blood calcium normal": 1, "Blood chloride normal": 1, "Blood creatine phosphokinase MB": 1, "Blood creatine phosphokinase increased": 1, "Blood creatinine increased": 1, "Blood gases": 1, "Blood glucose normal": 1, "Blood lactate dehydrogenase increased": 1, "Blood magnesium normal": 1, "Blood methaemoglobin": 1, "Blood pH": 1, "Blood phosphorus normal": 1, "Blood potassium normal": 1, "Blood sodium normal": 1, "Blood urea increased": 1, "Blood urine absent": 1, "Brain natriuretic peptide increased": 1, "COVID-19": 1, "Carbon dioxide normal": 1, "Carboxyhaemoglobin normal": 1, "Chest X-ray": 1, "Cortisol increased": 1, "Differential white blood cell count": 1, "Dyspnoea": 1, "Eosinophil percentage decreased": 1, "Fall": 1, "Full blood count": 1, "Glomerular filtration rate decreased": 1, "Glucose urine absent": 1, "Haematocrit decreased": 1, "Haemoglobin decreased": 1, "Hypoxia": 1, "International normalised ratio increased": 1, "Lipase normal": 1, "Lymphocyte count normal": 1, "Lymphocyte percentage decreased": 1, "Mean cell haemoglobin concentration normal": 1, "Mean cell haemoglobin normal": 1, "Mean cell volume normal": 1, "Mean platelet volume normal": 1, "Mobility decreased": 1, "Monocyte count normal": 1, "Monocyte percentage": 1, "Neutrophil count normal": 1, "Neutrophil percentage increased": 1, "Nitrite urine absent": 1, "Oxygen consumption decreased": 1, "PCO2 increased": 1, "PO2 decreased": 1, "Platelet count normal": 1, "Positive airway pressure therapy": 1, "Protein total": 1, "Protein urine absent": 1, "Prothrombin time prolonged": 1, "Red blood cell count decreased": 1, "Red blood cells urine": 1, "Red cell distribution width increased": 1, "Respiratory distress": 1, "SARS-CoV-2 test positive": 1, "Sepsis": 1, "Specific gravity urine normal": 1, "Troponin I increased": 1, "Urine analysis": 1, "Urine ketone body absent": 1, "Urine leukocyte esterase": 1, "Urobilinogen urine decreased": 1, "Venous oxygen saturation decreased": 1, "White blood cell count normal": 1, "White blood cells urine negative": 1, "pH urine normal": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#015M20A", "histograms": [{"batchcodes": ["#015M20A", "#027A21A"], "histogram": {"Condition aggravated": 1, "Haemoglobin decreased": 1, "Lymphoma": 1, "Transfusion": 1, "White blood cell count increased": 1}}, {"batchcodes": ["#015M20A"], "histogram": {"Injection site pain": 1, "Insomnia": 1, "Nausea": 1, "Rhinorrhoea": 1, "Vomiting": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#0161321A", "histograms": [{"batchcodes": ["#0161321A"], "histogram": {"Arthralgia": 1, "Body temperature increased": 1, "Chills": 1, "Decreased appetite": 1, "Diarrhoea": 1, "Fatigue": 1, "Headache": 1, "Hypersomnia": 1, "Injection site pain": 1, "Musculoskeletal stiffness": 1, "Myalgia": 1, "Nausea": 1, "Pain": 1, "Pain in extremity": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#016B21A", "histograms": [{"batchcodes": ["#016B21A"], "histogram": {"Arthralgia": 1, "Burning sensation": 1, "Chills": 1, "Erythema": 1, "Eye paraesthesia": 1, "Fatigue": 1, "Headache": 1, "Lymphadenopathy": 1, "Myalgia": 1, "Pain in extremity": 1, "Paraesthesia": 1, "Pruritus": 1, "Rash erythematous": 1, "Skin warm": 1, "Swelling": 1, "Tongue disorder": 1, "Vaccination site pain": 1, "Vaccination site pruritus": 1, "Vaccination site swelling": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#016M20A", "histograms": [{"batchcodes": ["#016M20A"], "histogram": {"Injection site rash": 1, "Pain": 1, "Pruritus": 1, "Pyrexia": 1, "Urticaria": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#017821A", "histograms": [{"batchcodes": ["#017821A"], "histogram": {"Chills": 1, "Headache": 1, "Nausea": 1, "Pyrexia": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#017B21A", "histograms": [{"batchcodes": ["#017B21A", "#030A21A"], "histogram": {"Atrial fibrillation": 1, "Blood pressure decreased": 1, "Chest discomfort": 1, "Chest pain": 1, "Computerised tomogram": 1, "Electrocardiogram": 1, "Heart rate increased": 1, "Myocardial infarction": 1, "Pain in extremity": 1}}, {"batchcodes": ["#017B21A"], "histogram": {"Chills": 1, "Hypokinesia": 1, "Injection site pain": 1, "Injection site swelling": 1, "Pain": 1, "Pain in extremity": 1, "Pyrexia": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#017C21A", "histograms": [{"batchcodes": ["#017C21A"], "histogram": {"Adenovirus test": 1, "Borrelia test": 1, "Chest pain": 1, "Cytomegalovirus test": 1, "Distractibility": 1, "Echocardiogram normal": 1, "Electrocardiogram ST segment elevation": 1, "Electrocardiogram abnormal": 1, "Enterovirus test": 1, "Epstein-Barr virus test": 1, "Erythema": 1, "Feeling cold": 1, "Feeling hot": 1, "Magnetic resonance imaging heart": 1, "Musculoskeletal stiffness": 1, "Myocarditis": 1, "Nodule": 1, "Pain in extremity": 1, "Parvovirus B19 test": 1, "Pericarditis": 1, "Pruritus": 1, "Scratch": 1, "Skin swelling": 1, "Troponin increased": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#018B21A EXP 9", "histograms": [{"batchcodes": ["#018B21A EXP 9"], "histogram": {"Injection site erythema": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#018B21A", "histograms": [{"batchcodes": ["#018B21A"], "histogram": {"Injection site erythema": 1, "Injection site pain": 1, "Injection site pruritus": 1, "Injection site swelling": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#019B21A", "histograms": [{"batchcodes": ["#019B21A"], "histogram": {"Arthralgia": 1, "Asthenia": 1, "Breast mass": 1, "Discharge": 1, "Dizziness": 1, "Erythema": 1, "Fatigue": 1, "Headache": 1, "Injected limb mobility decreased": 1, "Laboratory test": 1, "Loss of personal independence in daily activities": 1, "Mammogram": 1, "Muscular weakness": 1, "Nausea": 1, "Skin lesion": 1, "Ultrasound scan": 1, "Vertigo": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#01B21A", "histograms": [{"batchcodes": ["#01B21A"], "histogram": {"Fatigue": 1, "Feeling abnormal": 1, "Pain": 1, "Pyrexia": 1}}]}
@@ -0,0 +1 @@
{"batchcode": "#021C21A EXP 5/", "histograms": [{"batchcodes": ["#021C21A EXP 5/", "#027B21A EXP 4/"], "histogram": {"Bruxism": 1, "Chills": 1, "Decreased appetite": 1, "Dizziness": 1, "Dry mouth": 1, "Dysphagia": 1, "Feeling guilty": 1, "Hallucination": 1, "Injection site pain": 1, "Muscle spasms": 1, "Myalgia": 1, "Pyrexia": 1, "Skin sensitisation": 1, "Time perception altered": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#022M20A", "histograms": [{"batchcodes": ["#022M20A"], "histogram": {"Erythema": 1, "Pain": 1, "Vaccination site swelling": 1}}]}
@@ -0,0 +1 @@
{"batchcode": "#023C21A, #033C", "histograms": [{"batchcodes": ["#023C21A, #033C"], "histogram": {"Condition aggravated": 1, "Dysphagia": 1, "Failure to thrive": 1, "Laboratory test": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#023M20A", "histograms": [{"batchcodes": ["#023M20A"], "histogram": {"Feeling abnormal": 3, "Asthenia": 2, "Fatigue": 2, "Headache": 2, "Pain": 2, "Pain in extremity": 2, "Pyrexia": 2, "Ageusia": 1, "Angina pectoris": 1, "Anxiety": 1, "Echocardiogram": 1, "Electrocardiogram ambulatory": 1, "Heart rate increased": 1, "Injected limb mobility decreased": 1, "Injection site pain": 1, "Laboratory test": 1, "Lethargy": 1, "Malaise": 1, "Nausea": 1, "Stress": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#024C21A", "histograms": [{"batchcodes": ["#024C21A"], "histogram": {"Blood test normal": 1, "Inflammation": 1, "Ligament pain": 1, "Ligamentitis": 1, "Tendon pain": 1, "Ultrasound scan abnormal": 1}}]}
@@ -0,0 +1 @@
{"batchcode": "#024M20A, #007B", "histograms": [{"batchcodes": ["#024M20A, #007B"], "histogram": {"Anion gap increased": 1, "Aspartate aminotransferase decreased": 1, "Asthenia": 1, "Basophil percentage decreased": 1, "Blood albumin normal": 1, "Blood alkaline phosphatase normal": 1, "Blood bilirubin normal": 1, "Blood calcium increased": 1, "Blood chloride decreased": 1, "Blood creatinine increased": 1, "Blood glucose normal": 1, "Blood lactate dehydrogenase normal": 1, "Blood lactic acid increased": 1, "Blood phosphorus increased": 1, "Blood potassium increased": 1, "Blood sodium decreased": 1, "Blood urea increased": 1, "Carbon dioxide decreased": 1, "Cardiomyopathy": 1, "Chest X-ray": 1, "Chronic kidney disease": 1, "Confusional state": 1, "Cough": 1, "Disorientation": 1, "Electrocardiogram": 1, "Eosinophil percentage decreased": 1, "Full blood count": 1, "Glomerular filtration rate decreased": 1, "Haematocrit normal": 1, "Haemoglobin normal": 1, "Indeterminate investigation result": 1, "Lipase decreased": 1, "Lymphocyte count": 1, "Lymphocyte percentage decreased": 1, "Mean cell haemoglobin concentration normal": 1, "Mean cell haemoglobin normal": 1, "Mean cell volume normal": 1, "Mean platelet volume normal": 1, "Monocyte count increased": 1, "Monocyte percentage": 1, "Nausea": 1, "Neutrophil count increased": 1, "Neutrophil percentage increased": 1, "Platelet count increased": 1, "Protein total increased": 1, "Red blood cell count decreased": 1, "Red cell distribution width normal": 1, "Renal failure": 1, "Troponin normal": 1, "Vomiting": 1, "White blood cell count increased": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#024M20A", "histograms": [{"batchcodes": ["#024M20A"], "histogram": {"Alopecia": 1, "Anxiety": 1, "Blood test": 1, "Blood thyroid stimulating hormone decreased": 1, "Feeling abnormal": 1, "Heart rate irregular": 1, "Hyperhidrosis": 1, "Insomnia": 1, "Muscular weakness": 1, "Palpitations": 1, "Pyrexia": 1, "Scan thyroid gland": 1, "Thyroiditis subacute": 1, "Thyroxine increased": 1, "Tremor": 1}}]}
+1
View File
@@ -0,0 +1 @@
{"batchcode": "#02512A", "histograms": [{"batchcodes": ["#02512A"], "histogram": {"Arthralgia": 1, "Periarthritis": 1}}]}
@@ -0,0 +1 @@
{"batchcode": "#025B21A, #048B", "histograms": [{"batchcodes": ["#025B21A, #048B"], "histogram": {"Alanine aminotransferase normal": 1, "Anion gap": 1, "Aspartate aminotransferase normal": 1, "Base excess": 1, "Basophil percentage decreased": 1, "Blood albumin decreased": 1, "Blood alkaline phosphatase normal": 1, "Blood bicarbonate decreased": 1, "Blood bilirubin normal": 1, "Blood calcium decreased": 1, "Blood chloride decreased": 1, "Blood creatinine normal": 1, "Blood gases": 1, "Blood glucose normal": 1, "Blood lactate dehydrogenase increased": 1, "Blood methaemoglobin": 1, "Blood pH normal": 1, "Blood potassium normal": 1, "Blood sodium decreased": 1, "Blood urea normal": 1, "COVID-19": 1, "Carbon dioxide increased": 1, "Chest X-ray": 1, "Chest pain": 1, "Differential white blood cell count": 1, "Dyspnoea": 1, "Eosinophil percentage": 1, "Fibrin D dimer increased": 1, "Full blood count": 1, "Glomerular filtration rate normal": 1, "Haematocrit normal": 1, "Haemoglobin normal": 1, "Lymphocyte count decreased": 1, "Lymphocyte percentage decreased": 1, "Mean cell haemoglobin concentration normal": 1, "Mean cell haemoglobin increased": 1, "Mean cell volume increased": 1, "Mean platelet volume decreased": 1, "Monocyte count normal": 1, "Monocyte percentage": 1, "Neutrophil count increased": 1, "Neutrophil percentage increased": 1, "PCO2 decreased": 1, "PO2 decreased": 1, "Platelet count normal": 1, "Protein total normal": 1, "Red blood cell count decreased": 1, "Red cell distribution width normal": 1, "SARS-CoV-2 test positive": 1, "Venous oxygen saturation decreased": 1, "White blood cell count increased": 1}}]}

Some files were not shown because too many files have changed in this diff Show More