'use strict'; class Copula { constructor(b1, b2) { this.b1 = b1; this.b2 = b2; } } module.exports = Copula;