SQLite format 3@ .4  K [ Q/3indexFingerprintTableBookkeepingIdIndexFingerprintRecordCREATE INDEX FingerprintTableBookkeepingIdIndex on FingerprintRecord(bookkeepingId)G%indexExportTableBookkeepingIdIndexExportRecordCREATE INDEX ExportTableBookkeepingIdIndex on ExportRecord(bookkeepingId)l//tableFingerprintRecordFingerprintRecordCREATE TABLE FingerprintRecord ( bookkeepingId integer not null, name text not null, value text not null, FOREIGN KEY(bookkeepingId) REFERENCES ExportRecord(bookkeepingId) )P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)`%%tableExportRecordExportRecordCREATE TABLE ExportRecord ( bookkeepingId integer primary key autoincrement, counter integer not null, fileHash text not null, fileHashDescription text not null )