fork download
  1. #include <iostream>
  2. #include <sstream>
  3. using namespace std;
  4.  
  5. struct Date {
  6. char month;
  7. char day;
  8. int year;
  9. };
  10.  
  11. int main() {
  12.  
  13. Date* date = new Date{};
  14.  
  15. while (true)
  16. {
  17. bool success = true;
  18. std::cout << "Enter the date added to inventory in the format mm/dd/yyyy: ";
  19. std::string mm, dd, yyyy;
  20. std::string temp;
  21. std::getline(std::cin,temp);
  22.  
  23. std::cout << "The date is " << temp << std::endl;
  24.  
  25. for (int i=0; i<temp.size(); i++)
  26. {
  27. if ((temp[i]=='/') || (temp[i]='\\') || (temp[i] == '-'))
  28. temp[i] = ' ';
  29. }
  30.  
  31. std::cout << "The date is " << temp << std::endl;
  32.  
  33. std::stringstream datestream(temp);
  34. datestream >> mm >> dd >> yyyy;
  35. try {
  36. date->month = static_cast<char>(std::stoi(mm.c_str()));
  37. date->day = static_cast<char>(std::stoi(dd.c_str()));
  38. date->year = static_cast<int>(std::stoi(yyyy.c_str()));
  39. } catch (std::invalid_argument e)
  40. {
  41. std::cout << "We could not interpret your input. \n";
  42. success = false;
  43. } catch (std::out_of_range e)
  44. {
  45. std::cout << "Your input was too large. Please try a smaller number a smaller number for dd, mm, and yyyy. \n";
  46. success = false;
  47. }
  48. if (success)
  49. break;
  50. }
  51. return 0;
  52. }
Runtime error #stdin #stdout 0.01s 4776KB
stdin
02 20 2021
stdout
Enter the date added to inventory in the format mm/dd/yyyy: The date is 02 20 2021
The date is           
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
Enter the date added to inventory in the format mm/dd/yyyy: The date is 
The date is 
We could not interpret your input. 
En