2020-03-03 02:36:26 +01:00
|
|
|
'use strict'
|
|
|
|
|
2021-04-18 19:02:54 +02:00
|
|
|
const baseProfile = require('./base.json')
|
2020-03-03 02:36:26 +01:00
|
|
|
const products = require('./products')
|
|
|
|
|
|
|
|
const insaProfile = {
|
2021-04-18 19:02:54 +02:00
|
|
|
...baseProfile,
|
2020-03-03 02:36:26 +01:00
|
|
|
locale: 'de-DE',
|
|
|
|
timezone: 'Europe/Berlin',
|
|
|
|
// https://runkit.com/derhuerst/hafas-decrypt-encrypted-mac-salt
|
|
|
|
// https://gist.github.com/derhuerst/fd2f81a597bde66cb1f689006d574d7f#file-config-txt-L22-L23
|
|
|
|
salt: Buffer.from('SP31mBufSyCLmNxp', 'utf-8'),
|
|
|
|
addMicMac: true,
|
|
|
|
|
|
|
|
products: products,
|
|
|
|
|
|
|
|
trip: true,
|
|
|
|
radar: true,
|
|
|
|
reachableFrom: true,
|
2021-04-18 22:31:41 +02:00
|
|
|
refreshJourneyUseOutReconL: true,
|
2020-03-03 02:36:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = insaProfile;
|