Pārlūkot izejas kodu

feat: 接入黑名单查询接口

weijianghai 2 gadi atpakaļ
vecāks
revīzija
e074f39d03

BIN
doc/需求文档/河北垃圾短信监控系统提供的文档/河北联通查询号码是否在黑是否可以解黑接口.docx


+ 13 - 10
sms_blk_api/pom.xml

@@ -40,16 +40,6 @@
             <artifactId>lombok</artifactId>
             <scope>provided</scope>
         </dependency>
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-starter-jdbc</artifactId>
-        </dependency>
-        <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
-        <dependency>
-            <groupId>org.postgresql</groupId>
-            <artifactId>postgresql</artifactId>
-            <version>42.4.1</version>
-        </dependency>
         <dependency>
             <groupId>com.alibaba</groupId>
             <artifactId>fastjson</artifactId>
@@ -59,6 +49,19 @@
             <artifactId>fastcsv</artifactId>
             <scope>test</scope>
         </dependency>
+        <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
+        <dependency>
+            <groupId>com.squareup.okhttp3</groupId>
+            <artifactId>okhttp</artifactId>
+            <version>4.10.0</version>
+            <scope>test</scope>
+        </dependency>
+        <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
+        <dependency>
+            <groupId>com.google.code.gson</groupId>
+            <artifactId>gson</artifactId>
+            <version>2.10</version>
+        </dependency>
     </dependencies>
 
     <build>

+ 19 - 16
sms_blk_api/src/main/java/com/nokia/sms/controller/BlkController.java

@@ -7,14 +7,12 @@ import com.nokia.sms.vo.DelBlkResp;
 import com.nokia.sms.vo.QueryDTO;
 import com.nokia.sms.vo.QueryResp;
 import com.nokia.sms.vo.RequestParams;
-import org.springframework.util.CollectionUtils;
 import org.springframework.web.bind.annotation.PostMapping;
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RestController;
 
 import javax.validation.Valid;
-import java.util.Map;
 
 /**
  * 黑名单查询及解除接口类
@@ -36,24 +34,29 @@ public class BlkController {
     @PostMapping("remove")
     public R remove(@Valid @RequestBody RequestParams params) {
         DelBlkResp delBlkResp = new DelBlkResp();
+        delBlkResp.setDelBlkSuccess(false);
+        delBlkResp.setDelBlkMessage("解除黑名单失败");
         // 查询黑名单
-        Map<String, Object> current = queryService.getBlackListInfo(params.getPhone());
-        // 不可以解黑
-        if (!CollectionUtils.isEmpty(current) && !current.get("suggestion").equals(1)) {
-            delBlkResp.setDelBlkSuccess(false);
-            delBlkResp.setDelBlkMessage("解除黑名单失败");
+        QueryResp queryResp = queryService.query(new QueryDTO(params.getPhone(), params.getFromSystem()));
+        // 查询黑名单失败
+        if (Boolean.FALSE.equals(queryResp.getQuerySuccess())) {
             return R.ok().data(delBlkResp);
         }
-        // 尝试解除黑名单
-        // TODO 此处测试环境和正式环境不同,待测试环境下的server部署后,可以修改测试环境的配置文件,即可考虑测试环境和正式环境部署相同的jar包
-        if (socketClientService.delBlk(params.getPhone())) {
-//             if (params.getPhone().equals("13231899751")) {
-            delBlkResp.setDelBlkSuccess(true);
-            delBlkResp.setDelBlkMessage("成功解除黑名单");
-        } else {
-            delBlkResp.setDelBlkSuccess(false);
-            delBlkResp.setDelBlkMessage("解除黑名单失败");
+
+        QueryResp.QueryResultDTO queryResultDTO = queryResp.getQueryResult();
+        // 不能解黑
+        if (Boolean.FALSE.equals(queryResultDTO.getAllowToDel())) {
+            return R.ok().data(delBlkResp);
+        }
+
+        // 解黑失败
+        if (!socketClientService.delBlk(params.getPhone())) {
+            return R.ok().data(delBlkResp);
         }
+
+        // 解黑成功
+        delBlkResp.setDelBlkSuccess(true);
+        delBlkResp.setDelBlkMessage("成功解除黑名单");
         return R.ok().data(delBlkResp);
     }
 

+ 54 - 43
sms_blk_api/src/main/java/com/nokia/sms/service/QueryService.java

@@ -1,61 +1,72 @@
 package com.nokia.sms.service;
 
+import com.google.gson.JsonArray;
+import com.google.gson.JsonElement;
+import com.google.gson.JsonObject;
+import com.google.gson.JsonParser;
+import com.nokia.sms.vo.QueryBlackDTO;
 import com.nokia.sms.vo.QueryDTO;
 import com.nokia.sms.vo.QueryResp;
-import org.springframework.dao.EmptyResultDataAccessException;
-import org.springframework.jdbc.core.JdbcTemplate;
+import lombok.extern.slf4j.Slf4j;
 import org.springframework.stereotype.Service;
-import org.springframework.util.CollectionUtils;
-
-import java.util.Collections;
-import java.util.Map;
+import org.springframework.web.client.RestTemplate;
 
+@Slf4j
 @Service
 public class QueryService {
-    private final JdbcTemplate jdbcTemplate;
-
-    public QueryService(JdbcTemplate jdbcTemplate) {
-        this.jdbcTemplate = jdbcTemplate;
-    }
+    public static final String URL = "http://10.17.182.24:8082/task/queryBlack";
 
     public QueryResp query(QueryDTO params) {
-        Map<String, Object> map = getBlackListInfo(params.getPhone());
+        RestTemplate restTemplate = new RestTemplate();
         QueryResp r = new QueryResp();
         r.setQuerySuccess(false);
-        if (CollectionUtils.isEmpty(map)) {
-            r.setQueryMessage("无加黑记录");
-            return r;
-        }
+        r.setQueryMessage("查询失败");
+        try {
+            // 查询黑名单
+            String responseString = restTemplate.postForObject(URL, new QueryBlackDTO(params.getPhone()), String.class);
+            if (responseString == null) {
+                log.error("查询黑名单接口响应为空");
+                return r;
+            }
 
-        if (map.get("operation_type").equals(2)) {
-            r.setQueryMessage("曾在黑名单,已解黑");
-            return r;
-        }
+            JsonObject responseJsonObject = JsonParser.parseString(responseString).getAsJsonObject();
+            JsonElement retStatusJsonElement = responseJsonObject.get("retStatus");
+            JsonElement retDataJsonElement = responseJsonObject.get("retData");
+            if (retStatusJsonElement == null
+                    || retDataJsonElement == null
+                    || !"success".equals(retStatusJsonElement.getAsString())) {
+                log.error("查询黑名单接口响应异常: {}", responseString);
+                return r;
+            }
 
-        QueryResp.QueryResultDTO dto = new QueryResp.QueryResultDTO();
-        dto.setReason(map.get("reason").toString());
-        dto.setStartTime((String) map.get("start_time"));
-        dto.setEndTime((String) map.get("end_time"));
-        dto.setDescribe((String) map.get("hit_desc"));
-        dto.setAllowToDel(map.get("suggestion").equals(1));
-        r.setQuerySuccess(true);
-        r.setQueryMessage("当前在黑名单");
-        r.setQueryResult(dto);
-        return r;
-    }
+            // 不在黑
+            if (!retDataJsonElement.isJsonArray()) {
+                r.setQueryMessage("当前不在黑");
+                return r;
+            }
 
-    /**
-     * 得到黑名单信息
-     *
-     * @param phone 电话
-     * @return {@link Map}<{@link String}, {@link Object}>
-     */
-    public Map<String, Object> getBlackListInfo(String phone) {
-        String sql = "select * from sms_blk.blacklist where phone = ?";
-        try {
-            return jdbcTemplate.queryForMap(sql, phone);
-        } catch (EmptyResultDataAccessException e) {
-            return Collections.emptyMap();
+            JsonArray retDataJsonArray = retDataJsonElement.getAsJsonArray();
+            if (retDataJsonArray.isEmpty()) {
+                r.setQueryMessage("当前不在黑");
+                return r;
+            }
+
+            // 在黑
+            JsonObject data = retDataJsonArray.get(0).getAsJsonObject();
+            QueryResp.QueryResultDTO dto = new QueryResp.QueryResultDTO();
+            boolean allowToDel = "1".equals(data.get("advice").getAsString());
+            dto.setReason(data.get("reason").getAsString());
+            dto.setStartTime(data.get("startTime").getAsString());
+            dto.setEndTime(data.get("endTime").getAsString());
+            dto.setDescribe(data.get("reasonInfo").getAsString());
+            dto.setAllowToDel(allowToDel);
+            r.setQuerySuccess(true);
+            r.setQueryMessage(allowToDel ? "当前在黑可解黑" : "当前在黑不可解黑");
+            r.setQueryResult(dto);
+        } catch (Exception e) {
+            log.error("查询黑名单接口异常: {}", e.getMessage(), e);
         }
+
+        return r;
     }
 }

+ 12 - 0
sms_blk_api/src/main/java/com/nokia/sms/vo/QueryBlackDTO.java

@@ -0,0 +1,12 @@
+package com.nokia.sms.vo;
+
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+public class QueryBlackDTO {
+    private String phoneNumber;
+}

+ 26 - 0
sms_blk_api/src/main/java/com/nokia/sms/vo/QueryBlackVO.java

@@ -0,0 +1,26 @@
+package com.nokia.sms.vo;
+
+import lombok.Data;
+import lombok.NoArgsConstructor;
+
+import java.util.List;
+
+@NoArgsConstructor
+@Data
+public class QueryBlackVO {
+    private String retStatus;
+    private String retMessage;
+    private List<RetDataDTO> retData;
+
+    @NoArgsConstructor
+    @Data
+    public static class RetDataDTO {
+        private String msisdn;
+        private String reason;
+        private String startTime;
+        private String endTime;
+        private String reasonInfo;
+        private String optType;
+        private String advice;
+    }
+}

+ 4 - 0
sms_blk_api/src/main/java/com/nokia/sms/vo/QueryDTO.java

@@ -1,10 +1,14 @@
 package com.nokia.sms.vo;
 
+import lombok.AllArgsConstructor;
 import lombok.Data;
+import lombok.NoArgsConstructor;
 
 import javax.validation.constraints.NotBlank;
 
 @Data
+@NoArgsConstructor
+@AllArgsConstructor
 public class QueryDTO {
     @NotBlank(message = "phone不能为空")
     private String phone;

+ 0 - 4
sms_blk_api/src/main/resources/application.properties

@@ -1,6 +1,2 @@
 server.port=12120
-
 logging.level.com.nokia=debug
-spring.datasource.url=jdbc:postgresql://192.168.10.54:5432/sqmmt
-spring.datasource.username=sms_blk
-spring.datasource.password=Sms@Richr00t

+ 9 - 12
sms_blk_api/src/test/java/com/nokia/sms/ApiTest.java

@@ -1,24 +1,21 @@
 package com.nokia.sms;
 
+import com.nokia.sms.vo.QueryBlackDTO;
+import lombok.extern.slf4j.Slf4j;
 import org.junit.jupiter.api.Test;
-import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.dao.EmptyResultDataAccessException;
-import org.springframework.jdbc.core.JdbcTemplate;
+import org.springframework.web.client.RestTemplate;
 
+@Slf4j
 @SpringBootTest
 class ApiTest {
-    @Autowired
-    private JdbcTemplate jdbcTemplate;
 
     @Test
     void test() {
-        String phone = "18631393293";
-        String sql = "select 1 from sms_blk.blacklist_file where phone = ? limit 1";
-        try {
-            jdbcTemplate.queryForMap(sql, phone);
-        } catch (EmptyResultDataAccessException e) {
-            e.printStackTrace();
-        }
+        String url = "http://10.17.182.24:8082/task/queryBlack";
+        String phone = "18630000920";
+        RestTemplate restTemplate = new RestTemplate();
+        String responseString = restTemplate.postForObject(url, new QueryBlackDTO(phone), String.class);
+        log.info(responseString);
     }
 }

+ 31 - 25
sms_blk_api/src/test/java/com/nokia/sms/ConcurrentTest.java

@@ -8,13 +8,17 @@ import de.siegmar.fastcsv.reader.CsvRow;
 import de.siegmar.fastcsv.writer.CsvWriter;
 import lombok.AllArgsConstructor;
 import lombok.extern.slf4j.Slf4j;
+import okhttp3.ConnectionPool;
+import okhttp3.OkHttpClient;
 import org.junit.jupiter.api.Test;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.boot.test.context.SpringBootTest;
 import org.springframework.boot.test.context.TestConfiguration;
 import org.springframework.context.annotation.Bean;
 import org.springframework.context.annotation.Import;
-import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;
+import org.springframework.http.client.OkHttp3ClientHttpRequestFactory;
+import org.springframework.scheduling.concurrent.CustomizableThreadFactory;
+import org.springframework.util.StringUtils;
 import org.springframework.web.client.RestTemplate;
 
 import java.io.BufferedReader;
@@ -28,6 +32,9 @@ import java.nio.file.Paths;
 import java.time.LocalDateTime;
 import java.util.HashSet;
 import java.util.Set;
+import java.util.concurrent.LinkedBlockingQueue;
+import java.util.concurrent.ThreadPoolExecutor;
+import java.util.concurrent.TimeUnit;
 
 /**
  * 并发测试
@@ -44,29 +51,28 @@ class ConcurrentTest {
     /**
      * 手机号文件
      */
-    public static final String PHONES_FILE = "test/1000.txt";
+    public static final String PHONES_FILE = "test/10000.txt";
+
     @Autowired
-    private RestTemplate restTemplate;
+    private RestTemplate template;
     @Autowired
-    private ThreadPoolTaskScheduler threadPoolTaskScheduler;
+    private ThreadPoolExecutor executor;
 
     @TestConfiguration
     static class ConcurrentTestConfig {
         @Bean
-        public RestTemplate restTemplate() {
-            return new RestTemplate();
+        public RestTemplate template() {
+            return new RestTemplate(new OkHttp3ClientHttpRequestFactory(new OkHttpClient().newBuilder()
+                    .connectionPool(new ConnectionPool(1000, 10, TimeUnit.MINUTES))
+                    .build()));
         }
 
         @Bean
-        public ThreadPoolTaskScheduler threadPoolTaskScheduler() {
-            ThreadPoolTaskScheduler scheduler = new ThreadPoolTaskScheduler();
-            scheduler.setPoolSize(poolSize);
-            scheduler.setWaitForTasksToCompleteOnShutdown(true);
-//        scheduler.setThreadNamePrefix("");
-//        scheduler.setAwaitTerminationSeconds(60);
-//        scheduler.setErrorHandler(e -> log.error(">>> {}", e.getMessage(), e));
-            scheduler.initialize();
-            return scheduler;
+        public ThreadPoolExecutor executor() {
+            ThreadPoolExecutor executor = new ThreadPoolExecutor(poolSize, poolSize, 0L, TimeUnit.MILLISECONDS,
+                    new LinkedBlockingQueue<>(), new CustomizableThreadFactory("test-"));
+            executor.prestartAllCoreThreads();
+            return executor;
         }
     }
 
@@ -84,19 +90,19 @@ class ConcurrentTest {
             e.printStackTrace();
             return;
         }
-        resultPath = resultPath + "黑名单查询接口" + poolSize + "个线程1000条数据测试结果.csv";
+        resultPath = resultPath + "黑名单查询接口" + poolSize + "个线程10000条数据测试结果.csv";
         // 接口地址
-        String url = "http://192.168.50.3:12120/sms/blacklist/api/query/";
-//        String url = "http://133.96.94.108:12120/sms/blacklist/api/query/";
+//        String url = "http://192.168.50.3:12120/sms/blacklist/api/query/";
+        String url = "http://133.96.94.108:12120/sms/blacklist/api/query/";
         Set<String> phones = readPhones();
         for (String t : phones) {
             RequestParams dto = new RequestParams();
             dto.setPhone(t);
             dto.setFromSystem("test");
-            threadPoolTaskScheduler.submit(new Task(restTemplate, t, url, dto, singlePath));
+            executor.submit(new Task(template, t, url, dto, singlePath));
         }
         // 等待所有任务执行结束
-        while (threadPoolTaskScheduler.getActiveCount() > 0) {
+        while (executor.getActiveCount() > 0) {
         }
         mergeResult(phones, resultPath, singlePath);
     }
@@ -124,10 +130,10 @@ class ConcurrentTest {
             dto.setPhone(t);
             dto.setFromSystem("test");
             dto.setOperator("test");
-            threadPoolTaskScheduler.submit(new Task(restTemplate, t, url, dto, singlePath));
+            executor.submit(new Task(template, t, url, dto, singlePath));
         }
         // 等待所有任务执行结束
-        while (threadPoolTaskScheduler.getActiveCount() > 0) {
+        while (executor.getActiveCount() > 0) {
         }
         mergeResult(phones, resultPath, singlePath);
     }
@@ -162,7 +168,7 @@ class ConcurrentTest {
 
     @AllArgsConstructor
     class Task implements Runnable {
-        private RestTemplate restTemplate;
+        private RestTemplate template;
         private String phoneNumber;
         private String url;
         private Object dto;
@@ -175,7 +181,7 @@ class ConcurrentTest {
             LocalDateTime startTime = LocalDateTime.now();
             long startTimestamp = System.currentTimeMillis();
             try {
-                res = restTemplate.postForObject(url, dto, R.class);
+                res = template.postForObject(url, dto, R.class);
             } catch (Exception e) {
                 res = e.getMessage();
                 log.error("{} -> {}", phoneNumber, e.getMessage(), e);
@@ -203,7 +209,7 @@ class ConcurrentTest {
              BufferedReader br = new BufferedReader(isr);) {
             String line;
             while ((line = br.readLine()) != null) {
-                result.add(line);
+                result.add(StringUtils.delete(line, "\""));
             }
         } catch (IOException e) {
             e.printStackTrace();

+ 10000 - 0
sms_blk_api/test/10000.txt

@@ -0,0 +1,10000 @@
+"15100871216"
+"16630738423"
+"18631778809"
+"15512134999"
+"18632383600"
+"13021889509"
+"17188921757"
+"13803340325"
+"13832817905"
+"13931966599"
+"15612787766"
+"15383259654"
+"17731593617"
+"15503297996"
+"17188921767"
+"17188921971"
+"17188922089"
+"17188922096"
+"16718989234"
+"16718989345"
+"16718989466"
+"16718989499"
+"008562094061914"
+"13253235627"
+"13253166009"
+"17633383521"
+"18630644467"
+"16781837209"
+"13127378317"
+"16781837242"
+"16781837303"
+"16781837308"
+"16781837312"
+"16781838052"
+"16781838053"
+"16781838284"
+"16781838301"
+"15633801225"
+"15614069377"
+"18631207087"
+"17503107778"
+"13111428892"
+"13230265529"
+"13230755216"
+"17532526726"
+"17503281666"
+"008521914015951"
+"008521914016466"
+"00852548103457892"
+"008521913421533"
+"008521913417932"
+"008521913412446"
+"0085219100845597"
+"008521913665860"
+"008521913222997"
+"0085219100835835"
+"0085219100788130"
+"0085219100482508"
+"00852548104072796"
+"00852548104074368"
+"0085255733842"
+"00639152814900"
+"0085246486902"
+"0085246804665"
+"16781838302"
+"17158941569"
+"15531680671"
+"13091019939"
+"15512510191"
+"13165565888"
+"17188921236"
+"17188921929"
+"17188923769"
+"17188925197"
+"17188925887"
+"17188927167"
+"17188927897"
+"16718982626"
+"16718983030"
+"16718982722"
+"16718983011"
+"13103148873"
+"16718982300"
+"16718982322"
+"16718982323"
+"16718982355"
+"16718982488"
+"16718982511"
+"16718981119"
+"16718981212"
+"16718981313"
+"13293210951"
+"16630123811"
+"16718981456"
+"18633623285"
+"16603255112"
+"15833785795"
+"0085296049213"
+"0085219100467246"
+"008521913233679"
+"0085266726313"
+"00852548104343907"
+"008521913982432"
+"008521913662592"
+"008521913412587"
+"0085293229352"
+"008521913665597"
+"008521913665593"
+"008521913665541"
+"0085219100992628"
+"008521913660788"
+"008521913665537"
+"008521913665594"
+"008521913421571"
+"0085269486540"
+"0085269486833"
+"0085296372523"
+"0085219100497782"
+"0085219100727042"
+"0085219100756484"
+"0085219100758609"
+"008521913413549"
+"008521913417823"
+"008521913417914"
+"008521913418284"
+"008521913418440"
+"0085254412619"
+"0085291490106"
+"0085269589549"
+"00852548104311958"
+"0085253455175"
+"008521913382595"
+"0085219100419933"
+"0085216591959"
+"00852548104340075"
+"00852548104336707"
+"00852548103592588"
+"00852548103344171"
+"00852548103069754"
+"0085253053063"
+"15630912614"
+"16718981488"
+"13111707105"
+"18532054098"
+"15530118630"
+"15531876200"
+"13253272733"
+"13231057546"
+"15632262668"
+"16718981711"
+"16718981722"
+"16718981755"
+"18533657916"
+"15533441692"
+"18630715213"
+"16718981900"
+"16718981911"
+"16718981922"
+"16718981933"
+"16718982011"
+"16718980008"
+"16718980009"
+"16718980100"
+"16718980101"
+"16718980122"
+"15612785922"
+"18631718008"
+"16718980202"
+"13102965256"
+"13111631776"
+"15633669094"
+"18503197070"
+"16718980505"
+"008521913665574"
+"0085261467670"
+"0085256807537"
+"00852548103344195"
+"008521913665583"
+"008521913665576"
+"0085219100761712"
+"0085219100750620"
+"008521913421595"
+"00852548104336324"
+"0085259002593"
+"0085211939983"
+"00852548105667943"
+"008521913412765"
+"0085219100742265"
+"00852548103710497"
+"008521913425807"
+"008521913425805"
+"0085266109137"
+"008521920917379"
+"00852190061732827"
+"0085211932707"
+"008521911017356"
+"0085254412965"
+"0085265509332"
+"00852190061124517"
+"0085267195764"
+"00852199422958461"
+"00852180000922921"
+"0085265100748"
+"008521913228030"
+"0085251362886"
+"008521913382787"
+"0085216550259"
+"0085293410780"
+"0085262158339"
+"0085257474505"
+"16718981112"
+"16718981113"
+"16718981115"
+"16718981116"
+"16718981117"
+"16718981118"
+"16718980002"
+"17633077690"
+"15612086696"
+"15544598898"
+"18603143888"
+"16230798826"
+"18603377523"
+"16718980003"
+"16718980006"
+"17188927879"
+"17188927996"
+"17188928009"
+"16781897958"
+"16781897961"
+"16781897985"
+"00447439100148"
+"15533579950"
+"00447439100181"
+"00447802151246"
+"0074955041020"
+"0074955043174"
+"0074955442064"
+"13037219103"
+"15612713997"
+"13184746085"
+"15612701826"
+"0074955893311"
+"13294050384"
+"13284350710"
+"13292607086"
+"17692565552"
+"17631530592"
+"13012122630"
+"16631210123"
+"0074995010027"
+"00919341068072"
+"00919341581263"
+"13930647222"
+"18132440695"
+"18631813035"
+"0085246269426"
+"008521913383527"
+"0085216591585"
+"0085292990509"
+"0085259277602"
+"008521913413440"
+"0085257481884"
+"008521913413422"
+"008521912889283"
+"008521913412518"
+"008521913417925"
+"00852548104115650"
+"00852548104337459"
+"0085265193757"
+"0085211922945"
+"0085254960667"
+"0085219100946801"
+"0085216521343"
+"00852199422860512"
+"0085211942977"
+"00852548103910765"
+"00852450000008650"
+"0085211922542"
+"18531555559"
+"15511829222"
+"00601181919512"
+"00601181952079"
+"00601181957634"
+"16633403178"
+"00601182045582"
+"00601182060069"
+"0084834861767"
+"0084835662027"
+"0085264618563"
+"00852903608825009"
+"00852903912287019"
+"00852903105376867"
+"00852903148897573"
+"00852903151336980"
+"00852903363235368"
+"00852903432496022"
+"13231606312"
+"15631245671"
+"13082306163"
+"15630411913"
+"15631191114"
+"17503323002"
+"13103259223"
+"15614561189"
+"13111757265"
+"15630771181"
+"13080451309"
+"00852903490047411"
+"00852903532258930"
+"17603206887"
+"17041806531"
+"15613995567"
+"18632557780"
+"18630231666"
+"16682297967"
+"18531161221"
+"15512750090"
+"00852903885009611"
+"17188927667"
+"17188927679"
+"17188927386"
+"18533187709"
+"17188927387"
+"17188927389"
+"17158940615"
+"17158940619"
+"17158940653"
+"17158941038"
+"17158941223"
+"17158941230"
+"17188925267"
+"17188925587"
+"17188925596"
+"17188925609"
+"17188925676"
+"17188925817"
+"17188920176"
+"17188920287"
+"17188921069"
+"17188921769"
+"17188923287"
+"17188923576"
+"17188925026"
+"15531789338"
+"18531117528"
+"17188925167"
+"17188925356"
+"17188929568"
+"17188929598"
+"17158940972"
+"15613349526"
+"17158941156"
+"008521914022389"
+"008521914021991"
+"008521914021959"
+"17158941158"
+"17188927297"
+"00852941037656022"
+"0085294897159"
+"13131957382"
+"00852608435506030"
+"00852608545226025"
+"00852610284616023"
+"00852619754596021"
+"00852619914596032"
+"13028603883"
+"00852936952426028"
+"17692377611"
+"00852937418496024"
+"00852942184336028"
+"15632936671"
+"00852942962356023"
+"15631933922"
+"00852608545226031"
+"00852610485986032"
+"00852610514106036"
+"00852620041176033"
+"00852936074426029"
+"00852937418496032"
+"00852942413676032"
+"15633070867"
+"00852942877796036"
+"00852942933746032"
+"15614213101"
+"00852610346396035"
+"00852610491096034"
+"00852610846076040"
+"00852610921246036"
+"00852619921646035"
+"00852620224236034"
+"00852936604516040"
+"00852941373426037"
+"00447802130180"
+"17692386191"
+"15632133988"
+"15613279620"
+"17631219808"
+"15690108883"
+"15632636726"
+"13082130770"
+"18531927578"
+"16603279512"
+"18632862316"
+"13293368435"
+"17631716516"
+"17632016525"
+"16631795564"
+"18632082059"
+"15630280580"
+"18632662228"
+"18532723992"
+"18631023775"
+"13102572956"
+"13072143356"
+"00852608545226044"
+"18571978443"
+"17531081889"
+"13180050090"
+"15532500693"
+"16630230711"
+"17736054520"
+"008521913971368"
+"18503202142"
+"00852619047916037"
+"00852619902416039"
+"16631127222"
+"13143633722"
+"0085264718757"
+"00852942383696037"
+"00852947013866038"
+"0085587756534"
+"00959448288747"
+"0085264650684"
+"0085264729299"
+"16718982622"
+"16718982633"
+"16718982655"
+"16718982700"
+"16718982711"
+"16781898504"
+"16781898518"
+"16718983055"
+"16718983122"
+"16718983133"
+"13253167372"
+"18531203536"
+"16718982022"
+"16718982055"
+"16718982155"
+"16718982223"
+"16718982225"
+"16718982226"
+"16718982228"
+"16718982229"
+"0085257717473"
+"0085267823992"
+"16781896282"
+"16781896794"
+"16781897919"
+"0084948423972"
+"19933379164"
+"13180126028"
+"18032923377"
+"13012023031"
+"18633683519"
+"16796592682"
+"19537548561"
+"13223398956"
+"19527430673"
+"16611654530"
+"13400125221"
+"17188921076"
+"15262025107"
+"18531223581"
+"13231190659"
+"16630406339"
+"17188921157"
+"18333274886"
+"13273112875"
+"13231090312"
+"15614520828"
+"15603349424"
+"15707613661"
+"15612131356"
+"16631069707"
+"15530363305"
+"18630667607"
+"17703373527"
+"13103198550"
+"18521384635"
+"13165337082"
+"13283205051"
+"13231165455"
+"13231167469"
+"13230777541"
+"17261536684"
+"17603122645"
+"13229112872"
+"15717855250"
+"18244685143"
+"13131216976"
+"0085254464384"
+"17803053333"
+"13373309570"
+"17692370764"
+"17188928029"
+"13242632009"
+"17188928039"
+"15532979159"
+"13113892561"
+"18533949923"
+"15632920087"
+"16630390818"
+"13230298958"
+"15614532897"
+"17692316604"
+"18633237182"
+"15533167672"
+"13171716466"
+"15533445438"
+"13363617520"
+"13102721633"
+"13293356997"
+"15632773192"
+"13933447275"
+"13292863251"
+"15833739193"
+"15530960862"
+"17736938105"
+"18831670986"
+"15503361343"
+"15630235925"
+"17104109999"
+"16633413226"
+"16682069903"
+"15631873781"
+"18532101390"
+"18630033552"
+"15633186286"
+"15633695121"
+"13131755636"
+"13292159109"
+"15511876268"
+"17530096847"
+"16631110635"
+"631740315"
+"13103083760"
+"16630973973"
+"15613150050"
+"15033090874"
+"13292619743"
+"13091396003"
+"008521914016777"
+"008521913998175"
+"15630817757"
+"15613183629"
+"13001830612"
+"15612700373"
+"15631820508"
+"15030476777"
+"18631203180"
+"18532231009"
+"13131898031"
+"17188928057"
+"17188928097"
+"17188928107"
+"17188927396"
+"17188927397"
+"17188927569"
+"17188927576"
+"17188927586"
+"17188927589"
+"17188927596"
+"00852903192456528"
+"00852903316355944"
+"17188927786"
+"17188927797"
+"17188927867"
+"17188925626"
+"17188925629"
+"15690516389"
+"17188925639"
+"17188925979"
+"18617823730"
+"18503217860"
+"17631178559"
+"15690433444"
+"17635375658"
+"17603395133"
+"15630816809"
+"15633004492"
+"17188925986"
+"15512946222"
+"15512704896"
+"15613142259"
+"17631178361"
+"15631199335"
+"17531380189"
+"15632120393"
+"18533625918"
+"18532645453"
+"13028699993"
+"633803760"
+"18533940977"
+"18532542738"
+"16682238235"
+"633807715"
+"17261027985"
+"15631924456"
+"15130028824"
+"18733706728"
+"006283269698147"
+"006289762843725"
+"17633224554"
+"13292157013"
+"008521913424215"
+"008521914029506"
+"008521914024370"
+"008521914024301"
+"008521914023219"
+"15831864803"
+"13180538117"
+"18630072595"
+"17188927279"
+"13230697638"
+"15527000980"
+"0085292286046"
+"0084944976513"
+"18532296727"
+"15631685236"
+"13292728938"
+"19556103909"
+"18633836621"
+"15511639587"
+"0084944179254"
+"15369978908"
+"18634107093"
+"15530708155"
+"13131285686"
+"15612528690"
+"17632119461"
+"15533626215"
+"17631193772"
+"15530241356"
+"17633144618"
+"16633401807"
+"13102576136"
+"17041681769"
+"15614049097"
+"15612103110"
+"17692369371"
+"0084941835741"
+"13126155835"
+"00821066501007"
+"17532598632"
+"13231164764"
+"15532890152"
+"18633763911"
+"15033407797"
+"17330039053"
+"13273681870"
+"15613399559"
+"19133373553"
+"18603144057"
+"19833646868"
+"13133509039"
+"13722382238"
+"18532583228"
+"18633855505"
+"13230089888"
+"13131355980"
+"631247565"
+"15633268396"
+"634151211"
+"631296139"
+"17531053576"
+"15612770285"
+"13102991699"
+"15544790806"
+"15612698201"
+"15511518709"
+"15614336650"
+"15511205445"
+"18033673578"
+"15712515327"
+"13011989996"
+"15511304241"
+"008521914020406"
+"13903217535"
+"18531716197"
+"15131247029"
+"15630751475"
+"18595761856"
+"13132477985"
+"15512011581"
+"18671858792"
+"18631089119"
+"17631745527"
+"13091333182"
+"15533067043"
+"15612610153"
+"13191723621"
+"13171931756"
+"16630233138"
+"18630669777"
+"18603146469"
+"17559521858"
+"17631125523"
+"18632465885"
+"15633813526"
+"15614950552"
+"13171916867"
+"15531755191"
+"15512105156"
+"13231138918"
+"13180350578"
+"13131788538"
+"13131631580"
+"13082331511"
+"0084835744794"
+"632462873"
+"15632775877"
+"18631193359"
+"15632987663"
+"0084856691727"
+"15614413932"
+"0084813794002"
+"13230127265"
+"13803156194"
+"17559510119"
+"15632022092"
+"16718983099"
+"15531121574"
+"15511920353"
+"16718985488"
+"16718986622"
+"16718988877"
+"16753827754"
+"16781897857"
+"16781897868"
+"16781898324"
+"16781898329"
+"16781898625"
+"16718982121"
+"16781898481"
+"008562092890056"
+"008562094109170"
+"16781898568"
+"13091395832"
+"18503351687"
+"15632297975"
+"15631590360"
+"13230267719"
+"16630233153"
+"15613355868"
+"15630776488"
+"15076811611"
+"16781899808"
+"16781899969"
+"008521920920588"
+"17188920448"
+"17188920757"
+"17188928408"
+"18632807051"
+"006287754790689"
+"13273171197"
+"13102793776"
+"008562094129663"
+"18630763914"
+"15127152308"
+"15527560551"
+"16603191420"
+"18703398577"
+"18230355593"
+"18633586759"
+"17692969672"
+"17692722888"
+"15531450734"
+"17717199229"
+"13231479319"
+"18319370174"
+"17692597533"
+"16632069881"
+"15233612016"
+"13292947628"
+"15031616495"
+"18831388115"
+"15130683395"
+"19831051897"
+"15732536996"
+"00821053484907"
+"18203397957"
+"18894922800"
+"13047722606"
+"15512278235"
+"15612896786"
+"18532192711"
+"13035882771"
+"13028677075"
+"13102991819"
+"18232050422"
+"13731023688"
+"13188858279"
+"00852610491096117"
+"15531635518"
+"13127430662"
+"15630213350"
+"15612280017"
+"13011461289"
+"18617545200"
+"15511250666"
+"13284385856"
+"15731228822"
+"00852942747566120"
+"17692102430"
+"00852610923846118"
+"00852607424456120"
+"00852619481676114"
+"00852610499176115"
+"15833652910"
+"00852640948416110"
+"13091245821"
+"15532288919"
+"18630623537"
+"13031592566"
+"18603371881"
+"13087996824"
+"17692174902"
+"008521920920531"
+"008521920920526"
+"008521920919820"
+"008521920918233"
+"15532247036"
+"17503292578"
+"13102922995"
+"13283217212"
+"15633731226"
+"19568387580"
+"15612029500"
+"13011456066"
+"15544800356"
+"15632378923"
+"17533632615"
+"13131899776"
+"13081082656"
+"17332805131"
+"13091252506"
+"15613227774"
+"13184918763"
+"17531861079"
+"15531759936"
+"18032042770"
+"18632027441"
+"15512989762"
+"17703284555"
+"18503149505"
+"17334979072"
+"19833836857"
+"19932880116"
+"17121308980"
+"17320778850"
+"18431259694"
+"19565259522"
+"15512285561"
+"16633373915"
+"13180085710"
+"18630531938"
+"15630645886"
+"16633258290"
+"13249500230"
+"15133507778"
+"13091239682"
+"13231637863"
+"13333053513"
+"15511002960"
+"15532448007"
+"15532996775"
+"15544778776"
+"15732825204"
+"13070596293"
+"13131291225"
+"13223400296"
+"13231959501"
+"15633020529"
+"18533559809"
+"18617710528"
+"18632269700"
+"18830195712"
+"19933574413"
+"18532097385"
+"18631283220"
+"13111319681"
+"15532703334"
+"13020820763"
+"031185688449"
+"13292845339"
+"13111471392"
+"00852903134188371"
+"15532989228"
+"13131999915"
+"15690098331"
+"13132470836"
+"15614125067"
+"13180229150"
+"18531160592"
+"15531261851"
+"15612105337"
+"15614213259"
+"18131061001"
+"19831226260"
+"16631813868"
+"13091127107"
+"15503033691"
+"16633225075"
+"18533208065"
+"15630617797"
+"18617523529"
+"19930010398"
+"13082385372"
+"13166526770"
+"15631365710"
+"15633019818"
+"15690322972"
+"16632768236"
+"17320848190"
+"17332601585"
+"17532568609"
+"15613819556"
+"16631180410"
+"13040030870"
+"15033249030"
+"15176565720"
+"15532536381"
+"15532703673"
+"15511719762"
+"18630657636"
+"18713257513"
+"13131226696"
+"13171661228"
+"15613710557"
+"15630340080"
+"15630745968"
+"17370235411"
+"17631693075"
+"17716530951"
+"18230004803"
+"18503265473"
+"18503318721"
+"18532733632"
+"18630236603"
+"15632373897"
+"15603187077"
+"13230241790"
+"13149472667"
+"18633084121"
+"17692375909"
+"17633319535"
+"18532398513"
+"13293036085"
+"15612281633"
+"15613838589"
+"18617704045"
+"18633738195"
+"16630063526"
+"13171946667"
+"13165572686"
+"15633275728"
+"19912199484"
+"13288323544"
+"18631633538"
+"15632375761"
+"13231226676"
+"13292660631"
+"18630645796"
+"16630616318"
+"15631166036"
+"13229065682"
+"13031525989"
+"15633788329"
+"13001466408"
+"13230962938"
+"15533280023"
+"13111654521"
+"17330262182"
+"18932632586"
+"15612761190"
+"15632661503"
+"00852903447778270"
+"18532646243"
+"17692392434"
+"17531901924"
+"17603242514"
+"13170959038"
+"15694894097"
+"15632629746"
+"15632630439"
+"15632629749"
+"15530778012"
+"15511795966"
+"15632628425"
+"13191890560"
+"18632560718"
+"13230230737"
+"15613695041"
+"13223191350"
+"15530607056"
+"18533746817"
+"16682036865"
+"17631771106"
+"15613782097"
+"15633413825"
+"13102938007"
+"13180229025"
+"13292996210"
+"13111705089"
+"15533154965"
+"15632183969"
+"18632293379"
+"15632279919"
+"15632991614"
+"15532881655"
+"00852903465928125"
+"15511205566"
+"15632886494"
+"15632991741"
+"15632622467"
+"15632624940"
+"13223349091"
+"17631120428"
+"13223314410"
+"18633206605"
+"13273672618"
+"13081011533"
+"13102998990"
+"13273286876"
+"13229067537"
+"15613960901"
+"13292388155"
+"15533789083"
+"15533789571"
+"16633958070"
+"18630652803"
+"18233126136"
+"15532928928"
+"17370273239"
+"15532309841"
+"17121705491"
+"00852903482898153"
+"13231164482"
+"13292243842"
+"17659978595"
+"13131964768"
+"13091322143"
+"13131993641"
+"17692703164"
+"16630435517"
+"15076649926"
+"15530821691"
+"15531967170"
+"18568382653"
+"15530942771"
+"17692706787"
+"13020826507"
+"18632735162"
+"13273672151"
+"18630732598"
+"18633505093"
+"17531338370"
+"18031272206"
+"19932608643"
+"18332087828"
+"15632537896"
+"17531972836"
+"15632313683"
+"15613189273"
+"15533775608"
+"15530417215"
+"16632731851"
+"18603102848"
+"18634083520"
+"15533518200"
+"15531777891"
+"17531058568"
+"18631855829"
+"19133173273"
+"15354064033"
+"19133172608"
+"13103382073"
+"13131432078"
+"17692218782"
+"13273611672"
+"18532075229"
+"17531376823"
+"13021822310"
+"13231788059"
+"15630692178"
+"19503342224"
+"13230714913"
+"18631537876"
+"13032082351"
+"17532083736"
+"19933056116"
+"13294040151"
+"19930711454"
+"17331272011"
+"18233916367"
+"13303100142"
+"19522802107"
+"15227481014"
+"19833601379"
+"17736744470"
+"18630056829"
+"17191304861"
+"18409139088"
+"19306727308"
+"19831061629"
+"15564631688"
+"13473901105"
+"15833037636"
+"18533195658"
+"15932681958"
+"15003316557"
+"00852903726160134"
+"13131285912"
+"13011467771"
+"13582256772"
+"16682236883"
+"13229066778"
+"15631348761"
+"17093120595"
+"15830267332"
+"13931688622"
+"15933823017"
+"13231959658"
+"18630610321"
+"18631499958"
+"13111620326"
+"15530496895"
+"18533920723"
+"15612691393"
+"15531130611"
+"13230936368"
+"13247449122"
+"15530122501"
+"16682210709"
+"18632442275"
+"15511549096"
+"15511751280"
+"15512263390"
+"15613389536"
+"15614443391"
+"18633138237"
+"15511242995"
+"15633751505"
+"13784640319"
+"15631736076"
+"13098827052"
+"17631748582"
+"00852903787749603"
+"15128741270"
+"15512573459"
+"17531728616"
+"15532492019"
+"13131966560"
+"18617561644"
+"13102955017"
+"15075037835"
+"00855968542747"
+"19133975398"
+"13230061233"
+"15612272876"
+"18617402666"
+"15633092958"
+"13032061019"
+"15512308690"
+"15613787192"
+"15532458829"
+"13116097616"
+"13230382502"
+"18633061804"
+"18532132096"
+"15612503318"
+"18533760676"
+"15532386379"
+"15633840782"
+"15530309023"
+"16632026541"
+"16630066473"
+"15630348166"
+"15631396086"
+"15631600400"
+"15632186707"
+"15632256907"
+"13013253780"
+"16631031876"
+"16631033978"
+"16631241667"
+"16631259027"
+"16663017197"
+"17330228516"
+"17332312489"
+"17332786570"
+"15544805291"
+"15613273639"
+"15614203122"
+"15631223925"
+"15631406561"
+"15631633205"
+"15633850392"
+"15690202007"
+"15632236904"
+"15613038165"
+"13131961672"
+"18633872922"
+"18631681276"
+"13191688878"
+"13131394318"
+"15503189399"
+"13230735361"
+"18632386581"
+"13091262682"
+"13231415905"
+"18630741824"
+"18631287315"
+"18531051499"
+"18630057876"
+"13231481713"
+"15630845718"
+"13091189032"
+"13131674019"
+"13191818789"
+"13131202996"
+"13138086758"
+"13230678917"
+"13230721571"
+"13273329200"
+"13292763102"
+"15512285857"
+"15632716626"
+"15633101153"
+"15512512106"
+"15530102338"
+"15530206358"
+"15530715962"
+"15531036959"
+"15531076169"
+"15531186560"
+"15531281916"
+"15531636746"
+"15532011655"
+"15532671326"
+"15532692670"
+"15603298771"
+"15612551967"
+"13091212078"
+"13102585165"
+"13102705738"
+"13103068508"
+"13131017568"
+"13171627683"
+"13171756822"
+"16630215672"
+"16630609810"
+"18533939205"
+"16630750004"
+"15333371318"
+"13273603530"
+"13292243162"
+"15503226822"
+"15613210020"
+"16603282332"
+"15931363773"
+"15533915611"
+"13012188258"
+"13231199888"
+"15531377116"
+"15632961696"
+"15831697886"
+"15176019035"
+"15530138398"
+"18531702187"
+"18531850234"
+"18633835176"
+"13230022652"
+"15512198078"
+"17631163732"
+"13102763888"
+"18633000186"
+"15512580798"
+"18531887143"
+"17003184444"
+"16631256162"
+"18632929001"
+"13283127129"
+"18532146844"
+"18631106282"
+"13230171446"
+"16630202972"
+"17631425047"
+"15613428021"
+"18332002173"
+"18633348906"
+"13283197590"
+"15630862092"
+"15612473925"
+"16632711407"
+"13273660652"
+"15373539484"
+"15630877771"
+"15632178138"
+"18431231525"
+"18533643785"
+"19931282115"
+"18632985028"
+"15694849290"
+"13230367619"
+"13933613376"
+"15532118254"
+"17332569394"
+"18131015136"
+"19331288186"
+"18617809052"
+"13293035891"
+"00852903792331198"
+"16632017844"
+"13292136555"
+"14797064119"
+"15530277172"
+"15614237383"
+"18631729810"
+"13230782511"
+"13223429619"
+"13171732508"
+"16632931838"
+"15533619521"
+"16763155060"
+"15532137259"
+"13031461226"
+"13290580339"
+"15685036016"
+"16632024248"
+"17633075835"
+"13290571725"
+"18632887138"
+"13111655919"
+"15612365521"
+"18231714813"
+"18331047171"
+"18532254006"
+"18631996239"
+"18632050269"
+"13292962330"
+"15030856399"
+"15532780631"
+"15612736900"
+"15613569603"
+"15614252986"
+"15630896631"
+"16631917732"
+"17692696967"
+"18633228970"
+"18694216801"
+"19131373278"
+"19933386912"
+"15632799523"
+"18231027365"
+"13292310212"
+"13131289937"
+"15631207872"
+"13127305965"
+"15530952085"
+"17325527032"
+"18232415760"
+"15531625087"
+"15531967717"
+"18631740315"
+"17360735197"
+"19932791552"
+"18730998817"
+"15033846630"
+"13292156890"
+"16630636555"
+"18630706018"
+"18632517852"
+"15632515660"
+"13191739158"
+"13014367828"
+"15690350627"
+"15533330288"
+"15531947880"
+"17003233628"
+"13292946185"
+"13031836172"
+"19331711387"
+"15633063740"
+"15532689229"
+"18630541329"
+"13283229598"
+"17103039190"
+"18632942916"
+"15538516653"
+"13292992227"
+"17692737391"
+"17266114093"
+"18630333357"
+"18034443445"
+"13131161267"
+"13273438281"
+"13292678100"
+"15613393621"
+"13231232625"
+"15632391250"
+"13933963472"
+"18632731338"
+"13032089500"
+"18531400316"
+"17303160296"
+"15511927852"
+"18475695939"
+"15533501936"
+"15530466681"
+"15630860059"
+"15732626273"
+"18233398991"
+"19912022353"
+"18633542960"
+"18742183707"
+"13653367047"
+"19867213789"
+"17878760426"
+"18341126190"
+"18230441021"
+"16231750160"
+"15503107779"
+"13180190253"
+"13696400974"
+"16601910520"
+"18309623181"
+"18333011169"
+"18132079386"
+"19931125569"
+"19948014103"
+"13231164215"
+"19842435844"
+"16630394701"
+"18632761973"
+"18632402192"
+"18631541692"
+"18633966885"
+"13191714110"
+"18712937252"
+"16632861337"
+"16632791093"
+"18594249115"
+"13180201600"
+"13011516970"
+"13284318290"
+"18633231959"
+"17692361650"
+"18632266306"
+"18875612056"
+"13103390217"
+"18632983811"
+"18132013045"
+"15512622977"
+"18837220618"
+"15791781451"
+"13102742900"
+"15531180986"
+"13292882389"
+"15610880722"
+"19511126164"
+"13231720295"
+"17633017608"
+"00852903000806161"
+"16750672192"
+"13031951572"
+"16630456999"
+"13292226231"
+"13273165901"
+"15610895011"
+"15532158962"
+"15614958596"
+"13014322873"
+"13230680779"
+"15230611120"
+"18630008856"
+"15632761923"
+"18633024569"
+"17632105521"
+"15511890874"
+"15530942614"
+"13110741129"
+"17733496711"
+"18332835250"
+"18233891357"
+"18131839358"
+"17631000285"
+"13292063031"
+"13283207329"
+"15512597353"
+"17692246703"
+"15930201203"
+"13731011442"
+"17631798226"
+"15831854400"
+"00852903089735178"
+"15613238319"
+"16630387793"
+"13333138197"
+"13031559180"
+"15633276507"
+"15503175877"
+"17736793111"
+"13180313930"
+"13211093978"
+"15613344931"
+"13031948899"
+"18531573188"
+"15131089027"
+"13273550395"
+"13666134784"
+"15630365359"
+"13091073749"
+"18831269578"
+"13723381476"
+"13031511111"
+"15133095530"
+"17692211507"
+"13191670176"
+"14730689478"
+"18232019922"
+"13111666819"
+"18533133681"
+"17733808871"
+"13643212654"
+"18897351375"
+"15056946496"
+"18603312213"
+"17833737294"
+"15076744896"
+"13231373434"
+"15383993796"
+"18574807336"
+"17633252452"
+"19537864978"
+"13576005751"
+"13180512016"
+"17732854902"
+"18134283016"
+"19801905323"
+"15019572236"
+"15511279168"
+"15930293131"
+"008562097423679"
+"15731364593"
+"19832588622"
+"18521360117"
+"15027756335"
+"13184723756"
+"15027953582"
+"17331817801"
+"13832426648"
+"13363269291"
+"13722770700"
+"18713457995"
+"15512944078"
+"18333572305"
+"17267264127"
+"14775433603"
+"008562095793808"
+"13472102756"
+"18395713889"
+"13673189668"
+"15603239975"
+"18388438774"
+"13679757286"
+"17831158251"
+"13415462349"
+"18318519505"
+"17736058784"
+"18233172819"
+"18713092551"
+"19133982513"
+"18231130043"
+"15613148369"
+"18332503093"
+"15633555153"
+"13171552226"
+"18603364327"
+"19892851707"
+"13603198693"
+"13292344468"
+"13052261613"
+"15533033367"
+"19536639564"
+"18633623198"
+"19931216002"
+"18103310074"
+"15612881983"
+"13073120344"
+"18000690561"
+"13091004283"
+"18261693635"
+"15614135908"
+"13402856725"
+"13784840045"
+"15232164186"
+"18633122322"
+"13283197743"
+"16630577526"
+"16674235258"
+"16503193576"
+"19832088291"
+"13231869172"
+"15002875138"
+"19514722619"
+"18795322826"
+"18831107903"
+"008562094258556"
+"19932383147"
+"17803081680"
+"19898595023"
+"13760917410"
+"15133225830"
+"18831085838"
+"13801411851"
+"18230400142"
+"15200178633"
+"18732464894"
+"008562099799693"
+"19537548387"
+"18034203166"
+"13603249937"
+"13483194211"
+"15130466862"
+"19930677441"
+"15927691044"
+"19932889805"
+"15512206064"
+"18306733029"
+"15070045069"
+"15924184165"
+"13292639709"
+"18232365519"
+"18231958290"
+"13231747697"
+"19567911758"
+"19931992917"
+"17733242520"
+"18379650919"
+"15233760553"
+"15104006048"
+"15100473120"
+"17633205618"
+"19933595940"
+"15732611190"
+"17325525268"
+"17730540639"
+"13091352945"
+"17659983449"
+"13785231451"
+"16236686169"
+"15003131474"
+"13833922477"
+"17070912507"
+"18431060739"
+"13210271525"
+"15632672357"
+"13266918651"
+"13159557832"
+"19816133121"
+"17260803680"
+"15732181469"
+"19930780518"
+"15799923982"
+"17802782214"
+"13971447924"
+"15926791160"
+"18788841147"
+"18032116528"
+"13789065696"
+"13072176075"
+"18382304857"
+"16796596686"
+"18630659906"
+"18632141615"
+"18230015758"
+"15831719862"
+"19534313134"
+"15130052257"
+"18533932820"
+"18327196315"
+"18830578302"
+"15714219522"
+"15630348766"
+"19831449835"
+"13020843138"
+"15127270220"
+"13363884487"
+"13931857600"
+"0079014640312"
+"13180038063"
+"18632029449"
+"18633290637"
+"13012874781"
+"00852903519223303"
+"15632204300"
+"18209505335"
+"15972164086"
+"19503283699"
+"008562099142768"
+"15231527515"
+"00852903755006700"
+"13292723271"
+"00852903760621807"
+"19853139823"
+"18631356899"
+"0084814207046"
+"0084816127366"
+"0084816625221"
+"0084823027387"
+"0084825028053"
+"0084899773715"
+"0084949049183"
+"0084845392980"
+"0084828641316"
+"0084886770161"
+"0084842713467"
+"0084826587348"
+"0084829460702"
+"0084829871684"
+"0084835391799"
+"0084814705736"
+"0084814536409"
+"0084817219213"
+"0084826409383"
+"0084941589264"
+"0084814521284"
+"0084822233948"
+"0084858800261"
+"0084829517865"
+"0084817177451"
+"0084813356400"
+"0084815484197"
+"0084818142304"
+"0084368047992"
+"13073158463"
+"00959679181242"
+"00959672588641"
+"00959650731789"
+"00959673059244"
+"00959651754454"
+"006285971713575"
+"0084814852314"
+"0084816198214"
+"0084856177942"
+"0084816828096"
+"0084819225349"
+"0084824295549"
+"0084941482186"
+"0084832443750"
+"13165500185"
+"18633767978"
+"19886341452"
+"15631710672"
+"15533553826"
+"15130805839"
+"0084835501359"
+"0084858663085"
+"0084828490481"
+"0084886583849"
+"0084889734657"
+"0084945053032"
+"0084812330893"
+"0084814243677"
+"0084836364033"
+"0084941164757"
+"0084941415654"
+"0084948378170"
+"0084812873965"
+"0084818523369"
+"0084819120842"
+"0084822415724"
+"0084858332534"
+"0084944926534"
+"0084946743126"
+"0084813878981"
+"0084855726761"
+"0084366414458"
+"0084948561596"
+"0084824486246"
+"0084835553929"
+"0084329704923"
+"0084814884294"
+"0084818759245"
+"0084854295552"
+"0084925960235"
+"0084814651131"
+"0084836682138"
+"0084832591761"
+"0084822515476"
+"15100239203"
+"15731792051"
+"18730545998"
+"15028515707"
+"15076795098"
+"15027411780"
+"15716940044"
+"15176173825"
+"15081362573"
+"15284338868"
+"18833556718"
+"15297358872"
+"15097752939"
+"15203177251"
+"15231147656"
+"13483036602"
+"18730676237"
+"18713193675"
+"0084326096762"
+"0084396941232"
+"0084813396720"
+"0084817374270"
+"0084815249572"
+"0084947236863"
+"0084814328863"
+"0084824944173"
+"0084829156033"
+"0084842851126"
+"0084849363578"
+"0084813974665"
+"0084816564560"
+"0084817397574"
+"0084819357483"
+"0084825349203"
+"0084829431145"
+"18732445557"
+"00959651682076"
+"18634199022"
+"0084833437163"
+"0084817571158"
+"0084835329371"
+"0084823501958"
+"0084812905898"
+"0084817969353"
+"0084819567021"
+"0084816717255"
+"0084817603637"
+"0084819036881"
+"0084886048856"
+"0084815452242"
+"0084857113607"
+"0084834559252"
+"0084812509602"
+"0084947820925"
+"0084325951577"
+"0084813357178"
+"0084815416010"
+"0084816717243"
+"0084817599032"
+"0084819998772"
+"0084832076257"
+"0084837732056"
+"18131187279"
+"008562096745431"
+"18132090464"
+"15233832410"
+"13463803182"
+"15614191881"
+"0084822197289"
+"0084814663228"
+"0084945890397"
+"0084816057659"
+"0084817292613"
+"0084812436041"
+"0084812678403"
+"0084819206735"
+"0084819419511"
+"0084817942161"
+"0084815818012"
+"0084817963613"
+"0084949274080"
+"0084817798554"
+"0084819097933"
+"0084845016654"
+"0084916012075"
+"0084813126801"
+"0084942317446"
+"0084815976617"
+"0084816054393"
+"0084818026934"
+"0084822085690"
+"0084825298130"
+"0084838154267"
+"0084845853369"
+"15373999162"
+"17331109589"
+"0085291598676"
+"0085291065890"
+"0085268972464"
+"0085291010384"
+"0085290981946"
+"0085269745153"
+"0085268934902"
+"0085290379724"
+"0085290849247"
+"17367771483"
+"0085291055845"
+"18230353380"
+"18932713754"
+"15081852165"
+"17603278326"
+"0015163691283"
+"0015166284334"
+"0015166285561"
+"0015166537288"
+"0015166563346"
+"0015166849642"
+"0015167171416"
+"0015168486011"
+"0015168556164"
+"0015515793242"
+"0012016369102"
+"0015102409329"
+"0015162515602"
+"0084169326558"
+"0084356428150"
+"0084827389709"
+"0084812781836"
+"0084398577573"
+"0084395282916"
+"0084848314296"
+"0084826906216"
+"0084818987738"
+"0084886693187"
+"0084819808392"
+"0084815563585"
+"0084845061513"
+"0084812376040"
+"0084941317810"
+"0084812180245"
+"0084174913018"
+"0084197907239"
+"0084386438395"
+"0084815650213"
+"0084886837841"
+"0084828742229"
+"0084814753378"
+"0084819758157"
+"0084848821872"
+"0084816518645"
+"0084818490039"
+"15227262096"
+"15710976679"
+"15075531967"
+"18132085164"
+"13932541215"
+"15132488513"
+"13223273757"
+"13011586254"
+"0084356851845"
+"0015108089172"
+"0015109171597"
+"0084941931024"
+"0084835915905"
+"0084817958490"
+"0084941204540"
+"0084854466873"
+"0084813114107"
+"0084817760310"
+"0084839948718"
+"0084815172094"
+"0015102224246"
+"0015102635494"
+"0015102886480"
+"0015103461017"
+"0015103761905"
+"0015104749313"
+"0015104814961"
+"0015104856372"
+"0015105022570"
+"0015105076889"
+"0015105901490"
+"0015105955119"
+"0015106778750"
+"0015107405946"
+"0015107925628"
+"0084387743906"
+"0084819794620"
+"0084813322563"
+"0084813812502"
+"0084835438325"
+"0084837328426"
+"0084814782497"
+"0084812318716"
+"0084814429039"
+"0084815862482"
+"0084815110178"
+"15530349403"
+"14730492732"
+"19133225731"
+"15383297615"
+"19358057277"
+"19886811134"
+"0085267155989"
+"17325310631"
+"13315184131"
+"0085265470120"
+"0085265461679"
+"0085265937810"
+"19858378362"
+"19532429833"
+"0084824680487"
+"0084834110138"
+"0084815033070"
+"0084826890360"
+"0084859739620"
+"0084886759285"
+"0084857291393"
+"0084834597268"
+"0084817211793"
+"0084394668369"
+"0085292267211"
+"0015163025170"
+"0015163086512"
+"0015163425474"
+"0015163554089"
+"0084396630167"
+"0084822433497"
+"0084814778994"
+"0015165523849"
+"0012013723128"
+"0085293968246"
+"008536830501424135"
+"0012013596908"
+"0012015313193"
+"0012017335997"
+"0012017423421"
+"0084817753917"
+"0084817953665"
+"0084819889751"
+"0084813308823"
+"0084817340826"
+"0084852356878"
+"0084857086165"
+"0084812297883"
+"0084816285161"
+"0084829782429"
+"0084822457031"
+"0084843207004"
+"0084852825919"
+"0084853696229"
+"0084858064194"
+"0084812309756"
+"0084816076180"
+"0084814239949"
+"0015108898103"
+"0015109147273"
+"0015109777089"
+"0015162323367"
+"0015162778869"
+"0015163095625"
+"18903271618"
+"16603181813"
+"18201871428"
+"18031037106"
+"15531413125"
+"15033558858"
+"18503312750"
+"15613532676"
+"18363068968"
+"18207269416"
+"18630344760"
+"13293259275"
+"15633738817"
+"13191641999"
+"13012077132"
+"13293322576"
+"15133347669"
+"00855969078873"
+"00959683849006"
+"0015104651661"
+"0015105151834"
+"0015106253069"
+"0015106516838"
+"0015106647033"
+"0015106677688"
+"0015106786108"
+"00959683977019"
+"00995593671634"
+"00995593689209"
+"13073132268"
+"15536825741"
+"13131292097"
+"17692752263"
+"13131736350"
+"18634096553"
+"13011496909"
+"17692775282"
+"18631105064"
+"13183978909"
+"15633123565"
+"18634027301"
+"15632757078"
+"15586591418"
+"16633939115"
+"15633865270"
+"15132230769"
+"15231525311"
+"18533178804"
+"15530242583"
+"18713578190"
+"13231054848"
+"13286090629"
+"13131663757"
+"15512146295"
+"19852930687"
+"18603318805"
+"19331030902"
+"13273431379"
+"18732482278"
+"16728397710"
+"16728393720"
+"16728395292"
+"00959259129825"
+"00855969028597"
+"0015167158787"
+"0015167515928"
+"0015168498291"
+"0084815285984"
+"0084859859742"
+"0084843003522"
+"0084814842990"
+"0084815672839"
+"0084131380760"
+"0084818377422"
+"0084812620825"
+"0084827938594"
+"0084818765936"
+"0084949285003"
+"0084813306365"
+"0084815038174"
+"0084845209896"
+"0015106842186"
+"0015107447519"
+"0015107605847"
+"0015107934529"
+"18732028004"
+"13126115044"
+"19133920211"
+"0015108053592"
+"0084334453633"
+"0084339171931"
+"0085266398404"
+"18733778682"
+"13483820229"
+"13126181063"
+"18630021066"
+"13265369605"
+"13111412008"
+"18617871416"
+"15630528090"
+"15530523283"
+"15630009410"
+"13127379775"
+"15533952238"
+"15612185773"
+"15613205627"
+"15512144484"
+"15130385638"
+"13785645172"
+"15619956526"
+"18131212464"
+"17336407039"
+"18812181533"
+"18584646651"
+"18681269558"
+"17809784691"
+"13032685096"
+"17586617131"
+"17633227885"
+"13172679917"
+"15632515877"
+"15612986777"
+"18636100745"
+"13131342210"
+"16630805601"
+"17083391142"
+"13102693839"
+"15614827119"
+"15533775529"
+"13226018367"
+"18581131075"
+"18577899793"
+"18539218512"
+"15532070996"
+"13091118989"
+"0084825025441"
+"0084816735926"
+"0084813933085"
+"0084814599206"
+"0084853686919"
+"0084357581063"
+"0084824893762"
+"0015165758641"
+"0015165942454"
+"0015165966547"
+"0015166093586"
+"0015166213792"
+"0015166238900"
+"0015166248493"
+"0015166293668"
+"0015166475598"
+"0015166578529"
+"0015166821874"
+"0015166903029"
+"0015167082124"
+"0084814102676"
+"0084945746326"
+"0084817818320"
+"0084823141125"
+"18531520585"
+"18571187905"
+"15512030602"
+"18633732888"
+"13253298040"
+"15631289655"
+"15612925731"
+"13282839295"
+"13290662821"
+"15614068368"
+"13070533700"
+"13180505605"
+"15511069330"
+"18634148019"
+"18733864705"
+"13292554616"
+"15694945108"
+"15533708006"
+"15632194111"
+"15533958203"
+"13400357335"
+"16630150561"
+"18633260128"
+"15690528576"
+"15631633333"
+"13273240982"
+"13131183556"
+"13283336264"
+"13253253355"
+"15630976355"
+"13073137260"
+"15691890750"
+"13133056534"
+"15632532657"
+"15690151651"
+"15613339440"
+"0084859573742"
+"0084818947517"
+"0084812224003"
+"0084856231545"
+"0084819390891"
+"0084813212722"
+"0084816807520"
+"0084815324103"
+"0084845274542"
+"0084812118947"
+"0084912526073"
+"0084818419799"
+"0084827480677"
+"0084819683705"
+"0012018809181"
+"0012018885412"
+"0012019331470"
+"0012019405437"
+"0015103475797"
+"0015104522512"
+"0015104673270"
+"0015105059705"
+"0015105202587"
+"0015106823653"
+"0015107203842"
+"0015107258601"
+"0015107862121"
+"0015162274151"
+"0085256510558"
+"0085263697765"
+"0085266651288"
+"0085270882704"
+"15610877668"
+"15690343840"
+"15632627642"
+"18031165493"
+"15612487987"
+"17832579885"
+"18233189598"
+"15030571016"
+"17191304652"
+"17191304093"
+"17191306514"
+"15931515411"
+"18631445952"
+"13043105218"
+"15032133366"
+"13231946185"
+"15612801750"
+"15632910983"
+"13266290023"
+"15632032985"
+"0084396365085"
+"0084829098802"
+"0084817509816"
+"0084815421176"
+"0084814941006"
+"0084336903149"
+"0084366522536"
+"0084364841147"
+"0084387248340"
+"0084818768472"
+"0084815803449"
+"0084817649940"
+"0084849609269"
+"0084942175844"
+"0084944499867"
+"0084949923026"
+"00821084242817"
+"00821047941313"
+"00821039938481"
+"00799954844771"
+"00799950523961"
+"00799958135441"
+"00886824894560"
+"00799952786600"
+"00886829413317"
+"00791354343639022262"
+"00791209635429019978"
+"00791213304609018680"
+"00791354342279026431"
+"00791575115229025244"
+"00791786133599030376"
+"00791354235734030311"
+"00791579829154024321"
+"007947849555297206"
+"00799988082163"
+"008562098500636"
+"008562092438759"
+"008562092762851"
+"008562097757821"
+"008562097950654"
+"00658429991713983"
+"00658429991714145"
+"00658429991714587"
+"00658429991715025"
+"00658429991715062"
+"00658429991715351"
+"00658429991715430"
+"00658429991715510"
+"00658429991715724"
+"008536830401413806"
+"008536830401413882"
+"008536830501480579"
+"008536830401414061"
+"13012101498"
+"00855969145663"
+"15932756528"
+"13833651653"
+"16632850405"
+"13292807918"
+"19312521877"
+"17631329713"
+"18231851332"
+"15633677812"
+"15511201308"
+"19932365334"
+"13171977317"
+"18632703862"
+"15694862251"
+"18633513000"
+"18132282084"
+"00855969175391"
+"00855969048339"
+"00855969165663"
+"00855969048335"
+"00852602176198"
+"00852602188960"
+"008536830501498782"
+"008536830501499086"
+"00852602188775"
+"00852602066624"
+"00852602705478"
+"00852602705025"
+"00852602706384"
+"00852602710625"
+"00852602706217"
+"00852602706029"
+"00852602706066"
+"00852602711032"
+"00852592272580"
+"0085257792566"
+"00855969047656"
+"0085290733791"
+"0085290733024"
+"0084869913807"
+"0084395795325"
+"15631636878"
+"15632281986"
+"13197448865"
+"13102856788"
+"17692186387"
+"19133559931"
+"13032030731"
+"13283224123"
+"15511739811"
+"13131494614"
+"00855969145784"
+"18631172178"
+"18532183878"
+"15830578999"
+"17633137090"
+"13103042601"
+"13784241599"
+"13292313140"
+"13785992866"
+"00855969174977"
+"17503113107"
+"00855969175462"
+"18533181880"
+"00855969175596"
+"00855969175970"
+"00886935226172352842"
+"16630738000"
+"18632236884"
+"16713363910"
+"17631500251"
+"15613685932"
+"008536830501480772"
+"008536830501480776"
+"008536830501480788"
+"008536830501480809"
+"008536830501480815"
+"008536830501480831"
+"008536830501480838"
+"008536830501480857"
+"00886953823716314"
+"00658429991799118"
+"0085268465140"
+"17692592925"
+"15503140156"
+"18503220230"
+"18632170951"
+"17631731357"
+"13131450363"
+"17531900144"
+"15630120305"
+"15614818283"
+"15610895506"
+"13043198355"
+"13091173275"
+"15832400725"
+"18633532653"
+"13012050152"
+"18603138393"
+"0084334820816"
+"0084348564921"
+"13131988996"
+"15577799560"
+"18562412825"
+"13111416700"
+"17659700200"
+"13111321377"
+"13292851779"
+"13082113413"
+"13031468018"
+"008536830401480834"
+"008536830401480841"
+"008536830401480846"
+"008536830401483550"
+"008536830401483578"
+"008536830401483595"
+"008536830401483597"
+"15533267555"
+"13073107577"
+"15530583970"
+"13180207661"
+"18603343688"
+"13148635598"
+"15690367513"
+"15531439330"
+"15531191397"
+"13111380055"
+"13273166797"
+"18532644986"
+"17603271184"
+"13131423267"
+"13292048614"
+"17633360717"
+"15511295633"
+"18633858763"
+"13223261521"
+"13131809386"
+"13020825235"
+"15531231931"
+"15629686560"
+"15614006577"
+"18532165084"
+"0085268425773"
+"0085290852496"
+"0084169291601"
+"0085264631515"
+"00852924417698193"
+"0085268481610"
+"0085268497244"
+"00959425664407"
+"0085264654610"
+"008562092996852"
+"008562096461015"
+"00959449257941"
+"00855710256377"
+"00855710417458"
+"00886971360011"
+"00886971375851"
+"00886974011313"
+"00855188263480"
+"0012345654321"
+"00639637723043"
+"00639637879101"
+"00639637914973"
+"00639638033006"
+"00799968400277"
+"00799959734273"
+"00799975926578"
+"00799974412131"
+"00799989626780"
+"00799952132840"
+"00799986876327"
+"00799970840786"
+"00799966885027"
+"00799988682331"
+"00799961372305"
+"00799989513733"
+"00799969725626"
+"00799978133157"
+"00799977310027"
+"00799973632225"
+"00799958061405"
+"00799957450547"
+"18594248958"
+"13262793167"
+"13115967950"
+"17732102618"
+"19822950010"
+"17367651429"
+"15227829503"
+"19131190732"
+"15533048688"
+"15544608318"
+"15532793266"
+"18531072319"
+"13211088030"
+"13103242830"
+"15532535583"
+"15690503827"
+"13165570862"
+"15512989268"
+"18531061616"
+"15512217218"
+"15533180925"
+"13180325530"
+"00447802154165"
+"0060105008078885"
+"0085258129993"
+"008562099635129"
+"00799954134882"
+"008562096156384"
+"15633556726"
+"15511055835"
+"13081017573"
+"17363129198"
+"15076071717"
+"15933623310"
+"15595069131"
+"19888422604"
+"13102706252"
+"13933238853"
+"18872077705"
+"13403306693"
+"19888442432"
+"18398690168"
+"13931189969"
+"13131810180"
+"15833201913"
+"18767869377"
+"15033009702"
+"13722600259"
+"13832124247"
+"15531066060"
+"19536009841"
+"13932603538"
+"15231999526"
+"18232270058"
+"18713986049"
+"13603262584"
+"13472923887"
+"13933413887"
+"15175958581"
+"17093144456"
+"13191945656"
+"13273508722"
+"13463315396"
+"18533602006"
+"13230089118"
+"15879994004"
+"18330157299"
+"17325693018"
+"18232050392"
+"18033856483"
+"13503151520"
+"17331257065"
+"13513129565"
+"17264494767"
+"13230192361"
+"19831966770"
+"18131708381"
+"19855970835"
+"18132064986"
+"13833571520"
+"15031106233"
+"13620869194"
+"18316015550"
+"15532759187"
+"15511155971"
+"15612990827"
+"15736486181"
+"17734577580"
+"19930623461"
+"00852937582145136"
+"00852937582145143"
+"00852937917405123"
+"00852937917405126"
+"00852941037655125"
+"00852941037655134"
+"00852936604515059"
+"00852937045195064"
+"19537709131"
+"18879146692"
+"18731599898"
+"19930724955"
+"18424298503"
+"13131661509"
+"13986087448"
+"15975738945"
+"19809514796"
+"15531073749"
+"18715296750"
+"17093114094"
+"17093396510"
+"13145564920"
+"16711755678"
+"17093114029"
+"17505562417"
+"19895202532"
+"18232416856"
+"18721013124"
+"13231090948"
+"15081608893"
+"18233925735"
+"15733077531"
+"15832981179"
+"18031013275"
+"13292635317"
+"18031220938"
+"19817657217"
+"19548683482"
+"19817623451"
+"19522749142"
+"17331366577"
+"15205888541"
+"18361763305"
+"15632188215"
+"15175102535"
+"18633502218"
+"19948030519"
+"13739620462"
+"18764008655"
+"15931395730"
+"19565178626"
+"18231427149"
+"15560699689"
+"16576687091"
+"19537635748"
+"19358055340"
+"15383886057"
+"18794657107"
+"13997495174"
+"15226803987"
+"15632417038"
+"15930167267"
+"15030263735"
+"13032076150"
+"13857077431"
+"18032269053"
+"15157487731"
+"00852608824195052"
+"00852608824195067"
+"00852610034875036"
+"00852610284615056"
+"00852610499175066"
+"00852610504145066"
+"00852936604515051"
+"00852936481740832"
+"00886953823799268"
+"00886953823799594"
+"00886953823799718"
+"00852604646495033"
+"00852604646495044"
+"00852608435505042"
+"00852608435505056"
+"00852904411425056"
+"00852936559945038"
+"00852936604515037"
+"18330032723"
+"17035774302"
+"13269373985"
+"18531889509"
+"13131302666"
+"13785708586"
+"18630791291"
+"13249508322"
+"17631170882"
+"15373118682"
+"16632095573"
+"15130913279"
+"13131632303"
+"17533647522"
+"18630408270"
+"18633466648"
+"13012084687"
+"15544591965"
+"15630797138"
+"15632060221"
+"15530231084"
+"13292180055"
+"13032030500"
+"17606419656"
+"15733821777"
+"18879185923"
+"008562091515726"
+"19833138024"
+"18633963078"
+"13131164605"
+"17333633782"
+"15612125200"
+"18633707275"
+"15632587072"
+"18532652573"
+"00799965976804"
+"00799958321460"
+"00852936559945137"
+"00852936952425080"
+"00852937045195099"
+"00852937045195131"
+"00799987130270"
+"00852942747565041"
+"00852941360485110"
+"00852941373425111"
+"00852941373425131"
+"00852941488605100"
+"17731139329"
+"008869132627600596"
+"008869135518404298"
+"00821023194794"
+"00821028442236"
+"00821032097270"
+"00821034222282"
+"00821038142486"
+"00821039158489"
+"00821041296018"
+"00821043606512"
+"00821045143566"
+"00821052230068"
+"00821055524308"
+"15613836086"
+"15831781888"
+"18506470103"
+"18033867385"
+"008562094498624"
+"008562096284523"
+"15102664010"
+"17731897993"
+"008562093466980"
+"008562096331298"
+"15128654962"
+"17531426844"
+"13294371202"
+"008562091956614"
+"13184967629"
+"19801529499"
+"19503280805"
+"008562093149321"
+"0010695822695"
+"17331813007"
+"18476097183"
+"18132167323"
+"15231070610"
+"00886976702089"
+"00886978405467"
+"00886978592657"
+"00886978923445"
+"00821069096522"
+"00447430293442"
+"0084162396300"
+"00447802111178"
+"0015108974327"
+"008525190479169606"
+"00658429991785973"
+"008536830401485901"
+"008536830401486200"
+"008536830401486226"
+"008536830401486237"
+"008536830501486017"
+"008536830501486382"
+"008536830501486519"
+"00886953823785908"
+"00886953823786198"
+"00886953823786221"
+"00886953823786293"
+"0074995017771"
+"0074955804067"
+"00821016366258"
+"00821016748263"
+"00821022026356"
+"00799981117062"
+"00799963261506"
+"00799953586227"
+"00799968605133"
+"00799986660164"
+"008536830401486514"
+"008536830501485840"
+"008536830501485847"
+"008536830501485904"
+"008536830501485916"
+"008562099440291"
+"19521119398"
+"13251929698"
+"13230916030"
+"15613039599"
+"19833790908"
+"15075177129"
+"18830035521"
+"13831991667"
+"13091126717"
+"15354490451"
+"17631333790"
+"15028165219"
+"13180133756"
+"15512796615"
+"13035888227"
+"15830640525"
+"13230376379"
+"13393113874"
+"008562097526203"
+"13032610450"
+"13273176476"
+"15373827842"
+"00959441331541"
+"0074955804002"
+"00959259806139"
+"00959259804548"
+"00959259800219"
+"00959440396388"
+"00959259806963"
+"00959259806438"
+"00959259804943"
+"13091192798"
+"16710525291"
+"16710521971"
+"16710523235"
+"16710523161"
+"16710525311"
+"16710525066"
+"16710525029"
+"16710525031"
+"16710525321"
+"16710523663"
+"16710523529"
+"16710523552"
+"13166505877"
+"16710523033"
+"16710075723"
+"13131470349"
+"16710075990"
+"16710076055"
+"18795980922"
+"17331782091"
+"16710520176"
+"13780510922"
+"16710522750"
+"16710075801"
+"15614208730"
+"15511410438"
+"16710075870"
+"17531050521"
+"15830632725"
+"15131550618"
+"15633629586"
+"18603359128"
+"13111710523"
+"17631532553"
+"13171799996"
+"15610923813"
+"18632794252"
+"15632282808"
+"13111350868"
+"18630154487"
+"13230113539"
+"13011521128"
+"13230611278"
+"18694270572"
+"15531158604"
+"13931073037"
+"13171760228"
+"15612757093"
+"13473298836"
+"13582111203"
+"13582395543"
+"13731379672"
+"13754548265"
+"15030103478"
+"15028318192"
+"13653110858"
+"0084178291605"
+"0085292233983"
+"0085290826521"
+"0085294860274"
+"0084183914046"
+"0085264603266"
+"0085268436985"
+"0085268483591"
+"15027671952"
+"15028325572"
+"17603230610"
+"17521050251"
+"15690276056"
+"18832499588"
+"13932435998"
+"13832415116"
+"18631813006"
+"13784292772"
+"13131157158"
+"00799950767832"
+"00799975227565"
+"00799980583133"
+"00799987863164"
+"00799966083403"
+"00799979643531"
+"00799981870420"
+"00799967358728"
+"00799986587531"
+"00799978522844"
+"00799950973300"
+"00799985606166"
+"00799950308517"
+"00799962536664"
+"00799955652504"
+"00799955444657"
+"00799952478158"
+"00799950881874"
+"00799977487635"
+"00799958401178"
+"00799954774335"
+"00799959922323"
+"00799951873654"
+"00799978315708"
+"00799951802835"
+"00799962152748"
+"00799976831231"
+"00799982958617"
+"00799975354678"
+"00799958527051"
+"00799971482228"
+"00799956702283"
+"00799958683068"
+"00799988074400"
+"00799965264658"
+"00799959116217"
+"00799954037004"
+"00799960513712"
+"00799972584004"
+"00799969136755"
+"00799987558442"
+"00799983622142"
+"15630763751"
+"15532065471"
+"13073137223"
+"13930782557"
+"13081182095"
+"13031922382"
+"13180452638"
+"15633686500"
+"15613461553"
+"17531806008"
+"16711835389"
+"13230111803"
+"16711835628"
+"16711835958"
+"16711837110"
+"00799963246060"
+"00799964916056"
+"00799950676877"
+"00799950441374"
+"00799983088478"
+"00799978916723"
+"00799971668664"
+"00799962817406"
+"00799974810132"
+"00799988325132"
+"00799983652115"
+"00799970852247"
+"00799979186141"
+"00799966585130"
+"00799969972155"
+"00799979063533"
+"00799970725084"
+"00799978404721"
+"00799981780182"
+"00799952575662"
+"00799974952735"
+"00799976705515"
+"00799955212808"
+"00799950667863"
+"00799977768363"
+"00799962668674"
+"00799967428815"
+"16711837409"
+"15511825118"
+"17591658201"
+"15633771910"
+"18581493940"
+"15503253222"
+"17633163542"
+"15369849754"
+"18632836888"
+"18532108817"
+"13070518782"
+"17692507016"
+"13931081558"
+"15533688115"
+"13012027361"
+"18503206303"
+"15632308532"
+"18617446658"
+"18503308678"
+"15233652877"
+"0085297269747"
+"15175795070"
+"15532346568"
+"13231932487"
+"15511140906"
+"13191628873"
+"13180129126"
+"18533746126"
+"13081011209"
+"18633868584"
+"13229073521"
+"17633197517"
+"18631957003"
+"13283133835"
+"18633636940"
+"13131921555"
+"15076283450"
+"15531611969"
+"13147429622"
+"13293217889"
+"13102768705"
+"16630056113"
+"13223316960"
+"18532110405"
+"17603249728"
+"18531156691"
+"0085297224332"
+"0085297243036"
+"0085297250493"
+"0085297252715"
+"18631171393"
+"18531551989"
+"15603300295"
+"17503206756"
+"17692449771"
+"13293032844"
+"18533736938"
+"13472102862"
+"18633682965"
+"17631978810"
+"0084342954083"
+"0085252003521"
+"0085252005019"
+"0085252005021"
+"0085252005652"
+"0085252005695"
+"13253183475"
+"15030197592"
+"15631840381"
+"0085292237581"
+"0085292256040"
+"0085292294828"
+"0085294814027"
+"0085294819144"
+"0085294842031"
+"00886953823787753"
+"00886927140966"
+"008869321638829"
+"008869328487734"
+"008869354238325"
+"0085294857661"
+"0085294873632"
+"0085294890142"
+"13231704623"
+"16630691951"
+"0085297282767"
+"0085297288292"
+"0085297296933"
+"0085297298557"
+"0085264662342"
+"0085267114800"
+"0085268427407"
+"0085294832879"
+"0085264735922"
+"0085267142440"
+"0085297298494"
+"00959441331483"
+"00971564440054"
+"0085297209037"
+"0085264756832"
+"0085292201725"
+"0085269251794"
+"00852924399571921"
+"008536830501446368"
+"00658429991780643"
+"00658429991780647"
+"00658429991780659"
+"00658429991780666"
+"00658429991780697"
+"00658429991780710"
+"00658429991780761"
+"00886971118159"
+"00886973616615"
+"0085252006085"
+"0085252008911"
+"0085252009105"
+"0085252005699"
+"0085252009232"
+"0085252009289"
+"0085252009399"
+"0085252013625"
+"0085252013670"
+"0085252018830"
+"0085252020971"
+"0085252025700"
+"0085252031577"
+"0085252031879"
+"0085252034816"
+"0085252035987"
+"0085252037121"
+"0085252039425"
+"0085252040398"
+"0085252041765"
+"0085252043267"
+"0085252045539"
+"0085252045820"
+"16631139773"
+"16621606965"
+"15720270682"
+"18633358640"
+"0085252065799"
+"0085252067096"
+"0085252067301"
+"0085252069710"
+"0085252071105"
+"0085252071765"
+"0085252071928"
+"0085252071980"
+"0085252072047"
+"0085252073848"
+"0085252077460"
+"0085252111635"
+"0085252112728"
+"0085252115721"
+"0085252115918"
+"0085252119307"
+"0085252120378"
+"0085252120767"
+"0085252121117"
+"0085252121290"
+"0085252125583"
+"0085252125850"
+"0085252126327"
+"0085252126375"
+"0085252126712"
+"0085252129515"
+"0085252129951"
+"0085252130504"
+"0085252131346"
+"0085252132422"
+"0085252132455"
+"0085255827750"
+"00886935268718896946"
+"18631825796"
+"13315884323"
+"15632434274"
+"19931072348"
+"0085252026370"
+"0085252027783"
+"0085252028941"
+"15530960565"
+"17603277060"
+"15532234430"
+"18531103130"
+"15610950221"
+"13283356000"
+"18633089496"
+"18931603756"
+"18831963130"
+"13131611176"
+"13102726610"
+"13031419227"
+"18533785072"
+"18632038898"
+"16682222254"
+"15633206894"
+"13171810625"
+"15603292638"
+"18617879596"
+"13292922656"
+"15630943222"
+"13292432790"
+"13021456190"
+"15631226666"
+"18631417812"
+"13171567961"
+"00852620041170610"
+"00852650414240608"
+"00852904890440606"
+"00852904890440626"
+"00852936074420638"
+"00852936559940630"
+"00852936952420614"
+"00852937045190604"
+"00852937045190622"
+"00886953823738078"
+"00886953823738108"
+"00886953823738278"
+"00886953823767900"
+"00886953823768069"
+"00886953823768250"
+"008525190435966002"
+"13032670302"
+"17633106221"
+"15511966756"
+"15613266066"
+"18533233433"
+"13103058030"
+"16750654663"
+"16750654586"
+"16631417917"
+"15512593730"
+"15132881216"
+"13703240799"
+"17603262618"
+"13294070221"
+"13172670227"
+"00855969176052"
+"17716503795"
+"15350721532"
+"15133842872"
+"008536830401439361"
+"008536830401439436"
+"008536830401439457"
+"008536830401439580"
+"008536830401439583"
+"008536830401439644"
+"008536830401439727"
+"008536830401439922"
+"008536830401439951"
+"008536830501439129"
+"008536830501439213"
+"008536830501439327"
+"0085587617122"
+"0085593276484"
+"0085593276434"
+"0085593276437"
+"0085593276486"
+"00852604646491224"
+"00852604646491258"
+"00852619914591239"
+"00852619921641238"
+"00852620041171234"
+"00852620065241209"
+"008562095760372"
+"008562098620242"
+"008562098004648"
+"008562091997950"
+"008536830501486778"
+"008536830501487102"
+"008536830501487107"
+"008536830501487315"
+"16736491708"
+"16736491125"
+"00855969146081"
+"00855969139900"
+"15632573955"
+"16632955613"
+"15232867689"
+"17631239056"
+"15632225131"
+"13180333329"
+"15511109999"
+"15227494118"
+"13171770139"
+"18533657621"
+"13102887616"
+"15530596888"
+"18630081859"
+"13180536961"
+"15613829289"
+"15511703388"
+"16750654566"
+"13292381386"
+"16750654572"
+"18633888612"
+"15530156097"
+"13294032836"
+"16630713000"
+"13106534922"
+"13283135188"
+"17633013890"
+"16630695719"
+"15533659518"
+"18634198324"
+"00852936952421212"
+"00852937254711229"
+"00852937254711235"
+"008869232573574990"
+"0085270660141"
+"0085256551062"
+"0085258156171"
+"13231708327"
+"18630375370"
+"16630761768"
+"18632836084"
+"15511654293"
+"15631820928"
+"13720207190"
+"13230808700"
+"15630497764"
+"18532152764"
+"15631802155"
+"13131022526"
+"15630723090"
+"18631020105"
+"16633589717"
+"16796426511"
+"18632927789"
+"15632074804"
+"18503386836"
+"15512370178"
+"16631067776"
+"15511674110"
+"15631672276"
+"15614364797"
+"00852937418491233"
+"00852937418491260"
+"00852937505451235"
+"00852937922441220"
+"00852941037651252"
+"00852941488601251"
+"00852941734281246"
+"00852941734281251"
+"00852941818621239"
+"00852941988391227"
+"00852941988391244"
+"00852619754594207"
+"00852619902414233"
+"00852620065244215"
+"00852904411424230"
+"13503259917"
+"18632059786"
+"15631915558"
+"15612559688"
+"13273397979"
+"13933319918"
+"18630298970"
+"15694879345"
+"15631908428"
+"15612598351"
+"13082392326"
+"18531890976"
+"15630777396"
+"13180001994"
+"18731717992"
+"18533754453"
+"18633538576"
+"17532061807"
+"13147435650"
+"16682296222"
+"17631608182"
+"0074995011291"
+"0074995017738"
+"0074995027140"
+"0079582039772"
+"006010516872685"
+"006285507019926"
+"00959259791610"
+"0085258334321"
+"0085258879083"
+"0085270200688"
+"0060113586604102"
+"00855711072163"
+"00788125842420"
+"00855711064115"
+"00855711195557"
+"008562096567569"
+"008562098557963"
+"008562094118009"
+"008562095964597"
+"008562094172115"
+"008562097984253"
+"00852604493247418"
+"00852608647857422"
+"00852942709137423"
+"00852942759477418"
+"00852604493244215"
+"00852607424454235"
+"00852608458184221"
+"00852608458184225"
+"00852608545224232"
+"007909494493217290"
+"007910049071988820"
+"007910458074569724"
+"007914385573037308"
+"17633063281"
+"18731286585"
+"17713022076"
+"15511032980"
+"15530278568"
+"13731446868"
+"17266030150"
+"15996033597"
+"15502181284"
+"15081967556"
+"18032890835"
+"16759305224"
+"16759308754"
+"16759309040"
+"16759304630"
+"19943472481"
+"17303218195"
+"19871571557"
+"19527494264"
+"15233605001"
+"18031611850"
+"13582126164"
+"16630510200"
+"14753070925"
+"18331426822"
+"18330386150"
+"17603318442"
+"15212535183"
+"15233192197"
+"17164240270"
+"17832272820"
+"13111550984"
+"15076295715"
+"19817662467"
+"15613185393"
+"19519387680"
+"18730726297"
+"15967157046"
+"19531777298"
+"17733203733"
+"18103113005"
+"00852942076214235"
+"00852942371814227"
+"00852942371814233"
+"00852942383694209"
+"00852942383694215"
+"00852942519274226"
+"00852942713954229"
+"00852942877794230"
+"00852942933744234"
+"00886971475761"
+"00855711437460"
+"0085297297487"
+"0085267139915"
+"00959899626367"
+"00959259766823"
+"0085264798956"
+"0085269287108"
+"0085290864123"
+"00959259789695"
+"00959259773486"
+"0085264749434"
+"0085267135640"
+"0085267195453"
+"00852904890444214"
+"00852904890444236"
+"00852936074424206"
+"00886971600292"
+"19532327435"
+"18032000407"
+"13930027586"
+"19531863803"
+"13931885410"
+"15131042128"
+"18103208666"
+"15903341797"
+"18032226959"
+"18262171396"
+"19533908073"
+"15832530665"
+"15133081832"
+"15100905770"
+"15127828040"
+"17303101131"
+"15133876291"
+"18732752786"
+"13833376223"
+"13932839300"
+"13131404051"
+"15530122959"
+"13102916786"
+"18134148289"
+"15632670035"
+"18703158281"
+"18232833793"
+"17732679539"
+"17320650042"
+"18203126353"
+"18633453556"
+"18333358701"
+"13724902134"
+"19895521997"
+"13833342464"
+"13292623197"
+"17320614943"
+"15028683321"
+"18332745063"
+"13463443416"
+"19809733012"
+"19931670851"
+"18032776606"
+"18232571150"
+"19930703965"
+"13102453836"
+"19930550201"
+"18713888083"
+"15032865902"
+"13456495262"
+"15713277389"
+"19567953273"
+"13785455283"
+"13273301222"
+"17621938925"
+"15630156717"
+"15350607982"
+"13785611984"
+"15373058830"
+"17395249540"
+"18034276660"
+"19131819423"
+"18715920733"
+"15373137666"
+"18231693697"
+"00791666788047004317"
+"00791660246717015588"
+"13145316472"
+"15076470668"
+"13012028875"
+"0085297208074"
+"0085297213613"
+"0085297245643"
+"007901205284468939"
+"13103377785"
+"19880051428"
+"17821271839"
+"13722406328"
+"15231017539"
+"15130008279"
+"18032182024"
+"19828904796"
+"13780507101"
+"19948131434"
+"18233711040"
+"15232701860"
+"17692545768"
+"15131992572"
+"17730555882"
+"17895188364"
+"18103167201"
+"17772661536"
+"13476106173"
+"13230842007"
+"13290568559"
+"19518274381"
+"18031857534"
+"17265868921"
+"13722363716"
+"18226711379"
+"15933555728"
+"15930372795"
+"15127930236"
+"15133772971"
+"13733250613"
+"19534448405"
+"18033583718"
+"18232528071"
+"17846976328"
+"15931711946"
+"19823638575"
+"19533833835"
+"15607129267"
+"19948075081"
+"13803388166"
+"19831678984"
+"0085269244710"
+"0085269287493"
+"00447887949533"
+"00447899410365"
+"00447919433676"
+"0085267186280"
+"0085268443669"
+"0085292228100"
+"0085294893264"
+"0085297229771"
+"0085264658961"
+"0085264687090"
+"0085264746552"
+"0085264751393"
+"0085267174113"
+"0085268457444"
+"0085269240556"
+"0085292260308"
+"0085292273369"
+"0085294804032"
+"0085294851990"
+"0085294880535"
+"0085294820051"
+"0085297214632"
+"0085264688311"
+"0085264690851"
+"0085264695784"
+"0085264698982"
+"008536830401436155"
+"008536830501435952"
+"008536830501435978"
+"008536830501435979"
+"17803093269"
+"18233404080"
+"18303148770"
+"19932867022"
+"19831027029"
+"15799921431"
+"15128436197"
+"17370220607"
+"15532095588"
+"18132219374"
+"0085264633803"
+"00852936952424191"
+"00852937922444171"
+"00852941488604170"
+"00852941488604179"
+"0085264683707"
+"0085290828735"
+"0085290885073"
+"0085291987990"
+"0085292244554"
+"0085294861371"
+"0085294873265"
+"0085297245181"
+"00658429991735982"
+"00658429991735992"
+"00658429991736036"
+"00658429991736242"
+"008536830401435951"
+"008536830401435984"
+"008536830401436057"
+"008536830401436068"
+"008536830401436079"
+"008536830401436085"
+"0085264759814"
+"0085264795252"
+"0085267105991"
+"0085267153533"
+"0085267186958"
+"0085267197561"
+"0085268410967"
+"0085268448635"
+"0085269237717"
+"0085290801123"
+"0085252137044"
+"0085252137715"
+"17713086096"
+"13303304697"
+"0085252133475"
+"17633373538"
+"0085252139592"
+"0085252134297"
+"0085252137375"
+"17731215370"
+"15713099180"
+"13091221703"
+"13290657517"
+"008562093453553"
+"17603375675"
+"0085294899797"
+"0085264790900"
+"0085268401287"
+"0085268412703"
+"0085268462261"
+"0085268464675"
+"0085291933923"
+"0085290811320"
+"00658429991740431"
+"00658429991740439"
+"00658429991740442"
+"00658429991740453"
+"008536830401440218"
+"008536830401440230"
+"008536830401440239"
+"008536830401440240"
+"0085252187180"
+"008562092789353"
+"0085252186179"
+"008562092695800"
+"008562095217324"
+"008562099887054"
+"008562092021790"
+"008562098835136"
+"15630306031"
+"0085264648852"
+"0085264650622"
+"00658429991740456"
+"00658429991740475"
+"00658429991740477"
+"00658429991740480"
+"00658429991740489"
+"00658429991740495"
+"00658429991740505"
+"00658429991740512"
+"00658429991740524"
+"00658429991740527"
+"00658429991740532"
+"00658429991740534"
+"00658429991740548"
+"00658429991740554"
+"00658429991740555"
+"00658429991740559"
+"008536830401440632"
+"008536830401440639"
+"008536830401440648"
+"008536830401440659"
+"0085252726631"
+"0085252187801"
+"0085252186375"
+"0085252719993"
+"008562095806046"
+"008562099361076"
+"008562096083169"
+"0085252400581"
+"0085252411863"
+"0085252169550"
+"0085252408057"
+"16603360039"
+"18233109173"
+"0085252727137"
+"0085252728043"
+"0085252149462"
+"13331241692"
+"008562096312452"
+"0085252178893"
+"0085252401968"
+"0085252169407"
+"15613193993"
+"0085252193089"
+"0085252174766"
+"0085252176158"
+"0085252186975"
+"15130938393"
+"17819674460"
+"13031400198"
+"008536830401439872"
+"008536830401439977"
+"008536830401439973"
+"008536830401439974"
+"008536830401440242"
+"008536830401440253"
+"008536830401440271"
+"008536830401440277"
+"008536830401440287"
+"008536830401440294"
+"008536830401440295"
+"008536830401440297"
+"008536830401440302"
+"008536830401440308"
+"008536830401440314"
+"008536830401440317"
+"008536830401440319"
+"008536830401440343"
+"008536830401440354"
+"008536830401440378"
+"008536830401440447"
+"008536830501440328"
+"008536830501440330"
+"008536830501440341"
+"008536830501440349"
+"0085252468295"
+"18631856952"
+"17692297862"
+"13103391111"
+"13231657093"
+"18630392949"
+"13582323728"
+"13292690937"
+"18617762800"
+"16601048974"
+"18633448275"
+"18631167835"
+"15511664996"
+"13131325230"
+"15631452708"
+"18633050627"
+"15632786690"
+"17607062553"
+"17121915897"
+"15512345377"
+"15612399950"
+"15533550509"
+"13231266886"
+"18633701227"
+"13032026106"
+"18630680049"
+"13032005902"
+"008536830401440553"
+"008536830401440580"
+"008536830401440584"
+"008536830401440594"
+"008536830401440598"
+"008536830401440611"
+"008536830401440614"
+"008536830401440615"
+"008536830401440625"
+"00658429991740563"
+"00658429991740564"
+"00658429991740568"
+"008536830401438304"
+"18696641930"
+"13739707386"
+"13021860786"
+"13131172380"
+"15633093227"
+"18529489456"
+"15632153149"
+"13231087815"
+"18732988265"
+"13131180005"
+"13930795958"
+"15630810032"
+"13212784217"
+"18533179701"
+"13091190965"
+"13126155958"
+"18630500978"
+"13103298320"
+"15530111804"
+"15630885131"
+"18631231161"
+"15633099472"
+"16630328419"
+"18588296820"
+"008536830501440197"
+"00447430719080"
+"00447430785494"
+"00447435688161"
+"00447436657361"
+"00447437171499"
+"00447437219687"
+"00447437412346"
+"00447437708046"
+"00447441642854"
+"00447443157949"
+"00447467116045"
+"00447467588527"
+"00447470318744"
+"00447471143300"
+"00447471159808"
+"00447500540164"
+"00447500598333"
+"00447501599986"
+"00447501621269"
+"13230942077"
+"13293382108"
+"15531617286"
+"17515737566"
+"15512000396"
+"13035886458"
+"15512879955"
+"15531641500"
+"18532560919"
+"15613299963"
+"18533188792"
+"13223267821"
+"17003237522"
+"15631870625"
+"17531988701"
+"15603394069"
+"15633793186"
+"15612909302"
+"17631411641"
+"15530638178"
+"15533977666"
+"13211085928"
+"18697282798"
+"13290675669"
+"15631965221"
+"18630181204"
+"17631695658"
+"17631970576"
+"17633099806"
+"13230486163"
+"13133517836"
+"0085290896866"
+"0085291965947"
+"0085291981134"
+"0085292208535"
+"0085292271614"
+"00447554898976"
+"00447570440711"
+"00447584465469"
+"00447585229232"
+"00447587174065"
+"00447587482839"
+"0085268464790"
+"0085269259958"
+"00447501673620"
+"00447501854279"
+"00447502130660"
+"00447502589382"
+"00447502830966"
+"00447502868703"
+"17633048315"
+"13011565359"
+"18631830330"
+"17716512747"
+"15532783907"
+"17531352690"
+"15232034225"
+"18931533654"
+"13103073541"
+"15633919351"
+"15511188235"
+"18631106868"
+"13180442102"
+"13166552869"
+"18634088005"
+"15511589100"
+"18603136543"
+"13519563832"
+"15630189705"
+"17631290960"
+"13253165715"
+"19565377098"
+"15531477305"
+"13131478865"
+"13293150136"
+"13031435606"
+"13180471998"
+"15531639651"
+"0085290870094"
+"15226702926"
+"15690418702"
+"18632486960"
+"17631024537"
+"13106551316"
+"13293313508"
+"18332883397"
+"18634110365"
+"13131386108"
+"17331927478"
+"18603261555"
+"18733184005"
+"15052605746"
+"0085292274945"
+"0085294861757"
+"0085297203050"
+"0085297263342"
+"0085291920586"
+"0085291956728"
+"0085291958130"
+"0085291998616"
+"0085292215245"
+"0085297274831"
+"0085297287188"
+"0085292275424"
+"0085269225394"
+"0085292207002"
+"0084105020874"
+"0084128173347"
+"0084164181886"
+"0085264604488"
+"0085264627501"
+"0085264658338"
+"0085264737138"
+"0085264771557"
+"0085267136716"
+"17736045737"
+"13131635591"
+"13032621751"
+"16797042937"
+"15631807257"
+"19331286127"
+"18603226051"
+"008526450436022421"
+"15226930077"
+"15511653919"
+"18849037624"
+"18531909036"
+"17803290792"
+"17732977732"
+"15755236087"
+"17331485751"
+"16736499938"
+"16736498307"
+"00855969134014"
+"17717113521"
+"18330115894"
+"15728440273"
+"18034532641"
+"16797042957"
+"18531318530"
+"15932006632"
+"13231119858"
+"13126113078"
+"0085267178567"
+"0085268438228"
+"0085269233499"
+"0085269233602"
+"0085290841443"
+"13273461333"
+"17531318225"
+"19857838561"
+"16631320575"
+"0085290873988"
+"0085297267287"
+"00447379674403"
+"00447379754112"
+"00447384737706"
+"00447385146025"
+"17692714650"
+"17531811396"
+"15630292775"
+"18630154986"
+"15613204798"
+"18633755950"
+"13166518086"
+"18532238959"
+"18531697268"
+"13731552921"
+"15631855212"
+"18414116773"
+"18482399684"
+"18931188060"
+"15950917858"
+"18632386826"
+"15632050350"
+"13223185621"
+"13106535280"
+"15613239826"
+"18647115038"
+"15613687307"
+"13131414090"
+"17692202223"
+"13131881118"
+"17531339165"
+"15850000959"
+"16630052084"
+"15612552365"
+"18332258878"
+"15614179520"
+"18344713668"
+"13103287752"
+"18389506273"
+"13021843385"
+"13077150991"
+"15631950866"
+"13103348060"
+"13292161564"
+"13177761038"
+"13031489812"
+"18633115844"
+"18603406062"
+"13273357046"
+"17677660562"
+"18631821073"
+"17531962883"
+"16631132868"
+"13231171756"
+"16630653732"
+"16603245769"
+"19519392404"
+"0085264723923"
+"0085264773892"
+"0085268409823"
+"0085268417653"
+"0085268418186"
+"0085268478148"
+"0085268485753"
+"0085269283474"
+"0085290853670"
+"0085297256542"
+"0085264631395"
+"0085264659550"
+"0085267175583"
+"17276264929"
+"15531990500"
+"18271899127"
+"18203172036"
+"16517192503"
+"13730453973"
+"17280715792"
+"13081097403"
+"13832205753"
+"15715274015"
+"17039926261"
+"13191973142"
+"18333377722"
+"18833773686"
+"13582214316"
+"19832518753"
+"18830931357"
+"15833771835"
+"15631109061"
+"13230961602"
+"13131199979"
+"17631960006"
+"16736491917"
+"16736498621"
+"16736492617"
+"16736498639"
+"16736490251"
+"16736492730"
+"13180286765"
+"16631777278"
+"18636284144"
+"18603370162"
+"00886953823740199"
+"00886953823740221"
+"00886953823740229"
+"00886953823740236"
+"00886953823740239"
+"00886953823740243"
+"00886953823740248"
+"00886953823740254"
+"00886953823740259"
+"00886953823740273"
+"00886953823740289"
+"00886953823740290"
+"00886953823740292"
+"00886953823740323"
+"00886953823740324"
+"00886953823740326"
+"00886953823740367"
+"00886953823740388"
+"00886953823740402"
+"00886953823740403"
+"00886953823740408"
+"00886953823740414"
+"00886953823740432"
+"00886953823740438"
+"00886953823740570"
+"13091000503"
+"0085254744753"
+"0085254738518"
+"0085254750647"
+"0085254709631"
+"0085254714158"
+"0085254741795"
+"0085254736007"
+"0085254724346"
+"0085254723270"
+"0085254740475"
+"0085254748149"
+"19801571899"
+"18034397959"
+"15927374500"
+"17333486751"
+"15232176502"
+"15630375956"
+"13028681289"
+"19331733330"
+"19520211144"
+"18330186618"
+"18331189772"
+"13231877832"
+"18511449954"
+"14758366503"
+"15531523739"
+"18233813220"
+"13081816322"
+"18332008320"
+"18533935893"
+"17631314465"
+"13103351017"
+"13131411873"
+"15533553185"
+"13283432063"
+"17632817598"
+"13131708277"
+"18330310671"
+"13031871913"
+"15631078687"
+"15694831822"
+"00886953823739951"
+"00886953823739968"
+"00886953823739969"
+"00886953823739971"
+"00886953823740155"
+"00886953823740156"
+"00886953823740158"
+"00886953823740167"
+"00886953823740174"
+"00886953823740176"
+"00886953823740177"
+"00886953823740180"
+"00886953823740183"
+"00886953823740190"
+"00886953823740193"
+"00886953823740194"
+"00886953823740268"
+"00886953823740554"
+"00886953823740555"
+"00886953823740561"
+"00886953823740568"
+"0085268493991"
+"008536830501440622"
+"0085290866751"
+"0085290874041"
+"0085291963558"
+"0085291998741"
+"13230976621"
+"13283289765"
+"13293088225"
+"15633869685"
+"13191680222"
+"17052662623"
+"13031570097"
+"18531077044"
+"13081805611"
+"18231577138"
+"15731232901"
+"00971507504571"
+"17325509806"
+"19832366732"
+"18700187665"
+"13897642009"
+"17035774887"
+"15383739022"
+"13234483050"
+"18332618382"
+"13021825792"
+"18633354665"
+"15097437300"
+"17772583128"
+"18355727271"
+"13292396870"
+"13582806058"
+"17320770756"
+"17332622238"
+"15532770783"
+"17532119250"
+"15614167478"
+"15614168244"
+"13223338990"
+"15512655525"
+"15630581703"
+"15512117159"
+"13102849556"
+"15503020322"
+"18531308862"
+"17692648125"
+"17041456837"
+"13102410606"
+"17531717317"
+"13102700559"
+"15530387616"
+"00447733135849"
+"00447733331268"
+"00447741140498"
+"00447741202896"
+"008536201787102942"
+"008536201787107287"
+"008536201787109219"
+"008536201787109345"
+"008536201787110526"
+"008536201787110579"
+"008536201787120958"
+"008536201787137818"
+"008536242755737559"
+"008536242755738058"
+"008536242755741055"
+"008536242755749871"
+"008536242755751143"
+"008536242755755176"
+"008536242755756622"
+"008536242755770524"
+"008536242755775752"
+"008536242755785009"
+"008536242755786757"
+"008536242755796652"
+"008536247998118628"
+"008536247998119571"
+"008536247998122063"
+"008536247998143516"
+"008536247998143600"
+"008536247998147588"
+"008536247998151807"
+"008536247998171972"
+"18403249777"
+"18034321053"
+"18033885562"
+"15610495089"
+"18881034168"
+"13111724777"
+"15717693960"
+"17332668647"
+"19931065299"
+"18333001757"
+"00639468993361"
+"00639485462325"
+"15296991451"
+"18932706361"
+"15200172051"
+"13483792526"
+"18733260880"
+"13231381501"
+"13052009276"
+"18233689196"
+"19529528746"
+"16633289881"
+"15945228683"
+"17713005168"
+"13253127859"
+"18230202303"
+"13230801262"
+"17631024939"
+"15512756868"
+"13231230508"
+"13184740807"
+"18632631446"
+"13203772610"
+"16632721502"
+"13102858908"
+"15503280331"
+"13032033822"
+"18631877828"
+"15630269109"
+"13172193336"
+"18531767831"
+"13283350311"
+"18295316493"
+"19133670823"
+"008536201787123331"
+"008536201787124126"
+"008536201787126066"
+"008536201787130522"
+"008536201787132017"
+"008536201787134628"
+"008536201787134883"
+"008536201787136343"
+"008536201787136665"
+"008536201787138138"
+"008536201787146944"
+"008536201787154136"
+"008536201787157690"
+"008536201787167463"
+"008536201787171400"
+"008536201787173197"
+"008536201787187839"
+"008536201787187943"
+"008536308210424380"
+"00447802128831"
+"00447802133843"
+"00447802144711"
+"00447802147847"
+"00447802148814"
+"00447802155061"
+"00447818150889"
+"008536830401467101"
+"0085290832114"
+"17733816145"
+"18830768699"
+"15232115383"
+"13473370556"
+"13400227377"
+"13283177323"
+"17732953758"
+"13343331224"
+"17330205388"
+"15577185086"
+"15727703743"
+"15032153920"
+"17325655713"
+"13503320633"
+"15533326259"
+"18348819618"
+"19931099637"
+"18214103087"
+"13248288925"
+"15324229758"
+"18617830195"
+"008562091858622"
+"15884507291"
+"13062779373"
+"17733585197"
+"15512759626"
+"18295034415"
+"18533728655"
+"15369919059"
+"15231837179"
+"16628586832"
+"18133855831"
+"13576960494"
+"15131080418"
+"18720296595"
+"18330674028"
+"18232832765"
+"18033779112"
+"15032388653"
+"15631670767"
+"17897430293"
+"17325379755"
+"18034592686"
+"18603243190"
+"19520210795"
+"17503174588"
+"16633243227"
+"16633002625"
+"15512605835"
+"15690438227"
+"18633834772"
+"15530117361"
+"008536227160351131"
+"008536227160355771"
+"008536227160356219"
+"008536227160356633"
+"008536227160359049"
+"008536247998173200"
+"008536247998175906"
+"008536247998191670"
+"008536247998198236"
+"008536308210402240"
+"008536308210416813"
+"008536308210417960"
+"008536308210418668"
+"008536308210419318"
+"008536308210424574"
+"00447900956733"
+"00447901845718"
+"00447918614674"
+"00447979370253"
+"00447990809259"
+"00447802019700"
+"00447831827292"
+"15027805274"
+"15690428368"
+"13283319265"
+"19551978656"
+"18770124364"
+"17041485718"
+"18231470695"
+"13171821121"
+"15612050121"
+"17503259952"
+"15530115750"
+"17778826261"
+"13143046009"
+"18713037982"
+"17832577901"
+"18233384054"
+"13930015632"
+"13756020868"
+"15631555651"
+"19502148260"
+"13162787129"
+"18233786236"
+"18231570327"
+"008562097683702"
+"008562096068494"
+"008562095035904"
+"19531251226"
+"008562096132339"
+"15209665772"
+"18031031559"
+"13423717632"
+"15531723949"
+"13575383175"
+"13063076059"
+"15612415277"
+"15383044303"
+"17331251595"
+"18364768812"
+"18000354074"
+"17275347532"
+"17320882135"
+"18134258235"
+"19888344232"
+"18633071358"
+"15532345362"
+"13290631675"
+"18255377076"
+"18032033502"
+"15897186762"
+"19331686831"
+"13126101613"
+"15699651525"
+"15926277204"
+"18712983252"
+"13111356818"
+"15700579902"
+"18931066526"
+"16715677595"
+"16759300331"
+"18555637185"
+"17837469365"
+"15630452839"
+"13091135712"
+"15512157002"
+"18603231081"
+"17334238342"
+"18731856120"
+"13082103199"
+"13730408849"
+"13006752132"
+"18103109012"
+"17842483204"
+"00447795695597"
+"00447799106727"
+"00447799320209"
+"00447799637618"
+"00447799879642"
+"00447802057525"
+"00447802114932"
+"00447802136901"
+"00447802156181"
+"00959259809684"
+"00959259769177"
+"00959259809231"
+"00959422620390"
+"00959443619462"
+"00601081332169236"
+"00601077259051306"
+"18209508129"
+"13315226584"
+"15677169326"
+"18279238991"
+"17778234842"
+"14708118051"
+"13052252156"
+"19519329332"
+"13832092519"
+"17743651060"
+"15988011833"
+"19897295026"
+"18361248710"
+"18230209218"
+"18333813080"
+"18361145761"
+"17732377385"
+"16754894281"
+"19890370975"
+"18241096762"
+"18003183027"
+"15188718202"
+"16630860877"
+"15369286009"
+"16710076063"
+"13111647726"
+"16625124312"
+"18589016562"
+"13231621657"
+"13031598018"
+"18633302607"
+"13111467737"
+"13180208957"
+"0060107925763193"
+"00959259768954"
+"0084144874029"
+"00959899799092"
+"00959449262283"
+"00959403212029"
+"00959454603624"
+"00959422553868"
+"00959441331626"
+"00959454628590"
+"00959899647662"
+"00959402379168"
+"00959259766730"
+"00959899651912"
+"00959426768749"
+"00959259794757"
+"00959259800383"
+"00959259767396"
+"00959259768032"
+"00959449262058"
+"00959259773041"
+"00959899647590"
+"0084114469850"
+"0084129394363"
+"0084134709605"
+"0084159896916"
+"0084174285453"
+"0084175712061"
+"0084180011790"
+"0084120438957"
+"0084121332401"
+"0085268410646"
+"0085297208305"
+"0085264745427"
+"0085297211029"
+"18631878660"
+"19527572824"
+"15224197249"
+"16710075805"
+"13171880215"
+"15631163104"
+"16710075916"
+"17831931113"
+"13102800201"
+"15932215555"
+"13315564213"
+"13603300525"
+"16632837867"
+"13283266385"
+"13292406052"
+"15613140255"
+"18296738436"
+"15631539129"
+"13273416901"
+"15613276672"
+"15512079309"
+"15511263231"
+"18833336921"
+"18632034563"
+"17631314505"
+"17041801088"
+"15612392323"
+"15233979307"
+"15100182392"
+"18617804122"
+"15512946094"
+"15831262973"
+"15731986666"
+"13180442683"
+"00855710647917"
+"00855188253972"
+"0085599602016"
+"00959443619675"
+"00959422528458"
+"00959259765831"
+"00959259793862"
+"00959899662367"
+"00959259807359"
+"00959443622506"
+"00959251062161"
+"00959259800615"
+"00959259779493"
+"00959259802690"
+"00959448880550"
+"00959259808319"
+"00959259800834"
+"0085294813142"
+"0084126587850"
+"0084138746398"
+"00447802053995"
+"0085297204461"
+"0085292299205"
+"0085264625766"
+"13290528238"
+"15531020290"
+"15354149533"
+"13223177012"
+"18631006832"
+"17692560918"
+"15512222156"
+"13230379907"
+"13313002697"
+"15512855168"
+"19932177930"
+"15230282156"
+"13463360825"
+"13180468805"
+"18630663978"
+"15613655718"
+"13131368936"
+"18633507432"
+"15158104945"
+"18630065016"
+"15632700789"
+"13400414870"
+"00639484335297"
+"13191709590"
+"18131157085"
+"18633652584"
+"15503306963"
+"13293328486"
+"17633102309"
+"13230957837"
+"17620871273"
+"13292989739"
+"15612831287"
+"18630353836"
+"16630708161"
+"13180358324"
+"15530043588"
+"16630377961"
+"16750700276"
+"13191879058"
+"13013211819"
+"0084104100988"
+"0084118949127"
+"0084153784108"
+"0084166297896"
+"0074955435347"
+"15511541056"
+"17633231536"
+"15532368990"
+"13131155533"
+"008562099451421"
+"13733296092"
+"0085257127008"
+"0074955442076"
+"0074955804008"
+"0074955893381"
+"00666124816027"
+"007931436973068725"
+"007937668293586318"
+"0060115350061224"
+"0015104463492"
+"0079267530430"
+"0079267532041"
+"0079267538258"
+"0085269255859"
+"0085290848346"
+"0085291940809"
+"0085291997466"
+"00658429991778288"
+"00658429991778298"
+"00658429991778381"
+"00658429991778473"
+"008536830401478280"
+"19801985626"
+"0085254752716"
+"008562096106978"
+"0085254713502"
+"008562091063592"
+"18231502510"
+"0085257159831"
+"0085257132608"
+"0085257120636"
+"0085257109928"
+"0085257126090"
+"15100681590"
+"0085257132218"
+"0085257123061"
+"0085257132887"
+"0085257126256"
+"0085257160179"
+"0085257159611"
+"0085257160197"
+"0085257151056"
+"19520299548"
+"00855969138805"
+"16772146393"
+"13581679473"
+"13103328068"
+"13292107363"
+"15570966731"
+"15511635515"
+"15630577512"
+"13643276453"
+"00821077134111"
+"00821081214504"
+"00821084859102"
+"00821087483410"
+"00821091468086"
+"00852945998521290"
+"00852945963763076"
+"0085257160116"
+"0085257142904"
+"0085257147434"
+"0085257160171"
+"0085257160150"
+"0085257160151"
+"0085257160097"
+"0085257148194"
+"0085257160117"
+"0085257111634"
+"0085257160121"
+"0085257160105"
+"0085257132565"
+"0085257133836"
+"0085257123865"
+"0085257119773"
+"0085257132155"
+"0085257119255"
+"13292166200"
+"13032689968"
+"15230408821"
+"13111560308"
+"13293260463"
+"0074955806009"
+"0074955852672"
+"0074995011230"
+"0074995011271"
+"00852945994552930"
+"00852945946540952"
+"00852945964581431"
+"00852945968079254"
+"00852945968079436"
+"00852945968670568"
+"00852945980701252"
+"00852945986027790"
+"00852945994535835"
+"008536830501466600"
+"008536830501466761"
+"008536830501466939"
+"008536830501466987"
+"13103176500"
+"15511702360"
+"00886953823766915"
+"0074995019103"
+"0074995019126"
+"0074995027076"
+"0074995035003"
+"0079021904354"
+"0074955041421"
+"0074955043163"
+"0074995017708"
+"0074995018801"
+"0074995018809"
+"0074995018833"
+"0074995044719"
+"0079014619787"
+"0079021580753"
+"00658429991766499"
+"00658429991766544"
+"008536830401466404"
+"008536830401466422"
+"008536830501477403"
+"00886953823777113"
+"18268857813"
+"008562096537593"
+"16516621399"
+"18307111756"
+"18269235215"
+"18832031447"
+"15612702762"
+"13133560817"
+"15633650110"
+"0085257117956"
+"0085257105108"
+"008536830401466850"
+"008536830401466863"
+"008536830401466901"
+"008536830501466401"
+"008536830501466416"
+"0097680151930"
+"0097680153728"
+"0097680154890"
+"0097680162162"
+"0097680163472"
+"0097680163724"
+"0097680171565"
+"0097680173925"
+"0097680173946"
+"0097680178534"
+"0097680179546"
+"0097680184173"
+"0097680185796"
+"0097680186047"
+"0097686126702"
+"0097686127482"
+"0097686127954"
+"0097686128311"
+"0097686130306"
+"0097686130527"
+"0097686860384"
+"00447802133587"
+"008536830501476528"
+"008536830501476593"
+"00886953823775837"
+"00886953823775970"
+"00886953823776210"
+"008536830501421755"
+"0074955438687"
+"008536830401466445"
+"008536830401466469"
+"0085257106795"
+"0085257111002"
+"18511153039"
+"18533133891"
+"16631447175"
+"15633715563"
+"16710077057"
+"15076186375"
+"15632378763"
+"16710076019"
+"16710076397"
+"17603268638"
+"15562758286"
+"15632846908"
+"16710523608"
+"16710522663"
+"16710523810"
+"16710523807"
+"16710522686"
+"15503061335"
+"16710523692"
+"16633231812"
+"18632510632"
+"16710523272"
+"16710522603"
+"16710523677"
+"16632445059"
+"16710523689"
+"16710522717"
+"15503325744"
+"15612096936"
+"13292770372"
+"13102949207"
+"17692935027"
+"15531861238"
+"18694217716"
+"15632895812"
+"18533021620"
+"17531020817"
+"13253271705"
+"13127321972"
+"15631958606"
+"18630366899"
+"15610869137"
+"15632999573"
+"15630935989"
+"13223261603"
+"15612191192"
+"18633083744"
+"13229860681"
+"13292508177"
+"15612288789"
+"13031401667"
+"13229898978"
+"15533009058"
+"17003233382"
+"13253152620"
+"16745831666"
+"18673066946"
+"0085270158970"
+"00886953823763971"
+"00886953823763976"
+"00886953823763980"
+"00886953823763987"
+"13259488560"
+"18623444867"
+"13180499530"
+"17609561326"
+"00658429991763989"
+"19832535666"
+"15930506952"
+"19930713397"
+"18032009639"
+"13102495730"
+"008562095805659"
+"13292343442"
+"17325335000"
+"18232846406"
+"19832274443"
+"17692679768"
+"15632469335"
+"13292965355"
+"13080462675"
+"17633202344"
+"13284482629"
+"18632136171"
+"13180165171"
+"16699259793"
+"15533316801"
+"13273610791"
+"16794900823"
+"13102827038"
+"13230490558"
+"15533086596"
+"18632825770"
+"18531662259"
+"15511993320"
+"13231939322"
+"17532119351"
+"18630077088"
+"0085258479785"
+"0085258729033"
+"0085268359838"
+"0085268648008"
+"0085270184004"
+"0085270869822"
+"0085286941408"
+"0085295966409"
+"0085258248119"
+"0085291181098"
+"00855711243313"
+"00915753020786263"
+"00917866035314"
+"00918134083859"
+"00918136045645"
+"00886953823779490"
+"00886953823779790"
+"00601112037102"
+"00601127573180"
+"00886978685265"
+"00658429991736321"
+"00658429991736341"
+"00658429991763975"
+"00658429991763981"
+"00658429991763984"
+"0085254704930"
+"18032475869"
+"0085254722331"
+"0085254721280"
+"15128957737"
+"18003219250"
+"19573148256"
+"15612029970"
+"13731028511"
+"18832071744"
+"18226896914"
+"17367748380"
+"19932761803"
+"13131964652"
+"18132115764"
+"13930932900"
+"19537492537"
+"13633295783"
+"18703199975"
+"13102935750"
+"15230118773"
+"17325633400"
+"18632787889"
+"17736267468"
+"13739669008"
+"18333182765"
+"19833290102"
+"00658429991763990"
+"00658429991763997"
+"008536830401463858"
+"008536830401463861"
+"008536830401463873"
+"008536830401463876"
+"008536830401463878"
+"13172679952"
+"15631711007"
+"18531850181"
+"16785482395"
+"00855969070239"
+"00855969140668"
+"13400362168"
+"16621774517"
+"16630893480"
+"13223493747"
+"15512861472"
+"16603126166"
+"17632063625"
+"17631752112"
+"15632244567"
+"00886953823763948"
+"00886953823763954"
+"00886953823763965"
+"008869190163256717"
+"00915753130576194"
+"008536830501463965"
+"008536830501463970"
+"008536830501463971"
+"008536830501463973"
+"008536830501463979"
+"008536830501463982"
+"008536830501463996"
+"006287758832718"
+"006287758935714"
+"00447802125691"
+"00601176165572"
+"0085292296318"
+"0085264612857"
+"00601182752224"
+"0085290899021"
+"0085267189911"
+"0085294849739"
+"00821011580516"
+"0085258207171"
+"0085258254212"
+"008562094408255"
+"008562092004033"
+"008562098469851"
+"00855645123265984536"
+"00919693157272"
+"00917811061067"
+"0085258265752"
+"0085258283669"
+"00852610629452313"
+"18631379866"
+"13091020893"
+"15613303861"
+"15570535595"
+"18244510740"
+"0014784106943"
+"0085254708705"
+"00855968306993"
+"008562094016298"
+"00959797160514"
+"19812265357"
+"18727774374"
+"0014709790992"
+"0081238909221"
+"0081922509311"
+"0081991938302"
+"00886935802923388087"
+"18329641507"
+"13292289303"
+"15511019809"
+"18633308968"
+"18630297833"
+"18533165016"
+"13127377563"
+"18631398389"
+"16759303588"
+"16759303778"
+"16759303992"
+"16759304188"
+"16759304199"
+"16759304711"
+"16759304922"
+"18803391998"
+"15613303909"
+"18632268963"
+"16631475886"
+"15612428939"
+"13293215009"
+"17631707701"
+"13184793112"
+"13032007838"
+"17633082673"
+"18532213231"
+"15630269285"
+"15511521879"
+"13131089155"
+"15630481549"
+"15176640009"
+"008869357702520517"
+"008869173420538904"
+"008869420692084874"
+"0060105336811143"
+"006011537374343"
+"0085269844759"
+"0085581818455"
+"0085581818614"
+"00852942524272295"
+"00852942664042227"
+"00852942709132217"
+"008536830401410095"
+"008536830501412759"
+"13292169869"
+"18131680626"
+"13223431115"
+"17745734532"
+"18250192941"
+"17363015221"
+"15231773865"
+"19880834281"
+"15633768008"
+"18287897093"
+"15190146513"
+"18304526289"
+"17887202273"
+"18133830603"
+"15511065203"
+"13139516819"
+"19803118505"
+"19131371016"
+"13091228137"
+"15830315365"
+"19322576834"
+"19868861768"
+"15032560930"
+"18503150929"
+"13102633250"
+"13171541997"
+"13653175516"
+"16630169389"
+"18633099336"
+"17531175760"
+"18603292255"
+"17633166076"
+"18633653606"
+"13293311898"
+"17102921161"
+"15614956050"
+"13180053103"
+"13031456151"
+"13184746225"
+"15630128113"
+"13513040250"
+"17093219987"
+"13223271887"
+"17634105028"
+"15614248180"
+"13171669849"
+"13094243711"
+"15613143237"
+"15633693982"
+"15533315909"
+"13126125331"
+"15512807771"
+"15632126442"
+"008536830501447308"
+"008536830501447311"
+"008536830501469105"
+"008536830501469247"
+"00852610284610734"
+"18632982886"
+"18633195577"
+"15933531375"
+"15503128040"
+"15631137777"
+"18321596296"
+"18345499005"
+"19527251518"
+"15250150494"
+"13171295529"
+"17340831789"
+"19931122132"
+"18132619913"
+"18000459137"
+"13424489151"
+"19832277437"
+"17333920761"
+"18630189058"
+"15613527489"
+"13731209338"
+"19516156879"
+"18812002415"
+"18202765502"
+"15830361433"
+"18215545612"
+"13831789192"
+"17731678307"
+"13733357674"
+"15030551658"
+"19131022861"
+"18695461201"
+"18617867999"
+"15531941653"
+"17503222655"
+"18630290088"
+"15383768271"
+"13273117645"
+"15533337627"
+"18631291320"
+"16630169503"
+"17531388583"
+"13180448909"
+"17631292126"
+"13102729601"
+"008536830401410815"
+"008536830401410911"
+"008536830401411120"
+"008536830401411200"
+"008536830401411226"
+"008536830401411317"
+"008536830401411327"
+"008536830401412016"
+"008536830401412057"
+"008536830401412325"
+"008536830401490175"
+"008536830401496348"
+"008536830401497012"
+"008536830401497393"
+"008536830401497909"
+"008536830401497929"
+"008536830501412627"
+"008536830501413246"
+"008536830501490255"
+"008536830501496216"
+"008536830501496518"
+"008536830501496803"
+"008536830501497174"
+"008536830501497220"
+"008536830501497281"
+"008536830501497357"
+"008536830501497878"
+"008536830501497902"
+"008536830501499996"
+"00886953823710751"
+"15632781616"
+"15677882840"
+"15630152061"
+"15614896867"
+"13073173782"
+"15630493740"
+"18503268802"
+"15532804529"
+"15511430354"
+"15532804538"
+"15532804578"
+"15630493847"
+"15614305446"
+"15028292212"
+"17633242084"
+"18531477241"
+"17603261854"
+"17746189568"
+"15307114017"
+"15373820118"
+"15075678611"
+"18211052425"
+"18633591425"
+"18271497145"
+"008562096175449"
+"13293372386"
+"13131992945"
+"18634149700"
+"13133516223"
+"15532223339"
+"15632768808"
+"13131690365"
+"17531020870"
+"13833129569"
+"15512292726"
+"13313325551"
+"17603117203"
+"18532239582"
+"13081122896"
+"17532119329"
+"13292091103"
+"13171713135"
+"13028682317"
+"18632132746"
+"16633322050"
+"13106558269"
+"15633266897"
+"18633478369"
+"15613412168"
+"18632981125"
+"00852937505450732"
+"00852937917400711"
+"00852941360480702"
+"00852941360480720"
+"00852941360480743"
+"00852941488600739"
+"00852941804620710"
+"00852941804620742"
+"00852941947040721"
+"00852941988390726"
+"00852942048530737"
+"00886953823769636"
+"00886953823769865"
+"00886953823769904"
+"00886953823770027"
+"15531078976"
+"13180126702"
+"16630592778"
+"17631602528"
+"13001890893"
+"13111448772"
+"15027766620"
+"15512069960"
+"15512542127"
+"15512151531"
+"13231353282"
+"15613017988"
+"13081120992"
+"18395785852"
+"19331883312"
+"13773142357"
+"18131481716"
+"15931882232"
+"13209699026"
+"15354100548"
+"13230165236"
+"17798124515"
+"18250551972"
+"18233580739"
+"18632200117"
+"17631378637"
+"13131331234"
+"13290678688"
+"13111769829"
+"13292731124"
+"18633959278"
+"15613919201"
+"13001851788"
+"15630867777"
+"13231850557"
+"16710522833"
+"18533953127"
+"13231308736"
+"15633059844"
+"18632876125"
+"13031870503"
+"15511722437"
+"18617734033"
+"15630634967"
+"15632352075"
+"18617853621"
+"15532885115"
+"16630096001"
+"008536830501424297"
+"008536830501424298"
+"008536830501424299"
+"008536830501424300"
+"008536830501424301"
+"008536830501424302"
+"008536830501424303"
+"008536830501424304"
+"008536830501424274"
+"008536830501424275"
+"008536830501424276"
+"008536830501424277"
+"008536830501424278"
+"008536830501424279"
+"008536830501424281"
+"008536830501424282"
+"008536830501424283"
+"008536830501424284"
+"13223466184"
+"15631099159"
+"18633724444"
+"15503313694"
+"17531194974"
+"17633259694"
+"13013291982"
+"18617951029"
+"16710075271"
+"15614120758"
+"15614851538"
+"16710075729"
+"16710075920"
+"13933222118"
+"13111568465"
+"16710075782"
+"15530524850"
+"16710525195"
+"18532195904"
+"15511411342"
+"16710075910"
+"15532831351"
+"13131633903"
+"18632851824"
+"19527425590"
+"19548304618"
+"19593115401"
+"18333309304"
+"18632121290"
+"17631797350"
+"17334217351"
+"19853135751"
+"008562091071585"
+"008562098795010"
+"008562098846329"
+"17263881884"
+"13229116143"
+"13602624214"
+"13011587520"
+"17788212512"
+"19538748550"
+"17331133571"
+"18031611781"
+"18823110871"
+"19817662459"
+"008562096628263"
+"16601738270"
+"18272166553"
+"008562096851600"
+"19556102637"
+"15532927117"
+"17303320364"
+"18480410452"
+"15690343574"
+"008536830401424291"
+"008536830401424292"
+"008536830401424293"
+"008536830401424294"
+"008536830401424295"
+"008536830401424296"
+"008536830401424298"
+"008536830401424299"
+"008536830401424300"
+"008536830401424301"
+"008536830401424302"
+"008536830501424280"
+"008536830401424358"
+"008536830401424359"
+"008536830401424360"
+"008536830401424361"
+"008536830401424362"
+"008536830401424363"
+"008536830401424365"
+"008536830501424319"
+"008536830501424320"
+"008536830501424321"
+"008536830501424322"
+"008536830501424323"
+"008536830501424324"
+"008536830501424254"
+"008536830501424255"
+"008536830501424256"
+"008536830501424257"
+"008536830501424258"
+"008536830501424259"
+"19333232835"
+"18032162595"
+"15530118095"
+"15530398572"
+"19867685149"
+"008562095709005"
+"15906435525"
+"17265075542"
+"17796906862"
+"19817787872"
+"13126163518"
+"18268900623"
+"17733967315"
+"13914546291"
+"008562097577570"
+"008562099751483"
+"008562099119568"
+"18033782520"
+"13933551115"
+"13103185082"
+"15067995816"
+"18379520168"
+"008562095128368"
+"008562097295972"
+"008562095765464"
+"18770805445"
+"15932685879"
+"13730093382"
+"15097370713"
+"19133539851"
+"19817662462"
+"18733108467"
+"18332961965"
+"15028940893"
+"15930191323"
+"008562097490140"
+"18796463055"
+"13665202245"
+"008562091324954"
+"008562096470310"
+"008562096589264"
+"13004090238"
+"14709722579"
+"18381725521"
+"18480413925"
+"14708004223"
+"15613027420"
+"19539842889"
+"18408261131"
+"17260201560"
+"19568237589"
+"18331838909"
+"17849022352"
+"008562095411893"
+"008562095736287"
+"008562096981518"
+"008536830401424303"
+"008536830401424304"
+"008536830401424305"
+"008536830401424306"
+"008536830501424314"
+"008536830401424339"
+"008536830401424340"
+"008536830401424341"
+"008536830401424342"
+"008536830401424343"
+"008536830401424344"
+"008536830401424345"
+"008536830401424364"
+"008536830501424315"
+"008536830501424316"
+"008536830501424317"
+"008536830501424318"
+"008562091839364"
+"008562096278069"
+"19522782327"
+"008562095077284"
+"15630241828"
+"19527515530"
+"19529540402"
+"15906433695"
+"008562098153654"
+"18243206456"
+"008562097035388"
+"008562096093106"
+"008562096595708"
+"008562095010586"
+"008562096605679"
+"008562091699033"
+"18395143038"
+"17736084491"
+"18711986587"
+"13102583908"
+"18233070737"
+"19333852250"
+"15030103862"
+"008562096545638"
+"17503218203"
+"15612718405"
+"13032611320"
+"15563153880"
+"13171800251"
+"008562097173307"
+"008562091817412"
+"008562093123397"
+"008562097269829"
+"008562098478152"
+"17703247518"
+"18500659321"
+"15070902824"
+"18232162891"
+"008562099590776"
+"19131989526"
+"008562091062778"
+"008562096890448"
+"14748245649"
+"19932031691"
+"18586390228"
+"008562096732074"
+"17360781740"
+"17332871025"
+"15079047674"
+"18465363361"
+"17333914027"
+"18631695818"
+"008562092511883"
+"17164240290"
+"13180372222"
+"17732211652"
+"13531315332"
+"15333128178"
+"13175816020"
+"19931942721"
+"008562096438193"
+"19563471669"
+"18003358003"
+"18348652201"
+"17692703707"
+"008562091383493"
+"17303353952"
+"15369601032"
+"15630174665"
+"18503127766"
+"00658429991724338"
+"00658429991724339"
+"00658429991724340"
+"00658429991724341"
+"00658429991724296"
+"00658429991724297"
+"00658429991724298"
+"008536830401424297"
+"008536830401424400"
+"008536830501424251"
+"008536830501424252"
+"008536830501424253"
+"17603360968"
+"18345932276"
+"15690343842"
+"15130644666"
+"17734186801"
+"13081079935"
+"18503119880"
+"18631297757"
+"13081881232"
+"18903255877"
+"18833685159"
+"15932326262"
+"18630696512"
+"15030310247"
+"15531007179"
+"18531746265"
+"17631194949"
+"13784517538"
+"16630827189"
+"18532265454"
+"15033233166"
+"18733718091"
+"15633274644"
+"13313137872"
+"18632902625"
+"15631212895"
+"15633333395"
+"00658429991724342"
+"00658429991724343"
+"00658429991724344"
+"00658429991724345"
+"00658429991724346"
+"00658429991724347"
+"00658429991724348"
+"00852904890440280"
+"00852936245030283"
+"00852936245030307"
+"00852936604510343"
+"00852937045190322"
+"00852937254710340"
+"00852937404240307"
+"00852937418490271"
+"00852937505450341"
+"00852937582140292"
+"008536830401424335"
+"008536830401424336"
+"008536830401424337"
+"008536830401424338"
+"13292332777"
+"15081799769"
+"13013206521"
+"13231172109"
+"16671079525"
+"18689750890"
+"15532961964"
+"0085257111923"
+"0085257132283"
+"18378532765"
+"00852619912640281"
+"00852619912640325"
+"00852620041170270"
+"00852647439340338"
+"00852647441330268"
+"00852650414240324"
+"00852904411420256"
+"15630376444"
+"00852904411420329"
+"00658429991724287"
+"00658429991724288"
+"00658429991724289"
+"00658429991724290"
+"00658429991724292"
+"00658429991724293"
+"00658429991724294"
+"00658429991724295"
+"00658429991724313"
+"00658429991724349"
+"00658429991724350"
+"00658429991724351"
+"00658429991724352"
+"18226706908"
+"19882517028"
+"0085257160298"
+"0085257160093"
+"0085257157567"
+"17331466268"
+"0085257160302"
+"0085257160273"
+"13166550134"
+"13231480355"
+"13293070067"
+"15632686690"
+"13028670805"
+"13021890511"
+"15613224444"
+"15632996832"
+"18617844072"
+"00658429991757591"
+"00658429991757727"
+"00658429991757900"
+"00658429991758075"
+"008536830401456627"
+"008536830401456656"
+"008536830401456825"
+"008536830401457049"
+"008536830401457112"
+"008536830401457266"
+"008536830401457326"
+"008536830401457404"
+"008536830401457729"
+"008536830401457870"
+"00852619105440280"
+"00852619372340287"
+"00852619372340316"
+"00852619902410264"
+"00852942512560320"
+"00658429991724283"
+"00658429991724284"
+"00658429991724285"
+"00658429991724286"
+"0085257160185"
+"19832214547"
+"13832139723"
+"17733573130"
+"19831633931"
+"14777393722"
+"0085257160276"
+"0085257160234"
+"17835848809"
+"15614912990"
+"18719263957"
+"15710859142"
+"15532926061"
+"13373220803"
+"13363718121"
+"18408204743"
+"13832171995"
+"18233966269"
+"18533557530"
+"16632833780"
+"13294070079"
+"18032608047"
+"13231791578"
+"18233008245"
+"15717698328"
+"17041648276"
+"17772571032"
+"19931975157"
+"00886935469662788027"
+"17041446135"
+"17733567740"
+"13315483093"
+"15930009796"
+"17331163827"
+"13582801526"
+"15227361675"
+"13633275518"
+"18203232870"
+"19535733647"
+"13223103865"
+"13103186588"
+"13223384855"
+"13283403063"
+"18533231786"
+"17692010379"
+"13073156685"
+"13020846465"
+"13231069151"
+"16710076259"
+"16631168018"
+"15552398736"
+"16710525376"
+"16710523132"
+"15603216112"
+"17692678609"
+"18603101971"
+"16710076109"
+"16710525378"
+"13231312365"
+"13231165044"
+"16710525227"
+"17503116443"
+"18532196744"
+"16710523510"
+"17659952523"
+"16710523970"
+"16710523421"
+"16710523397"
+"16710523386"
+"15373515933"
+"15931839131"
+"17732527607"
+"15132765176"
+"15931891661"
+"15614120675"
+"18503322782"
+"17603240605"
+"17692142460"
+"15131123756"
+"15176865162"
+"18243991310"
+"13315785754"
+"18931282586"
+"16630931103"
+"18630754893"
+"13034681752"
+"13231630223"
+"15643091294"
+"13171723769"
+"16663952697"
+"13231757677"
+"15532717737"
+"13290423505"
+"00639152976096427510"
+"15633055657"
+"00639353922668039861"
+"00639711077545564837"
+"00855157477034696083"
+"00855445253754328457"
+"00855655143291996767"
+"00855672556387531456"
+"00855894570261388044"
+"00855969070567"
+"00855969070768"
+"00855969139648"
+"00855969148875"
+"0085295612735"
+"0085295628467"
+"0085295637075"
+"16785482527"
+"16785482530"
+"13273306959"
+"13131285160"
+"15612777371"
+"18531615706"
+"13111335555"
+"15530989213"
+"15530257102"
+"18631960687"
+"13126166022"
+"16631112158"
+"15632931031"
+"15613313201"
+"13068776806"
+"13253130796"
+"18532107134"
+"15632311910"
+"15597372507"
+"18533214294"
+"18532193514"
+"13180287557"
+"16710523911"
+"17532588393"
+"16710523053"
+"15903377304"
+"16710075119"
+"15632316760"
+"13131462305"
+"18531873225"
+"15631736600"
+"15511020680"
+"13147470310"
+"16630862484"
+"13102710282"
+"15532818498"
+"18632124676"
+"17692677766"
+"18931549895"
+"17531169577"
+"15613972978"
+"13230823888"
+"17692601150"
+"15690158577"
+"18531537292"
+"16631067076"
+"13273174319"
+"13230745862"
+"00886953823759696"
+"00886953823759785"
+"00886953823760450"
+"00886953823760612"
+"00886953823760622"
+"00886953823760707"
+"00852936245037396"
+"00852936319747396"
+"00852936604517354"
+"00852936952427377"
+"00852937254717390"
+"00852937582147394"
+"00852941818627378"
+"00852942238697378"
+"00852942281057400"
+"00852942371817354"
+"00852942524277376"
+"00852942664047377"
+"00852942709137377"
+"00852942825827349"
+"00658429991759258"
+"00658429991759368"
+"00658429991759599"
+"00658429991759873"
+"00658429991760660"
+"00658429991760688"
+"00658429991760974"
+"00658429991761115"
+"00658429991761354"
+"00658429991761360"
+"00852604646495658"
+"00852608435505684"
+"00852608458185667"
+"00852608545225677"
+"00852608545225679"
+"00852608545225992"
+"00852608647856052"
+"18533188338"
+"15532391253"
+"13180071911"
+"15613397551"
+"13102939494"
+"18631151370"
+"13126159256"
+"18830970759"
+"13084530013"
+"13080419100"
+"13132488111"
+"18632744212"
+"18632153182"
+"15512277732"
+"16653710825"
+"18630211135"
+"00852936245037385"
+"00852903079091911"
+"00852903177995100"
+"00852903183900217"
+"00852903454019907"
+"00852903478472221"
+"00852903549708572"
+"00852903587382310"
+"00852904411425657"
+"00886953823724367"
+"17631022018"
+"13001412693"
+"15610916570"
+"00886953823724368"
+"00886953823724369"
+"00886953823724370"
+"00886953823724371"
+"00886953823724372"
+"00886953823724373"
+"00886953823724374"
+"00886953823724375"
+"00886953823724376"
+"00886953823724377"
+"00886953823724378"
+"00886953823724379"
+"00886953823724380"
+"00886953823724388"
+"13102849314"
+"18533263522"
+"13233420793"
+"17631789619"
+"15587328002"
+"13131823720"
+"15612257652"
+"18647041744"
+"17144424875"
+"13127402937"
+"15613957068"
+"17778828242"
+"13111739777"
+"15613365535"
+"16632032887"
+"13102699299"
+"18703357665"
+"13315692408"
+"16759300868"
+"16759301565"
+"16759304114"
+"15532886230"
+"19537174850"
+"13180118298"
+"15503066381"
+"15631027998"
+"17692156075"
+"18631388614"
+"13292718153"
+"13253219123"
+"18633121021"
+"18633013297"
+"15531021665"
+"18630353344"
+"13231285633"
+"13021439309"
+"18532607396"
+"18634189859"
+"13110164131"
+"15613736013"
+"15610823066"
+"13082351612"
+"13283151089"
+"13133571861"
+"13102892709"
+"15532048117"
+"15603322051"
+"16631471718"
+"17531702765"
+"18532197400"
+"17603398108"
+"15630436535"
+"15535143585"
+"15612162695"
+"17532517601"
+"15530819750"
+"15612666630"
+"15532109111"
+"15511056466"
+"13001891662"
+"13011583585"
+"15633975518"
+"13082100128"
+"13273330907"
+"18631136336"
+"16632833621"
+"13754566987"
+"15633661264"
+"17631172960"
+"16632015180"
+"15612398052"
+"18533655816"
+"17692667377"
+"15713254661"
+"15630808953"
+"18633659199"
+"15632326883"
+"13283402249"
+"18617589833"
+"16713276727"
+"00886953823724273"
+"00886953823724292"
+"00886953823724293"
+"00886953823724294"
+"00886953823724295"
+"00886953823724296"
+"008536830501424325"
+"008536830501424326"
+"008536830501424327"
+"008536830501424328"
+"008536830501424329"
+"008536830501424330"
+"008536830501424331"
+"008536830501424332"
+"008536830501424333"
+"008536830501424334"
+"008536830501424335"
+"008536830501424336"
+"008536830501424337"
+"008536830501424339"
+"008536830501424340"
+"008536830501424341"
+"008536830501424342"
+"008536830501424343"
+"008536830501424344"
+"008536830501424346"
+"008536830501424347"
+"008536830501424348"
+"008536830501424349"
+"18632331590"
+"15612603568"
+"13091204567"
+"13111485016"
+"16630341114"
+"13111620357"
+"16609555723"
+"13292923520"
+"18531869998"
+"18532698911"
+"15632209896"
+"15544982787"
+"15532743427"
+"15612955579"
+"0085265248238"
+"15533017688"
+"15533421938"
+"15511990630"
+"18633509599"
+"15533295567"
+"13180177937"
+"15988011103"
+"15532805534"
+"15532550240"
+"13012148505"
+"16630922536"
+"18617906390"
+"008536830501439934"
+"008536830501440003"
+"008536830501440015"
+"008536830501440076"
+"008536830501480446"
+"008536830501480532"
+"008536830501480584"
+"00658429991780393"
+"00658429991780549"
+"00658429991780624"
+"00658429991781252"
+"00658429991781266"
+"008536830401439273"
+"008536830401439286"
+"008536830401439549"
+"008536830401439593"
+"008536830401439648"
+"008536830401439705"
+"008536830401439746"
+"008536830401439812"
+"008536830401440252"
+"008536830401480246"
+"008536830401480319"
+"008536830401480405"
+"008536830401480545"
+"008536830401480889"
+"008536830501439304"
+"008536830501439331"
+"008536830501424345"
+"008536830501424350"
+"008536830501424351"
+"008536830501424352"
+"008536830501424353"
+"008536830501424354"
+"008536830501424355"
+"18632628356"
+"18532274555"
+"15631861065"
+"18531064169"
+"13082110613"
+"15613399623"
+"13081151255"
+"15694802923"
+"16632007801"
+"18694209513"
+"18531959713"
+"0085295637620"
+"13603216360"
+"15531376491"
+"0085295636408"
+"0085265233387"
+"0085265244582"
+"0085265244821"
+"0085265246561"
+"0085265507946"
+"0085295626179"
+"00855969105235"
+"0085265262465"
+"0084348436728"
+"0085265506212"
+"0085265507727"
+"17067692993"
+"13166549381"
+"13283304884"
+"15690339334"
+"13080469200"
+"17631197354"
+"13012017903"
+"13166582858"
+"18533701205"
+"13011934147"
+"15512253995"
+"16630539389"
+"17633269544"
+"13034497035"
+"17603273694"
+"15512231258"
+"15532345520"
+"13273132821"
+"18633349067"
+"15530943575"
+"15631228816"
+"15523414232"
+"15610825339"
+"16630802048"
+"15633453755"
+"17677026762"
+"17633250294"
+"13231941318"
+"16631144334"
+"15630241564"
+"15690060122"
+"15533727950"
+"13231235957"
+"17631372134"
+"18633544739"
+"17603276024"
+"13273525008"
+"15632791320"
+"18633421252"
+"18533201854"
+"15532805640"
+"18532194434"
+"13165539695"
+"13081858252"
+"13131401961"
+"17503194744"
+"18633438352"
+"008536830501441102"
+"008536830501441103"
+"008536830501441105"
+"008536830501441107"
+"008536830501441111"
+"008536830501441119"
+"008536830501441128"
+"008536830501441129"
+"008536830501441130"
+"008536830501441135"
+"008536830501441137"
+"008536830501441138"
+"008536830501441139"
+"008536830501441172"
+"008536830501441173"
+"008536830501441183"
+"008536830501441193"
+"008536830501441199"
+"008536830501441200"
+"008536830501441206"
+"008536830501441208"
+"008536830501441211"
+"008536830501441221"
+"008536830501441229"
+"008536830501441234"
+"008536830501441243"
+"008536830501441248"
+"008536830501441250"
+"008536830501441252"
+"15932540877"
+"15532805624"
+"16630510629"
+"15075886534"
+"13131258561"
+"15512749480"
+"16630396026"
+"13230094232"
+"17692019527"
+"17633200613"
+"15630717579"
+"15232873837"
+"17531383664"
+"15631810570"
+"13031951385"
+"13171790219"
+"13031949470"
+"18833624153"
+"13191999157"
+"15630686689"
+"13333253727"
+"17692441076"
+"13131799706"
+"17703310790"
+"13230545686"
+"15614108952"
+"13012166455"
+"18830995504"
+"13047772023"
+"15075516998"
+"13510806474"
+"13111311050"
+"16710522778"
+"008536830501440845"
+"008536830501440846"
+"008536830501440847"
+"008536830501440849"
+"008536830501440853"
+"008536830501440856"
+"008536830501440857"
+"008536830501440858"
+"008536830501440859"
+"008536830501440861"
+"008536830501440863"
+"008536830501440867"
+"008536830501440888"
+"008536830501440897"
+"008536830501440903"
+"008536830501440912"
+"008536830501440916"
+"008536830501440923"
+"008536830501440930"
+"13930629888"
+"17692413862"
+"13832614840"
+"16631063293"
+"15231606032"
+"15530723325"
+"18733855080"
+"15532348137"
+"18631589807"
+"13932602029"
+"17631736946"
+"13229060038"
+"13758582874"
+"18032106405"
+"15612192755"
+"13582320236"
+"18032404649"
+"18032653865"
+"18032538694"
+"13290585839"
+"13632315397"
+"15168454135"
+"17602142718"
+"19817662475"
+"19503304401"
+"19526378681"
+"17338210113"
+"13021411630"
+"18633368267"
+"19933137135"
+"13230681323"
+"19531355680"
+"17736759438"
+"18603147819"
+"13785056098"
+"18033714787"
+"17330540389"
+"17703286839"
+"14760525093"
+"15612152612"
+"17633174395"
+"13803155052"
+"19103378169"
+"18235189624"
+"15720199225"
+"17732040153"
+"19539927281"
+"13313229874"
+"17330172230"
+"15132005456"
+"19530430462"
+"18233272581"
+"15130152715"
+"15690251885"
+"17532063015"
+"18931662139"
+"18903277526"
+"18631500966"
+"15531668518"
+"17153187188"
+"18333187075"
+"15530940524"
+"15879291715"
+"008562098624685"
+"19525448619"
+"19527519624"
+"18131390927"
+"15690319092"
+"00798658567769"
+"18423152114"
+"15257801135"
+"17112164258"
+"15613276723"
+"0060179698864"
+"13253198165"
+"19103395733"
+"18903212733"
+"17798131806"
+"18270868270"
+"18731088201"
+"18348876955"
+"18031239295"
+"16633272705"
+"17278940252"
+"19870177462"
+"19538390607"
+"14797604097"
+"15690208963"
+"15028300380"
+"17559531008"
+"18333662926"
+"18033787053"
+"15383027570"
+"19306739887"
+"18033879120"
+"15097476276"
+"18397967500"
+"17692929103"
+"19516268985"
+"17521233097"
+"15502181279"
+"15612820922"
+"17370909688"
+"19831125509"
+"15530115225"
+"15373956220"
+"15088028070"
+"17104265892"
+"19933088549"
+"18370186488"
+"13031976078"
+"13122367062"
+"17208299852"
+"18851174526"
+"15533266715"
+"17826927290"
+"17103030274"
+"008536830501440914"
+"008536830401441201"
+"008536830401441206"
+"17888712509"
+"0085257967301"
+"008536830401441210"
+"008536830401441216"
+"008536830401441217"
+"008536830401441220"
+"008536830401441225"
+"008536830401441298"
+"008536830401441300"
+"008536830401441331"
+"008536830401441332"
+"18257474425"
+"17370999081"
+"18716081916"
+"15530597220"
+"17325276113"
+"18268905887"
+"15632319793"
+"18503273013"
+"15933835855"
+"15990807097"
+"15803115244"
+"19542793595"
+"18033719554"
+"18000619681"
+"15816363217"
+"13002106274"
+"19818011327"
+"18521359152"
+"13046002845"
+"18702637738"
+"18034534421"
+"15133987060"
+"15079064633"
+"13425690176"
+"17332566206"
+"13584380018"
+"18667102832"
+"17399797568"
+"17144424894"
+"13040023289"
+"13180411533"
+"15612171161"
+"18632122895"
+"15503291861"
+"13230831769"
+"18633717262"
+"00852620065245598"
+"00852620065248667"
+"00852647441338663"
+"00852647534048678"
+"00852903064067985"
+"00852903134342248"
+"00852903158042702"
+"00852903199108227"
+"00852903224202187"
+"00852903240071364"
+"00852903274049543"
+"00852903321606516"
+"008562096150239"
+"15830727056"
+"15930856577"
+"15833041681"
+"18233029373"
+"008562095004584"
+"18630730365"
+"15231661752"
+"13932898372"
+"16683086238"
+"13932793277"
+"18603220367"
+"17603146155"
+"15684875442"
+"13037956347"
+"18633082824"
+"13627101364"
+"17067139337"
+"15544782388"
+"13011544146"
+"15612168913"
+"13403131910"
+"18716008619"
+"18521360391"
+"17690194042"
+"13006289501"
+"18631255699"
+"15512679689"
+"008536830401483399"
+"008536830401483453"
+"008536830401483543"
+"008536830401483594"
+"008536830401483800"
+"008536830401484019"
+"008536830401484025"
+"008536830401484065"
+"008536830501480938"
+"008536830501481176"
+"008536830501481707"
+"008536830501481836"
+"008536830501483067"
+"00852619764748665"
+"00852619914595578"
+"008536830401443900"
+"008536830401436433"
+"008536830401436463"
+"008536830401436469"
+"008536830401436477"
+"15694999126"
+"18630161125"
+"0097680132558"
+"0097680139746"
+"0097680142432"
+"0097680142509"
+"19131910760"
+"008562091065169"
+"0085257975345"
+"0085257975328"
+"0085257975302"
+"0085257975419"
+"0085257975463"
+"13293007198"
+"13230923231"
+"18631238000"
+"0085298869853"
+"18642091751"
+"15679751851"
+"13292651027"
+"13229072861"
+"16608777702"
+"15632970283"
+"16633278525"
+"16676965621"
+"17731150130"
+"13472085482"
+"15127224989"
+"17831916514"
+"13932099890"
+"15226596651"
+"13933132469"
+"15732021072"
+"13102953755"
+"15629807899"
+"13245976255"
+"13020868739"
+"15634523132"
+"15630296103"
+"13223485672"
+"18533711991"
+"18533123862"
+"00852903789341597"
+"13043125720"
+"0097686134409"
+"0097688691234"
+"0097689762345"
+"00852592886734"
+"00886953823756818"
+"006287758833111"
+"0085254307629"
+"0085254311936"
+"0085254312095"
+"0085254313237"
+"0085254313394"
+"0085254315216"
+"0085254316012"
+"0085254317314"
+"0085254318376"
+"0085254318748"
+"0085260384596"
+"0085260524754"
+"0085260545013"
+"0085260578773"
+"0085260590993"
+"0085264187500"
+"0085264225389"
+"0085264289360"
+"0085265307804"
+"0085265324651"
+"0085265333416"
+"0085265366230"
+"0085265375251"
+"0085265378048"
+"0085265400132"
+"0085265402602"
+"0085265407318"
+"0085265449545"
+"0085265452144"
+"0085265453379"
+"0085265453461"
+"0085265461849"
+"0085265482527"
+"0085265484740"
+"0085265491989"
+"0085265498449"
+"0085265909804"
+"0085265917234"
+"008562091208416"
+"13673171066"
+"16575892928"
+"13734641949"
+"18475848465"
+"18423332433"
+"13165501611"
+"13292862770"
+"0085257974688"
+"0085257974940"
+"0085252436011"
+"0085252487374"
+"0085252488164"
+"0085252905574"
+"0085252950278"
+"0085252954524"
+"0085298837540"
+"0085298843624"
+"0085298844175"
+"0085298844939"
+"0085298846260"
+"0085298848412"
+"0085298849507"
+"0085298855425"
+"0085298856480"
+"0085298863743"
+"0085298864696"
+"0085298866174"
+"0085298866243"
+"0085298867364"
+"15632396927"
+"0085298871294"
+"0085298873004"
+"0085256883723"
+"0085256885444"
+"0085259125855"
+"0085259131982"
+"0085259146924"
+"0085254398407"
+"0085255252415"
+"0085255266133"
+"0085256802681"
+"0085256808419"
+"0085256810905"
+"0085256819590"
+"0085256820751"
+"0085298873061"
+"0085298876229"
+"0085298884323"
+"0085298886974"
+"0085260259096"
+"0085261450556"
+"19832408792"
+"008562091683925"
+"15530062053"
+"13123327702"
+"13169456353"
+"13013219216"
+"15633491777"
+"15612589760"
+"0085252424688"
+"0085252425922"
+"0085252491394"
+"0085267528053"
+"0085267535664"
+"0085291574596"
+"0085291575269"
+"0085291576696"
+"0085291576896"
+"0085291578092"
+"0085297892219"
+"0085297895296"
+"0085298729207"
+"0085298769406"
+"0085298782903"
+"0085298807479"
+"0085298814412"
+"0085298819129"
+"0085298820458"
+"0085298826477"
+"0085298835403"
+"0085291052605"
+"0085291053242"
+"0085291054552"
+"0085291055859"
+"0085291057285"
+"0085291060397"
+"0085291060810"
+"0085265924289"
+"0085265927294"
+"0085291078246"
+"0085291078501"
+"0085291078904"
+"0085291082576"
+"0085291083094"
+"0085291083415"
+"0085257974465"
+"15531266016"
+"19833838630"
+"15226986286"
+"008562094004184"
+"18713117355"
+"19133997526"
+"008562098864465"
+"15930965011"
+"18331916949"
+"19003393883"
+"19537496043"
+"18634107866"
+"15608506693"
+"18631281572"
+"15613929218"
+"17692018666"
+"13223349496"
+"13253151721"
+"13082097277"
+"13230561888"
+"15613859069"
+"18703178895"
+"0085257975101"
+"0085257975116"
+"00639458511776517912"
+"0085257974636"
+"17334388131"
+"13081037865"
+"19832214709"
+"18233292252"
+"0085256827735"
+"0085256828425"
+"0085256830872"
+"0085256856609"
+"0085256871836"
+"0085263793094"
+"0085263793430"
+"0085262994214"
+"0085261492269"
+"0085262803852"
+"0085290997947"
+"0085290998649"
+"0085291002025"
+"0085291003519"
+"0085291007364"
+"0085291012473"
+"0085262994380"
+"0085262995065"
+"0085262995174"
+"13363857294"
+"19033191932"
+"0085257975117"
+"0085257975033"
+"15354218409"
+"15232393835"
+"17367931859"
+"18333990378"
+"0085265261224"
+"0085265227112"
+"0085265239254"
+"18232483772"
+"13031917868"
+"15534443110"
+"13171579639"
+"18532660390"
+"16630854002"
+"15610891261"
+"13784374603"
+"15512176106"
+"13290576885"
+"18632655750"
+"18631601591"
+"15690048929"
+"15613242216"
+"13165529055"
+"16759305892"
+"16759306842"
+"16759306401"
+"15343153762"
+"13131939967"
+"16759305619"
+"16725619676"
+"17579391026"
+"13073178081"
+"16725613788"
+"17603200786"
+"18730047987"
+"17320629960"
+"16759305907"
+"16759306406"
+"15613128520"
+"13290531056"
+"15614164273"
+"18603114556"
+"17503375610"
+"13032660540"
+"15632300921"
+"18531832958"
+"15531486311"
+"15614886253"
+"18630305498"
+"13231271265"
+"15651767376"
+"15690523657"
+"0085262954006"
+"0085262954020"
+"0085262954091"
+"0085262954143"
+"0085262954195"
+"0085262954213"
+"0085262954504"
+"0085262954704"
+"0085262954741"
+"0085262954762"
+"0085262955413"
+"0085262955742"
+"0085262956040"
+"0085262956346"
+"0085262956403"
+"0085262956465"
+"0085262956491"
+"0085291013195"
+"0085291013421"
+"0085262995314"
+"0085262995594"
+"0085262995982"
+"0085262957254"
+"0085262957402"
+"0085262957476"
+"0085262957491"
+"0085262957534"
+"0085262957914"
+"0085291083447"
+"0085291084783"
+"18632889926"
+"13065120531"
+"15533729623"
+"17692550698"
+"18632136937"
+"13180583121"
+"13191617381"
+"13293313143"
+"13171883565"
+"13180110776"
+"15612216256"
+"13283146434"
+"15632687793"
+"13292312935"
+"13231979798"
+"18632600096"
+"17533641292"
+"18586724175"
+"13017015259"
+"17631398460"
+"16675333946"
+"18630293673"
+"15532125890"
+"15533327001"
+"18677945796"
+"15633008596"
+"13230420318"
+"13257559926"
+"0085263700437"
+"0085263701844"
+"0085263702745"
+"0085263703612"
+"0085263704386"
+"0085263704537"
+"0085263704620"
+"0085263704896"
+"0085263705219"
+"0085263714672"
+"0085262929354"
+"0085262959427"
+"0085262959442"
+"0085262959470"
+"0085262959534"
+"0085262959544"
+"0085262802667"
+"0085262803640"
+"0085262809831"
+"0085262810204"
+"0085262997145"
+"0085262997464"
+"0085262896507"
+"0085262899756"
+"0085262900263"
+"0085262900271"
+"0085262901647"
+"0085262901664"
+"0085262816431"
+"0085262822493"
+"0085262842008"
+"0085262845996"
+"0085262853754"
+"0085262861345"
+"0085262864604"
+"0085262895490"
+"15531443806"
+"18531332880"
+"15532455749"
+"15614127517"
+"13180444382"
+"13103043007"
+"16710075673"
+"15531997366"
+"16710522586"
+"13171522733"
+"15613551193"
+"18630474360"
+"13102514549"
+"15530161239"
+"15511348656"
+"13273395933"
+"16710075365"
+"16710075825"
+"17531115184"
+"16710522918"
+"16710522600"
+"0085262904807"
+"0085262905419"
+"0085262905567"
+"0085262906346"
+"0085262907452"
+"0085262908428"
+"0085262908581"
+"0085262908842"
+"0085262909414"
+"0085262912565"
+"0085262913549"
+"0085262914577"
+"0085262914846"
+"0085262915285"
+"0085262915664"
+"0085262915974"
+"0085262917422"
+"0085265914684"
+"0085267536199"
+"0085267542679"
+"0085267548653"
+"0085267552037"
+"0085267568667"
+"0085264144944"
+"0085261761536"
+"0085261764600"
+"0085261766397"
+"0085261771820"
+"0085261784578"
+"0085261795726"
+"0085261797597"
+"0085262813106"
+"0085262816930"
+"0085262845765"
+"0085262846512"
+"0085262867573"
+"0085264231076"
+"0085264234346"
+"0085264243253"
+"0085264252480"
+"0085264253632"
+"17531900847"
+"16710522797"
+"18531084198"
+"16710075692"
+"16710523123"
+"17531155294"
+"17041074683"
+"15614125861"
+"16710075903"
+"16682203812"
+"16795071234"
+"13091015955"
+"15630330151"
+"17732627297"
+"13011523020"
+"18533130386"
+"17692306457"
+"17588812321"
+"17631970525"
+"16682006626"
+"13014336318"
+"15631660773"
+"18633988719"
+"17716512173"
+"17703267387"
+"17531197224"
+"0085292134626"
+"0085262881744"
+"0085262909437"
+"0085262970895"
+"0085262984813"
+"0085263730841"
+"0085263723436"
+"0085263769337"
+"0085263927944"
+"0085263935715"
+"0085263975396"
+"0085263989935"
+"0085264111806"
+"0085264129471"
+"0085264133101"
+"0085264134910"
+"0085264135306"
+"0085264135635"
+"0085264136371"
+"0085264137936"
+"0085264139160"
+"0085264147512"
+"0085264149817"
+"0085264151130"
+"0085264152891"
+"0085264153369"
+"0085264164041"
+"0085264165119"
+"0085264166493"
+"0085264227546"
+"0085264230171"
+"0085264274699"
+"0085264275327"
+"0085264277304"
+"0085264279271"
+"15530048280"
+"13082166216"
+"15632383635"
+"16713320376"
+"13180000592"
+"18533936078"
+"13230316464"
+"13011566553"
+"15612507196"
+"13180167615"
+"13630894662"
+"13273532655"
+"17531382360"
+"13111386158"
+"15532330333"
+"13081152442"
+"15511566118"
+"18631268296"
+"15532913298"
+"16710075960"
+"16710076031"
+"16710075975"
+"15614120192"
+"17603383560"
+"16710523063"
+"0085267569543"
+"0085267573637"
+"0085267580984"
+"0085267588794"
+"0085267594076"
+"0085264170359"
+"0085264175059"
+"0085264176533"
+"0085264177332"
+"0085264179412"
+"0085264179430"
+"0085264179716"
+"0085264181844"
+"0085264190092"
+"0085264190622"
+"0085264190916"
+"0085264194593"
+"0085264195992"
+"0085264196036"
+"0085261690562"
+"0085261692553"
+"0085261695865"
+"0085261726526"
+"0085261726816"
+"0085261756362"
+"0085264202131"
+"0085264205397"
+"0085264207237"
+"0085264213446"
+"0085264217646"
+"0085264224381"
+"0085267532622"
+"0085267535855"
+"0085290941371"
+"0085290956256"
+"0085261638444"
+"0085261641451"
+"15533088013"
+"16710523223"
+"15511410146"
+"13219523237"
+"16710076387"
+"16710076102"
+"16710076008"
+"16710076379"
+"15613480785"
+"13230098001"
+"17633240517"
+"15530678068"
+"17073405237"
+"17531381190"
+"16631043926"
+"15267050463"
+"13211075859"
+"16630531629"
+"15533113898"
+"13001823190"
+"17632105603"
+"15533544367"
+"13131052966"
+"13230760008"
+"15613921653"
+"18533561369"
+"13803187796"
+"13223493104"
+"18631886838"
+"15544828639"
+"17531900517"
+"13231135073"
+"13127366059"
+"13103280906"
+"18617872370"
+"15511939310"
+"18630658573"
+"15533610321"
+"18603233381"
+"18630039538"
+"18533790381"
+"0085291956470"
+"0085296117604"
+"0085296141195"
+"0085267514628"
+"0085267518244"
+"0085267518602"
+"0085267520805"
+"0085267530751"
+"0085267531067"
+"18633939486"
+"18503169997"
+"18630161688"
+"15501376820"
+"15630519895"
+"13633350282"
+"13273102267"
+"15081086434"
+"13257097481"
+"13273153673"
+"18531610611"
+"18630565936"
+"16710523966"
+"18632227678"
+"18531529110"
+"15612815021"
+"18532187263"
+"15633088364"
+"18599918032"
+"15630117287"
+"15690088852"
+"18617495267"
+"15511410540"
+"16710076038"
+"16710525358"
+"16710525317"
+"16710523829"
+"16631102947"
+"15614127035"
+"0085296188564"
+"0085296189848"
+"0085296190354"
+"0085296191796"
+"0085296195731"
+"0085296196471"
+"0085296196531"
+"0085296196857"
+"0085296207470"
+"0085296229493"
+"0085296236591"
+"0085296238345"
+"0085296240079"
+"0085296244850"
+"0085296246740"
+"0085296257750"
+"0085296259472"
+"0085290852661"
+"0085290852893"
+"0085290856529"
+"0085298842149"
+"0085298846632"
+"0085298865164"
+"0085298882643"
+"0085252168839"
+"0085290384189"
+"0085290398942"
+"0085290398967"
+"0085290804634"
+"0085290805414"
+"0085290810245"
+"0085290832044"
+"0085290858754"
+"0085290860347"
+"0085290871453"
+"0085290874872"
+"0085290876483"
+"0085290923749"
+"18533029007"
+"18532129845"
+"13073178221"
+"13293190911"
+"15532785317"
+"13292334363"
+"13103011103"
+"13103358589"
+"15530866882"
+"13230057986"
+"13230592011"
+"18532125609"
+"18632705109"
+"15632755888"
+"15613909910"
+"15613031373"
+"16631405893"
+"15533055293"
+"15226535552"
+"15511099614"
+"13293025886"
+"13081820841"
+"13267833703"
+"13237076975"
+"18633648997"
+"13231721603"
+"17531833235"
+"15630778795"
+"18531838785"
+"17576053518"
+"15511826782"
+"18531138168"
+"0085295530052"
+"0085295534594"
+"0085295561922"
+"0085292540137"
+"0085292546096"
+"0085292551945"
+"0085292561464"
+"0085292577806"
+"0085296265520"
+"0085296266278"
+"0085296267504"
+"0085296269739"
+"0085296275936"
+"0085296278937"
+"0085296290043"
+"0085296291641"
+"0085296291765"
+"0085296507658"
+"0085296518830"
+"0085296523155"
+"0085297602596"
+"0085297608311"
+"0085294002658"
+"0085294010899"
+"0085294025980"
+"0085294026770"
+"0085294058892"
+"0085294078544"
+"0085294654132"
+"0085295310996"
+"0085295573740"
+"0085295576190"
+"0085295583661"
+"0085295587065"
+"0085296103063"
+"13091119320"
+"13103072799"
+"18630139423"
+"18632467111"
+"13292096263"
+"13231113430"
+"16632053016"
+"18631452943"
+"16236899474"
+"16236899473"
+"16236899472"
+"16236899471"
+"13132422319"
+"15633668160"
+"13191879950"
+"16631219370"
+"15633201783"
+"15631762719"
+"16794884444"
+"16631407084"
+"18532299129"
+"16631485284"
+"15100410125"
+"16630966192"
+"13283339861"
+"15694902303"
+"15612784198"
+"18511674820"
+"15532061366"
+"18633085044"
+"13230464267"
+"17603146524"
+"17631319113"
+"13231368962"
+"0085268990444"
+"0085269750603"
+"0085269750619"
+"0085290239853"
+"0085294020597"
+"0085294020849"
+"0085294022660"
+"0085294022740"
+"0085294024012"
+"0085294025616"
+"0085294031711"
+"0085294033292"
+"0085297638514"
+"0085297640794"
+"0085297683010"
+"0085297819406"
+"0085297826527"
+"00821014048399"
+"00821030471610"
+"00821052803417"
+"00821057276103"
+"00821092216226"
+"00821011911515"
+"00821019846216"
+"00821093242042"
+"00821014173313"
+"00821013116992"
+"13231503536"
+"13172672937"
+"18633472555"
+"13273130139"
+"16710523686"
+"17603227074"
+"15544565582"
+"15614120252"
+"13231354160"
+"13131211206"
+"17603256474"
+"17533603059"
+"15603191450"
+"16630044722"
+"15530660326"
+"18632920002"
+"17631795991"
+"13011598977"
+"15512580689"
+"15530272151"
+"17631975940"
+"0085259203559"
+"0085257979916"
+"15531719943"
+"13184771173"
+"13209566600"
+"00959684623194"
+"0060143143473"
+"00959776971975"
+"0085257979379"
+"0085257979502"
+"0085265509179"
+"0085265509805"
+"15076888834"
+"13315660049"
+"16797042683"
+"16797042673"
+"0085266122010"
+"18232049000"
+"18531102355"
+"0085298710583"
+"0085298712770"
+"0085298719654"
+"0085298724061"
+"0085298724538"
+"0085298724808"
+"0085298725497"
+"0085298729520"
+"0085298730946"
+"0085298738757"
+"0085298739234"
+"0085298739750"
+"0085298797947"
+"0085298798140"
+"0085298805474"
+"0085298812455"
+"0085298814490"
+"0085298823423"
+"0085298824928"
+"0085298836143"
+"16710523282"
+"13070572100"
+"17631297936"
+"16710523578"
+"17620035321"
+"17058099990"
+"13293180756"
+"18631177387"
+"18633039275"
+"13172988858"
+"13111395952"
+"18617881586"
+"16710076265"
+"17560371509"
+"16633251682"
+"18630433540"
+"0085268026650"
+"17106103758"
+"15931391829"
+"15690010700"
+"15931396086"
+"15632628145"
+"16682019117"
+"15512516323"
+"18631668677"
+"18630408739"
+"13230912298"
+"15533178076"
+"15694996309"
+"18632140185"
+"13131531511"
+"18531302661"
+"17532080321"
+"13031509385"
+"17041452224"
+"13103003276"
+"18632848925"
+"18632831128"
+"13235413067"
+"13180512265"
+"13032664181"
+"13223291012"
+"13191927108"
+"0085254350494"
+"0085260531731"
+"0085263949501"
+"0085268943792"
+"0085297631394"
+"0085297632921"
+"0085297636701"
+"0085297637577"
+"0085297652793"
+"0085297653754"
+"0085297656430"
+"0085297689528"
+"0085297821149"
+"0085297821733"
+"0085297824719"
+"0085297825698"
+"0085297827635"
+"0085297841575"
+"0085297843750"
+"0085297850420"
+"0085297850715"
+"0085297858143"
+"0085297858659"
+"13131766359"
+"13208516839"
+"15612718372"
+"18633873581"
+"15128283016"
+"15612080351"
+"13111591574"
+"18630058780"
+"15532805491"
+"16632073212"
+"13131119196"
+"15630022086"
+"13293025266"
+"0085254390689"
+"0085256801594"
+"0085256809124"
+"0085256809204"
+"0085256811710"
+"0085256818635"
+"0085256826759"
+"0085256826987"
+"0085254365402"
+"0085254369320"
+"0085298756164"
+"0085298756726"
+"0085298758205"
+"0085298758976"
+"0085298761798"
+"0085259176551"
+"0085259176950"
+"0085259185417"
+"0085259186013"
+"0085259198940"
+"0085259275768"
+"0085259958216"
+"0085260231814"
+"0085260232795"
+"0085260343550"
+"0085260359010"
+"0085298874143"
+"13273656820"
+"15613367080"
+"15612467065"
+"15512736673"
+"18531766294"
+"18617677320"
+"15640608051"
+"15511386544"
+"14730498499"
+"13731111794"
+"15709487863"
+"18732172285"
+"18832178959"
+"19803117138"
+"18232906661"
+"13784773546"
+"15354179745"
+"13731774654"
+"13473360620"
+"19537649358"
+"18631916793"
+"17633104990"
+"18250765114"
+"19825833890"
+"18293990429"
+"00855964869855"
+"18326905601"
+"18233692071"
+"15009704736"
+"13122841805"
+"19814607055"
+"13180132580"
+"18532225714"
+"18633507396"
+"18631931668"
+"16603189206"
+"13088191417"
+"13236003236"
+"15532195732"
+"13184929922"
+"13102555500"
+"13021875289"
+"0085291895317"
+"0085291901462"
+"0085292597422"
+"0085294683629"
+"0085294698993"
+"0085295306801"
+"0085295526422"
+"0085296222695"
+"17692010883"
+"19523865144"
+"18368587810"
+"13266909210"
+"19825532497"
+"13283121561"
+"18603317597"
+"13832368041"
+"15373970980"
+"13230955768"
+"18752187190"
+"19131177502"
+"18330749666"
+"19897494229"
+"15613557781"
+"15881104668"
+"15024658741"
+"18232708828"
+"18431282625"
+"15906435103"
+"19897296809"
+"18132692435"
+"18230113789"
+"13931706774"
+"15630273819"
+"17531351738"
+"15631076229"
+"15720357247"
+"17732860137"
+"18451343250"
+"19888407484"
+"17035773486"
+"13290507126"
+"19871552110"
+"16503583571"
+"15032856093"
+"16632851112"
+"19519203026"
+"13011591925"
+"17266001285"
+"0085291866596"
+"0085291867411"
+"0085291869341"
+"0085291870131"
+"0085291870837"
+"0085291871075"
+"0085291875349"
+"0085291876815"
+"0085291888539"
+"0085291889532"
+"0085294089586"
+"0085294604797"
+"0085294621196"
+"0085294650783"
+"0085295309867"
+"0085295312473"
+"0085295329307"
+"0085295335594"
+"0085295342715"
+"0085295358641"
+"0085295360915"
+"0085295370191"
+"0085295376332"
+"0085295379151"
+"0085295394269"
+"0085295394750"
+"0085291812836"
+"0085291813485"
+"0085291815520"
+"00852903465747782"
+"00852620781691133"
+"00852620955968099"
+"00852620850936359"
+"00852903707647619"
+"0085291843059"
+"0085291844194"
+"0085291851606"
+"00852620581694248"
+"0085261654507"
+"13028613125"
+"15603164321"
+"15130136922"
+"15833987406"
+"18233778189"
+"13932612670"
+"18833726681"
+"15128799710"
+"18332012212"
+"13832353753"
+"19131126989"
+"15533772860"
+"15930672852"
+"15915210116"
+"008562099874919"
+"19820816497"
+"19522780231"
+"13171915963"
+"15121867768"
+"13808035142"
+"15988031842"
+"17736004396"
+"17279084801"
+"14721295046"
+"18521358951"
+"18431119277"
+"17103651898"
+"15631123208"
+"13102838970"
+"17610292156"
+"18531227450"
+"17331601361"
+"16682056991"
+"18328349438"
+"18373097050"
+"17631850083"
+"15717510342"
+"16630672865"
+"15226559931"
+"19537490844"
+"18428161982"
+"18617706232"
+"17633358309"
+"18531445192"
+"15076823770"
+"17631170908"
+"13231551157"
+"18617812287"
+"15830614589"
+"17659917867"
+"15531188568"
+"13178346467"
+"18331437618"
+"0085291867412"
+"0085295388104"
+"0085295388981"
+"0085295399580"
+"0085293364175"
+"0085293367343"
+"0085293377651"
+"0085293379962"
+"0085293384742"
+"0085298797039"
+"0085298848152"
+"0085298858177"
+"0085295340750"
+"15932130665"
+"15633268915"
+"18533621012"
+"15630237115"
+"16630719972"
+"15503123026"
+"18632078859"
+"15033028004"
+"15533780353"
+"13091337778"
+"15511525359"
+"13111540640"
+"18632235008"
+"13184771578"
+"15532094129"
+"13294037178"
+"15350798953"
+"15031357219"
+"18660853768"
+"15694937840"
+"18630503708"
+"13171608972"
+"13103109958"
+"16631091700"
+"17631050692"
+"13231831733"
+"16632092990"
+"007988822869107724"
+"00799957316550"
+"00799957613525"
+"00799958302850"
+"00799958661618"
+"00799965257229"
+"00799966190337"
+"00799967125829"
+"00799967287306"
+"00799967583823"
+"00799968423829"
+"00799970110397"
+"00799970932261"
+"00799972833824"
+"00799974218329"
+"00799974238108"
+"00799979179854"
+"00799983527643"
+"00799983655851"
+"00799984042463"
+"00799985571793"
+"00799986935021"
+"00791354374699002968"
+"00799969796208"
+"18633209268"
+"15194769664"
+"15630188127"
+"18633624001"
+"18831233331"
+"17734180717"
+"13223330123"
+"15028813917"
+"15633669876"
+"15614031017"
+"17692038868"
+"15511063139"
+"16633960218"
+"18631459952"
+"13082391298"
+"18503232090"
+"18531156858"
+"15612267754"
+"16630405623"
+"18632301383"
+"13103077561"
+"13231962879"
+"15612717559"
+"18330870291"
+"15232171874"
+"15690413090"
+"13230509187"
+"13191619878"
+"18633253266"
+"15232104889"
+"13283198159"
+"17103031617"
+"16630202855"
+"00799955634113"
+"00799955901193"
+"00799957211929"
+"00799957363639"
+"00799957474393"
+"00799959348036"
+"00799959610111"
+"00799960057808"
+"00799960746662"
+"00799961276220"
+"00799961402780"
+"00799961838398"
+"00791319853059025910"
+"00791332772699004980"
+"00791353668929003935"
+"00791354334659023128"
+"00791354339429014934"
+"00791354363099019369"
+"00791354368359012693"
+"00791354373219022919"
+"00791354374699015181"
+"00791354378419003910"
+"00791354388869008598"
+"00791354388869023169"
+"00791555160199031559"
+"00791559430199030822"
+"00791563173379006210"
+"00791570078889028648"
+"00799964988018"
+"15612908838"
+"13131483465"
+"13011570990"
+"15512833667"
+"00791706949199012824"
+"00791728910239029714"
+"00791745074759022191"
+"00791753700039027001"
+"00791767863539008953"
+"00799978908796"
+"00799980985630"
+"00799981294670"
+"00799982052600"
+"00799987270867"
+"00799987684912"
+"00799989681986"
+"00799989689786"
+"00799989965204"
+"00799954470926"
+"00799960073583"
+"00799963347650"
+"00799987155395"
+"00799988366937"
+"0085290200540"
+"18833845018"
+"15028378871"
+"15175184293"
+"15130571887"
+"18731766595"
+"13831318270"
+"18713876806"
+"13472008768"
+"15030264189"
+"15127363434"
+"13001390457"
+"15075530538"
+"15631339605"
+"00971566880849"
+"15076920935"
+"15006469143"
+"18333212633"
+"15027833053"
+"16633968318"
+"13131094026"
+"18532232625"
+"16603179732"
+"00791768277359002221"
+"00791776763069005185"
+"00791776763069026749"
+"00791777932969002324"
+"00791785019759003936"
+"00791242774659030442"
+"00791245940929020431"
+"00791248626089006922"
+"00799989708731"
+"00799977182242"
+"0085269756810"
+"0085269776441"
+"0085269786406"
+"0085269795193"
+"0085259171583"
+"13133595617"
+"15688399286"
+"13021793328"
+"18631740332"
+"13294829863"
+"13454208464"
+"17614202166"
+"18632269923"
+"00799968880325"
+"00799973392278"
+"00799977510219"
+"00799982530795"
+"00799988362923"
+"00799978221577"
+"00799987729325"
+"00799952874393"
+"0085269796472"
+"0085269796940"
+"0085269797519"
+"0085290212404"
+"0085290226700"
+"0085290228456"
+"0085290228604"
+"0085290241295"
+"0085290243910"
+"0085290248679"
+"0085290254661"
+"0085256825693"
+"0085256829279"
+"0085256876976"
+"0085256885960"
+"0085256886376"
+"18633869551"
+"15632812250"
+"15632808297"
+"17532568828"
+"17692737192"
+"15530213523"
+"15530734750"
+"18678378585"
+"13230662710"
+"13223426700"
+"15612589178"
+"15633977926"
+"0085256888423"
+"0085259107706"
+"0085259111434"
+"0085259115397"
+"0085259153967"
+"0085259162397"
+"0085259173467"
+"0085259183064"
+"0085259183509"
+"0085259194991"
+"0085267151676"
+"0085291866419"
+"0085291992815"
+"0085252120613"
+"008562095435031"
+"15230213316"
+"008562098465479"
+"15076107238"
+"19103219250"
+"18807009775"
+"15076533650"
+"00886935931423193878"
+"13164744314"
+"008562094301596"
+"17818060086"
+"19588535089"
+"18210735352"
+"008562098729787"
+"008562091386235"
+"17330268689"
+"15612356868"
+"13663225206"
+"15028458221"
+"13780489859"
+"00799961669358"
+"00791224877379000109"
+"00791233313979015761"
+"00791308954379021604"
+"0085254317860"
+"0085254319519"
+"0085254319796"
+"0085254320393"
+"00799956048380"
+"00799985884908"
+"00799967794387"
+"00821035814657"
+"00821089119095"
+"00799962611559"
+"00799967974580"
+"00799967402356"
+"00799987800963"
+"00799962793588"
+"00799979171852"
+"0085290255426"
+"0085290325803"
+"0085290335934"
+"0085290371235"
+"0085252108922"
+"0085252414608"
+"0085252416196"
+"0085252416483"
+"0085252416566"
+"0085252418252"
+"0085252422091"
+"19833221131"
+"15130502341"
+"15033229726"
+"15131205719"
+"15233374936"
+"17692144461"
+"13111463226"
+"15562277052"
+"15632828652"
+"13231170425"
+"13180521007"
+"18903112756"
+"15373597810"
+"13292563650"
+"008562094208949"
+"0085252444551"
+"0085252467025"
+"0085252487129"
+"0085254761200"
+"0085256807293"
+"0085256812375"
+"0085256815371"
+"0085256816070"
+"0085256819276"
+"0085256819373"
+"0085256825420"
+"0085256825536"
+"0085267154208"
+"0085267186377"
+"0085267502260"
+"0085267503423"
+"0085267513769"
+"0085261702454"
+"0085265947861"
+"0085265950498"
+"0085265956925"
+"0085265960278"
+"0085265961926"
+"0085261695654"
+"0085254322046"
+"0085254323059"
+"0085254325253"
+"0085254329053"
+"0085254329562"
+"0085254340920"
+"0085267514463"
+"0085267153891"
+"0085267198511"
+"0085267522295"
+"0085267535915"
+"0085266501644"
+"0085266504674"
+"0085266505049"
+"0085266505476"
+"0085266506121"
+"0085254346054"
+"0085254348401"
+"0085254358103"
+"0085254398507"
+"0085255251024"
+"0085256811069"
+"008562093448697"
+"18260053380"
+"15031550810"
+"15194891233"
+"18714157131"
+"15297531797"
+"13832638611"
+"15933266236"
+"19803272694"
+"15831268598"
+"15933442982"
+"13722726472"
+"15133657390"
+"13931541096"
+"0085265985766"
+"0085267560071"
+"0085267758327"
+"0085298720860"
+"00821057788745"
+"00821080292370"
+"0085267589624"
+"0085267706858"
+"0085267765726"
+"0085267768654"
+"0085268212632"
+"0085268252840"
+"0085265992397"
+"0085266528224"
+"0085266550463"
+"0085266579483"
+"0085266596001"
+"00959772696307"
+"18000352290"
+"0085266598969"
+"0085267114842"
+"0085267151522"
+"0085267547839"
+"0085267559485"
+"0085267562560"
+"0085267571571"
+"0085267588489"
+"15027512642"
+"15931278541"
+"008562093123726"
+"13414122649"
+"15630261955"
+"17803095756"
+"13932568529"
+"13403374944"
+"18603258661"
+"13021892561"
+"15028816661"
+"18631769666"
+"15614235253"
+"15531877888"
+"13292915991"
+"17632110371"
+"16630649031"
+"13184910717"
+"13126117073"
+"13290616335"
+"13266908201"
+"15632399587"
+"15613354594"
+"15630772611"
+"15613872940"
+"13283408910"
+"0085266579443"
+"0085266585442"
+"0085266592904"
+"0085266599274"
+"0085267101247"
+"00821011177446"
+"00821023685871"
+"00821024118635"
+"0085265984799"
+"0085265985710"
+"0085265988743"
+"0085265990114"
+"0085265991190"
+"0085265993785"
+"0085265995653"
+"0085265998157"
+"0085267547136"
+"0085267548572"
+"0085267548586"
+"0085267551334"
+"0085267552565"
+"0085267553162"
+"0085267556002"
+"0085267556541"
+"0085266506407"
+"0085266540814"
+"0085266548831"
+"0085266554814"
+"0085266561591"
+"18630321181"
+"13091093036"
+"13273157701"
+"18531050301"
+"18549988795"
+"13180114978"
+"18634146212"
+"13091012716"
+"15531141999"
+"15682192850"
+"15544838639"
+"18633586109"
+"18532181346"
+"15603301178"
+"13070502339"
+"15632059702"
+"15632607395"
+"13011575911"
+"15612061998"
+"13633321717"
+"13102521017"
+"13111517659"
+"13273125158"
+"13253172501"
+"16714900458"
+"13111667030"
+"13103111319"
+"15530396955"
+"13131070637"
+"16603250586"
+"13231178355"
+"15612115528"
+"18633501168"
+"18531436730"
+"15517929816"
+"13231136378"
+"15595141577"
+"13181313347"
+"15512715858"
+"18532516656"
+"15511017720"
+"15507593097"
+"13102694149"
+"17503355644"
+"13283337482"
+"007928311843786108"
+"00821047579722"
+"00821051028034"
+"00821051531400"
+"00821051733011"
+"00821053599610"
+"00821053616589"
+"00821025332939"
+"00821026457816"
+"00821060592648"
+"00821082868765"
+"00821029655129"
+"00821035167158"
+"00821049329523"
+"00821066733256"
+"00821070569496"
+"00821080579703"
+"15694945388"
+"18531994527"
+"15532168860"
+"17531805258"
+"16633259057"
+"15612676030"
+"18532032577"
+"13191918630"
+"17733089649"
+"008562095307041"
+"15031645657"
+"18630356927"
+"13230131680"
+"17692587026"
+"18631181552"
+"15532261563"
+"16632277260"
+"15614910812"
+"18531097784"
+"17659905708"
+"17631542075"
+"18632439778"
+"13081019244"
+"15610918601"
+"15511011208"
+"13131373070"
+"13021873921"
+"13011947080"
+"13011557160"
+"15632426342"
+"13184925189"
+"15530526238"
+"15613895286"
+"13286586875"
+"15692193610"
+"18533226076"
+"16633295831"
+"17041465200"
+"15614229612"
+"18533180926"
+"00791591424089010708"
+"00791603648039004053"
+"00791662338879027293"
+"00791697842579005214"
+"00791706191939005491"
+"00791766461949010839"
+"00791794544139020141"
+"00791794990919015890"
+"00799958101086"
+"007928311056455027"
+"007928311123630707"
+"007928311128346158"
+"007928311183622963"
+"007928311204354856"
+"007928311388312442"
+"007928311412497720"
+"007928311488662346"
+"007928311633907221"
+"007928311638007349"
+"007928311688918170"
+"00791556051119018707"
+"00791556882419030222"
+"00791557986179014017"
+"00791572962989018202"
+"00791577610209022482"
+"00791240100239021294"
+"00791245641079014859"
+"00791246798759019334"
+"00791310899319013071"
+"00791310899319026026"
+"00791313497009003184"
+"00791323365399006175"
+"00791351467409010073"
+"13230696968"
+"15532163316"
+"18633528909"
+"13102970771"
+"16631810627"
+"16630630950"
+"13253599721"
+"18532231385"
+"13195077256"
+"16609504500"
+"13032014067"
+"15512189552"
+"15512560312"
+"15544810076"
+"13230278431"
+"18617680032"
+"17631568628"
+"17631735625"
+"15512055509"
+"15613173606"
+"18633831276"
+"15610971081"
+"15532132424"
+"16630017749"
+"13267038797"
+"15533343988"
+"13283109568"
+"16633372980"
+"13284312131"
+"15530277387"
+"13290528997"
+"00799963903149"
+"00799964331805"
+"00799964563601"
+"00799967047970"
+"00799967973366"
+"00799973333267"
+"00799977861398"
+"00799980433159"
+"00799987593793"
+"00799951076991"
+"00799951636825"
+"00799953854921"
+"00799957072809"
+"13293393285"
+"15603238562"
+"15630492354"
+"15632359740"
+"15579500562"
+"13091220178"
+"16630201869"
+"13273296507"
+"13131975600"
+"18531040574"
+"16630728899"
+"15530083129"
+"18631150726"
+"15512395296"
+"16631210020"
+"15511872322"
+"13020829455"
+"15612653372"
+"18503420291"
+"18533224772"
+"18609384491"
+"16631228390"
+"18633139739"
+"16631206655"
+"13131012193"
+"00856331162479007640"
+"00856679900209008315"
+"00856727899749028041"
+"00856688948339008028"
+"00856681252119005675"
+"16630790363"
+"13231131011"
+"13194735609"
+"00856681465399007316"
+"00856681254349002905"
+"00856719607489002363"
+"00856354339429002063"
+"00856795076489004711"
+"00856681465589001329"
+"00856222147479029660"
+"00794354375839011390"
+"0085270881003"
+"0085258595891"
+"0085270883875"
+"0085270898405"
+"0085256521122"
+"0085258139093"
+"0085258412639"
+"0085258862590"
+"0085266669693"
+"0085267842289"
+"0085270529232"
+"0085270870248"
+"0085286903217"
+"0085292922593"
+"0085298900095"
+"0085252586852"
+"0085253564973"
+"0085258142437"
+"0085258889393"
+"0085263696293"
+"0085286974291"
+"0085252567251"
+"0085270883054"
+"0085259571641"
+"0085266682741"
+"0085269670246"
+"0085270201567"
+"0085270328442"
+"00794681254859011480"
+"00794581234659000181"
+"00794719607489028312"
+"00794768565769006980"
+"00794323569749030088"
+"17633212749"
+"15632838599"
+"15535066668"
+"15503241590"
+"18631604567"
+"15630927709"
+"13021802019"
+"18631497421"
+"18633393113"
+"13293002430"
+"15631155808"
+"15512847786"
+"13091231996"
+"18633722175"
+"13191631390"
+"18631262195"
+"17531353792"
+"13292088231"
+"16632271605"
+"13171803559"
+"15227271555"
+"13032039000"
+"15631615795"
+"18532167204"
+"18531379403"
+"15508556503"
+"15511716781"
+"18630725458"
+"13292700368"
+"13043187831"
+"13180011836"
+"16630055322"
+"18603191886"
+"15614380455"
+"16710074546"
+"15614117652"
+"18630268118"
+"00794692723309008951"
+"00794354368359014520"
+"00794354385319014247"
+"00794589247089016694"
+"00799967518535"
+"0085258321663"
+"0085262455420"
+"0085258106265"
+"0085258790060"
+"0085263697586"
+"0085270203227"
+"0085270656965"
+"00794681256729020338"
+"00794707194979031611"
+"00794354375209031370"
+"0085256555543"
+"0085257515009"
+"0085257816904"
+"0085258110091"
+"0085258687915"
+"00794565963309019034"
+"00794354347139025669"
+"00794556051119031490"
+"00794354335969002861"
+"00794706186059006975"
+"00794238074879000654"
+"00794354363189004733"
+"00794657456469029101"
+"00794681684769005111"
+"00794681686809030523"
+"18533098042"
+"18571647573"
+"16710525002"
+"16710525038"
+"13081060828"
+"15613366578"
+"13131535997"
+"15532793117"
+"13091397286"
+"15613086802"
+"18532012060"
+"13230621136"
+"15613718382"
+"15630788785"
+"18532502850"
+"15630683691"
+"13082000909"
+"16682098315"
+"18632066732"
+"18632500967"
+"15632322170"
+"13230362819"
+"17532510322"
+"18631987713"
+"18633978086"
+"18634107600"
+"15531395850"
+"13191601890"
+"13081860000"
+"18632355785"
+"15511346415"
+"17659720356"
+"17559591729"
+"15665966322"
+"18531931511"
+"13731213264"
+"18533723450"
+"15614249959"
+"15503314490"
+"15694887134"
+"13284463988"
+"15694884043"
+"00794354347139018976"
+"0085262492055"
+"0085262620265"
+"0085268636341"
+"0085270865897"
+"00794681253339015469"
+"00794681256199031234"
+"00794706076639022689"
+"00794354339819011969"
+"00794665363159018176"
+"00794669121749018054"
+"00794006598389014642"
+"00794317621919017876"
+"16632488154"
+"13230702738"
+"15603192324"
+"13127440186"
+"18617848706"
+"15632566658"
+"16759303387"
+"16759303910"
+"16759307584"
+"16759307813"
+"16759309547"
+"16759309684"
+"15227067970"
+"15531975809"
+"16796362949"
+"15500414905"
+"17692635210"
+"15633078615"
+"18632195456"
+"15632324903"
+"18633426657"
+"18632516000"
+"15630531956"
+"13231161403"
+"13231161327"
+"18692262922"
+"13273518895"
+"18632707180"
+"13180112438"
+"13012037421"
+"18630113645"
+"13114413033"
+"15694884624"
+"13223226793"
+"16633295827"
+"16632088817"
+"17685005626"
+"15511410942"
+"13018662825"
+"15614125371"
+"13131665772"
+"13231219113"
+"18633666331"
+"00799979242668"
+"00794325975359029657"
+"00794587910459009656"
+"00794662338879030630"
+"00794706944629027199"
+"00794788853809014423"
+"00794561329379018362"
+"00794332772699031420"
+"00794582786209030411"
+"00799961282558"
+"00791233572729000826"
+"00799986720559"
+"00791354388869032237"
+"00791560354339012003"
+"00791345287049000684"
+"00791354362129032309"
+"00791575115229017234"
+"16710520096"
+"18523919459"
+"13180575238"
+"15511412483"
+"18633282071"
+"19933148595"
+"17395284067"
+"19831841854"
+"13102518588"
+"18633983655"
+"15833431991"
+"17633018038"
+"16631308010"
+"18631476765"
+"16603108258"
+"15633860231"
+"15630713518"
+"13031449392"
+"13081129807"
+"13111430402"
+"13012107165"
+"13231720066"
+"13082362688"
+"15632861638"
+"13230707041"
+"18617505336"
+"17531139824"
+"00791251146979003014"
+"00791251146979021293"
+"00791252452609022143"
+"00791308718819021600"
+"00791308718819026574"
+"00791354373359025613"
+"00791354373529000390"
+"00791240100239014267"
+"00799974556499"
+"00791242388849027425"
+"00791591231539010879"
+"00791210182569006151"
+"00794245641079027453"
+"00794354367929027761"
+"00794565758919025836"
+"00794581630639030580"
+"00794322778999031262"
+"00794354353459021871"
+"00794354368399021198"
+"00791224877379011358"
+"00791226905399024544"
+"00791231639119028594"
+"00791233313979028646"
+"00791233651489027390"
+"00791240100239017203"
+"00791241116509001337"
+"00791242490789003826"
+"15613483164"
+"18533156866"
+"17631978443"
+"13031917669"
+"18588296848"
+"13257553761"
+"18631096338"
+"13180448195"
+"13292800892"
+"18533170756"
+"15130805587"
+"13383071587"
+"13091163512"
+"13111314892"
+"15503178094"
+"13180315244"
+"13131869275"
+"13292036153"
+"15632978802"
+"18632708578"
+"17193049446"
+"18633257561"
+"00791354334249004525"
+"00791323569749031580"
+"00799986161822"
+"00791240100239008294"
+"00799975100650"
+"00791354347649031453"
+"00791233572729022733"
+"00791354347139021107"
+"00791354347139023086"
+"00791354349899030298"
+"00791354362129005208"
+"00791354362129013462"
+"00791354362459016582"
+"00791354362769025386"
+"00791354364139029185"
+"00791354364139031332"
+"00791354367319019212"
+"00791354367319028646"
+"00791354367419022206"
+"00791354369819011015"
+"00791354370129002215"
+"00791354370129009840"
+"00791354370669007233"
+"13131086568"
+"13113899896"
+"15503015729"
+"17603260428"
+"13273191822"
+"13081858138"
+"16632080911"
+"15544659986"
+"17633225137"
+"13103133218"
+"17692371497"
+"15932591119"
+"15632221170"
+"15532078058"
+"00821031273272"
+"13292448618"
+"13131748826"
+"15532228252"
+"18634179076"
+"18531549208"
+"15531091320"
+"15100790694"
+"16630962793"
+"13293360322"
+"18532652091"
+"18533957258"
+"16630066044"
+"17531328813"
+"17631751436"
+"15532637373"
+"13754574202"
+"18633691111"
+"00791565758919019402"
+"00791567871949002901"
+"00791567871949008081"
+"00791568222179001303"
+"00791569627949032220"
+"00791572098889005702"
+"00791573775139014254"
+"00791575115229015401"
+"00791582786209011467"
+"00791583296319012565"
+"00791583617919023859"
+"00791585913269030441"
+"00791592375329024313"
+"00791594243679010764"
+"00791597528669020963"
+"00791602493929026531"
+"00791603648039016303"
+"00791603648039031260"
+"007916107540460719"
+"007916107540631374"
+"18633116795"
+"18733401091"
+"15694894596"
+"15630003019"
+"13292665291"
+"15630026169"
+"13293037118"
+"15631738636"
+"17041698512"
+"18634182250"
+"18632733386"
+"15512929902"
+"18631626256"
+"18532682657"
+"00852604493245409"
+"00791660087039023033"
+"00658429991737347"
+"00658429991737363"
+"00658429991737368"
+"00658429991737371"
+"00658429991737373"
+"00799971894087"
+"00821096802912"
+"17731800182"
+"13273524875"
+"13091369266"
+"15262493343"
+"15612014882"
+"00821023544005"
+"00821082692609"
+"00799972839965"
+"00791251146979028847"
+"00791572098889021867"
+"00791681505479018092"
+"00791692723309008496"
+"00791727899749013703"
+"00799950966120"
+"00799951788298"
+"00799951817916"
+"00799952777537"
+"00799953123139"
+"00799953187883"
+"00799953210439"
+"00799958892096"
+"00799959085709"
+"00799959370968"
+"00799963189142"
+"00799963977453"
+"00799965162125"
+"00799965364716"
+"00799965815796"
+"00799968484435"
+"00799969765141"
+"00799953631747"
+"00799953894108"
+"00799954073403"
+"00799954652281"
+"00799954677996"
+"00799956015150"
+"00799956963554"
+"00799958219775"
+"15690513851"
+"13031937350"
+"13102692969"
+"18532649709"
+"15933890063"
+"18631919152"
+"13011512755"
+"15690502500"
+"17631722165"
+"13833141033"
+"15532720762"
+"15631683979"
+"13730118693"
+"18831118188"
+"18733683993"
+"17731733283"
+"18633035634"
+"17532502976"
+"15530188038"
+"15613397206"
+"13231292002"
+"15097456592"
+"15297616875"
+"15633783588"
+"15531957873"
+"16632327717"
+"13283102482"
+"15533580250"
+"18603140455"
+"18630116432"
+"13081826252"
+"18830206833"
+"13111406522"
+"15631217622"
+"15632627777"
+"17528132580"
+"17367578214"
+"15512516692"
+"00799985146379"
+"00852632000369511"
+"00852632000426817"
+"00852632001667578"
+"00852632001719277"
+"00852632001884291"
+"00799989490481"
+"00799979588127"
+"00791354368399001470"
+"00791354389779015736"
+"00791346121789008526"
+"00821035390669"
+"00821069664371"
+"00821094145269"
+"18716098212"
+"15127119227"
+"15176779625"
+"18503238648"
+"18830914105"
+"13931196432"
+"13231090087"
+"18233170928"
+"00959674171670"
+"16793102426"
+"13409581865"
+"13402444616"
+"13933243782"
+"18631510012"
+"15531925876"
+"15731259527"
+"18830443887"
+"15032133112"
+"18034547198"
+"13584528236"
+"15028607573"
+"15712565881"
+"15103248857"
+"13426934404"
+"15613487110"
+"18103242448"
+"18132079831"
+"15532100933"
+"13292747904"
+"18003395521"
+"15931117855"
+"18032536687"
+"18932726745"
+"18131607175"
+"13472242410"
+"18639358226"
+"18331296452"
+"19831981328"
+"15076098219"
+"15713296526"
+"15532170286"
+"17121982998"
+"18831910920"
+"13630868779"
+"19567905682"
+"15613003632"
+"17800301982"
+"15792123500"
+"17734502685"
+"13932909665"
+"15961421264"
+"16236892043"
+"15369656449"
+"17325652396"
+"15176999568"
+"18785880502"
+"00852937045195420"
+"00852608824195415"
+"00852608824195417"
+"00852608824195416"
+"00852608824195425"
+"00852608946555416"
+"00852610284615428"
+"00852610473285413"
+"00852610473285431"
+"00658429991737232"
+"00658429991737254"
+"00658429991737311"
+"00658429991737313"
+"00658429991737326"
+"00658429991737327"
+"00658429991737334"
+"00658429991737341"
+"15632156889"
+"19572413813"
+"19818845600"
+"18633909791"
+"15933168025"
+"15231080749"
+"19536675931"
+"13703207157"
+"13576021760"
+"17193218673"
+"15033959531"
+"17856425102"
+"18630472777"
+"13833070695"
+"13087380773"
+"18260721852"
+"15103292187"
+"15175719800"
+"18333669378"
+"17743783209"
+"15081179634"
+"18330180808"
+"19560815897"
+"18378377480"
+"13103120827"
+"18715386964"
+"18276780073"
+"15553607416"
+"19831827770"
+"13091343767"
+"18330287612"
+"13767991242"
+"17692546230"
+"18633379211"
+"15027414936"
+"15133062710"
+"18218296365"
+"19831009798"
+"15614367713"
+"15933322616"
+"008562096452458"
+"13032012031"
+"17631992857"
+"008562092931599"
+"15631406300"
+"008562099625455"
+"16575897055"
+"18309607108"
+"18330816694"
+"17320909933"
+"19858708871"
+"13011567963"
+"18503232196"
+"18533537730"
+"13247435105"
+"008536830401437379"
+"008536830401437394"
+"008536830401437402"
+"008536830401437410"
+"008536830401437419"
+"00852610738455409"
+"00852610738455414"
+"18531182037"
+"15629965083"
+"17631190200"
+"19572458557"
+"18033804452"
+"19522140609"
+"18131881332"
+"13283193120"
+"16633412150"
+"16230111516"
+"13231075465"
+"13001877106"
+"19932190242"
+"16603362165"
+"15530031681"
+"008536830401437222"
+"008536830401437427"
+"008536830401437428"
+"008536830401437432"
+"008536830401437434"
+"008536830401437437"
+"008536830401437252"
+"008536830401437258"
+"008536830401437292"
+"008536830401437305"
+"008536830401437307"
+"008536830401437373"
+"008536830401437375"
+"008536830401437376"
+"13031838671"
+"17103035681"
+"15932671917"
+"18134007116"
+"19931214701"
+"17532500815"
+"13273287956"
+"008536830501437394"
+"008536830501437408"
+"008536830501437412"
+"008536830501437414"
+"008536830501437431"
+"008536830501437434"
+"008536830501437438"
+"008536830501437439"
+"15511732173"
+"13673260074"
+"15612069592"
+"19932750343"
+"15931565476"
+"19832281188"
+"15511505952"
+"15060808756"
+"15830083771"
+"15028723005"
+"15076340523"
+"00959754612761"
+"19854049704"
+"18532637072"
+"19831000815"
+"13463082201"
+"18316069867"
+"18229481706"
+"18633200660"
+"18203600134"
+"13230923507"
+"18133507672"
+"00959681184291"
+"15544830539"
+"13653342527"
+"13784654350"
+"00658429991738853"
+"00658429991738874"
+"00658429991738876"
+"00658429991738918"
+"00658429991738930"
+"00658429991738982"
+"00658429991738993"
+"00658429991738994"
+"008536830501439272"
+"008536830501439274"
+"008536830501439325"
+"008536830501439345"
+"008536830501439349"
+"008536830501439389"
+"008536830501439406"
+"008536830501439429"
+"008536830501439444"
+"008536830501439458"
+"008536830501439470"
+"008536830501439534"
+"008536830501439548"
+"008536830501439557"
+"008536830501439576"
+"008536830501439592"
+"008536830501439612"
+"008536830501439709"
+"00886953823738886"
+"00886953823738896"
+"00886953823738920"
+"00886953823738939"
+"00791591424089011707"
+"00799963709751"
+"18898121503"
+"13582791608"
+"15932479239"
+"15076808200"
+"13831795962"
+"13933864842"
+"15132378906"
+"15028310846"
+"15227057275"
+"15731048355"
+"13831662075"
+"15030560392"
+"18630780290"
+"00799954001325"
+"00791354374699004121"
+"00791248777859020533"
+"00799986048673"
+"00791785019759026496"
+"00791354349899002311"
+"00799968553986"
+"00791220906949014146"
+"00791556882419009684"
+"00799977966803"
+"00791321442169024497"
+"00799973967740"
+"00799985105964"
+"00791557504189011027"
+"00791248626089015025"
+"00799974576471"
+"00791238074879012508"
+"00791251366929027882"
+"00799950046907"
+"00791248626089018695"
+"15530542011"
+"13091319218"
+"18503186923"
+"00791308718819018416"
+"00791563173379004924"
+"00799963198129"
+"00791251146979004384"
+"00799968911633"
+"00791354362129010157"
+"00791354334699003461"
+"00799966214244"
+"00799968580749"
+"00799969121387"
+"00799971933449"
+"00799981152690"
+"18633016871"
+"13081863949"
+"13084596320"
+"15533519156"
+"15533658823"
+"13292838257"
+"00799987217575"
+"00799988942498"
+"00799989044515"
+"00799989753600"
+"00799951995574"
+"00799959332402"
+"00799959890655"
+"008536830501439225"
+"008536830501439226"
+"008536830501439234"
+"008536830501439255"
+"008536830501439267"
+"15133463286"
+"008562097583676"
+"13483481870"
+"18331551622"
+"008562098732877"
+"008562098997795"
+"18231957781"
+"16630705028"
+"18219338981"
+"13011585287"
+"18230346442"
+"15612113323"
+"13463610702"
+"17732206670"
+"18132010793"
+"13126163666"
+"13013242579"
+"15632463471"
+"13731161957"
+"13048782086"
+"13180490861"
+"13283276666"
+"15603219692"
+"13091116383"
+"18633551101"
+"16632485674"
+"18532413173"
+"13231097800"
+"13165149182"
+"13028698705"
+"15631167312"
+"15530984853"
+"15511660689"
+"17631554500"
+"17633170825"
+"13031457317"
+"15532052946"
+"15533302793"
+"13011429996"
+"13230919216"
+"15632033835"
+"15631755721"
+"00852936604515442"
+"00852936604515443"
+"00852936604515477"
+"008536830401439330"
+"008536830401439384"
+"008536830401439442"
+"008536830401439467"
+"008536830401439546"
+"008536830401439554"
+"008536830401439611"
+"008536830401439630"
+"00852941360485467"
+"00852941360485491"
+"00852619481675466"
+"00852619481675476"
+"00852619481675491"
+"00852619754595470"
+"00799958486802"
+"00799959406233"
+"00799960901342"
+"00799962978587"
+"00799966099203"
+"008536830501439038"
+"008536830501439044"
+"008536830501439091"
+"15632111363"
+"13223206320"
+"15612756887"
+"15632130010"
+"16763140389"
+"15532823932"
+"13292970505"
+"13091236351"
+"15613496250"
+"15630174796"
+"16633972291"
+"16633335550"
+"13131129025"
+"18632010705"
+"18632509773"
+"13191948572"
+"17532036361"
+"15690003005"
+"00852619754595488"
+"00852619754595505"
+"00852619764745441"
+"00852619764745452"
+"00852619764745481"
+"00852619764745485"
+"00852619764745503"
+"00852619902415465"
+"00852942184335476"
+"00852942238695459"
+"00852942238695475"
+"00852942281055448"
+"00852942371815471"
+"00852942524275462"
+"00852942524275474"
+"00852942524275484"
+"00852942524275494"
+"00852942664045485"
+"00852942709135473"
+"00852942713955444"
+"00852942713955451"
+"00852942747565459"
+"00852942747565481"
+"00852936319745488"
+"00852941804625474"
+"18631557782"
+"15630160601"
+"00886953823739317"
+"00886953823739333"
+"00886953823739338"
+"00886953823739343"
+"00886953823739432"
+"00852942664045495"
+"00852942664045505"
+"00852942709135450"
+"18533224868"
+"16630132668"
+"15512531706"
+"13265930491"
+"15511830467"
+"17503271189"
+"18533185330"
+"15532022809"
+"18617818976"
+"15097965608"
+"13013234146"
+"15630993191"
+"15690176595"
+"15532489367"
+"15130111573"
+"15130140153"
+"17531082080"
+"00852608824195455"
+"00852936604515486"
+"00852936604515507"
+"00852936952425446"
+"00852936952425482"
+"00852936952425505"
+"00852937582145495"
+"00852937917405465"
+"00852937917405472"
+"00852937917405490"
+"00852937917405494"
+"00852937922445504"
+"00852941037655486"
+"00852941037655493"
+"00852941360485451"
+"00852941360485463"
+"00852619764745447"
+"008536830401439672"
+"008536830401439711"
+"008536830401439713"
+"008536830401439735"
+"008536830501438896"
+"00852937917405501"
+"00852937922445457"
+"00852937922445489"
+"15695044723"
+"13103049309"
+"13082085838"
+"13283215777"
+"16711668441"
+"16711668454"
+"13273322169"
+"15231630141"
+"15833064776"
+"13021818637"
+"00852942512565447"
+"00852942512565492"
+"00852942519275469"
+"00852942524275447"
+"00852942524275454"
+"17090804149"
+"13103088345"
+"00852936074425480"
+"00852936074425485"
+"00852936134335447"
+"18617764525"
+"13111748797"
+"00852937404245469"
+"00852937418495443"
+"00852937418495456"
+"00852937418495467"
+"00852937505455496"
+"00852619088435460"
+"00852619088435503"
+"00852619088435507"
+"00852592266079"
+"00852592266202"
+"00852592266397"
+"00852592266654"
+"00852592266943"
+"00799975180913"
+"00799977690830"
+"00799978309406"
+"007986436581273758"
+"00799961739246"
+"00852592845486"
+"00852945967685366"
+"0085258808527"
+"00852929836045"
+"00799964818680"
+"00799966425751"
+"00799966766961"
+"00799967451545"
+"00799968395996"
+"00799969731318"
+"00799970601780"
+"00799971289503"
+"00799971914498"
+"00799973721049"
+"00799978605841"
+"00799978639672"
+"00799978730040"
+"00799981973920"
+"00799985054027"
+"00799985518029"
+"00799987878388"
+"00852929836102"
+"00852929836449"
+"00852929836490"
+"00852929836494"
+"00852929836886"
+"00852929837221"
+"00852929837327"
+"00799952971829"
+"15075767454"
+"15130645186"
+"15132066349"
+"15226648546"
+"17090800317"
+"17090801153"
+"17090801184"
+"17090803827"
+"17090803935"
+"15233262164"
+"15033856284"
+"15530204777"
+"00852592266023"
+"00852592266308"
+"00852929837334"
+"00799960181066"
+"00799960736754"
+"00799960746193"
+"13463989150"
+"15633671611"
+"15175907607"
+"17090803689"
+"18630733306"
+"15631478456"
+"17090801187"
+"15130553815"
+"00852592281923"
+"00852592285745"
+"00852592285985"
+"00852592286218"
+"00852592286644"
+"00852592286844"
+"00852592273842"
+"00852592274038"
+"00852592274380"
+"00791354357639031381"
+"00791354367419012942"
+"00791346898349020527"
+"15131788534"
+"15932745706"
+"15230043633"
+"15297603312"
+"15831774639"
+"15832003609"
+"18832051462"
+"15932767582"
+"18715948982"
+"18730403392"
+"18732834410"
+"15832734139"
+"15369707673"
+"15716819264"
+"15230843280"
+"15231495605"
+"15231551195"
+"15227570133"
+"16711668447"
+"13127369513"
+"13143021826"
+"18830928621"
+"15831243060"
+"15603273938"
+"18830754592"
+"15733133479"
+"18632990211"
+"18633073860"
+"13081028807"
+"13231904673"
+"17083391139"
+"15127771888"
+"13133549854"
+"17633079108"
+"15632244719"
+"16711608630"
+"18633641620"
+"18531599152"
+"15570098614"
+"16711668453"
+"15533905813"
+"16711668450"
+"13133529279"
+"18631580707"
+"13082031539"
+"17692199126"
+"13171737586"
+"18630152530"
+"15610921356"
+"00852592256707"
+"17692382695"
+"00852592256903"
+"00852592256957"
+"00852592257066"
+"00852592257378"
+"00852592258046"
+"00852592258155"
+"00852592258219"
+"00852592258380"
+"00852592258525"
+"00852592258563"
+"00852592258646"
+"00852592269989"
+"00852592270181"
+"17745748287"
+"13106557726"
+"17736109256"
+"17201535165"
+"13899900485"
+"13315192230"
+"18631897082"
+"17659952180"
+"13294036802"
+"15544559098"
+"15613139881"
+"15631681215"
+"18633506885"
+"15531067857"
+"13111603011"
+"18630038575"
+"15630529920"
+"15531032067"
+"16630132407"
+"15613792009"
+"13290665358"
+"18630301612"
+"15512159745"
+"17692605255"
+"15612568684"
+"13273204747"
+"15633602260"
+"13091111519"
+"13171601139"
+"13082081605"
+"15630888059"
+"13230219069"
+"18640524982"
+"15512614778"
+"15931610208"
+"13229898921"
+"15533446153"
+"13131620103"
+"13091156777"
+"18632540387"
+"15613912873"
+"16630382431"
+"13231268888"
+"13111365275"
+"15603285018"
+"13102611446"
+"13703102387"
+"18503212520"
+"0085290222642"
+"0085290227144"
+"0085290233867"
+"0085290254608"
+"0085290261042"
+"00852592284922"
+"00852592285383"
+"00852592299316"
+"00852592299337"
+"00852592299661"
+"00852592299884"
+"00852592299964"
+"00852592300148"
+"00852592300333"
+"00852592300550"
+"00852592277081"
+"00852592277474"
+"00852592277478"
+"15614273966"
+"18621003009"
+"18631636761"
+"15512511210"
+"18634830721"
+"18533251922"
+"17659992052"
+"15503089926"
+"18630051151"
+"15633017260"
+"13273227226"
+"13021819661"
+"15630430117"
+"13230090733"
+"18634135866"
+"18631017369"
+"0085259000227"
+"15613911918"
+"00855962485908"
+"00855969249867"
+"00959671383057"
+"16776836059"
+"16745473132"
+"16776836032"
+"18587368731"
+"17631271848"
+"15613583112"
+"13164724295"
+"13131947577"
+"15633703196"
+"13171753621"
+"15632093785"
+"13211085717"
+"15631251784"
+"13292111722"
+"18513148625"
+"00959671655391"
+"00852592258757"
+"00852592258811"
+"00852592258852"
+"13031958709"
+"13014377884"
+"15631907339"
+"15532031592"
+"13103113042"
+"16630226555"
+"17332657345"
+"15630003752"
+"13013246758"
+"15131836849"
+"13111314940"
+"18579636089"
+"0085261793439"
+"0085261794269"
+"0085261794960"
+"0085261796714"
+"0085261796749"
+"0085252490476"
+"0085252490632"
+"0085252490723"
+"0085261790401"
+"0085261792764"
+"0085261793430"
+"0085252490790"
+"0085252491370"
+"0085252495010"
+"0085261339694"
+"0085261364832"
+"0085261379790"
+"0085261431207"
+"0085261476469"
+"0085261490484"
+"0085261492164"
+"0085261607658"
+"0085261620843"
+"0085261637185"
+"0085261653473"
+"0085261685279"
+"0085261691780"
+"0085261692834"
+"0085261694018"
+"0085261698075"
+"0085261707347"
+"0085261720775"
+"0085261729835"
+"0085261738544"
+"0085261744123"
+"0085261758503"
+"0085261765316"
+"0085261776374"
+"0085261781050"
+"0085261784720"
+"0085261787327"
+"0085261787747"
+"15100926844"
+"13230527392"
+"18633560362"
+"18713183902"
+"15530268371"
+"18632854108"
+"13180587969"
+"18633339776"
+"13082053053"
+"15133045287"
+"15630881523"
+"17631126172"
+"13831282401"
+"15832683793"
+"15030938475"
+"15032062841"
+"13930187410"
+"0085261380513"
+"18532145300"
+"13273169990"
+"17041481193"
+"16633817114"
+"18632657689"
+"15544851208"
+"17692553606"
+"13292538672"
+"13784577514"
+"17631162681"
+"13722483750"
+"15032977905"
+"15130485781"
+"15532737079"
+"13031974480"
+"15544886729"
+"15631888789"
+"15032875887"
+"13165598653"
+"16632495337"
+"13832347544"
+"13013286682"
+"15612575237"
+"15732660772"
+"15612584855"
+"15512545320"
+"15511858520"
+"15631252165"
+"13102577720"
+"0016672563860"
+"18631822745"
+"18803037285"
+"15188967032"
+"15630406535"
+"15731807949"
+"15127070432"
+"15076717145"
+"15532805740"
+"13513088515"
+"0085252465096"
+"00821092617070"
+"00821085146123"
+"00821092470841"
+"00821098607462"
+"00821016960348"
+"16636715390"
+"15512898969"
+"15633584768"
+"15531692357"
+"13230279093"
+"16603222477"
+"13292863679"
+"18632815878"
+"13230808878"
+"15532445504"
+"15614125797"
+"16632090883"
+"13303200212"
+"15632251097"
+"18632067876"
+"18630082463"
+"16631181062"
+"18617558830"
+"18631678415"
+"15544915209"
+"13230386978"
+"13292369212"
+"13133512720"
+"13230335291"
+"13223330047"
+"15631225369"
+"15530130052"
+"15831233106"
+"15830322576"
+"15132837756"
+"15903338286"
+"13231760509"
+"18532507815"
+"13111308023"
+"13032053923"
+"15633702236"
+"15613835572"
+"13013299908"
+"17633320723"
+"13080428837"
+"15614127122"
+"15633016573"
+"00821091576856"
+"00821071570121"
+"00821074272311"
+"00821044565823"
+"00821080437377"
+"00821025312675"
+"00821074474183"
+"00821026457880"
+"00821028532653"
+"00821032947197"
+"00821038895934"
+"00821088940206"
+"0082143949255"
+"0079332371631"
+"00821013643002"
+"00821016861101"
+"00821019163977"
+"00821026019079"
+"00821032027603"
+"00821036742177"
+"00821037407732"
+"00821039465584"
+"00821039506014"
+"00821041713054"
+"00821047491310"
+"00821049255793"
+"00821050311230"
+"00821058231743"
+"00821060049804"
+"00821063244257"
+"15690254230"
+"13011413368"
+"13292281533"
+"15694884393"
+"17503221834"
+"13292256266"
+"15614123067"
+"17692157375"
+"15511265687"
+"15544727523"
+"15690122123"
+"15632536721"
+"15533702388"
+"13333324817"
+"15870064645"
+"18633712001"
+"17320789437"
+"0085292503840"
+"0085294626774"
+"0085295582197"
+"0085296160376"
+"16530888736"
+"18630435588"
+"19833934483"
+"15733449586"
+"15102678039"
+"15324305812"
+"13126142732"
+"15232837158"
+"18831144083"
+"13171818882"
+"18633215755"
+"13273672315"
+"13081816853"
+"15698370324"
+"13131550993"
+"13230208016"
+"17532503523"
+"15532142057"
+"15676868853"
+"13171806611"
+"13103038834"
+"17531197374"
+"00821092716775"
+"00821099513066"
+"00821022130047"
+"00821041030131"
+"00821059897678"
+"00821043819483"
+"00821058036601"
+"00821059569659"
+"00821061239660"
+"00821062687855"
+"00821066821915"
+"00821068543051"
+"15097316021"
+"19833314201"
+"19833379158"
+"13731021691"
+"15833883859"
+"13739865230"
+"17692018516"
+"13081081431"
+"15533802700"
+"18531990673"
+"13223110694"
+"18631765500"
+"15533683664"
+"15515637782"
+"17532505313"
+"13230639738"
+"006585500315"
+"17333955960"
+"17367707825"
+"17395274798"
+"15533741931"
+"15133395304"
+"17713062071"
+"15226889553"
+"19554149273"
+"18203331652"
+"17338212523"
+"13166433025"
+"19572456696"
+"19888401722"
+"0018564812899"
+"00855963842352"
+"19556525810"
+"19932105973"
+"15226557650"
+"19933060646"
+"14797587850"
+"0016048458394"
+"16632738825"
+"15708855884"
+"18875855645"
+"15032703652"
+"18733698197"
+"18553291690"
+"17279084059"
+"15906435377"
+"17331747137"
+"13224475013"
+"18132424126"
+"18332663768"
+"18631086994"
+"18330159163"
+"18879176648"
+"18875855642"
+"19872608545"
+"19558060584"
+"13028313430"
+"18132383344"
+"18332664686"
+"18942626135"
+"18295301765"
+"13473900889"
+"18330809169"
+"13131696992"
+"13333307401"
+"18203619807"
+"13785132179"
+"13604976414"
+"18132313448"
+"15081598973"
+"18203303328"
+"18233526639"
+"19133985039"
+"13400474735"
+"16621268248"
+"19842493170"
+"15531180020"
+"18812129655"
+"15933817391"
+"16630750916"
+"15511130222"
+"15503310232"
+"15632828911"
+"15530934006"
+"13292471779"
+"13292575569"
+"13292777369"
+"13513066518"
+"13633153144"
+"13931887628"
+"15131135490"
+"15232118950"
+"15383395672"
+"15503101788"
+"18332438717"
+"17703383398"
+"19871589850"
+"13425179141"
+"15632108589"
+"16553286926"
+"15230050748"
+"17353393281"
+"18333224002"
+"19572469757"
+"18870027809"
+"18740870607"
+"18831015550"
+"18230267445"
+"18831112682"
+"13688091645"
+"18032593775"
+"18203242988"
+"13824261171"
+"19533309906"