diff --git a/src/main/java/org/alis/excel/EasyExcelApplication.java b/src/main/java/org/alis/excel/EasyExcelApplication.java index 6d7a9a9..bc00e22 100644 --- a/src/main/java/org/alis/excel/EasyExcelApplication.java +++ b/src/main/java/org/alis/excel/EasyExcelApplication.java @@ -1,6 +1,8 @@ package org.alis.excel; -import org.alis.excel.service.TempNodeService; +import org.alis.excel.service.ClassInventory; +import org.alis.excel.service.ExportClassInService; +import org.alis.excel.service.OrderTimeQueryService; import org.springframework.boot.WebApplicationType; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.builder.SpringApplicationBuilder; @@ -17,8 +19,8 @@ public class EasyExcelApplication { .run(args); -// Runnable runnable = context.getBean(TempNodeService.class); -// runnable.run(); + Runnable runnable = context.getBean(OrderTimeQueryService.class); + runnable.run(); } } diff --git a/src/main/java/org/alis/excel/service/ClassInventory.java b/src/main/java/org/alis/excel/service/ClassInventory.java index 393a8e7..d2c61b1 100644 --- a/src/main/java/org/alis/excel/service/ClassInventory.java +++ b/src/main/java/org/alis/excel/service/ClassInventory.java @@ -28,7 +28,7 @@ public class ClassInventory implements Runnable { "and date_format(ci.create_time, '%Y-%m-%d') =date_format(st.create_time, '%Y-%m-%d')\n" + "left JOIN (select user_id from class.class_student where class_id in (select id from class.class_info where status = 3)) as cl\n" + "on cl.user_id = st.user_id\n" + - "where ci.id is null and st.create_time >'2024-05-01 00:00:00' and st.user_id in "; + "where ci.id is null and st.user_id in "; private static final String selectSql = "select st.user_id,st.id,st.week_id,st.create_time from \n" + " study.student_record st left JOIN class.class_inventory ci\n" + diff --git a/src/main/java/org/alis/excel/service/ExcelExportService.java b/src/main/java/org/alis/excel/service/ExcelExportService.java index 9774d92..cb71252 100644 --- a/src/main/java/org/alis/excel/service/ExcelExportService.java +++ b/src/main/java/org/alis/excel/service/ExcelExportService.java @@ -74,7 +74,7 @@ public class ExcelExportService implements Runnable { private String getCookie() { - return "source=12; user_id=10751; timestamp=1710906609609; token=eyJhbGciOiJIUzUxMiJ9.eyJpc3MiOiJVU0VSX0NFTlRFUiIsInN1YiI6IntcImlkXCI6MTA3NTEsXCJuYW1lXCI6XCLnvZflt51cIixcImVtYWlsXCI6XCJjaHVhbi5sdW9AZGF5dWFuMTk5Ny5jb21cIixcInBob25lXCI6XCIxODEqKioqNzIzOVwiLFwic3RhdHVzXCI6MSxcInR5cGVcIjoyLFwibG9naW5EYXRlXCI6XCIyMDI0LTAzLTIwIDExOjUwOjA5XCIsXCJleHBpcmVEYXRlXCI6XCIyMDI0LTA0LTE5IDExOjUwOjA5XCIsXCJkdXJhdGlvblwiOjI1OTIwMDB9IiwiYXVkIjoiTElMWV9wcm9kIiwiaWF0IjoxNzEwOTA2NjA5LCJleHAiOjE3MTM0OTg2MDl9.4w8wsmfvnu2HoUboJkLPc-2XD8aDJfKAdqaYL1xM98ZN_-Y3pdOPbER9BxdoiDvO20wXGq_GggwRJqTWc9AI-w"; + return "source=12; user_id=10751; timestamp=1716862389932; token=eyJhbGciOiJIUzUxMiJ9.eyJpc3MiOiJVU0VSX0NFTlRFUiIsInN1YiI6IntcImlkXCI6MTA3NTEsXCJuYW1lXCI6XCLnvZflt51cIixcImVtYWlsXCI6XCJjaHVhbi5sdW9AZGF5dWFuMTk5Ny5jb21cIixcInBob25lXCI6XCIxODEqKioqNzIzOVwiLFwic3RhdHVzXCI6MSxcInR5cGVcIjoyLFwibG9naW5EYXRlXCI6XCIyMDI0LTA1LTIxIDEwOjMwOjM3XCIsXCJleHBpcmVEYXRlXCI6XCIyMDI0LTA2LTIwIDEwOjMwOjM3XCIsXCJkdXJhdGlvblwiOjI1OTIwMDB9IiwiYXVkIjoiTElMWV9wcm9kIiwiaWF0IjoxNzE2MjU4NjM3LCJleHAiOjE3MTg4NTA2Mzd9.OP_KdkJkwQBwWt57hJg1jjmTyQmRbsW7qwbwu2eZf1rBTrUcGZlavRu3DFYuDNGg6nueE8_X3gzaorUxRMtcww"; } diff --git a/src/main/java/org/alis/excel/service/ExportClassInService.java b/src/main/java/org/alis/excel/service/ExportClassInService.java index 65f3c0f..4cd8148 100644 --- a/src/main/java/org/alis/excel/service/ExportClassInService.java +++ b/src/main/java/org/alis/excel/service/ExportClassInService.java @@ -13,9 +13,14 @@ import org.springframework.stereotype.Component; import org.springframework.util.StringUtils; import java.io.File; +import java.math.BigDecimal; +import java.math.MathContext; +import java.math.RoundingMode; import java.sql.SQLException; import java.text.NumberFormat; import java.util.*; +import java.util.concurrent.ThreadLocalRandom; +import java.util.concurrent.atomic.AtomicInteger; import java.util.stream.Collectors; import java.util.stream.Stream; @@ -27,10 +32,10 @@ import java.util.stream.Stream; @Component public class ExportClassInService implements Runnable { - private static final String master = "/Users/lily/Downloads/ClassIn平台课节消费_30428872_20240522102754.xlsx"; + private static final String master = "/Users/lily/Downloads/ClassIn平台考勤统计_30428872_20240620210040/ClassIn平台课节消费_30428872_20240620210102.xlsx"; - private static final List salve = ListUtil.toList("/Users/lily/Downloads/ClassIn平台考勤统计_30428872_20240522102820 2/ClassIn平台考勤统计_30428872_20240522102820_1.xlsx", - "/Users/lily/Downloads/ClassIn平台考勤统计_30428872_20240522102820 2/ClassIn平台考勤统计_30428872_20240522102820_2.xlsx"); + private static final List salve = ListUtil.toList("/Users/lily/Downloads/ClassIn平台考勤统计_30428872_20240620210040/ClassIn平台考勤统计_30428872_20240620210040_1.xlsx", + "/Users/lily/Downloads/ClassIn平台考勤统计_30428872_20240620210040/ClassIn平台考勤统计_30428872_20240620210040_2.xlsx"); private static final String exportPath = "/Users/lily/Downloads/classIn-导出结果.xlsx"; @@ -68,8 +73,14 @@ public class ExportClassInService implements Runnable { }).sheet().doRead(); Map doubleMap = slaveList.stream().filter(s->Objects.nonNull(s.getLessonId())).filter(sl -> sl.getIdentity().equals("学生")).filter(sl -> Objects.nonNull(sl.getDuration()) && sl.getDuration() > 5d).collect(Collectors.groupingBy(Slave::getLessonId, Collectors.summarizingDouble(Slave::getTime))); + log.info("总计有:{}",masterList.size()); + AtomicInteger cursor=new AtomicInteger(); + NumberFormat percent = NumberFormat.getPercentInstance(); + percent.setMaximumFractionDigits(2); + // 计算值 masterList.forEach(ma -> { + cursor.incrementAndGet(); DoubleSummaryStatistics doubleSummaryStatistics = doubleMap.get(ma.getLessonId()); String sql = Stream.of(ma.getClassName().split("、")).map(cl->"'"+cl+"'").collect(Collectors.joining(",", "(", ")")); long shouldNum = 0L; @@ -97,6 +108,9 @@ public class ExportClassInService implements Runnable { String rate = numberFormat.format((double) ma.getActualNum() / ma.getStuNum()); ma.setRate(rate); } + if(ThreadLocalRandom.current().nextInt(0,3) % 3 == 0){ + log.info("进度:{}",percent.format(BigDecimal.valueOf(cursor.get()).divide(BigDecimal.valueOf(masterList.size()), 4,BigDecimal.ROUND_HALF_UP))); + } }); diff --git a/src/main/java/org/alis/excel/service/OrderTimeQueryService.java b/src/main/java/org/alis/excel/service/OrderTimeQueryService.java new file mode 100644 index 0000000..1443ad8 --- /dev/null +++ b/src/main/java/org/alis/excel/service/OrderTimeQueryService.java @@ -0,0 +1,64 @@ +package org.alis.excel.service; + +import cn.hutool.core.lang.Pair; +import cn.hutool.db.Db; +import cn.hutool.db.Entity; +import org.apache.commons.collections4.ListUtils; +import org.springframework.stereotype.Component; +import org.springframework.util.StringUtils; + +import java.io.BufferedReader; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.Objects; +import java.util.stream.Collectors; + +/** + * @author lc + * @date 2024/6/5 11:48 + **/ +@Component +public class OrderTimeQueryService implements Runnable { + + private static final String group = "prod"; + + @Override + public void run() { + try (InputStream resource = this.getClass().getClassLoader().getResourceAsStream("last.txt"); + BufferedReader reader = new BufferedReader(new InputStreamReader(Objects.requireNonNull(resource)))) { + List collect = reader.lines().collect(Collectors.toList()); + List> partition = ListUtils.partition(collect, 200); + List>> result = new ArrayList<>(); + for (List list : partition) { + String sql = list.stream().collect(Collectors.joining(",", "(", ")")); + List entityList = Db.use(group).query("select order_id ,pay_time from lpay.pay where status=2 and order_id in " + sql); + List orderPay = Db.use(group).query("select order_id ,data->'$.payTime' as pay_time from lily_os_1.order_detail_01 where section='order-pay' and order_id in " + sql); + Map orderPayMap = orderPay.stream().map(p -> { + Long order_id = p.getLong("order_id"); + String pay_time = p.getStr("pay_time"); + return Pair.of(order_id, pay_time); + }).collect(Collectors.toMap(Pair::getKey, Pair::getValue)); + Map map = entityList.stream().map(en -> { + Long order_id = en.getLong("order_id"); + String pay_time = en.getStr("pay_time"); + return Pair.of(order_id, pay_time); + }).collect(Collectors.toMap(Pair::getKey, Pair::getValue)); + list.forEach(or -> { + Long order = Long.valueOf(or); + result.add(Pair.of(order, Pair.of(orderPayMap.getOrDefault(order, "").replace(".0", ""), map.getOrDefault(order, "").replace(".0", "")))); + }); + } + result.forEach(p ->{ + String key = p.getValue().getKey().replace("\"", ""); + if (key.startsWith("2024") && p.getValue().getValue().startsWith("2023")) { + System.out.println(p.getKey() + "," + key + "," + p.getValue().getValue()); + } } + ); + } catch (Exception e) { + e.printStackTrace(); + } + } +} diff --git a/src/main/java/org/alis/excel/service/TempNodeService.java b/src/main/java/org/alis/excel/service/TempNodeService.java deleted file mode 100644 index 4d7078a..0000000 --- a/src/main/java/org/alis/excel/service/TempNodeService.java +++ /dev/null @@ -1,48 +0,0 @@ -package org.alis.excel.service; - -import cn.hutool.db.Db; -import cn.hutool.db.Entity; -import lombok.extern.slf4j.Slf4j; -import org.apache.commons.collections4.CollectionUtils; -import org.springframework.boot.CommandLineRunner; -import org.springframework.stereotype.Component; - -import java.util.List; - -/** - * @author lc - * @date 2024/5/15 11:34 - **/ -@Component -@Slf4j -public class TempNodeService implements Runnable { - private static final String group = "prod"; - - private static final String query="select min(user_id) as id ,reason,amount from account.balance_log\n" + - "where reason like '订单%'\n" + - "and create_time >='2024-04-01 00:00:00'\n" + - "and type=1\n" + - "and amount>0\n" + - "GROUP BY reason,amount \n" + - "HAVING count(*)>1"; - - @Override - public void run() { - try { - log.info("余额校验查询任务开始----->>>>>>>>"); - List result = Db.use(group).query(query); - if (CollectionUtils.isEmpty(result)) { - log.info("未找到需要校验余额,任务结束----<<<<<<<"); - return; - } - log.error("异常报警,找到需要处理的余额日志++++共{}条->>>>>", result.size()); - log.info("开始输出相关信息-->>>>>"); - result.forEach(entity -> { - log.info("用户id:{},余额信息:{},新增金额:{}", entity.getStr("id"), entity.getStr("reason"), entity.getStr("amount")); - }); - log.info("信息输出结束-->>>>>"); - }catch (Exception e){ - e.printStackTrace(); - } - } -} diff --git a/src/main/resources/last.txt b/src/main/resources/last.txt index b504b9d..ad6a176 100644 --- a/src/main/resources/last.txt +++ b/src/main/resources/last.txt @@ -1,10 +1,2148 @@ -TZ073 -QG599 -XK814 -WK241 -GB359 -AV969 -FA718 -JU877 -ZY690 -AQ005 \ No newline at end of file +10094901031566 +10094900319307 +10094900691551 +10094900046892 +10094900663454 +10094900526774 +10094901023086 +10094900874805 +10094900774156 +10094900951954 +10094900428988 +10094900584401 +10094900596633 +10094900575464 +10094900575036 +10094900232516 +10094900507218 +10094900382425 +10094900772785 +10094900851423 +10094900778732 +10094900090424 +10094900214325 +10094900660133 +10094900381921 +10094900544561 +10094900434899 +10094900768040 +10094901046998 +10094900250419 +10094900246496 +10094900154898 +10094900516566 +10094900989947 +10094900472245 +10094900389895 +10094900889044 +10094900529079 +10094900555178 +10094900823475 +10094900786197 +10094900593564 +10094900432739 +10094900903868 +10094900861854 +10094900305638 +10094900586136 +10094900117054 +10094900195547 +10094900239346 +10094900830372 +10094900113852 +10094900362050 +10094900024108 +10094900309259 +10094900787581 +10094900581991 +10094900017013 +10094900388256 +10094900216989 +10094900148916 +10094900895108 +10094901016514 +10094900984890 +10094900061595 +10094901023669 +10094900746916 +10094900257918 +10094900871412 +10094901012602 +10094900706379 +10094900496110 +10094900942087 +10094900245071 +10094900605104 +10094900472766 +10094900641804 +10094900302196 +10094900341733 +10094900467670 +10094900060278 +10094900666612 +10094900689636 +10094900269912 +10094900056856 +10094900409632 +10094900510699 +10094900425655 +10094900758323 +10094900743145 +10094900435714 +10094900930989 +10094900405076 +10094900027589 +10094900405690 +10094900545999 +10094901031966 +10094900000811 +10094900803122 +10094900168575 +10094900349926 +10094900236997 +10094900387271 +10094901041337 +10094900136698 +10094900885360 +10094900137537 +10094900140789 +10094900320288 +10094900457143 +10094900014435 +10094900552778 +10094900499028 +10094900400258 +10094900241437 +10094901011156 +10094900704327 +10094900318278 +10094900497440 +10094900245278 +10094900292624 +10094900531021 +10094900777113 +10094900092964 +10094900700252 +10094901031945 +10094900133388 +10094900233654 +10094900880200 +10094900871295 +10094900611664 +10094900389390 +10094900684559 +10094900927091 +10094900840458 +10094900009335 +10094900729370 +10094900505264 +10094900535969 +10094900323823 +10094900105079 +10094900863736 +10094901034661 +10094900426535 +10094900670937 +10094901018754 +10094900478795 +10094900135006 +10094900971043 +10094900674766 +10094900858393 +10094900664201 +10094900421895 +10094900891315 +10094900995701 +10094900965488 +10094900875501 +10094900137238 +10094901046606 +10094900550158 +10094900951388 +10094900513392 +10094900071892 +10094900502171 +10094900963213 +10094900002175 +10094900467206 +10094900510404 +10094900683480 +10094900521327 +10094900016599 +10094900287223 +10094900143409 +10094900706793 +10094900707413 +10094900743869 +10094900852895 +10094900620609 +10094900419318 +10094901007339 +10094900996665 +10094900091711 +10094900581004 +10094900922892 +10094901001693 +10094900729994 +10094900164838 +10094900159814 +10094900495757 +10094900983943 +10094900268398 +10094901035783 +10094901017100 +10094900330773 +10094900672078 +10094900813134 +10094901010741 +10094900896365 +10094900223811 +10094900485447 +10094900701880 +10094900376583 +10094900899274 +10094900468018 +10094900049760 +10094900002507 +10094900622399 +10094900314769 +10094901006563 +10094900274890 +10094900118092 +10094901003371 +10094900590967 +10094900922557 +10094900371343 +10094900465392 +10094900052119 +10094900842296 +10094900688857 +10094900026360 +10094900838087 +10094900769191 +10094900547972 +10094900215075 +10094900899681 +10094900983691 +10094901029436 +10094900546063 +10094900125535 +10094900791643 +10094900837964 +10094900672652 +10094900325414 +10094900763637 +10094900860915 +10094900110105 +10094900948236 +10094900546817 +10094900324402 +10094900541459 +10094900045462 +10094900642206 +10094900671922 +10094900810523 +10094900764790 +10094900320995 +10094900630232 +10094900356486 +10094900346167 +10094900189903 +10094900770333 +10094900474882 +10094900181319 +10094900121368 +10094900604724 +10094900804030 +10094900073658 +10094900830315 +10094900924218 +10094900120727 +10094901039422 +10094900375129 +10094900984016 +10094900956882 +10094900715376 +10094900749702 +10094900023592 +10094900644440 +10094900677869 +10094900915505 +10094900524819 +10094900405652 +10094900352932 +10094900261884 +10094900906582 +10094900801401 +10094900150471 +10094900829694 +10094900892139 +10094900638707 +10094900803109 +10094900822099 +10094900389400 +10094900679034 +10094900585875 +10094900787670 +10094900539150 +10094900957249 +10094900034824 +10094901009161 +10094900724354 +10094900623506 +10094900763035 +10094901028190 +10094900151462 +10094900581922 +10094900557411 +10094900982353 +10094900030489 +10094900234933 +10094900673969 +10094900313199 +10094901010977 +10094900712666 +10094900227940 +10094900483515 +10094900893585 +10094900024017 +10094900976198 +10094900248715 +10094900001505 +10094900950118 +10094900201477 +10094900335818 +10094900316793 +10094900007362 +10094900841450 +10094900447611 +10094900199491 +10094900208707 +10094900204524 +10094900830110 +10094900576843 +10094900569609 +10094900892019 +10094900952704 +10094900742577 +10094900889014 +10094900983819 +10094900456280 +10094900146734 +10094900333611 +10094900836010 +10094900514208 +10094900341888 +10094900980115 +10094900161426 +10094900992926 +10094900661175 +10094900581278 +10094900874983 +10094900015041 +10094900800012 +10094900974466 +10094900042987 +10094900903595 +10094900330458 +10094900342473 +10094900723148 +10094900634799 +10094900909013 +10094900765711 +10094901007559 +10094900444590 +10094900632739 +10094900982767 +10094900980904 +10094900188304 +10094900824009 +10094900061019 +10094900742743 +10094900456903 +10094900761653 +10094900333859 +10094900503591 +10094900765868 +10094900030227 +10094900273033 +10094900770015 +10094900210853 +10094900375550 +10094900976044 +10094900299516 +10094900377610 +10094900492641 +10094900578636 +10094900995169 +10094900320399 +10094900686719 +10094900136987 +10094900519219 +10094900040680 +10094900163755 +10094900064780 +10094900945671 +10094900535354 +10094900048271 +10094900197108 +10094900715552 +10094900179176 +10094900368748 +10094900637841 +10094900722444 +10094900796803 +10094900086262 +10094900141441 +10094900996470 +10094900966732 +10094900151130 +10094900327668 +10094900240115 +10094900964484 +10094900145128 +10094900295801 +10094901013969 +10094900722451 +10094900620331 +10094900119612 +10094900468834 +10094900116412 +10094901032996 +10094900116493 +10094900851283 +10094901034806 +10094900781598 +10094900999866 +10094900629820 +10094901036122 +10094900286792 +10094900107164 +10094900721813 +10094901043088 +10094900809605 +10094900155676 +10094900189050 +10094900870385 +10094900897658 +10094900429411 +10094900849078 +10094900486188 +10094900679576 +10094900480454 +10094900084206 +10094900419572 +10094900531664 +10094900151278 +10094900889064 +10094900779012 +10094900740010 +10094900883824 +10094900602019 +10094900910865 +10094900583556 +10094900165043 +10094900567260 +10094900088132 +10094900752061 +10094900836928 +10094900422855 +10094900503840 +10094900854499 +10094900050538 +10094900500691 +10094900911792 +10094900431257 +10094900790577 +10094900868999 +10094900707002 +10094900512581 +10094900867851 +10094900540310 +10094900550603 +10094900895803 +10094900171822 +10094900882159 +10094900478935 +10094900275955 +10094900594818 +10094900677866 +10094900379852 +10094900561370 +10094900697132 +10094900904601 +10094900424381 +10094900902125 +10094900478294 +10094900285590 +10094900108061 +10094900331760 +10094900651329 +10094900930286 +10094900208619 +10094900076829 +10094900180632 +10094900386203 +10094900508829 +10094900777009 +10094900635733 +10094900139823 +10094900282213 +10094900559856 +10094900738133 +10094900367449 +10094900134441 +10094900449816 +10094900124491 +10094900051352 +10094900955744 +10094900487087 +10094900162730 +10094900107617 +10094900581476 +10094900912345 +10094900267104 +10094900690184 +10094900077347 +10094900330576 +10094900939933 +10094900031510 +10094900897679 +10094900881461 +10094900023726 +10094900042537 +10094900837287 +10094900610161 +10094900632217 +10094900177850 +10094900884792 +10094900016585 +10094900293763 +10094900521672 +10094900400179 +10094900459592 +10094900067103 +10094900983345 +10094900193756 +10094900926251 +10094901048425 +10094900207673 +10094900896246 +10094900230387 +10094900687412 +10094900328909 +10094900213549 +10094900219446 +10094900674316 +10094900911343 +10094900133759 +10094900546930 +10094900591280 +10094900789815 +10094900543783 +10094900365794 +10094900934497 +10094900247102 +10094900357425 +10094900690342 +10094900248422 +10094900003223 +10094900041609 +10094900533292 +10094900203001 +10094901029498 +10094900394612 +10094900833486 +10094900864500 +10094900687130 +10094900623314 +10094900826870 +10094900150072 +10094900425848 +10094900803622 +10094900448807 +10094900997646 +10094900863059 +10094900374862 +10094900040620 +10094900788858 +10094900669427 +10094900641469 +10094900987350 +10094900000974 +10094900416469 +10094900231241 +10094900361578 +10094900818413 +10094900669120 +10094900831561 +10094900567870 +10094900930922 +10094900797011 +10094900888025 +10094900553017 +10094900701637 +10094900430217 +10094900584932 +10094900696567 +10094900160252 +10094900442276 +10094900873034 +10094900332299 +10094900676864 +10094900868874 +10094900743785 +10094900400185 +10094900054813 +10094900855468 +10094900651480 +10094900432950 +10094900620146 +10094900659943 +10094900417836 +10094900055349 +10094900500444 +10094900496753 +10094900477155 +10094900176755 +10094900007864 +10094900097381 +10094900345871 +10094900697008 +10094900432884 +10094900986911 +10094900243721 +10094900262749 +10094901021896 +10094900073179 +10094900947404 +10094900167687 +10094900588067 +10094900624484 +10094900011299 +10094901027137 +10094900561474 +10094900036044 +10094900243775 +10094900565809 +10094900074775 +10094900427181 +10094900940775 +10094900881392 +10094900798226 +10094900300509 +10094900342258 +10094900047834 +10094900271901 +10094900730045 +10094900989140 +10094900942578 +10094900728627 +10094900554594 +10094900162382 +10094900965743 +10094900466973 +10094900781475 +10094901007464 +10094900402711 +10094900100257 +10094900393306 +10094900886847 +10094900768665 +10094900821570 +10094900985834 +10094900208027 +10094900844591 +10094900875051 +10094900637353 +10094900413736 +10094900602246 +10094900451455 +10094900468519 +10094900969419 +10094900672716 +10094900206796 +10094900145144 +10094900871613 +10094900630812 +10094900477916 +10094900224472 +10094900795609 +10094900593504 +10094900456866 +10094900351845 +10094900112569 +10094900381953 +10094900374170 +10094900657329 +10094900315105 +10094900427847 +10094900595020 +10094900966000 +10094900931074 +10094900649797 +10094900142206 +10094900543276 +10094900811038 +10094900513955 +10094900622975 +10094900556879 +10094900530108 +10094900870901 +10094900998182 +10094900931809 +10094900574622 +10094900111052 +10094900170001 +10094900110123 +10094900982936 +10094900078497 +10094900623123 +10094901003781 +10094900530565 +10094900978213 +10094900627647 +10094900900881 +10094900714464 +10094900384178 +10094901039999 +10094900830479 +10094900338560 +10094900894700 +10094900626349 +10094900611914 +10094900384460 +10094900361516 +10094900067625 +10094900853454 +10094900270827 +10094900544409 +10094900885523 +10094900141110 +10094900175571 +10094901018090 +10094900313325 +10094900407739 +10094900976282 +10094900027798 +10094901012326 +10094900978921 +10094900232793 +10094900103963 +10094900382609 +10094901042782 +10094900423495 +10094900427557 +10094900366536 +10094900735817 +10094900983156 +10094901012408 +10094900660167 +10094900745604 +10094900012913 +10094900138144 +10094900791970 +10094900174183 +10094900724068 +10094900259228 +10094900405770 +10094900673274 +10094900692025 +10094900303655 +10094900933772 +10094900324746 +10094900301442 +10094900740393 +10094900515221 +10094900411903 +10094900526508 +10094900721658 +10094900303744 +10094900186185 +10094901039816 +10094901008767 +10094901045910 +10094900495643 +10094900114247 +10094901037202 +10094900650637 +10094900633768 +10094900064586 +10094900661641 +10094900032503 +10094900560360 +10094900675384 +10094901048157 +10094900457088 +10094900166962 +10094900366663 +10094900979471 +10094900789234 +10094900119679 +10094900251210 +10094900193244 +10094900898843 +10094901002431 +10094900515124 +10094900610934 +10094900072516 +10094900062921 +10094900998929 +10094900525304 +10094900623428 +10094900811457 +10094900192811 +10094901041772 +10094900342873 +10094900513511 +10094900662855 +10094900557506 +10094900904259 +10094900503771 +10094900779403 +10094900294084 +10094900280491 +10094900561673 +10094900807247 +10094900818627 +10094900956409 +10094900714626 +10094900590568 +10094900887533 +10094900352435 +10094900395086 +10094900931330 +10094900070802 +10094900702645 +10094901009973 +10094900279921 +10094900865696 +10094901041670 +10094901027913 +10094900786902 +10094900619851 +10094900465322 +10094900049151 +10094900842641 +10094900525920 +10094900910326 +10094900979042 +10094900379754 +10094900586349 +10094900622268 +10094901025716 +10094900103436 +10094900337056 +10094900730082 +10094900174376 +10094900345463 +10094900599734 +10094900251874 +10094900203035 +10094900786444 +10094900962961 +10094900012613 +10094900017059 +10094900315238 +10094900858342 +10094900053839 +10094900249052 +10094900229221 +10094900101884 +10094900652362 +10094900850331 +10094900060959 +10094900507856 +10094900913209 +10094900218446 +10094900176816 +10094900043997 +10094900792833 +10094900708220 +10094900122008 +10094900463856 +10094901035258 +10094900383520 +10094900410005 +10094900303865 +10094901039957 +10094900566986 +10094901028644 +10094900408776 +10094900024403 +10094900436969 +10094900277774 +10094901019021 +10094900430531 +10094900330011 +10094901031032 +10094900315058 +10094900255802 +10094900167731 +10094900291018 +10094900371808 +10094900309657 +10094900063296 +10094900380640 +10094900406224 +10094900420093 +10094900476914 +10094900502603 +10094900613609 +10094900406007 +10094901026695 +10094900948315 +10094900453555 +10094900134221 +10094900232467 +10094900602343 +10094900691065 +10094900455385 +10094900049545 +10094900737039 +10094900491045 +10094900922929 +10094900175923 +10094900204695 +10094900878791 +10094900012149 +10094900742303 +10094900805660 +10094900149973 +10094900823227 +10094900137504 +10094900411671 +10094900526827 +10094900499246 +10094900783589 +10094901034848 +10094900076846 +10094900671917 +10094900878601 +10094900412180 +10094900750484 +10094900013806 +10094900378386 +10094900909341 +10094900793682 +10094900113597 +10094900938217 +10094900460253 +10094901033549 +10094900658798 +10094900867236 +10094900295767 +10094900391046 +10094900836547 +10094900481630 +10094900499760 +10094900201228 +10094900133402 +10094900235414 +10094900166813 +10094900106771 +10094900368933 +10094900812336 +10094900852789 +10094900410214 +10094900626526 +10094900454102 +10094900382693 +10094900836987 +10094900614739 +10094900347658 +10094900960944 +10094900408583 +10094900433737 +10094900007161 +10094900009993 +10094900118469 +10094900203751 +10094900653910 +10094900029480 +10094900841370 +10094900163560 +10094900858062 +10094900983221 +10094900194459 +10094900311325 +10094900164752 +10094900981541 +10094900891108 +10094900861131 +10094900114499 +10094900596077 +10094900104612 +10094900114423 +10094900519960 +10094901019723 +10094900263803 +10094900163252 +10094900598265 +10094900098981 +10094900693494 +10094900990887 +10094900505565 +10094900009567 +10094900384768 +10094900077886 +10094900265695 +10094900346639 +10094900363130 +10094900996237 +10094900714301 +10094900019762 +10094900765415 +10094900165583 +10094900200223 +10094900489224 +10094900530361 +10094900518903 +10094900550308 +10094900147573 +10094900107083 +10094900896512 +10094900073544 +10094900465131 +10094900118103 +10094900962566 +10094900592351 +10094900049242 +10094900876385 +10094900267127 +10094900305306 +10094900779441 +10094901036358 +10094900208972 +10094900811875 +10094900537894 +10094900054517 +10094900577454 +10094900706565 +10094900333783 +10094900060207 +10094900584109 +10094900677303 +10094900946089 +10094901006937 +10094900300052 +10094900194004 +10094900001266 +10094900870030 +10094900777992 +10094900272567 +10094900491154 +10094900979113 +10094900884031 +10094900327393 +10094900668380 +10094900809754 +10094900566608 +10094900524755 +10094900354801 +10094900498279 +10094900772066 +10094901040391 +10094900425721 +10094900024366 +10094900232160 +10094900823523 +10094900344120 +10094900154380 +10094900833337 +10094900145517 +10094900088581 +10094900784391 +10094900819818 +10094900211908 +10094900473876 +10094900026902 +10094900560170 +10094900341572 +10094900259491 +10094900896515 +10094900204262 +10094900560854 +10094900857361 +10094900371776 +10094900070390 +10094900403134 +10094900640522 +10094901048572 +10094900179770 +10094900369049 +10094900096830 +10094900620131 +10094900913170 +10094900392734 +10094900240716 +10094900426272 +10094900612745 +10094900424819 +10094900241640 +10094900328012 +10094900810418 +10094900925780 +10094900901728 +10094900938792 +10094900844722 +10094900808694 +10094900982104 +10094900450072 +10094900704499 +10094900789589 +10094900654268 +10094900896123 +10094900995635 +10094900755751 +10094900661856 +10094900698296 +10094900661332 +10094900394241 +10094900989645 +10094900555222 +10094900018045 +10094900022323 +10094900616657 +10094900545337 +10094900101181 +10094900839246 +10094900632191 +10094900470666 +10094900233925 +10094900174536 +10094900306150 +10094900329801 +10094900164878 +10094901014661 +10094900387268 +10094900581854 +10094900045386 +10094900960682 +10094900011877 +10094901009168 +10094900634305 +10094901020793 +10094900925958 +10094900918687 +10094900802676 +10094900496770 +10094900066288 +10094900969813 +10094901034173 +10094900473629 +10094900464774 +10094900262984 +10094900568757 +10094900827857 +10094900939404 +10094900113818 +10094900563639 +10094900456730 +10094900521974 +10094900476674 +10094900781173 +10094900636491 +10094900912787 +10094900341727 +10094900860398 +10094900287714 +10094900460455 +10094900692240 +10094900974591 +10094900686495 +10094900463179 +10094900576012 +10094900203274 +10094900668811 +10094900800341 +10094900999998 +10094900018565 +10094900696218 +10094900648340 +10094900595748 +10094901045193 +10094900136914 +10094900941501 +10094900621698 +10094900578464 +10094900983688 +10094900095518 +10094900334645 +10094900267845 +10094900818895 +10094900019646 +10094900595414 +10094900458317 +10094900853294 +10094900068139 +10094900447927 +10094900108008 +10094900016210 +10094900823139 +10094900046009 +10094900118800 +10094900923804 +10094900501623 +10094900256938 +10094900053350 +10094900322785 +10094900285671 +10094900029624 +10094900690355 +10094900470315 +10094900575325 +10094900446368 +10094900969763 +10094900545874 +10094900143876 +10094900624145 +10094900494094 +10094900278977 +10094900044479 +10094900342957 +10094900025636 +10094900489661 +10094901039780 +10094900963284 +10094900022975 +10094900479389 +10094900613046 +10094900277178 +10094900333115 +10094900525457 +10094900330010 +10094900735888 +10094900664308 +10094900761004 +10094900068356 +10094900483717 +10094900054886 +10094900540666 +10094900048782 +10094901024982 +10094900566170 +10094900354638 +10094900580526 +10094900696212 +10094900605536 +10094900564158 +10094900626915 +10094900356890 +10094900228282 +10094900418512 +10094900462062 +10094900983430 +10094900546871 +10094900566240 +10094900845796 +10094900542745 +10094900594323 +10094900284257 +10094900153846 +10094900924260 +10094900274972 +10094901008402 +10094900817165 +10094900533195 +10094900428949 +10094900743464 +10094900853384 +10094900131547 +10094900843029 +10094900446949 +10094900715432 +10094900938642 +10094900235523 +10094900819944 +10094900292360 +10094901011312 +10094900731058 +10094900032387 +10094900863597 +10094900328216 +10094900714354 +10094900785725 +10094900923686 +10094900298543 +10094900275704 +10094900074203 +10094900175804 +10094900365147 +10094900313746 +10094900544400 +10094900335973 +10094900044159 +10094900935417 +10094900570122 +10094900812377 +10094900688504 +10094900830602 +10094900554824 +10094900351046 +10094900034954 +10094900529333 +10094900191609 +10094900509837 +10094900601759 +10094900746553 +10094900338650 +10094900411906 +10094900840797 +10094900910909 +10094900208551 +10094900196432 +10094900035569 +10094900564402 +10094900514372 +10094900392175 +10094900347475 +10094900773743 +10094900314640 +10094900042270 +10094900578795 +10094900334529 +10094901028017 +10094900911627 +10094900140968 +10094900841814 +10094900090457 +10094900930143 +10094900148030 +10094900550730 +10094900030346 +10094900767664 +10094900667745 +10094900415661 +10094900677113 +10094900443907 +10094900491655 +10094900967143 +10094900790917 +10094900916579 +10094900993312 +10094900354748 +10094900429847 +10094900186850 +10094900749947 +10094900105042 +10094900552645 +10094900723909 +10094901048078 +10094900406199 +10094900137299 +10094900050166 +10094900425859 +10094900175989 +10094900967769 +10094900506757 +10094900135617 +10094900435432 +10094900396909 +10094900581242 +10094900280472 +10094900078963 +10094900989640 +10094900375705 +10094900258610 +10094900044006 +10094900404408 +10094900992669 +10094900393955 +10094900228314 +10094900325156 +10094900645814 +10094900284006 +10094900340715 +10094900183350 +10094900414302 +10094900747459 +10094900150275 +10094900705190 +10094900912897 +10094900698003 +10094900210106 +10094900450650 +10094900112875 +10094900112028 +10094900773495 +10094900002230 +10094900917465 +10094900820869 +10094900285536 +10094900642029 +10094900443172 +10094900279627 +10094900367100 +10094900184523 +10094900142299 +10094900928987 +10094900267282 +10094900621051 +10094900338654 +10094900240835 +10094900980740 +10094900338028 +10094900461868 +10094900862553 +10094900654621 +10094900892702 +10094900527810 +10094900617720 +10094900849764 +10094900977820 +10094900349074 +10094900165459 +10094900394116 +10094900381865 +10094900874343 +10094900346434 +10094900089511 +10094901012758 +10094900051485 +10094900210000 +10094900049451 +10094900695721 +10094900593072 +10094900305962 +10094900277328 +10094900691403 +10094900617307 +10094900080204 +10094900580868 +10094900509780 +10094900385578 +10094900312246 +10094900310811 +10094900555884 +10094900314129 +10094900769974 +10094900341935 +10094900719600 +10094900656321 +10094900304498 +10094900314831 +10094900965834 +10094900725309 +10094900344574 +10094900462699 +10094900346353 +10094900302019 +10094900538391 +10094900724063 +10094900817151 +10094900891778 +10094900204047 +10094900915381 +10094901025282 +10094900083109 +10094900570217 +10094900050891 +10094900609713 +10094900123369 +10094900019760 +10094900269097 +10094900656747 +10094900641486 +10094900098278 +10094900135955 +10094900397908 +10094900299492 +10094900957488 +10094900724758 +10094900696282 +10094900901633 +10094900973166 +10094900479077 +10094900844801 +10094900530716 +10094900058150 +10094900442713 +10094901011761 +10094900264775 +10094900750761 +10094900747869 +10094901023742 +10094900127977 +10094900303882 +10094900477421 +10094900493420 +10094900317122 +10094900811047 +10094900716472 +10094900035409 +10094900115519 +10094900772608 +10094900667465 +10094900678532 +10094900538130 +10094900549330 +10094900195655 +10094900836846 +10094900014502 +10094900022312 +10094900896395 +10094900714281 +10094900353273 +10094900107945 +10094900144955 +10094900174899 +10094900487309 +10094900237734 +10094900548576 +10094900003744 +10094900155775 +10094900272895 +10094900910996 +10094900934858 +10094900567301 +10094901032294 +10094900742089 +10094900160202 +10094900048694 +10094900230107 +10094900469864 +10094900958691 +10094900226889 +10094900779822 +10094900758854 +10094900570406 +10094900379775 +10094900524604 +10094900952315 +10094900035039 +10094900734078 +10094900621190 +10094900978596 +10094900610938 +10094900865185 +10094900642186 +10094900673021 +10094900401531 +10094900320753 +10094900622664 +10094900149607 +10094900639129 +10094900377951 +10094900537743 +10094900474981 +10094900216141 +10094900573751 +10094900718049 +10094900363565 +10094900782332 +10094901043945 +10094900483707 +10094900829959 +10094900839936 +10094900874208 +10094900685674 +10094900652319 +10094900040985 +10094900972540 +10094901023070 +10094900337571 +10094900510685 +10094900357937 +10094900203385 +10094900617838 +10094900599580 +10094900670761 +10094900326713 +10094900785224 +10094900879561 +10094900795645 +10094900975116 +10094900306910 +10094900944247 +10094900714556 +10094900691197 +10094900117939 +10094901031234 +10094900009716 +10094900755002 +10094900487515 +10094901013324 +10094900954504 +10094900384106 +10094900765777 +10094900654252 +10094900590729 +10094900283740 +10094900322394 +10094900403907 +10094900755513 +10094900825602 +10094900566200 +10094900590947 +10094900304751 +10094900603454 +10094900705089 +10094900501785 +10094900460492 +10094900795430 +10094900776216 +10094900442450 +10094900081270 +10094900020400 +10094900212624 +10094901034669 +10094900262805 +10094900619450 +10094900025809 +10094900222601 +10094900310238 +10094900899940 +10094900086989 +10094901040575 +10094900681196 +10094900357289 +10094900200151 +10094900333945 +10094900735688 +10094900571731 +10094900206807 +10094900842286 +10094900947661 +10094900428951 +10094900422027 +10094900219801 +10094900736088 +10094900553768 +10094900222974 +10094900344757 +10094900257724 +10094900005898 +10094900278962 +10094900399981 +10094900903482 +10094900690037 +10094900455024 +10094900677351 +10094900360863 +10094900670889 +10094900952250 +10094900882043 +10094900502012 +10094900974571 +10094901027072 +10094900867905 +10094900187922 +10094900226859 +10094900284002 +10094900300512 +10094900197329 +10094900692616 +10094900768262 +10094900075078 +10094900193833 +10094900402302 +10094900485264 +10094900090840 +10094900927658 +10094900545803 +10094900734851 +10094900224152 +10094900895942 +10094900142937 +10094900437996 +10094900308165 +10094900679687 +10094900564315 +10094900854015 +10094900527381 +10094900631475 +10094900992209 +10094900007699 +10094900285214 +10094900922665 +10094900762466 +10094900053921 +10094900169422 +10094900819337 +10094900930632 +10094900675946 +10094900299006 +10094900211747 +10094900365272 +10094900798607 +10094901017739 +10094900107838 +10094900629526 +10094900880478 +10094900067381 +10094900931711 +10094900550078 +10094900385834 +10094900877430 +10094900057443 +10094900910035 +10094900728310 +10094900908600 +10094900040726 +10094900937907 +10094900184262 +10094900409525 +10094900990430 +10094900104370 +10094900913732 +10094900092505 +10094900856904 +10094900186010 +10094900654406 +10094900527026 +10094900873690 +10094900458444 +10094900655009 +10094900647478 +10094900789129 +10094900096172 +10094900374318 +10094901011041 +10094900653374 +10094900112299 +10094900407456 +10094900943195 +10094900262917 +10094900382856 +10094900291782 +10094900403842 +10094900674275 +10094900938350 +10094900952646 +10094900230884 +10094900959358 +10094900487442 +10094900608084 +10094900470628 +10094900078551 +10094900040547 +10094900980451 +10094900933890 +10094900267309 +10094900216720 +10094900862480 +10094900215032 +10094900544106 +10094900980692 +10094900190675 +10094900588532 +10094900389898 +10094900250744 +10094901025552 +10094900320129 +10094900162789 +10094900285937 +10094900779648 +10094900979151 +10094900469488 +10094901043822 +10094900444183 +10094900617136 +10094900928853 +10094900143288 +10094901009756 +10094900322574 +10094900034953 +10094900672882 +10094900483002 +10094900992856 +10094900295875 +10094900196836 +10094900747460 +10094900484922 +10094900588565 +10094900208614 +10094900253869 +10094900174587 +10094900321205 +10094900194657 +10094900423140 +10094900078205 +10094900205218 +10094900234131 +10094900580469 +10094900094110 +10094900411286 +10094900917278 +10094900724973 +10094900598049 +10094900270795 +10094900159611 +10094900378399 +10094900202958 +10094900075719 +10094900883950 +10094900946211 +10094900166161 +10094900558325 +10094900442759 +10094900139715 +10094900948513 +10094900470767 +10094900750525 +10094900466856 +10094900495357 +10094900661155 +10094900289535 +10094900571268 +10094900130278 +10094900219019 +10094900077837 +10094900834724 +10094901035882 +10094900921951 +10094900590133 +10094900121763 +10094900301956 +10094900951118 +10094900557034 +10094900918406 +10094900778757 +10094900079312 +10094900558582 +10094900120315 +10094900323854 +10094900095280 +10094900970912 +10094900315254 +10094900081302 +10094900021789 +10094900415644 +10094900824834 +10094900789639 +10094900658640 +10094900448498 +10094900597970 +10094900104321 +10094900369098 +10094900053868 +10094900491081 +10094900592357 +10094900862364 +10094900878544 +10094900439407 +10094900826876 +10094900225651 +10094901043554 +10094900959699 +10094900607634 +10094900159772 +10094900062649 +10094900893346 +10094900285304 +10094900854356 +10094900397151 +10094900522557 +10094900319837 +10094900550132 +10094900814461 +10094900583107 +10094900528662 +10094900656513 +10094900689537 +10094900561969 +10094900724050 +10094900609346 +10094900119972 +10094900968120 +10094900044123 +10094900525578 +10094900314963 +10094900229150 +10094900977658 +10094900767744 +10094900216594 +10094900893081 +10094900345420 +10094900459821 +10094900390988 +10094900231835 +10094900458719 +10094900651544 +10094900431862 +10094901045778 +10094900658933 +10094900954436 +10094900720361 +10094900057973 +10094900173353 +10094900634294 +10094900923157 +10094900153670 +10094900169098 +10094900357406 +10094900877188 +10094900925147 +10094900257969 +10094900244212 +10094900009015 +10094900015697 +10094900179481 +10094900309189 +10094900090442 +10094900402515 +10094900792853 +10094900649855 +10094900055567 +10094900702004 +10094900291351 +10094900924970 +10094900654010 +10094901020301 +10094900370429 +10094900065102 +10094900256685 +10094900047925 +10094900474041 +10094900899101 +10094900491628 +10094900800791 +10094900292473 +10094900580602 +10094900915199 +10094900258844 +10094900871162 +10094901026386 +10094900519965 +10094900290022 +10094900416035 +10094900652721 +10094900628805 +10094900237346 +10094900323348 +10094900552482 +10094900765130 +10094900445915 +10094900212191 +10094900414867 +10094900051956 +10094900487468 +10094900577741 +10094900732879 +10094900386104 +10094900642456 +10094900722344 +10094900317774 +10094900831454 +10094900797753 +10094900245097 +10094900582026 +10094900800746 +10094900441575 +10094900252960 +10094900264854 +10094900180670 +10094900198532 +10094900299872 +10094900355467 +10094900141387 +10094900062487 +10094900738757 +10094900880246 +10094900482979 +10094900352317 +10094901035922 +10094900817345 +10094900816146 +10094900537828 +10094900618095 +10094900518527 +10094900737272 +10094900458010 +10094900793774 +10094900726968 +10094900050760 +10094900145915 +10094900963776 +10094900397800 +10094900258051 +10094900158007 +10094900407852 +10094900236476 +10094900290739 +10094900047604 +10094900529702 +10094900204511 +10094900527468 +10094900762349 +10094900091044 +10094900236591 +10094900765346 +10094900237202 +10094900826028 +10094900071249 +10094900078736 +10094900157313 +10094900799169 +10094900702905 +10094900279916 +10094900206437 +10094900441540 +10094900203814 +10094901043530 +10094900060600 +10094900643874 +10094900751022 +10094900573496 +10094901026976 +10094900471526 +10094900980712 +10094900223390 +10094900023983 +10094900060902 +10094900589956 +10094900952679 +10094900118152 +10094900270172 +10094900112140 +10094900539152 +10094900127028 +10094900976333 +10094900974714 +10094900056804 +10094900290798 +10094900140592 +10094900251984 +10094900807622 +10094900909736 +10094900512841 +10094900426420 +10094900074580 +10094900837990 +10094900384236 +10094900866812 +10094900252236 +10094900155382 +10094900702260 +10094900469574 +10094900765072 +10094900006152 +10094900820625 +10094900883065 +10094901021832 +10094900007888 +10094901024110 +10094900924063 +10094900695387 +10094900869098 +10094900007299 +10094900482954 +10094900499942 +10094900862820 +10094900978177 +10094900106694 +10094900930315 +10094900248537 +10094900451976 +10094900503014 +10094900706258 +10094900451454 +10094901019103 +10094900749556 +10094900330735 +10094900508165 +10094900563531 +10094900260264 +10094900955572 +10094900137265 +10094900309229 +10094900438711 +10094900148898 +10094900444351 +10094900188434 +10094900957384 +10094900768933 +10094900460225 +10094900094354 +10094900145844 +10094900360055 +10094900756018 +10094900137666 +10094900060689 +10094900614619 +10094900691494 +10094900193955 +10094900410033 +10094900401853 +10094900742889 +10094900457342 +10094900821734 +10094900114803 +10094900083484 +10094900463053 +10094900849497 +10094900007607 +10094900287425 +10094900295337 +10094900377247 +10094900173696 +10094900906307 +10094900565444 +10094900881618 +10094900863756 +10094900618138 +10094901034654 +10094900970698 +10094900806174 +10094900653030 +10094900203906 +10094900998315 +10094900441041 +10094900952573 +10094900526088 +10094900180566 +10094900689988 +10094900737742 +10095000653451 +10095000504970 +10095000252650 +10095000597694 +10095000009293 +10095000026250 +10095000391185 +10095100334376 +10095100909726 +10095300954327 +10095300980624 +10095300654295 +10095300040021 +10095300166495 +10095300169549 +10095300238284 +10095301005869 +10095300383308 +10095300127627 +10095300910749 +10095400531252 +10095400625379 +10095400132920 +10095400114288 +10095400503739 +10095500778345 +10095500808667 +10095500958966 +10095500971963 +10095700858321 +10095800024734 +10095900877865 +10096100963823 +10096100604049 +10096200346634 +10096200311759 +10096200094260 +10096200938412 +10096200238221 +10096200319462 +10096200574278 +10096200465183 +10096200149488 +10096200965008 +10096200179215 +10096200540326 +10096200584365 +10096500320912 +10096500370305 +10096900424187 +10097100980743 +10097200523438 \ No newline at end of file diff --git a/src/main/resources/user.txt b/src/main/resources/user.txt index 37ccdeb..5e65721 100644 --- a/src/main/resources/user.txt +++ b/src/main/resources/user.txt @@ -1,3 +1 @@ -215806 -212179 -72007 \ No newline at end of file +216131 \ No newline at end of file