<snapdata remixID="12064792"><project name="U2L12-brickwall - starter" app="Snap! 7, https://snap.berkeley.edu" version="2"><notes></notes><thumbnail>data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAAB4CAYAAAB1ovlvAAAAAXNSR0IArs4c6QAAA+JJREFUeF7t3LFOVEEUxvGhoFg7u01M6KS0JLwAhbHhBbC2spB9CBss2HopsLYxgQJegFDrI1j4ANsZL7kbLbhkw53Zufudc8+fembOnO/8yOpmwk7TNE3ihwRECewAUJQ8ZVcJABAI0gQAKI2f4gDEgDQBAErjpzgAMSBNAIDS+CkOQAxIEwCgNH6KAxAD0gQAKI2f4gDEgDQBAErjpzgAMSBNAIDS+CkOQAxIEwCgNH6KAxAD0gQAKI2f4gDEgDQBAErjpzgAMSBNAIDS+CkOQAxIEwCgNH6KAxAD0gQAKI2f4gDEgDQBAErjpzgAMSBNAIDS+CluEuC7vTdpcX+TptMpExp5AiYBLpfLtNg/XkX/58Vu+rk/SYurbyMfRcz2TAJsRzGfz1Pz+fuTqfye/E0vP7xNs9ks5sRG1jUARzZQb+2YBNj9CP7xepIurvkI9oarz31NAuQ/IX1GN441JgGOI1q66JMAAPukxJrBEgDgYNFycJ8EANgnJdYMloBrgOevjh4F8/HXbbo7u0z3X74+G9jBp5N0ePo+dc9Yt7E9u/3JWb/tu/y/47PNG1oAwA5iAG5XJwABuF1xnWquAUqTo3iVBABYJUYOKU0AgKXJsa9KAgCsEiOHlCYAwNLk2FclAdcAc76Ty1mb+31f7vqh71JFxpYOAWAn6JIvnAFYrhWAACzXU2Gna4AV+ucIcQIAFA8genkARhcg7h+A4gFELw/A6ALE/bsGyHvAp+8hxZ6yywOQ51jZaGpuACAAa3rKPguAAMxGU3ODa4A1g+AsTQIA1ORO1X8JABAK0gQAKI2f4gDEgDQB1wBzHnbmrG0nMuT6Ic+WaiooDsBOaDxILVC0wRYAAnADPptvdQ1w8/Y5QZ0AANUTCF4fgMEBqNsHoHoCwesDMDgAdfuuAfIglQep0l8gAAIQgGsSUPy5YP5Er5QjxT0m4PrfgB4D586PEwAgIqQJAFAaP8UBiAFpAq4B5ryry1nbTmTI9UOeLdVUUByAPMcqYFNvCwABWE9TwUkABGABm3pbXAOsFwMnqRIAoCp56q4SACAQpAkAUBo/xQGIAWkCrgHyHpD3gNLfHgACEIBrEuBBaj8arj+C+7XIKssJANDydALcDYABhmy5RQBank6AuwEwwJAttwhAy9MJcDcABhiy5RYBaHk6Ae4GwABDttwiAC1PJ8DdABhgyJZbBKDl6QS4GwADDNlyiwC0PJ0AdwNggCFbbhGAlqcT4G4ADDBkyy0C0PJ0AtwNgAGGbLlFAFqeToC7ATDAkC23CEDL0wlwNwAGGLLlFgFoeToB7gbAAEO23OIDjDIX1ZV4u2MAAAAASUVORK5CYII=</thumbnail><scenes select="1"><scene name="U2L12-brickwall - starter"><notes></notes><hidden></hidden><headers></headers><code></code><blocks><block-definition s="set flag %&apos;which&apos; to %&apos;tf&apos;" type="command" category="sensing"><header></header><code></code><translations></translations><inputs><input type="%s" readonly="true"><options>Presentation mode&#xD;Retina display support&#xD;Long form input dialog&#xD;Plain prototype labels&#xD;Input sliders&#xD;Execute on slider change&#xD;Clicking sound&#xD;Turbo mode&#xD;Flat design&#xD;Keyboard editing&#xD;Table support&#xD;Table lines&#xD;Visible stepping&#xD;Thread safe scripts&#xD;Prefer smooth animations&#xD;Flat line ends&#xD;Codification support&#xD;Inheritance support</options></input><input type="%b"></input></inputs><script><block s="doRun"><block s="reportJSFunction"><list><l>which</l><l>tf</l></list><l>var   stage = this.parentThatIsA(StageMorph),&#xD;        ide = stage.parentThatIsA(IDE_Morph),&#xD;        world = stage.parentThatIsA(WorldMorph);&#xD;&#xD;if (tf != !!tf) return;&#xD;&#xD;try{&#xD;ide.savingPreferences = false;&#xD;&#xD;switch (which) {&#xD;    case &apos;Presentation mode&apos;:&#xD;        if (tf != ide.isAppMode) ide.toggleAppMode();&#xD;        break;&#xD;    case &apos;Retina display support&apos;:&#xD;        if (tf != isRetinaEnabled()) ide.toggleRetina();&#xD;        break;&#xD;    case &apos;Long form input dialog&apos;:&#xD;        if (tf != InputSlotDialogMorph.prototype.isLaunchingExpanded)&#xD;            ide.toggleLongFormInputDialog();&#xD;        break;&#xD;    case &apos;Plain prototype labels&apos;:&#xD;        if (tf != BlockLabelPlaceHolderMorph.prototype.plainLabel)&#xD;            ide.togglePlainPrototypeLabels();&#xD;        break;&#xD;    case &apos;Input sliders&apos;:&#xD;        MorphicPreferences.useSliderForInput = tf;&#xD;        break;&#xD;    case &apos;Execute on slider change&apos;:&#xD;        ArgMorph.prototype.executeOnSliderEdit = tf;&#xD;        break;&#xD;    case &apos;Clicking sound&apos;:&#xD;        if (tf != !!BlockMorph.prototype.snapSound)&#xD;            BlockMorph.prototype.toggleSnapSound();&#xD;        break;&#xD;    case &apos;Turbo mode&apos;:&#xD;        if (tf != stage.isFastTracked)&#xD;            ide.toggleFastTracking();&#xD;        break;&#xD;    case &apos;Flat design&apos;:&#xD;        if (tf == MorphicPreferences.isFlat) break;&#xD;        if (tf)&#xD;            ide.flatDesign();&#xD;        else&#xD;            ide.defaultDesign();&#xD;        break;&#xD;    case &apos;Keyboard editing&apos;:&#xD;            ScriptsMorph.prototype.enableKeyboard = tf;&#xD;        break;&#xD;    case &apos;Table support&apos;:&#xD;            List.prototype.enableTables = tf;&#xD;        break;&#xD;    case &apos;Table lines&apos;:&#xD;                TableMorph.prototype.highContrast = tf;&#xD;        break;&#xD;    case &apos;Visible stepping&apos;:&#xD;        if (tf != Process.prototype.enableSingleStepping)&#xD;            ide.toggleSingleStepping();&#xD;        break;&#xD;    case &apos;Thread safe scripts&apos;:&#xD;        stage.isThreadSafe = tf;&#xD;        break;&#xD;    case &apos;Prefer smooth animations&apos;:&#xD;        if (tf != (StageMorph.prototype.frameRate &gt; 0))&#xD;            ide.toggleVariableFrameRate();&#xD;        break;&#xD;    case &apos;Flat line ends&apos;:&#xD;        SpriteMorph.prototype.useFlatLineEnds = tf;&#xD;        break;&#xD;    case &apos;Codification support&apos;:&#xD;        if (tf != StageMorph.prototype.enableCodeMapping) {&#xD;            StageMorph.prototype.enableCodeMapping = tf;&#xD;            ide.currentSprite.blocksCache.variables = null;&#xD;            ide.currentSprite.paletteCache.variables = null;&#xD;            ide.refreshPalette();&#xD;        }&#xD;        break;&#xD;    case &apos;Inheritance support&apos;:&#xD;        if (tf != StageMorph.prototype.enableInheritance) {&#xD;            StageMorph.prototype.enableInheritance = tf;&#xD;            ide.currentSprite.blocksCache.variables = null;&#xD;            ide.currentSprite.paletteCache.variables = null;&#xD;            ide.refreshPalette();&#xD;        }&#xD;        break;&#xD;};&#xD;}&#xD;finally {&#xD;ide.savingPreferences = false;&#xD;};&#xD;</l></block><list><block var="which"/><block var="tf"/></list></block></script></block-definition><block-definition s="draw brick, length: %&apos;length&apos; width: %&apos;width&apos;" type="command" category="pen"><header></header><code></code><translations></translations><inputs><input type="%n"></input><input type="%n"></input></inputs><script><block s="setColor"><color>145,26,68,1</color></block><block s="doSetGlobalFlag"><l><option>flat line ends</option></l><block s="reportBoolean"><l><bool>true</bool></l></block></block><block s="setSize"><block var="width"/></block><block s="down"></block><block s="forward"><block var="length"/></block><block s="up"></block></script></block-definition><block-definition s="set flat line ends to %&apos;flag&apos;" type="command" category="pen"><header></header><code></code><translations></translations><inputs><input type="%b"></input></inputs><script><custom-block s="set flag %s to %b"><l>Flat line ends</l><block var="flag"/></custom-block></script></block-definition><block-definition s="draw row a" type="command" category="pen"><header></header><code></code><translations></translations><inputs></inputs><script><block s="doRepeat"><l>6</l><script><block s="down"></block><custom-block s="draw brick, length: %n width: %n"><l>30</l><l>10</l></custom-block><block s="up"></block><block s="forward"><l>5</l></block></script></block></script></block-definition><block-definition s="draw row b" type="command" category="pen"><header></header><code></code><translations></translations><inputs></inputs><script><block s="down"></block><custom-block s="draw brick, length: %n width: %n"><block s="reportQuotient"><block s="reportDifference"><block s="reportVariadicSum"><list><block s="reportVariadicProduct"><list><l>6</l><l>30</l></list></block><block s="reportVariadicProduct"><list><l>6</l><l>5</l></list></block></list></block><block s="reportVariadicSum"><list><block s="reportVariadicProduct"><list><l>5</l><l>30</l></list></block><block s="reportVariadicProduct"><list><l>7</l><l>5</l></list></block></list></block></block><l>2</l></block><l>10</l></custom-block><block s="up"></block><block s="forward"><l>5</l></block><block s="doRepeat"><l>5</l><script><block s="down"></block><custom-block s="draw brick, length: %n width: %n"><l>30</l><l>10</l></custom-block><block s="up"></block><block s="forward"><l>5</l></block></script></block><block s="down"></block><custom-block s="draw brick, length: %n width: %n"><block s="reportQuotient"><block s="reportDifference"><block s="reportVariadicSum"><list><block s="reportVariadicProduct"><list><l>6</l><l>30</l></list></block><block s="reportVariadicProduct"><list><l>6</l><l>5</l></list></block></list></block><block s="reportVariadicSum"><list><block s="reportVariadicProduct"><list><l>5</l><l>30</l></list></block><block s="reportVariadicProduct"><list><l>7</l><l>5</l></list></block></list></block></block><l>2</l></block><l>10</l></custom-block></script></block-definition><block-definition s="draw Brick Walls with %&apos;number of rows&apos; rows" type="command" category="pen"><header></header><code></code><translations></translations><inputs><input type="%n"></input></inputs><script><block s="doFor"><l>i</l><l>1</l><block var="number of rows"/><script><block s="doIfElse"><block s="reportEquals"><custom-block s="even? %s"><block var="i"/></custom-block><block s="reportBoolean"><l><bool>true</bool></l></block></block><script><custom-block s="draw row a"></custom-block><block s="setXPosition"><l>-100</l></block><block s="changeYPosition"><l>15</l></block></script><script><custom-block s="draw row b"></custom-block><block s="setXPosition"><l>-100</l></block><block s="changeYPosition"><l>15</l></block></script></block></script></block></script></block-definition><block-definition s="Is %&apos;Input dividend&apos; divisible by %&apos;Input divisor&apos;" type="predicate" category="operators"><header></header><code></code><translations></translations><inputs><input type="%s"></input><input type="%s"></input></inputs><script><block s="doReport"><block s="reportEquals"><block s="reportModulus"><block var="Input dividend"/><block var="Input divisor"/></block><l>0</l></block></block></script></block-definition><block-definition s="even? %&apos;Input Number&apos;" type="predicate" category="operators"><header></header><code></code><translations></translations><inputs><input type="%s"></input></inputs><script><block s="doReport"><custom-block s="Is %s divisible by %s"><block var="Input Number"/><l>2</l></custom-block></block></script></block-definition><block-definition s="integer? %&apos;Input Number&apos;" type="predicate" category="operators"><header></header><code></code><translations></translations><inputs><input type="%s"></input></inputs><script><block s="doReport"><block s="reportEquals"><block s="reportRound"><block var="Input Number"/></block><block var="Input Number"/></block></block></script></block-definition><block-definition s="%&apos;Value 1&apos; ≤ %&apos;Value 2&apos;" type="predicate" category="operators"><header></header><code></code><translations></translations><inputs><input type="%s"></input><input type="%s"></input></inputs><script><block s="doReport"><block s="reportOr"><block s="reportLessThan"><block var="Value 1"/><block var="Value 2"/></block><block s="reportEquals"><block var="Value 1"/><block var="Value 2"/></block></block></block></script></block-definition><block-definition s="%&apos;Value 1&apos; ≥ %&apos;Value 2&apos;" type="predicate" category="operators"><header></header><code></code><translations></translations><inputs><input type="%s"></input><input type="%s"></input></inputs><script><block s="doReport"><block s="reportOr"><block s="reportGreaterThan"><block var="Value 1"/><block var="Value 2"/></block><block s="reportEquals"><block var="Value 1"/><block var="Value 2"/></block></block></block></script></block-definition><block-definition s="%&apos;Value 1&apos; ≠ %&apos;Value 2&apos;" type="predicate" category="operators"><header></header><code></code><translations></translations><inputs><input type="%s"></input><input type="%s"></input></inputs><script><block s="doReport"><block s="reportNot"><block s="reportEquals"><block var="Value 1"/><block var="Value 2"/></block></block></block></script></block-definition><block-definition s="is %&apos;Value 1&apos; between %&apos;Value 2&apos; and %&apos;Value 3&apos;" type="predicate" category="operators"><header></header><code></code><translations></translations><inputs><input type="%s"></input><input type="%s"></input><input type="%s"></input></inputs><script><block s="doReport"><block s="reportAnd"><custom-block s="%s ≥ %s"><block var="Value 1"/><block var="Value 2"/></custom-block><custom-block s="%s ≤ %s"><block var="Value 1"/><block var="Value 3"/></custom-block></block></block></script></block-definition><block-definition s="odd? %&apos;Input Number&apos;" type="predicate" category="operators"><header></header><code></code><translations></translations><inputs><input type="%s"></input></inputs><script><block s="doReport"><block s="reportNot"><custom-block s="Is %s divisible by %s"><block var="Input Number"/><l>2</l></custom-block></block></block></script></block-definition><block-definition s="number of divisors" type="reporter" category="operators"><header></header><code></code><translations></translations><inputs></inputs><script><block s="doReport"><l></l></block></script></block-definition><block-definition s="divisors of %&apos;Input number&apos;" type="reporter" category="operators"><header></header><code></code><translations></translations><inputs><input type="%s"></input></inputs><script><block s="doDeclareVariables"><list><l>Potiential divisors</l></list></block><block s="doSetVar"><l>Potiential divisors</l><block s="reportNumbers"><l>1</l><block var="Input number"/></block></block><block s="doDeclareVariables"><list><l>Output list</l></list></block><block s="doSetVar"><l>Output list</l><block s="reportNewList"><list></list></block></block><block s="doForEach"><l>item</l><block var="Potiential divisors"/><script><block s="doIf"><custom-block s="Is %s divisible by %s"><block var="Input number"/><block var="item"/></custom-block><script><block s="doAddToList"><block var="item"/><block var="Output list"/></block></script></block></script></block><block s="doReport"><block var="Output list"/></block></script></block-definition><block-definition s="numbers of divisors %&apos;input number&apos;" type="reporter" category="operators"><header></header><code></code><translations></translations><inputs><input type="%s"></input></inputs><script><block s="doSetVar"><l>Potiential divisor</l><block s="reportNumbers"><l>1</l><block var="input number"/></block></block><block s="doDeclareVariables"><list><l>Output list</l></list></block><block s="doSetVar"><l>Output list</l><block s="reportNewList"><list></list></block></block><block s="doForEach"><l>item</l><block var="Potiential divisor"/><script><block s="doIf"><custom-block s="Is %s divisible by %s"><block var="input number"/><block var="item"/></custom-block><script><block s="doAddToList"><block var="item"/><block var="Output list"/></block></script></block></script></block><block s="doReport"><block s="reportListAttribute"><l><option>length</option></l><block var="Output list"/></block></block></script></block-definition><block-definition s="draw row A, bricks: %&apos;number of bricks&apos; length: %&apos;length?&apos; width: %&apos;width?&apos; gap: %&apos;gap?&apos;" type="command" category="pen"><header></header><code></code><translations></translations><inputs><input type="%s"></input><input type="%s"></input><input type="%s"></input><input type="%s"></input></inputs><script><block s="doRepeat"><block var="number of bricks"/><script><block s="down"></block><custom-block s="draw brick, length: %n width: %n"><block var="length?"/><block var="width?"/></custom-block><block s="up"></block><block s="forward"><block var="gap?"/></block></script></block></script></block-definition><block-definition s="Draw Row B, bricks: %&apos;number of bricks&apos; length: %&apos;length?&apos; width: %&apos;width?&apos; gap: %&apos;gap?&apos;" type="command" category="pen"><header></header><code></code><translations></translations><inputs><input type="%s"></input><input type="%s"></input><input type="%s"></input><input type="%s"></input></inputs><script><block s="down"></block><custom-block s="draw brick, length: %n width: %n"><block s="reportQuotient"><block s="reportDifference"><block s="reportVariadicSum"><list><block s="reportVariadicProduct"><list><block var="number of bricks"/><block var="length?"/></list></block><block s="reportVariadicProduct"><list><block var="number of bricks"/><block var="gap?"/></list></block></list></block><block s="reportVariadicSum"><list><block s="reportVariadicProduct"><list><block s="reportDifference"><block var="number of bricks"/><l>1</l></block><block var="length?"/></list></block><block s="reportVariadicProduct"><list><block s="reportVariadicSum"><list><block var="number of bricks"/><l>1</l></list></block><block var="gap?"/></list></block></list></block></block><l>2</l></block><block var="width?"/></custom-block><block s="up"></block><block s="forward"><l>5</l></block><block s="doRepeat"><block s="reportDifference"><block var="number of bricks"/><l>1</l></block><script><block s="down"></block><custom-block s="draw brick, length: %n width: %n"><block var="length?"/><block var="width?"/></custom-block><block s="up"></block><block s="forward"><block var="gap?"/></block></script></block><block s="down"></block><custom-block s="draw brick, length: %n width: %n"><block s="reportQuotient"><block s="reportDifference"><block s="reportVariadicSum"><list><block s="reportVariadicProduct"><list><block var="number of bricks"/><block var="length?"/></list></block><block s="reportVariadicProduct"><list><block var="number of bricks"/><block var="gap?"/></list></block></list></block><block s="reportVariadicSum"><list><block s="reportVariadicProduct"><list><block s="reportDifference"><block var="number of bricks"/><l>1</l></block><block var="length?"/></list></block><block s="reportVariadicProduct"><list><block s="reportVariadicSum"><list><block var="number of bricks"/><l>1</l></list></block><block var="gap?"/></list></block></list></block></block><l>2</l></block><block var="width?"/></custom-block></script></block-definition><block-definition s="Draw Brick Wall With %&apos;number of rows&apos; Rows with Bricks per Row: %&apos;number of bricks&apos; of Brick Length: %&apos;Length?&apos; Width: %&apos;Width?&apos; Gap Thickness: %&apos;Gap Thickness?&apos;" type="command" category="pen"><header></header><code></code><translations></translations><inputs><input type="%s"></input><input type="%s"></input><input type="%s"></input><input type="%s"></input><input type="%s"></input></inputs><script><block s="doFor"><l>i</l><l>1</l><block var="number of rows"/><script><block s="doIfElse"><block s="reportEquals"><custom-block s="even? %s"><block var="i"/></custom-block><block s="reportBoolean"><l><bool>true</bool></l></block></block><script><custom-block s="draw row A, bricks: %s length: %s width: %s gap: %s"><block var="number of bricks"/><block var="Length?"/><block var="Width?"/><block var="Gap Thickness?"/></custom-block><block s="setXPosition"><l>-100</l></block><block s="changeYPosition"><block s="reportVariadicProduct"><list><block var="Gap Thickness?"/><l>5</l></list></block></block></script><script><custom-block s="Draw Row B, bricks: %s length: %s width: %s gap: %s"><block var="number of bricks"/><block var="Length?"/><block var="Width?"/><block var="Gap Thickness?"/></custom-block><block s="setXPosition"><l>-100</l></block><block s="changeYPosition"><block s="reportVariadicProduct"><list><block var="Gap Thickness?"/><l>5</l></list></block></block></script></block></script></block></script></block-definition></blocks><stage name="Stage" width="480" height="360" costume="0" color="255,255,255,1" tempo="60" threadsafe="false" penlog="false" volume="100" pan="0" lines="flat" ternary="true" hyperops="true" codify="false" inheritance="false" sublistIDs="false" id="520"><pentrails>data:image/png;base64,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AgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAgI8fECWR4AAAQKZAgKcOVe7IkCAAIHhAv8DMroR8MFsMakAAAAASUVORK5CYII=</pentrails><costumes><list struct="atomic" id="521"></list></costumes><sounds><list struct="atomic" id="522"></list></sounds><variables></variables><blocks></blocks><scripts></scripts><sprites select="1"><sprite name="Sprite" idx="1" x="-100" y="75" heading="90" scale="1" volume="100" pan="0" rotation="1" draggable="true" costume="0" color="145,26,68,1" pen="tip" id="527"><costumes><list struct="atomic" id="528"></list></costumes><sounds><list struct="atomic" id="529"></list></sounds><blocks></blocks><variables></variables><scripts><script x="17" y="146.33333333333337"><block s="receiveKey"><l><option>space</option></l><list></list></block><block s="up"></block><block s="clear"></block><block s="gotoXY"><l>-100</l><l>-100</l></block></script><script x="190" y="497.83333333333326"><block s="doRepeat"><l>5</l><script><block s="down"></block><custom-block s="draw brick, length: %n width: %n"><l>30</l><l>10</l></custom-block><block s="up"></block><block s="forward"><l>5</l></block></script></block></script><script x="266" y="104.83333333333326"><custom-block s="draw row b"></custom-block></script><script x="239" y="163.9999999999999"><custom-block s="draw row a"></custom-block></script><script x="179" y="365.66666666666663"><custom-block s="draw Brick Walls with %n rows"><l>10</l></custom-block></script><script x="39" y="275.40000000000003"><custom-block s="draw row A, bricks: %s length: %s width: %s gap: %s"><l></l><l></l><l></l><l></l></custom-block></script><script x="40" y="322.40000000000003"><custom-block s="Draw Row B, bricks: %s length: %s width: %s gap: %s"><l>6</l><l>30</l><l>10</l><l>5</l></custom-block></script><script x="39" y="35.400000000000034"><custom-block s="Draw Brick Wall With %s Rows with Bricks per Row: %s of Brick Length: %s Width: %s Gap Thickness: %s"><l>7</l><l>6</l><l>30</l><l>10</l><l>5</l></custom-block></script></scripts></sprite></sprites></stage><variables></variables></scene></scenes></project><media name="U2L12-brickwall - starter" app="Snap! 7, https://snap.berkeley.edu" version="2"></media></snapdata>