WildcatMarketControllerFactory Line 138
The getDeployedControllers() function takes a start and end index of the controllers to be retrieved. However, due to the current implementation of the function, it only returns controllers from the start index to end-1. In other words, the controller at the end index is not included in the returned list. 
This simple POC can be added to the WIldcatMarketController test to check for the issue.
The same issue also exists in the functions:
To resolve this issue, the getDeployedControllers() function should be rewritten as follows:
The same change should be applied to other affected functions as well.
