Designed with EdrawMax, this template shows a flowchart for a shipping cost calculation algorithm. Starting with “Start,” it reads the weight of a package. If the weight is less than 1, the shipping cost is set to 5. If the weight is less than or equal to 3, the cost is 10. For weights over 3, it calculates an extra weight (weight - 3) and sets the cost as 15 plus twice the extra weight. Additionally, there's a check on whether a value (presumably related to weight or an intermediate calculation) is even. If it is, the shipping cost is 5; if not, it's 10. Finally, the calculated shipping cost is outputted at the “END” step. This diagram helps in understanding the logic behind shipping cost computations.