<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div>
<div>
<div style="direction: ltr;">Couldn\u2019t the musical notes go in the spaces, seat <span id="ms-outlook-ios-cursor">
</span>fillers:)</div>
</div>
<div><br>
</div>
<div class="ms-outlook-ios-signature"></div>
</div>
<hr style="display:inline-block;width:98%" tabindex="-1">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" style="font-size:11pt" color="#000000"><b>From:</b> Projects &lt;projects-bounces@vicpimakers.ca&gt; on behalf of Michelle Wiboltt &lt;michellewiboltt@outlook.com&gt;<br>
<b>Sent:</b> Sunday, October 11, 2020 8:28:37 PM<br>
<b>To:</b> Talk about Raspberry Pi / embeded projects &lt;projects@vicpimakers.ca&gt;<br>
<b>Subject:</b> Re: [VicPiMakers Projects] Jim's Challenge - Output 10 (caesar cipher)</font>
<div>&nbsp;</div>
</div>
<div>
<div>
<div>
<div style="direction:ltr">And off to the corpses...life everlasting... .see?\U0001f973<span id="x_ms-outlook-ios-cursor"></span></div>
</div>
<div><br>
</div>
<div class="x_ms-outlook-ios-signature"></div>
</div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="x_divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><b>From:</b> Projects &lt;projects-bounces@vicpimakers.ca&gt; on behalf of Michelle Wiboltt &lt;michellewiboltt@outlook.com&gt;<br>
<b>Sent:</b> Sunday, October 11, 2020 8:26:12 PM<br>
<b>To:</b> Talk about Raspberry Pi / embeded projects &lt;projects@vicpimakers.ca&gt;<br>
<b>Subject:</b> Re: [VicPiMakers Projects] Jim's Challenge - Output 10 (caesar cipher)</font>
<div>&nbsp;</div>
</div>
<div>
<div>
<div>
<div style="direction:ltr">Oh, maybe we change corpus\u2019? Wouldn\u2019t that be easier?<span id="x_x_ms-outlook-ios-cursor"></span></div>
</div>
<div><br>
</div>
<div class="x_x_ms-outlook-ios-signature"></div>
</div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="x_x_divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><b>From:</b> Projects &lt;projects-bounces@vicpimakers.ca&gt; on behalf of Patrick McMorris &lt;patrick@mcmorris.ca&gt;<br>
<b>Sent:</b> Sunday, October 11, 2020 8:24:00 PM<br>
<b>To:</b> Talk about Raspberry Pi / embeded projects &lt;projects@vicpimakers.ca&gt;<br>
<b>Subject:</b> Re: [VicPiMakers Projects] Jim's Challenge - Output 10 (caesar cipher)</font>
<div>&nbsp;</div>
</div>
<div>
<div dir="auto">
<div>That's certainly crafty.
<div dir="auto"><br>
</div>
<div dir="auto">I considered that but again you need to make more assumptions like you're using the same corpus of words. What if it's not an English word. What if it's not a regular word but a name. What about words that have multiple possible matches because
 multiple rotations are valid? (e.g. &quot;FUSION&quot; and &quot;LAYOUT&quot;). Then do you output multiple possible keys?</div>
<div dir="auto"><br>
</div>
<div dir="auto"><br>
</div>
<br>
<br>
<div class="x_x_x_gmail_quote">
<div dir="ltr" class="x_x_x_gmail_attr">On Sun., Oct. 11, 2020, 7:36 p.m. Mark G., &lt;<a href="mailto:vpm@palaceofretention.ca">vpm@palaceofretention.ca</a>&gt; wrote:<br>
</div>
<blockquote class="x_x_x_gmail_quote" style="margin:0 0 0 .8ex; border-left:1px #ccc solid; padding-left:1ex">
Hi Patrick et al,<br>
<br>
I decided that a simple brute force through keys 1-26 and then<br>
checking the output using a spell checker library could work.<br>
<br>
Here's a snippet:<br>
<br>
...<br>
#include &lt;nuspell/dictionary.hxx&gt;<br>
#include &lt;nuspell/finder.hxx&gt;<br>
...<br>
<br>
&nbsp; &nbsp; &nbsp;// vector for deciphered message<br>
&nbsp; &nbsp; &nbsp;std::vector&lt;char&gt; message;<br>
<br>
&nbsp; &nbsp; &nbsp;// Key (unknown) for ceaser cipher.<br>
&nbsp; &nbsp; &nbsp;int key = 0;<br>
<br>
&nbsp; &nbsp; &nbsp;int offset {'A'};<br>
&nbsp; &nbsp; &nbsp;int message_letter {'0'};<br>
<br>
&nbsp; &nbsp; &nbsp;auto dict_finder = nuspell::Finder::search_all_dirs_for_dicts();<br>
&nbsp; &nbsp; &nbsp;auto path = dict_finder.get_dictionary_path(&quot;en_US&quot;);<br>
&nbsp; &nbsp; &nbsp;auto dict = nuspell::Dictionary::load_from_path(path);<br>
<br>
&nbsp; &nbsp; &nbsp;// Go through all keys<br>
&nbsp; &nbsp; &nbsp;for (key = 1; key &lt;= 26; key++) {<br>
<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;message.clear();<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;// letters contains our encrypted text<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;for (const auto letter : letters) {<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;message_letter = offset + (((letter - offset) - key + 26) % <br>
26);<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;message.emplace_back(tolower(message_letter));<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>
<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;auto word = std::string(message.data(), message.size());<br>
<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;auto correct = dict.spell(word);<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (correct) {<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;break;<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>
&nbsp; &nbsp; &nbsp;}<br>
&nbsp; &nbsp; &nbsp;print_output_and_number(output_number++);<br>
&nbsp; &nbsp; &nbsp;std::cout &lt;&lt; &quot;Key: &quot; &lt;&lt; key &lt;&lt; std::endl;<br>
<br>
==============<br>
<br>
What happens is that each key is tried in turn and a word is created<br>
out of all 6 letters.&nbsp; This word is then compared against a spell<br>
checker, and if a correct result is found, then there is a high<br>
likelyhood that we've found the key and we break out of the key loop.<br>
<br>
This requires no prior knowledge of the plain text, but can be<br>
computationally expensive.<br>
<br>
<br>
<br>
<br>
<br>
<br>
On 2020-10-11 3:46 p.m., Patrick McMorris wrote:<br>
&gt; Ok, thanks.<br>
&gt; <br>
&gt; Then there are two inputs; not just the data array. Question 10 implied <br>
&gt; a second input will be provided.<br>
&gt; <br>
&gt; On Sun., Oct. 11, 2020, 3:37 p.m. James Briante, &lt;<a href="mailto:briantej@gmail.com" target="_blank" rel="noreferrer">briantej@gmail.com</a>
<br>
&gt; &lt;mailto:<a href="mailto:briantej@gmail.com" target="_blank" rel="noreferrer">briantej@gmail.com</a>&gt;&gt; wrote:<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp;Hi Patrick,<br>
&gt;&nbsp; &nbsp; &nbsp;Here is the last sentence of the comment I posted today at 2:31 PM<br>
&gt;&nbsp; &nbsp; &nbsp;&quot;The final test data will include a new string not \u201cBIOPSY\u201d.<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp;Jim<br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp;On Sun, Oct 11, 2020 at 3:19 PM Patrick McMorris<br>
&gt;&nbsp; &nbsp; &nbsp;&lt;<a href="mailto:patrick@mcmorris.ca" target="_blank" rel="noreferrer">patrick@mcmorris.ca</a> &lt;mailto:<a href="mailto:patrick@mcmorris.ca" target="_blank" rel="noreferrer">patrick@mcmorris.ca</a>&gt;&gt; wrote:<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Hello Jim,<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Your instructions are unclear and we're just asking you to<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;clearly address the issue.<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;If you want our code to output the key used then either we<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;assume the word is the same or your next update also provides a<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;new word in addition to a new byte array.<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Which is it?<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;On Sun., Oct. 11, 2020, 2:32 p.m. James Briante,<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="mailto:briantej@gmail.com" target="_blank" rel="noreferrer">briantej@gmail.com</a> &lt;mailto:<a href="mailto:briantej@gmail.com" target="_blank" rel="noreferrer">briantej@gmail.com</a>&gt;&gt; wrote:<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Craig, Patrick, Greg &amp; Others,<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Note that the string \u201cBIOPSY\u201d is not part of the input data<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;but included in the description of Output#10 in order to<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;simplify things. If \u201cBIOPSY\u201d appears in your code, you have<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;created an *implicit input* to simplify things. The final<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;test data will include a new string not \u201cBIOPSY\u201d.<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Consider the implication of not having known the plaintext<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\u201cBIOPSY\u201d. One &nbsp;solution would be to write separate code (not<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;part of the solution to Challenge1) that sequentially<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;reverses the encryption process. Why not do so and then just<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;print 6 for Output #10?<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;The above method requires human intervention in order to<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;recognize meaningful words during the decryption process.<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Why not write code to remove the human out of the loop?<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Hopefully, that explains why the string *\u201cBIOPSY*\u201d was a<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;good&nbsp;choice for Challenge 1.<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Jim<br>
&gt; <br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;On Sun, Oct 11, 2020 at 9:52 AM Michelle Wiboltt<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="mailto:michellewiboltt@outlook.com" target="_blank" rel="noreferrer">michellewiboltt@outlook.com</a><br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:michellewiboltt@outlook.com" target="_blank" rel="noreferrer">michellewiboltt@outlook.com</a>&gt;&gt; wrote:<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Also, instead of exclamation! ? for instance, why can\u2019t<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;these be illustrated as musical notes so that we come to<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;learn /to understand tempo/crescendo/intent...plus,<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\u201cmusic tames the savage beast\u201d, non? So wouldn\u2019t we want<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;to gift \u201cthose extraterrestrials\u201d with this type of<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;advantage, which is really our advantage in that we set<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;the tone:)<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;------------------------------------------------------------------------<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*From:* Projects &lt;<a href="mailto:projects-bounces@vicpimakers.ca" target="_blank" rel="noreferrer">projects-bounces@vicpimakers.ca</a><br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:projects-bounces@vicpimakers.ca" target="_blank" rel="noreferrer">projects-bounces@vicpimakers.ca</a>&gt;&gt; on behalf of<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Greg H &lt;<a href="mailto:greg.horie@gmail.com" target="_blank" rel="noreferrer">greg.horie@gmail.com</a> &lt;mailto:<a href="mailto:greg.horie@gmail.com" target="_blank" rel="noreferrer">greg.horie@gmail.com</a>&gt;&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*Sent:* Sunday, October 11, 2020 9:43:32 AM<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*To:* Talk about Raspberry Pi / embeded projects<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="mailto:projects@vicpimakers.ca" target="_blank" rel="noreferrer">projects@vicpimakers.ca</a> &lt;mailto:<a href="mailto:projects@vicpimakers.ca" target="_blank" rel="noreferrer">projects@vicpimakers.ca</a>&gt;&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*Subject:* Re: [VicPiMakers Projects] Jim's Challenge -<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Output 10 (caesar cipher)<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Nice one Eileen! Solving it in Scratch sounds like a<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;challenge.<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Has anyone considered trying it in a pure functional<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;language?<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FFunctional_programming&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723493027&amp;sdata=QembGc5BcChtVAUOCnt%2BNdj3SaoM1Ojcxo11svdNNRw%3D&amp;reserved=0" originalsrc="https://en.wikipedia.org/wiki/Functional_programming" shash="vlE1DPUcUdKW32tGfOeVwCCAVnCLT3yCImIvqg6BxF0XK77jeo0eCg2b3KVh0tHIyJtRXZsDRX2KnKAOU1q6a8mI27+FG5/qfCz7SS4L+fJiwHkbdE0/V6Bs4SU5oajNOxYNSgOtiajIpfNc7OTCchIVhEWmXXfOPWrSY2OZuOg=" originalsrc="https://en.wikipedia.org/wiki/Functional_programming" shash="Nhz4X6deAW2HmNyRlF3pTofjslTV4vRkWhzfTgxYyLUrhFxc976g+w4Zi88UeQnfKQOwo0XiEttFB6wDMNrOHpBOpYd1b2WyHaThB208aZfaZqAbMtX2k8InFHgh0TueT2brOVk5ntk4MgqWv0PTTIQWCPRSmWeejMzbunJrBCE=" originalsrc="https://en.wikipedia.org/wiki/Functional_programming" shash="MfxeLlWrL6Jkcbf3IszvSIv0AI29WzcQ4BMjNeO6ZGj0bUVd6om0aRmkn09Kxj42G+1kz919BOzXavf9seEK0fvo/xyKh5aGAEUlk5S0KQVpnT6Q9T3IkPWpc0HNMeFmfe3Q5wnUPguT4CQTthf9x+stiV47UU9eHdD+SiVvnuQ=" rel="noreferrer noreferrer" target="_blank">https://en.wikipedia.org/wiki/Functional_programming</a><br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FFunctional_programming&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723503022&amp;sdata=Oeb3hxC5vj2kO2hiPUPfDgOZYCmBb%2FYvWhR09UAIJ9E%3D&amp;reserved=0" originalsrc="https://en.wikipedia.org/wiki/Functional_programming" shash="COaoq46vdjN0Ns0ktGRcOfIhP/Dy2eTqNwUvcmN5PnnuIE/2TCdWmMKElej77HcECLNs/iwfyupBsrl3rtkWVXq3BNEThxd2I9YStdCmCHPIC+E86Fj+o4QkbCV4w1/AQcvgs+cFje15Vw269NxNsnThzGAizPlwlpNEiHvZ+WM=" originalsrc="https://en.wikipedia.org/wiki/Functional_programming" shash="Nhz4X6deAW2HmNyRlF3pTofjslTV4vRkWhzfTgxYyLUrhFxc976g+w4Zi88UeQnfKQOwo0XiEttFB6wDMNrOHpBOpYd1b2WyHaThB208aZfaZqAbMtX2k8InFHgh0TueT2brOVk5ntk4MgqWv0PTTIQWCPRSmWeejMzbunJrBCE=" originalsrc="https://en.wikipedia.org/wiki/Functional_programming" shash="aDbccVq65xykXT0Fq2HBWr4dVW5bD/tSUpmqISiiWoBH51U60DwwKJTmWRfywri/7TgVuYnB4kmmGjRwXVsW/xNxCxsZgTnIK7+Af5t2wBohfy3tQV4M5SgxBd5mvq0Od0VBqPiGXfWoDQkkdKYfe+3wkLqOwQVhRy9VWDN0I0c=" rel="noreferrer noreferrer" target="_blank">https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FFunctional_programming&amp;data=02%7C01%7C%7Cbe8d0cc14e5245e5aa3808d86e04ed6a%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380314727328950&amp;sdata=h57KpB18orFr3DZDozsMp7Wuu3TI%2BAXKneLt2kXKMHE%3D&amp;reserved=0</a>&gt;<br>
&gt; <br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;On Sun, 11 Oct 2020 at 09:35, Michelle Wiboltt<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="mailto:michellewiboltt@outlook.com" target="_blank" rel="noreferrer">michellewiboltt@outlook.com</a><br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:michellewiboltt@outlook.com" target="_blank" rel="noreferrer">michellewiboltt@outlook.com</a>&gt;&gt; wrote:<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Is it a question of overthinking? Me, I see it as a<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;question of \u201cover\u201d feeling things - on steroids, no<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;less and from here/there, &nbsp;building a \u201cvisual\u201d<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;conceptual foundation of these wonderfully warm<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;feelings for all to see/feel/utilize AND understand.<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;It kind of needs to contain our existing or newly<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;conceived of \u201cabsolute love language\u201d...like an and.<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;And always conjoins so, what word, string, etc?<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;always conjoins the all of the all of us...then, we<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;mirror our movement with/by that spin around the<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;world thing, same as our world, non?<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;------------------------------------------------------------------------<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*From:* Projects &lt;<a href="mailto:projects-bounces@vicpimakers.ca" target="_blank" rel="noreferrer">projects-bounces@vicpimakers.ca</a><br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:projects-bounces@vicpimakers.ca" target="_blank" rel="noreferrer">projects-bounces@vicpimakers.ca</a>&gt;&gt; on behalf<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;of Eileen Amirault &lt;<a href="mailto:cody.eileen@gmail.com" target="_blank" rel="noreferrer">cody.eileen@gmail.com</a><br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:cody.eileen@gmail.com" target="_blank" rel="noreferrer">cody.eileen@gmail.com</a>&gt;&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*Sent:* Sunday, October 11, 2020 9:23:54 AM<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*To:* Talk about Raspberry Pi / embeded projects<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="mailto:projects@vicpimakers.ca" target="_blank" rel="noreferrer">projects@vicpimakers.ca</a><br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:projects@vicpimakers.ca" target="_blank" rel="noreferrer">projects@vicpimakers.ca</a>&gt;&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*Subject:* Re: [VicPiMakers Projects] Jim's<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Challenge - Output 10 (caesar cipher)<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Hey everyone,<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Just solved challenge #1 using Scratch. Hope the new<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\u2018Test\u2019 data will work just as well. Intend on<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;showing you what I did at the end of my presentation<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;on Oct 24.<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Have a nice week,<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Eileen<br>
&gt; <br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;On Oct 11, 2020, at 9:15 AM, Michelle Wiboltt<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="mailto:michellewiboltt@outlook.com" target="_blank" rel="noreferrer">michellewiboltt@outlook.com</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:michellewiboltt@outlook.com" target="_blank" rel="noreferrer">michellewiboltt@outlook.com</a>&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Ok, but there IS a watermark? thing...so, this<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;needs to be illustrated meaning, if we\u2019re creating<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;a love \ufffd\ufffd language we want that to show in its<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;entirety AND if \u201cbad\u201d people \u201cbreak\u201d in...aren\u2019t<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;they just asking to be included? wouldn\u2019t it be a<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;wanting but not knowing how to be a part of this<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;fabulousity that is the (our) language of love \ufffd\ufffd<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;So, if they \u201cbreak\u201d in doesn\u2019t it stand to reason<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;they were left out. Isn\u2019t that our bad?<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Also, a language of love would have to be, would<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;need to, continually fortified in order for it to<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;remain foundation-ally strong, right white lights?<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;And, its strength comes from our ever evolving<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;understanding/feeling/sensing/knowing of what our<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;hearts are truly capable of and then, illustrating<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;this in the majesty that WILL be our code that You<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;all create, see?<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Also, just a thought, what about that bit coin<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;spin around the world tor thing...if we built our<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;foundation on something like this wouldn\u2019t this<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;keep any nasty extraterrestrials at bay but<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;wouldn\u2019t it also, keep us ALL contained herein,<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;safely.<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;m<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;------------------------------------------------------------------------<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*From:* Projects &lt;<a href="mailto:projects-bounces@vicpimakers.ca" target="_blank" rel="noreferrer">projects-bounces@vicpimakers.ca</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:projects-bounces@vicpimakers.ca" target="_blank" rel="noreferrer">projects-bounces@vicpimakers.ca</a>&gt;&gt; on<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;behalf of Patrick McMorris &lt;<a href="mailto:patrick@mcmorris.ca" target="_blank" rel="noreferrer">patrick@mcmorris.ca</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:patrick@mcmorris.ca" target="_blank" rel="noreferrer">patrick@mcmorris.ca</a>&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*Sent:* Sunday, October 11, 2020 8:34:44 AM<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*To:* Talk about Raspberry Pi / embeded projects<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="mailto:projects@vicpimakers.ca" target="_blank" rel="noreferrer">projects@vicpimakers.ca</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:projects@vicpimakers.ca" target="_blank" rel="noreferrer">projects@vicpimakers.ca</a>&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*Subject:* Re: [VicPiMakers Projects] Jim's<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Challenge - Output 10 (caesar cipher)<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;I agree it's not that clear.<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;If the goal to be able to simply run the existing<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;code on new input bytes then yes, &quot;BIOPSY&quot; is<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;always the decrypted word since the byte array is<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;the only given input. If the word changes, that<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;hasn't been specified where that input would come<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;from. So, either it doesn't change or the<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;description of the second input is missing.<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;But using a hard-coded word doesn't sound terribly<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;interesting to code up. You could still write your<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;key finding function to accept two strings of<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;equal length and output the required caesar key.<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Then for question #10, call it with the word you<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;extract from the input array and the hard-coded<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;target word and write the output key. Then the<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;problem is hard-coded but your code is more generic.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Patrick<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;On Sun., Oct. 11, 2020, 8:01 a.m. Greg H,<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="mailto:greg.horie@gmail.com" target="_blank" rel="noreferrer">greg.horie@gmail.com</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:greg.horie@gmail.com" target="_blank" rel="noreferrer">greg.horie@gmail.com</a>&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;For me, the confusion is that we're intended<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;to write code to derive the cipher key value.<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;I did this and came up with an answer, but<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;this key is only relevant &quot;HOUVYE&quot; / &quot;BIOPSY&quot;.<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;So should I take this key and make it a<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;constant for future inputs / encryptions?<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;That's what I ended up doing with my final<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;code submission.<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;I took out the code that solved the problem<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;because unused code seems like lint to me, but<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;maybe I should put it back to show how I did it.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;On Sat, 10 Oct 2020 at 17:45, James Briante<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="mailto:briantej@gmail.com" target="_blank" rel="noreferrer">briantej@gmail.com</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:briantej@gmail.com" target="_blank" rel="noreferrer">briantej@gmail.com</a>&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Hi Patrick,<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;Yes, you can look at only the first<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;character of the string and use it to get<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;the key. Comparing all characters as the<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;advantage of catching errors in<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;encryption/decryption. The code is just as<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;short using&nbsp; &quot;compare strings&quot;&nbsp; of your<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;particular language.<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;In C int strcmp (const char* str1, const<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;char* str2);, in C++<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*int**CompareText*(*const*AnsiString *S1*,<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*const*AnsiString *S2*); Pascal ( Delphi)<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*function**CompareText*(*const**S1*:<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*string*; *const**S2*: *string*): Integer;<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Aside: The purpose of the final test data<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;is to see if your outputs are correct when<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;you run your code with the new data. It<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;should work the first time with no changes<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;in the actual code.<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Jim<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;On Sat, Oct 10, 2020 at 4:46 PM George<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Bowden &lt;<a href="mailto:gtbowdeng@gmail.com" target="_blank" rel="noreferrer">gtbowdeng@gmail.com</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:gtbowdeng@gmail.com" target="_blank" rel="noreferrer">gtbowdeng@gmail.com</a>&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Hi Michelle<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;If you are on a laptop or computer<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;using chrome, you can hold down the<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CTRL key and tap the letter u .&nbsp; There<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;are things further back than that but<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;its a start.&nbsp; As for ink marks showing<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;through, we try to avoid that because<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;it usually reveals security holes that<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;the bad people exploit.<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;On Sat, Oct 10, 2020 at 1:23 PM<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Michelle Wiboltt<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="mailto:michellewiboltt@outlook.com" target="_blank" rel="noreferrer">michellewiboltt@outlook.com</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:michellewiboltt@outlook.com" target="_blank" rel="noreferrer">michellewiboltt@outlook.com</a>&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;wrote:<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Please help:)<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Here\u2019s where my crazy comes in,<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;see this image...<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Image.jpeg&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Ok.<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Now, if u could think in terms of<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;front back / embroidery and its<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;front back...<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;So, above is a code interface? But<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;where is the back front and back?<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Front would be the website, right?<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;So, when I do online shopping,<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;that\u2019s the front. Where is the<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;back view of the front of the<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;website?<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Another example, when writing in<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ink it can show through the<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;backside when held to the light,<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;kind of thing is what I\u2019m trying<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;to understand? Where\u2019s that on the<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;internet?<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Thx<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;m<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Michelle Wiboltt<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.elb1b69.net%2F&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723503022&amp;sdata=Rhls21%2FxS2cUAtcYT5AKQ4GsZNPOgGLVG166CLkVirc%3D&amp;reserved=0" originalsrc="http://www.elb1b69.net/" shash="kmJtk0aH0JfHOPQEPPvcFxqNK1RMHE4YPLouIP1MbhZOsu6r3EYkF6CzrhYTSMkOjAg+9WrrPFLft3Koa9eYCTEaCnVxiOGc8/xUspLwgJA9XeLdClWLTZhQHMJydDk9VPytnK8UQm2eUPRSnPXY2XDx5jyMWbyqzA5bosSbi4w=" originalsrc="http://www.elb1b69.net/" shash="lXOrfEFqjEct60KmzpD/QGpZ5R96Wac/1R8rpMRcp9L168EUARzorgUe1BO543Gayynhw6Fwvc8RAeCr7sHkaYfUc/yKNLU14Y4olbuKYAGgwiIcboxTCLIctXkEXv3hJCrda14RliZ6Kwto8yGyOFBH+5RGwAAKIlVGcfkF9ig=" originalsrc="http://www.elb1b69.net/" shash="IbHCgovLe1sKHsYtoiXoo5vO/zMgWIm2WKrQFPRvBVKSHQ/YLzB1N83lOlfbNtWtQhbKfgzE+1z+RIkAsV0d1mcsmfULtUevzEO6YFe6QyZS4BeNHQkLbvteKemhCUZBfkdfP57tl6t14c+0ePAl1j/76SplPaTKtCZ4JlEA9ZQ=" rel="noreferrer noreferrer" target="_blank">www.elb1b69.net</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.elb1b69.net%2F&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723513016&amp;sdata=WcoOEXK5p9qhKR36n%2FSz4bezyA3fDPV%2B%2FQg6MWx5Xhk%3D&amp;reserved=0" originalsrc="http://www.elb1b69.net/" shash="Pmj+jwqb6g7RTgWt3ZaAhiGlx6K0Ar/xJhJIyUb5/BuNCOTuycin360wQpoUY4y0DbO5REk5HuTMUmkquCKxCdhJ5hJWCK8JTFALLLNRNn/t02m+h+UtzN/sEuk1mzL7eJhsGDTsz7IMyvZXoFTkHc5F8lOMjUbWY81csjGkoqg=" originalsrc="http://www.elb1b69.net/" shash="lXOrfEFqjEct60KmzpD/QGpZ5R96Wac/1R8rpMRcp9L168EUARzorgUe1BO543Gayynhw6Fwvc8RAeCr7sHkaYfUc/yKNLU14Y4olbuKYAGgwiIcboxTCLIctXkEXv3hJCrda14RliZ6Kwto8yGyOFBH+5RGwAAKIlVGcfkF9ig=" originalsrc="http://www.elb1b69.net/" shash="UfHeFDNx4+joKZ4ItIvI+JCTZ40Uf2G9ro0Z8u2fNnCtvikESUkndHsCeTL+lCcyOGzJuvypoNyFEzb5/TwqcXaXr5H3thnwfErD4CsePKslsc4rOMpvoDUQA/0E10d8wBE33oDktp7IqbwohCfy/V/2UKvxOoObioDZdn94954=" rel="noreferrer noreferrer" target="_blank">https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.elb1b69.net%2F&amp;data=02%7C01%7C%7Cbe8d0cc14e5245e5aa3808d86e04ed6a%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380314727328950&amp;sdata=LwqWQoRGJqX8ioMprkuE9VwBOb3JfvgsIpAG0kxAYFs%3D&amp;reserved=0</a>&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;604-612-2505<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;------------------------------------------------------------------------<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*From:* Projects<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="mailto:projects-bounces@vicpimakers.ca" target="_blank" rel="noreferrer">projects-bounces@vicpimakers.ca</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:projects-bounces@vicpimakers.ca" target="_blank" rel="noreferrer">projects-bounces@vicpimakers.ca</a>&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;on behalf of Greg H<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="mailto:greg.horie@gmail.com" target="_blank" rel="noreferrer">greg.horie@gmail.com</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:greg.horie@gmail.com" target="_blank" rel="noreferrer">greg.horie@gmail.com</a>&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*Sent:* Saturday, October 10, 2020<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8:56:49 AM<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*To:* <a href="mailto:projects@vicpimakers.ca" target="_blank" rel="noreferrer">
projects@vicpimakers.ca</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:projects@vicpimakers.ca" target="_blank" rel="noreferrer">projects@vicpimakers.ca</a>&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="mailto:projects@vicpimakers.ca" target="_blank" rel="noreferrer">projects@vicpimakers.ca</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:projects@vicpimakers.ca" target="_blank" rel="noreferrer">projects@vicpimakers.ca</a>&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*Subject:* [VicPiMakers Projects]<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Jim's Challenge - Output 10<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;(caesar cipher)<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;I'm looking for clarification on<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;output 10 - caesar cipher problem.<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Is the intent to calculate the<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;caesar cipher key value OR is the<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;intent to encrypt the string with<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;a pre-determined key? Initially I<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;thought the question was to<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;discover the cipher key value, but<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;on reflection this seems fragile.<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Reasoning:<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;- &quot;BIOPSY&quot; will work for the 12<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;integer input that leads to<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;HOUVYE&quot;, but it will not work for<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;any 12 random integers.<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;- You'd have to reverse engineer<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;your integers starting from<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;BIOPSY&quot; to get a valid set of 12<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;integers.<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;I solved it both ways, but posted<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;only the 2nd solution to github<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;because only the 2nd solution will<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;work for a random set of 12 integers.<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;I'm curious how other folks solved<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;this one.<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-- <br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Projects mailing list<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a>&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723513016&amp;sdata=D%2BcFPB7eSVftF2GWNKsZZGYs7aHjSlOu0%2Favqzvdtu4%3D&amp;reserved=0" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="E/+Cgo7yt1Bam3YpdsHsI1lJDAsA+SaHe31LZiW6qvdjXP7NX8+LjWJp7qvUVxlLOAM4zvgPx7WkiBzfz3PsT1FT4mkr9Zkn/dTfbFxN1xUtyG1xQPkFRLPHeaRr1dCRz/jrkGi+HxZOTAsP5CP9ujczT0IzK5sA7Opqlrs/gDM=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="NSlchmaAs6VT/Nppd8cXj5h378Zy8Vo4YMd+17SmHvwUV2guf36mMdDTYoMtY+d/WgavYOVaUdmt3F+9Jl8/kSJpOdZZq92geBwu16pbsnn5I9IPt03jf5dungOB0M7NVRM5kryKDBJomT+jx/eGNe3SRN09hRVJuh1WFceG3HE=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="q4Z0b/wPhgUcboaBlxgr99glxUn2758k078pwMVNgfDzR9GyMNjJOZfzQEafYnH0g1h5Sk+Y00rx0gMiTtt0FWQkD1Y3gJtsbSPnhCJN7vzXvTPbR7x5AINlNtAwR5mIc6VQ/3jHCJRf/wqjoeLlTaqjAlufL94KcF4eY47urN8=" rel="noreferrer noreferrer" target="_blank">http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723523011&amp;sdata=BsmAWP3Hxn79GXX%2Ba%2FuZMZZ77UFe9Gdrko7BDTvUqCI%3D&amp;reserved=0" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="yAFsgstytf8KDGU1IMqNSaILbrFYsTLkW+Yjezd4udEjvs4OLd5DjI9ERnwm15Z3h+U7Liujv5IIM9RQJMleJIKN549PT7rU5o6TMeYJAFkcFZpw8fAiTVLgwm1dP7dO4SwJM9LXwMkdHh8/MbbNABCRNofOppLjSxfk8T76BNQ=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="NSlchmaAs6VT/Nppd8cXj5h378Zy8Vo4YMd+17SmHvwUV2guf36mMdDTYoMtY+d/WgavYOVaUdmt3F+9Jl8/kSJpOdZZq92geBwu16pbsnn5I9IPt03jf5dungOB0M7NVRM5kryKDBJomT+jx/eGNe3SRN09hRVJuh1WFceG3HE=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="sqmSU3rYrEwGYrCilhUAuWbbFxtS23VjdAx80/3Vzt301L30qzmynvDE3kqVOrc9yLKG96r5i0JPNG3XFTkmC2bDRCr6a9jd2LGACz2H8YKFeE5XoSDxPpRZmVNG+3g3kPRXx393LSL/F94Btn3AgksBvVfWOSRKa/r/hp/vi/E=" rel="noreferrer noreferrer" target="_blank">https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbe8d0cc14e5245e5aa3808d86e04ed6a%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380314727338941&amp;sdata=HBzJ15Bq7rk6Kz7FSFgDePfGdHYHUSGowGj19Gjz7Vk%3D&amp;reserved=0</a>&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-- <br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;George Bowden, vice president,<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Victoria Computer Club<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:gtbowdeng@gmail.com" target="_blank" rel="noreferrer">gtbowdeng@gmail.com</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:gtbowdeng@gmail.com" target="_blank" rel="noreferrer">gtbowdeng@gmail.com</a>&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-- <br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Projects mailing list<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a>&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723523011&amp;sdata=BsmAWP3Hxn79GXX%2Ba%2FuZMZZ77UFe9Gdrko7BDTvUqCI%3D&amp;reserved=0" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="yAFsgstytf8KDGU1IMqNSaILbrFYsTLkW+Yjezd4udEjvs4OLd5DjI9ERnwm15Z3h+U7Liujv5IIM9RQJMleJIKN549PT7rU5o6TMeYJAFkcFZpw8fAiTVLgwm1dP7dO4SwJM9LXwMkdHh8/MbbNABCRNofOppLjSxfk8T76BNQ=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="g07ejDQeh6DO9VnDkf5OiIGGrbWoP0JP76RZ6xnJIKc9G1ag+rnwozBRFf2zLjFnJ3QZx313YU71yj11YuY8o6TZXoshZii8R8bFbocDA3RppdO6dJLJX3wg/swATOoJCJymMhfXP6yPUId9r6XYyvFj+gOr0qBKsDZJQ1KClmg=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="sqmSU3rYrEwGYrCilhUAuWbbFxtS23VjdAx80/3Vzt301L30qzmynvDE3kqVOrc9yLKG96r5i0JPNG3XFTkmC2bDRCr6a9jd2LGACz2H8YKFeE5XoSDxPpRZmVNG+3g3kPRXx393LSL/F94Btn3AgksBvVfWOSRKa/r/hp/vi/E=" rel="noreferrer noreferrer" target="_blank">http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723533005&amp;sdata=40wmDlMisWTckfw0rnC%2BB%2BvPbjBWqgM6%2F8FI601PP5U%3D&amp;reserved=0" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="KYoyTvv8zoXBPxNKjdasTSda6vnt7UR558WzYn65ry3ecUAESeGSgWaH3Eo8k1DqDsDGOkU0DsiRK59DN8cpYNt9bh2KDk7YZWBa2ZQSDs3VEdN+I6TvlU+zBBS46Cd4y7095Ym+tITSYFwTO+9Vqxd38coDXiqghjCCUgj2E88=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="g07ejDQeh6DO9VnDkf5OiIGGrbWoP0JP76RZ6xnJIKc9G1ag+rnwozBRFf2zLjFnJ3QZx313YU71yj11YuY8o6TZXoshZii8R8bFbocDA3RppdO6dJLJX3wg/swATOoJCJymMhfXP6yPUId9r6XYyvFj+gOr0qBKsDZJQ1KClmg=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="gs2AYdv0bTHcpO339mE4AdOUxnH9wvZEtzey1kCl21TA6HJnKpy0EwdxrRuPK6M+kxtKnSv1k16lIaSsaP1tnW5dzClv2EqPH4PzS782vt4ies1JIQ19fHTyf5t2n9YXP0mC53+PPhujFgbrWtjr+kcvaDas2tux/P5gogLheMc=" rel="noreferrer noreferrer" target="_blank">https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbe8d0cc14e5245e5aa3808d86e04ed6a%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380314727338941&amp;sdata=HBzJ15Bq7rk6Kz7FSFgDePfGdHYHUSGowGj19Gjz7Vk%3D&amp;reserved=0</a>&gt;<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-- <br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Projects mailing list<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a>&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723533005&amp;sdata=40wmDlMisWTckfw0rnC%2BB%2BvPbjBWqgM6%2F8FI601PP5U%3D&amp;reserved=0" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="KYoyTvv8zoXBPxNKjdasTSda6vnt7UR558WzYn65ry3ecUAESeGSgWaH3Eo8k1DqDsDGOkU0DsiRK59DN8cpYNt9bh2KDk7YZWBa2ZQSDs3VEdN+I6TvlU+zBBS46Cd4y7095Ym+tITSYFwTO+9Vqxd38coDXiqghjCCUgj2E88=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="g07ejDQeh6DO9VnDkf5OiIGGrbWoP0JP76RZ6xnJIKc9G1ag+rnwozBRFf2zLjFnJ3QZx313YU71yj11YuY8o6TZXoshZii8R8bFbocDA3RppdO6dJLJX3wg/swATOoJCJymMhfXP6yPUId9r6XYyvFj+gOr0qBKsDZJQ1KClmg=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="gs2AYdv0bTHcpO339mE4AdOUxnH9wvZEtzey1kCl21TA6HJnKpy0EwdxrRuPK6M+kxtKnSv1k16lIaSsaP1tnW5dzClv2EqPH4PzS782vt4ies1JIQ19fHTyf5t2n9YXP0mC53+PPhujFgbrWtjr+kcvaDas2tux/P5gogLheMc=" rel="noreferrer noreferrer" target="_blank">http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723543001&amp;sdata=9ShH2%2BYwA2AOVNtZCBj7IYnGJoSEZ27XWUDWpZnV92k%3D&amp;reserved=0" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="efwloe4bkh/YyZXbyjXuGkgugxPjN5qCKBNLCLLOk4xUPQb/BUdpkCxvTbx6GNy91itkX9YT9lKZTjVVfMJmRUZjNaCPaoOZuUw4EVTd3uO1q0qtvhMNLJNLua7836k0tzEY4BIRR19M0tmuMGqpQSimKwtHmfhlQo48Co6BNF0=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="dzHDG00fCRDh83n0QS0HlEMzi5osmu1T3fD8O6TUyoNUV6QsWuLAwrhmTqxvZpzn28b3AUfYnIcwb7ZZBnUIBooDBCQu0oGhm5cpol+6vpzKWdfA6N/dtPj1LN7hay3O3x56HfSjcAwjfDoJDRBPzc1PYxvtR+2awC9gKoqQV/8=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="gs2AYdv0bTHcpO339mE4AdOUxnH9wvZEtzey1kCl21TA6HJnKpy0EwdxrRuPK6M+kxtKnSv1k16lIaSsaP1tnW5dzClv2EqPH4PzS782vt4ies1JIQ19fHTyf5t2n9YXP0mC53+PPhujFgbrWtjr+kcvaDas2tux/P5gogLheMc=" rel="noreferrer noreferrer" target="_blank">https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbe8d0cc14e5245e5aa3808d86e04ed6a%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380314727348937&amp;sdata=Prx6%2FauXvOcRkobYJo4RSp9nXDZXaERn%2BZnmYHf2%2Boo%3D&amp;reserved=0</a>&gt;<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-- <br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Projects mailing list<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a>&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723543001&amp;sdata=9ShH2%2BYwA2AOVNtZCBj7IYnGJoSEZ27XWUDWpZnV92k%3D&amp;reserved=0" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="efwloe4bkh/YyZXbyjXuGkgugxPjN5qCKBNLCLLOk4xUPQb/BUdpkCxvTbx6GNy91itkX9YT9lKZTjVVfMJmRUZjNaCPaoOZuUw4EVTd3uO1q0qtvhMNLJNLua7836k0tzEY4BIRR19M0tmuMGqpQSimKwtHmfhlQo48Co6BNF0=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="dzHDG00fCRDh83n0QS0HlEMzi5osmu1T3fD8O6TUyoNUV6QsWuLAwrhmTqxvZpzn28b3AUfYnIcwb7ZZBnUIBooDBCQu0oGhm5cpol+6vpzKWdfA6N/dtPj1LN7hay3O3x56HfSjcAwjfDoJDRBPzc1PYxvtR+2awC9gKoqQV/8=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="YiiMQPEak9BaWQhbbIhzAcgUNDCXmLywNYeNz8Hoa8Cf0gvXkPPdnWN4a3V30qp6J+4aiEsb1sAI1rNKvdodPwhHx0KuYXKFL43h5NFs90y3BJe2yz2mHXsj3r2RsSzI/2Spy4/4gBmOWMuJ5CtKibj/SEn/gl30+zdxZDH4Zjg=" rel="noreferrer noreferrer" target="_blank">http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723552995&amp;sdata=BM6q0znCo%2BG%2FT35G5CResoBqw0uzsgnfCYNBOIwieHA%3D&amp;reserved=0" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="THkeiXESK98kqjbt+jQ/puUJkPu3BTpuzP1vMepF9D90bD0rBh/QJgwLjBviadtsaB1V1tydkEIHIUP/5d985qL4CQaoJdznRjaHYGweHrpclgpQqVaHiIq4NZpXJwtmz1JAJv70V7nT3V2R1Mkssb3DMB7bDMj6dyjBJ5p4RZI=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="O3+BkUAHREliPPepNCCZb4gA55D+0vrRUf/qaJk0zSDAojsb7pxSgMv1w4ZiIwZdH0yCDPGlA2UgZlGRPyuQOMIY3h3VyxiBbFu6z4iW2/fjE7Kc12Rh9zLONtbifOb+R0/mVZvBdcwu2fs/olLMmjip3rFfuXWHXwHdj8VHnh4=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="YiiMQPEak9BaWQhbbIhzAcgUNDCXmLywNYeNz8Hoa8Cf0gvXkPPdnWN4a3V30qp6J+4aiEsb1sAI1rNKvdodPwhHx0KuYXKFL43h5NFs90y3BJe2yz2mHXsj3r2RsSzI/2Spy4/4gBmOWMuJ5CtKibj/SEn/gl30+zdxZDH4Zjg=" rel="noreferrer noreferrer" target="_blank">https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbe8d0cc14e5245e5aa3808d86e04ed6a%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380314727348937&amp;sdata=Prx6%2FauXvOcRkobYJo4RSp9nXDZXaERn%2BZnmYHf2%2Boo%3D&amp;reserved=0</a>&gt;<br>
&gt;&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-- <br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Projects mailing list<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a>&gt;<br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723552995&amp;sdata=BM6q0znCo%2BG%2FT35G5CResoBqw0uzsgnfCYNBOIwieHA%3D&amp;reserved=0" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="THkeiXESK98kqjbt+jQ/puUJkPu3BTpuzP1vMepF9D90bD0rBh/QJgwLjBviadtsaB1V1tydkEIHIUP/5d985qL4CQaoJdznRjaHYGweHrpclgpQqVaHiIq4NZpXJwtmz1JAJv70V7nT3V2R1Mkssb3DMB7bDMj6dyjBJ5p4RZI=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="O3+BkUAHREliPPepNCCZb4gA55D+0vrRUf/qaJk0zSDAojsb7pxSgMv1w4ZiIwZdH0yCDPGlA2UgZlGRPyuQOMIY3h3VyxiBbFu6z4iW2/fjE7Kc12Rh9zLONtbifOb+R0/mVZvBdcwu2fs/olLMmjip3rFfuXWHXwHdj8VHnh4=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="wZLGUouUsOBW6xgjRfy0+zau7lkAlKis4YoBG295Nk1aBB4200qlCMhhjRMJPN3ODyIykXnEfsiKaufVD4B3DglSyGN4jCNwSntSimOAtKsGOAoA+AMgrN1+UXbKjCAqZd0qSbDVa84kuBC8WWlHiZadriQ+1jLFu9ommhJQOQw=" rel="noreferrer noreferrer" target="_blank">http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca</a><br>
&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723562989&amp;sdata=GIVf7tLU8F48WGiBWdknW7XwMMXKBeXjD7uqDmrZgKE%3D&amp;reserved=0" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="CHE0GPrrkoFBTZossDeQltd3TpKJaA49ekoY3syG5yhUBU5S3R7hBysqmcF+dBD2oeJpHYH4ewstNJsUM4YhZJX5TsnX+YMfpJIb6LXRlesI/1k9M3FCl+/qkZ9ZCmZcLpCmUO7EmmaKYM0SbCV14mBOEdAAaAyS44SJpwuz/Fg=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="Iqw5kMwUZOyAxnldxd14MplGwPBNvfbjYNoJtBK3Mn+CBCJEg1ehGB7cLBfqpvQXFZbFxkqoudqjiAJ0emmnXv/V4fNInNH4YdYc0sllzuxrIQW20SiAvqN80jv7qrezvYzb1I1n11dyNdrmAkDse3VLO3nqlYZwSxaBiuSuywI=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="wZLGUouUsOBW6xgjRfy0+zau7lkAlKis4YoBG295Nk1aBB4200qlCMhhjRMJPN3ODyIykXnEfsiKaufVD4B3DglSyGN4jCNwSntSimOAtKsGOAoA+AMgrN1+UXbKjCAqZd0qSbDVa84kuBC8WWlHiZadriQ+1jLFu9ommhJQOQw=" rel="noreferrer noreferrer" target="_blank">https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbe8d0cc14e5245e5aa3808d86e04ed6a%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380314727358931&amp;sdata=diiLJdgTh%2F13a0MlkTz3NrHKTNpRVwuL%2FVshqbPts4w%3D&amp;reserved=0</a>&gt;<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-- <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Projects mailing list<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a> &lt;mailto:<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a>&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723562989&amp;sdata=GIVf7tLU8F48WGiBWdknW7XwMMXKBeXjD7uqDmrZgKE%3D&amp;reserved=0" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="CHE0GPrrkoFBTZossDeQltd3TpKJaA49ekoY3syG5yhUBU5S3R7hBysqmcF+dBD2oeJpHYH4ewstNJsUM4YhZJX5TsnX+YMfpJIb6LXRlesI/1k9M3FCl+/qkZ9ZCmZcLpCmUO7EmmaKYM0SbCV14mBOEdAAaAyS44SJpwuz/Fg=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="Iqw5kMwUZOyAxnldxd14MplGwPBNvfbjYNoJtBK3Mn+CBCJEg1ehGB7cLBfqpvQXFZbFxkqoudqjiAJ0emmnXv/V4fNInNH4YdYc0sllzuxrIQW20SiAvqN80jv7qrezvYzb1I1n11dyNdrmAkDse3VLO3nqlYZwSxaBiuSuywI=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="LrDZ/9WjLt3jYqvsNi8wHK4ObUREgLFDeq+s4gB8dZC/+gaC9tFqzRj+afo7mwB+Yfq85q/RdMEanD9qR0CUZFj520X3gpgdQMq4KwFPyZ1htdy4hWmyifA65R2wCPbpWO4NZCg1h5VfyP3YUNlTXnu9Cwf/TMqi0usDm54s6a0=" rel="noreferrer noreferrer" target="_blank">http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca</a><br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723562989&amp;sdata=GIVf7tLU8F48WGiBWdknW7XwMMXKBeXjD7uqDmrZgKE%3D&amp;reserved=0" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="CHE0GPrrkoFBTZossDeQltd3TpKJaA49ekoY3syG5yhUBU5S3R7hBysqmcF+dBD2oeJpHYH4ewstNJsUM4YhZJX5TsnX+YMfpJIb6LXRlesI/1k9M3FCl+/qkZ9ZCmZcLpCmUO7EmmaKYM0SbCV14mBOEdAAaAyS44SJpwuz/Fg=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="W/MqHQorZOeOP4zOA4cSiNsRxkv475c2m9VlkO59soP8PvQzCqlP+tGRJ2ZMoCXCGJss1/lBFezsnGDniAMxdKcydYjAM7gL3xzivK0GZqVWYRG0lksKwtgWsceQAqVUuUme08+rjKu17hUMNWFCXi472HJCAKE1262dWvoqzKE=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="LrDZ/9WjLt3jYqvsNi8wHK4ObUREgLFDeq+s4gB8dZC/+gaC9tFqzRj+afo7mwB+Yfq85q/RdMEanD9qR0CUZFj520X3gpgdQMq4KwFPyZ1htdy4hWmyifA65R2wCPbpWO4NZCg1h5VfyP3YUNlTXnu9Cwf/TMqi0usDm54s6a0=" rel="noreferrer noreferrer" target="_blank">https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbe8d0cc14e5245e5aa3808d86e04ed6a%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380314727358931&amp;sdata=diiLJdgTh%2F13a0MlkTz3NrHKTNpRVwuL%2FVshqbPts4w%3D&amp;reserved=0</a>&gt;<br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-- <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Projects mailing list<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a> &lt;mailto:<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a>&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723572983&amp;sdata=timJbOkhTGf8vgjBFKiP39moP%2Ba1wrOfow3g3yhlCPU%3D&amp;reserved=0" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="i4rQQxnBVm+1YvgfraYaPD2hmHwbIxnX4U+P5vPuXifCCt/lZLLng4zOWpCjUVEss+14s7wCy3z+crsMm2Id75ZnzzYRdZn+esrBxHVpCM1G2Zsa/L+rW0mZq34YrOrXJMNi6WAWMNZs0TXJdMUWP+WAYleJ8BbXSgXlMIPsoPs=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="W/MqHQorZOeOP4zOA4cSiNsRxkv475c2m9VlkO59soP8PvQzCqlP+tGRJ2ZMoCXCGJss1/lBFezsnGDniAMxdKcydYjAM7gL3xzivK0GZqVWYRG0lksKwtgWsceQAqVUuUme08+rjKu17hUMNWFCXi472HJCAKE1262dWvoqzKE=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="LrDZ/9WjLt3jYqvsNi8wHK4ObUREgLFDeq+s4gB8dZC/+gaC9tFqzRj+afo7mwB+Yfq85q/RdMEanD9qR0CUZFj520X3gpgdQMq4KwFPyZ1htdy4hWmyifA65R2wCPbpWO4NZCg1h5VfyP3YUNlTXnu9Cwf/TMqi0usDm54s6a0=" rel="noreferrer noreferrer" target="_blank">http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca</a><br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-- <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Projects mailing list<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a> &lt;mailto:<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a>&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723572983&amp;sdata=timJbOkhTGf8vgjBFKiP39moP%2Ba1wrOfow3g3yhlCPU%3D&amp;reserved=0" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="i4rQQxnBVm+1YvgfraYaPD2hmHwbIxnX4U+P5vPuXifCCt/lZLLng4zOWpCjUVEss+14s7wCy3z+crsMm2Id75ZnzzYRdZn+esrBxHVpCM1G2Zsa/L+rW0mZq34YrOrXJMNi6WAWMNZs0TXJdMUWP+WAYleJ8BbXSgXlMIPsoPs=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="POAKI4uBzMXNO5X0Hn3vnnTxX7dTWIpGEhvkckZHL9aRf5f5z/Tkjw2BAxcsaSq1VlVk1suCpnXmziYh1/UHLIp55V50riHHm1hnlE8oSAEZTO0GYx1T/EBHaVa2K/gI7hj6f5n3kNQ7nFafl/tJrVVEC6+WOEvZ2yXf0wVbfq0=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="KojSygiQxH67+6SOERfP1w8lzTrCYTJuaBP1SyFBL0Tnb6HR2DbV2e81/BwjuzPzHWjJ1zrr3nuRVXV9BQYBYwchXxL+aIb7za9/dKGxySSFvdGMAZtMyZra5reRWG5y4aElVEujlryhT3NWdTaIs93hBunnpGoym/Y9Zn5wMjM=" rel="noreferrer noreferrer" target="_blank">http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca</a><br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-- <br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Projects mailing list<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a> &lt;mailto:<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a>&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723582977&amp;sdata=dj7g%2BjR4XyvF%2BX1cVNlWNfgsiA99G70FusobWbDxGNU%3D&amp;reserved=0" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="xdy5ypwd1AUCYSloaZPMYoZZyTa9WbPU6DmxcTxfcv7MV41DMkRAbzhAeEj3vsCV/625+RN1G6ZmbQi99c6Ko1Typ90cAvNEK91MgEIn4z6dtn0HTyHCpDgxn/6pr6y6mshmwmVmFzjqw8mi6dnnJFsEkc+JJNV51qaw1NpZs+Y=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="POAKI4uBzMXNO5X0Hn3vnnTxX7dTWIpGEhvkckZHL9aRf5f5z/Tkjw2BAxcsaSq1VlVk1suCpnXmziYh1/UHLIp55V50riHHm1hnlE8oSAEZTO0GYx1T/EBHaVa2K/gI7hj6f5n3kNQ7nFafl/tJrVVEC6+WOEvZ2yXf0wVbfq0=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="KojSygiQxH67+6SOERfP1w8lzTrCYTJuaBP1SyFBL0Tnb6HR2DbV2e81/BwjuzPzHWjJ1zrr3nuRVXV9BQYBYwchXxL+aIb7za9/dKGxySSFvdGMAZtMyZra5reRWG5y4aElVEujlryhT3NWdTaIs93hBunnpGoym/Y9Zn5wMjM=" rel="noreferrer noreferrer" target="_blank">http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca</a><br>
&gt; <br>
&gt;&nbsp; &nbsp; &nbsp;-- <br>
&gt;&nbsp; &nbsp; &nbsp;Projects mailing list<br>
&gt;&nbsp; &nbsp; &nbsp;<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a> &lt;mailto:<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a>&gt;<br>
&gt;&nbsp; &nbsp; &nbsp;<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723582977&amp;sdata=dj7g%2BjR4XyvF%2BX1cVNlWNfgsiA99G70FusobWbDxGNU%3D&amp;reserved=0" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="xdy5ypwd1AUCYSloaZPMYoZZyTa9WbPU6DmxcTxfcv7MV41DMkRAbzhAeEj3vsCV/625+RN1G6ZmbQi99c6Ko1Typ90cAvNEK91MgEIn4z6dtn0HTyHCpDgxn/6pr6y6mshmwmVmFzjqw8mi6dnnJFsEkc+JJNV51qaw1NpZs+Y=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="rkrRxDl/IjH2XaCv0uSjbFgZ4ppijvM35qSqb2hao38/L8PZHVomFNwrqvgRvYDBWfyuNzZdTGJcempiBGa6gPNfnGuF+aC9RjUSllS5HoQQ9LSI0shZO9c39CIn/31z12irg9TjYqLR9nMpUHgM4RJaULZmD1c9mgeqp5PvEpA=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="V7B65Y82h49MieVuF4cNEG0Ejy1rYz0Lo0QHxtB396q2UDOS6eR9VG20Ot/B704r3+yetEcn17x0FbxiqbhJodWxEwLbqqHteH47MfwNWTWojEZvHfU5dsHu8AqtNOjLFwtJ/unyfCmn4S2+Qi/Z7U3nwPtcZ7PKQp/ud0nxkI8=" rel="noreferrer noreferrer" target="_blank">http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca</a><br>
&gt; <br>
&gt; <br>
<br>
-- <br>
Projects mailing list<br>
<a href="mailto:Projects@vicpimakers.ca" target="_blank" rel="noreferrer">Projects@vicpimakers.ca</a><br>
<a href="https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvicpimakers.ca%2Fmailman%2Flistinfo%2Fprojects_vicpimakers.ca&amp;data=02%7C01%7C%7Cbed72d371d8f40c1f93e08d86e5f0838%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637380701723592973&amp;sdata=buVYlJ%2Bx4ItX8%2Bm2jBO8dKot0W0dMOotR%2B3wJuP88ZQ%3D&amp;reserved=0" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="T8BZ8GoH127a20BJXbDgPCcsWAsLPki57m/xiPTCkYEgiu8csmdI6s5auydc5SzjDl26SaNxz9wNW+GBdLZUrFwSJ3ROgTeYcRCga2r1OFlQmZjqW/RHp0yW7bDArDUGRiuSqgj9WT2/elj9p8yERpGtE3sF9tiiVSb1DzNXDZM=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="rkrRxDl/IjH2XaCv0uSjbFgZ4ppijvM35qSqb2hao38/L8PZHVomFNwrqvgRvYDBWfyuNzZdTGJcempiBGa6gPNfnGuF+aC9RjUSllS5HoQQ9LSI0shZO9c39CIn/31z12irg9TjYqLR9nMpUHgM4RJaULZmD1c9mgeqp5PvEpA=" originalsrc="http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca" shash="V7B65Y82h49MieVuF4cNEG0Ejy1rYz0Lo0QHxtB396q2UDOS6eR9VG20Ot/B704r3+yetEcn17x0FbxiqbhJodWxEwLbqqHteH47MfwNWTWojEZvHfU5dsHu8AqtNOjLFwtJ/unyfCmn4S2+Qi/Z7U3nwPtcZ7PKQp/ud0nxkI8=" rel="noreferrer noreferrer" target="_blank">http://vicpimakers.ca/mailman/listinfo/projects_vicpimakers.ca</a><br>
</blockquote>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>