File: index-coop-notional-trade-module/contracts/protocol/modules/v1/NotionalTradeModule.sol

158:          uint16 _currencyId,

159:          uint40 _maturity,

187:          uint16 _currencyId,

188:          uint40 _maturity,

368:      function _deployWrappedfCash(uint16 _currencyId, uint40 _maturity) internal returns(IWrappedfCashComplete) {

368:      function _deployWrappedfCash(uint16 _currencyId, uint40 _maturity) internal returns(IWrappedfCashComplete) {

376:      function _getWrappedfCash(uint16 _currencyId, uint40 _maturity) internal view returns(IWrappedfCashComplete) {

376:      function _getWrappedfCash(uint16 _currencyId, uint40 _maturity) internal view returns(IWrappedfCashComplete) {

519:          uint32 minImpliedRate = 0;

545:          uint32 maxImpliedRate = type(uint32).max;

639:          try IWrappedfCash(_fCashPosition).getDecodedID() returns(uint16 _currencyId, uint40 _maturity){

639:          try IWrappedfCash(_fCashPosition).getDecodedID() returns(uint16 _currencyId, uint40 _maturity){
File: notional-wrapped-fcash/contracts/wfCashBase.sol

35:       function initialize(uint16 currencyId, uint40 maturity) external override initializer {

35:       function initialize(uint16 currencyId, uint40 maturity) external override initializer {

83:       function getMaturity() public view override returns (uint40 maturity) {

93:       function getCurrencyId() public view override returns (uint16 currencyId) {

98:       function getDecodedID() public view override returns (uint16 currencyId, uint40 maturity) {

98:       function getDecodedID() public view override returns (uint16 currencyId, uint40 maturity) {

103:      function decimals() public pure override returns (uint8) {

109:      function getMarketIndex() public view override returns (uint8) {
File: notional-wrapped-fcash/contracts/proxy/WrappedfCashFactory.sol

15:       event WrapperDeployed(uint16 currencyId, uint40 maturity, address wrapper);

15:       event WrapperDeployed(uint16 currencyId, uint40 maturity, address wrapper);

21:       function _getByteCode(uint16 currencyId, uint40 maturity) internal view returns (bytes memory) {

21:       function _getByteCode(uint16 currencyId, uint40 maturity) internal view returns (bytes memory) {

26:       function deployWrapper(uint16 currencyId, uint40 maturity) external returns (address) {

26:       function deployWrapper(uint16 currencyId, uint40 maturity) external returns (address) {

39:       function computeAddress(uint16 currencyId, uint40 maturity) public view returns (address) {

39:       function computeAddress(uint16 currencyId, uint40 maturity) public view returns (address) {
File: notional-wrapped-fcash/contracts/wfCashERC4626.sol

18:           uint16 currencyId = getCurrencyId();

31:           (uint16 currencyId, uint40 maturity) = getDecodedID();

31:           (uint16 currencyId, uint40 maturity) = getDecodedID();

100:              (uint16 currencyId, uint40 maturity) = getDecodedID();

100:              (uint16 currencyId, uint40 maturity) = getDecodedID();

120:              (uint16 currencyId, uint40 maturity) = getDecodedID();

120:              (uint16 currencyId, uint40 maturity) = getDecodedID();

139:              (uint16 currencyId, uint40 maturity) = getDecodedID();

139:              (uint16 currencyId, uint40 maturity) = getDecodedID();

157:              (uint16 currencyId, uint40 maturity) = getDecodedID();

157:              (uint16 currencyId, uint40 maturity) = getDecodedID();

243:      function _safeNegInt88(uint256 x) private pure returns (int88) {
File: notional-wrapped-fcash/contracts/wfCashLogic.sol

29:           uint88 fCashAmount,

31:           uint32 minImpliedRate

43:           uint88 fCashAmount,

45:           uint32 minImpliedRate

52:           uint88 fCashAmount,

54:           uint32 minImpliedRate,

169:          uint32 maxImpliedRate

187:          uint32 maxImpliedRate

222:              uint16 currencyId = getCurrencyId();

261:          uint16 currencyId,

263:          uint88 assetInternalCashClaim,

279:          uint32 maxImpliedRate

315:      function _safeUint88(uint256 x) internal pure returns (uint88) {
