diff --git a/src/test/java/de/deadlocker8/budgetmaster/integration/selenium/MediaTest.java b/src/test/java/de/deadlocker8/budgetmaster/integration/selenium/MediaTest.java new file mode 100644 index 0000000000000000000000000000000000000000..e34d5b0c157256f28153e3e3ae9f2f6e95a54583 --- /dev/null +++ b/src/test/java/de/deadlocker8/budgetmaster/integration/selenium/MediaTest.java @@ -0,0 +1,83 @@ +package de.deadlocker8.budgetmaster.integration.selenium; + +import de.deadlocker8.budgetmaster.accounts.Account; +import de.deadlocker8.budgetmaster.accounts.AccountType; +import de.deadlocker8.budgetmaster.authentication.UserService; +import de.deadlocker8.budgetmaster.integration.helpers.IntegrationTestHelper; +import de.deadlocker8.budgetmaster.integration.helpers.SeleniumTestBase; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; +import org.openqa.selenium.By; +import org.openqa.selenium.JavascriptExecutor; +import org.openqa.selenium.WebElement; +import org.openqa.selenium.support.ui.ExpectedConditions; +import org.openqa.selenium.support.ui.WebDriverWait; + +import java.io.File; +import java.text.MessageFormat; +import java.util.Arrays; +import java.util.List; + +import static org.assertj.core.api.Assertions.assertThat; + +class MediaTest extends SeleniumTestBase +{ + private IntegrationTestHelper helper; + + @BeforeAll + public void beforeAll() + { + helper = new IntegrationTestHelper(driver, port); + helper.start(); + helper.login(UserService.DEFAULT_PASSWORD); + helper.hideBackupReminder(); + helper.hideWhatsNewDialog(); + + String path = getClass().getClassLoader().getResource("OnlyAccountsWithDifferentImages.json").getFile().replace("/", File.separator); + + final Account account1 = new Account("account with jpg", AccountType.CUSTOM); + final Account account2 = new Account("account with svg", AccountType.CUSTOM); + final Account account3 = new Account("account with png", AccountType.CUSTOM); + + final List<Account> destinationAccounts = List.of(account1, account2, account3); + + helper.uploadDatabase(path, Arrays.asList("account with jpg", "account with svg", "account with png"), destinationAccounts); + } + + @Test + void test_imagesAreLoadedCorrectlyForAllSupportedFileExtensions() + { + driver.get(helper.getUrl() + "/accounts"); + + WebDriverWait wait = new WebDriverWait(driver, 5); + wait.until(ExpectedConditions.textToBePresentInElementLocated(By.cssSelector(".headline"), "Accounts")); + + List<WebElement> accountRows = driver.findElements(By.cssSelector(".account-container tr")); + assertThat(accountRows).hasSize(4); + + checkImageLoaded(accountRows.get(0), "JPG"); + checkImageLoaded(accountRows.get(1), "PNG"); + checkImageLoaded(accountRows.get(2), "SVG"); + // the last account ist the default account created on database creation and has no image + } + + private void checkImageLoaded(WebElement accountRow, String imageType) + { + final List<WebElement> columns = accountRow.findElements(By.tagName("td")); + final WebElement image = columns.get(1).findElement(By.className("account-select-icon")); + + Object result = ((JavascriptExecutor) driver).executeScript( + "return arguments[0].complete && " + + "typeof arguments[0].naturalWidth != \"undefined\" && " + + "arguments[0].naturalWidth > 0", image); + + Boolean imageLoaded = false; + if(result instanceof Boolean) + { + imageLoaded = (Boolean) result; + } + + assertThat(imageLoaded).as(MessageFormat.format("Image of type {0} is not displayed", imageType)) + .isTrue(); + } +} \ No newline at end of file diff --git a/src/test/resources/OnlyAccountsWithDifferentImages.json b/src/test/resources/OnlyAccountsWithDifferentImages.json new file mode 100644 index 0000000000000000000000000000000000000000..6cf615c6f92fe5e68fe5fbc48fa32691c7ad7703 --- /dev/null +++ b/src/test/resources/OnlyAccountsWithDifferentImages.json @@ -0,0 +1 @@ +{"TYPE":"BUDGETMASTER_DATABASE","VERSION":7,"categories":[{"ID":3,"name":"Category with image","color":"#ffcc00","type":"CUSTOM"},{"ID":1,"name":"No Category","color":"#FFFFFF","type":"NONE"},{"ID":2,"name":"Rest","color":"#FFFF00","type":"REST"},{"ID":4,"name":"scond","color":"#eeeeee","type":"CUSTOM","iconReferenceID":3}],"accounts":[{"ID":1,"name":"Placeholder","accountState":"FULL_ACCESS","type":"ALL"},{"ID":3,"name":"account with jpg","accountState":"FULL_ACCESS","type":"CUSTOM","iconReferenceID":8},{"ID":4,"name":"account with svg","accountState":"FULL_ACCESS","type":"CUSTOM","iconReferenceID":10},{"ID":5,"name":"account with png","accountState":"FULL_ACCESS","type":"CUSTOM","iconReferenceID":9}],"transactions":[],"templates":[],"charts":[],"images":[{"ID":2,"image":[-1,-40,-1,-32,0,16,74,70,73,70,0,1,1,1,0,96,0,96,0,0,-1,-31,0,102,69,120,105,102,0,0,77,77,0,42,0,0,0,8,0,4,1,26,0,5,0,0,0,1,0,0,0,62,1,27,0,5,0,0,0,1,0,0,0,70,1,40,0,3,0,0,0,1,0,2,0,0,1,49,0,2,0,0,0,16,0,0,0,78,0,0,0,0,0,0,0,96,0,0,0,1,0,0,0,96,0,0,0,1,112,97,105,110,116,46,110,101,116,32,52,46,51,46,50,0,-1,-37,0,67,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,-37,0,67,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,-64,0,17,8,4,26,5,120,3,1,17,0,2,17,1,3,17,1,-1,-60,0,31,0,0,1,5,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,8,9,10,11,-1,-60,0,-75,16,0,2,1,3,3,2,4,3,5,5,4,4,0,0,1,125,1,2,3,0,4,17,5,18,33,49,65,6,19,81,97,7,34,113,20,50,-127,-111,-95,8,35,66,-79,-63,21,82,-47,-16,36,51,98,114,-126,9,10,22,23,24,25,26,37,38,39,40,41,42,52,53,54,55,56,57,58,67,68,69,70,71,72,73,74,83,84,85,86,87,88,89,90,99,100,101,102,103,104,105,106,115,116,117,118,119,120,121,122,-125,-124,-123,-122,-121,-120,-119,-118,-110,-109,-108,-107,-106,-105,-104,-103,-102,-94,-93,-92,-91,-90,-89,-88,-87,-86,-78,-77,-76,-75,-74,-73,-72,-71,-70,-62,-61,-60,-59,-58,-57,-56,-55,-54,-46,-45,-44,-43,-42,-41,-40,-39,-38,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-1,-60,0,31,1,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,2,3,4,5,6,7,8,9,10,11,-1,-60,0,-75,17,0,2,1,2,4,4,3,4,7,5,4,4,0,1,2,119,0,1,2,3,17,4,5,33,49,6,18,65,81,7,97,113,19,34,50,-127,8,20,66,-111,-95,-79,-63,9,35,51,82,-16,21,98,114,-47,10,22,36,52,-31,37,-15,23,24,25,26,38,39,40,41,42,53,54,55,56,57,58,67,68,69,70,71,72,73,74,83,84,85,86,87,88,89,90,99,100,101,102,103,104,105,106,115,116,117,118,119,120,121,122,-126,-125,-124,-123,-122,-121,-120,-119,-118,-110,-109,-108,-107,-106,-105,-104,-103,-102,-94,-93,-92,-91,-90,-89,-88,-87,-86,-78,-77,-76,-75,-74,-73,-72,-71,-70,-62,-61,-60,-59,-58,-57,-56,-55,-54,-46,-45,-44,-43,-42,-41,-40,-39,-38,-30,-29,-28,-27,-26,-25,-24,-23,-22,-14,-13,-12,-11,-10,-9,-8,-7,-6,-1,-38,0,12,3,1,0,2,17,3,17,0,63,0,-4,-113,-81,-26,-13,-2,-10,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,0,-96,2,-128,10,0,40,3,-1,-39],"fileName":"abc.jpg","fileExtension":"JPG"},{"ID":3,"image":[60,63,120,109,108,32,118,101,114,115,105,111,110,61,34,49,46,48,34,32,101,110,99,111,100,105,110,103,61,34,85,84,70,45,56,34,32,115,116,97,110,100,97,108,111,110,101,61,34,110,111,34,63,62,60,33,45,45,32,71,101,110,101,114,97,116,111,114,58,32,71,114,97,118,105,116,46,105,111,32,45,45,62,60,115,118,103,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,120,109,108,110,115,58,120,108,105,110,107,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,120,108,105,110,107,34,32,115,116,121,108,101,61,34,105,115,111,108,97,116,105,111,110,58,105,115,111,108,97,116,101,34,32,118,105,101,119,66,111,120,61,34,48,32,48,32,50,48,48,32,50,48,48,34,32,119,105,100,116,104,61,34,50,48,48,112,116,34,32,104,101,105,103,104,116,61,34,50,48,48,112,116,34,62,60,100,101,102,115,62,60,99,108,105,112,80,97,116,104,32,105,100,61,34,95,99,108,105,112,80,97,116,104,95,67,119,82,118,56,115,119,117,114,102,97,115,86,121,89,120,116,72,90,52,89,111,90,112,72,106,73,72,78,111,54,111,34,62,60,114,101,99,116,32,119,105,100,116,104,61,34,50,48,48,34,32,104,101,105,103,104,116,61,34,50,48,48,34,47,62,60,47,99,108,105,112,80,97,116,104,62,60,47,100,101,102,115,62,60,103,32,99,108,105,112,45,112,97,116,104,61,34,117,114,108,40,35,95,99,108,105,112,80,97,116,104,95,67,119,82,118,56,115,119,117,114,102,97,115,86,121,89,120,116,72,90,52,89,111,90,112,72,106,73,72,78,111,54,111,41,34,62,60,112,97,116,104,32,100,61,34,32,77,32,49,57,54,46,50,49,53,32,49,53,55,46,53,56,50,32,76,32,49,50,54,46,57,55,50,32,49,52,56,46,50,53,32,76,32,56,48,46,48,51,32,50,48,48,32,76,32,54,55,46,53,48,56,32,49,51,49,46,50,54,50,32,76,32,51,46,55,56,53,32,49,48,50,46,54,48,57,32,76,32,54,53,46,50,56,57,32,54,57,46,52,53,57,32,76,32,55,50,46,56,52,56,32,48,32,76,32,49,50,51,46,51,56,50,32,52,56,46,50,53,32,76,32,49,57,49,46,55,55,55,32,51,51,46,57,55,54,32,76,32,49,54,49,46,53,48,52,32,57,54,46,57,52,54,32,76,32,49,57,54,46,50,49,53,32,49,53,55,46,53,56,50,32,90,32,34,32,102,105,108,108,61,34,114,103,98,40,50,53,53,44,50,52,52,44,56,51,41,34,47,62,60,47,103,62,60,47,115,118,103,62],"fileName":"star.svg","fileExtension":"SVG"},{"ID":4,"image":[-119,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,5,120,0,0,4,26,1,3,0,0,0,-61,-114,-126,-111,0,0,0,1,115,82,71,66,0,-82,-50,28,-23,0,0,0,4,103,65,77,65,0,0,-79,-113,11,-4,97,5,0,0,0,3,80,76,84,69,-44,-1,-103,55,13,118,-92,0,0,0,9,112,72,89,115,0,0,14,-61,0,0,14,-61,1,-57,111,-88,100,0,0,0,-54,73,68,65,84,120,-38,-19,-63,49,1,0,0,0,-62,-96,-11,79,109,9,79,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-128,-117,26,-47,-2,0,1,-83,18,-13,21,0,0,0,0,73,69,78,68,-82,66,96,-126],"fileName":"png.png","fileExtension":"PNG"}],"icons":[{"ID":3,"builtinIdentifier":"fas fa-angle-double-up"},{"ID":8,"imageID":2},{"ID":9,"imageID":4},{"ID":10,"imageID":3}]} \ No newline at end of file