util_test.go 17 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081
  1. package util
  2. import (
  3. "fmt"
  4. "testing"
  5. "time"
  6. "github.com/stretchr/testify/assert"
  7. )
  8. func TestConvertParseLocalUnix(t *testing.T) {
  9. type args struct {
  10. unix int64
  11. }
  12. tests := []struct {
  13. Name string
  14. Args args
  15. }{
  16. {
  17. Name: "08:00:00",
  18. Args: args{
  19. unix: 1727049600,
  20. },
  21. },
  22. {
  23. Name: "09:00:00",
  24. Args: args{
  25. unix: 1727053200,
  26. },
  27. },
  28. }
  29. for _, tt := range tests {
  30. t.Run(tt.Name, func(t *testing.T) {
  31. got, err := ConvertParseLocalUnix(tt.Name)
  32. assert.Nil(t, err)
  33. assert.Equal(t, tt.Args.unix, got)
  34. })
  35. }
  36. }
  37. func TestGetLastDayOfMonth(t *testing.T) {
  38. tests := []struct {
  39. month string
  40. got string
  41. }{
  42. {
  43. month: "2022-02",
  44. got: "2022-02-28",
  45. },
  46. {
  47. month: "2023-02",
  48. got: "2023-02-28",
  49. },
  50. {
  51. month: "2024-02",
  52. got: "2024-02-29",
  53. },
  54. {
  55. month: "2024-10",
  56. got: "2024-10-31",
  57. }, {
  58. month: "2024-09",
  59. got: "2024-09-30",
  60. },
  61. }
  62. for _, tt := range tests {
  63. t.Run(tt.month, func(t *testing.T) {
  64. got, err := GetLastDayOfMonth(tt.month)
  65. assert.Nil(t, err)
  66. assert.Equal(t, tt.got, got)
  67. })
  68. }
  69. }
  70. func TestGetMonthsInRange(t *testing.T) {
  71. tests := []struct {
  72. startMonth string
  73. endMonth string
  74. got []string
  75. }{
  76. {
  77. startMonth: "2023-01",
  78. endMonth: "2023-03",
  79. got: []string{
  80. "2023-01",
  81. "2023-02",
  82. "2023-03",
  83. },
  84. },
  85. {
  86. startMonth: "2023-01",
  87. endMonth: "2023-12",
  88. got: []string{
  89. "2023-01",
  90. "2023-02",
  91. "2023-03",
  92. "2023-04",
  93. "2023-05",
  94. "2023-06",
  95. "2023-07",
  96. "2023-08",
  97. "2023-09",
  98. "2023-10",
  99. "2023-11",
  100. "2023-12",
  101. },
  102. },
  103. {
  104. startMonth: "2023-01",
  105. endMonth: "2023-01",
  106. got: []string{
  107. "2023-01",
  108. },
  109. },
  110. {
  111. startMonth: "2023-01",
  112. endMonth: "2023-01",
  113. got: []string{
  114. "2023-01",
  115. },
  116. },
  117. }
  118. for _, tt := range tests {
  119. t.Run(tt.startMonth, func(t *testing.T) {
  120. got, err := GetMonthsInRange(tt.startMonth, tt.endMonth)
  121. assert.Nil(t, err)
  122. assert.Equal(t, tt.got, got)
  123. })
  124. }
  125. }
  126. func TestRoundToTwoDecimals(t *testing.T) {
  127. tests := []struct {
  128. exp float64
  129. got float64
  130. }{
  131. {
  132. exp: 123.456,
  133. got: 123.46,
  134. },
  135. {
  136. exp: 123.455,
  137. got: 123.46,
  138. },
  139. {
  140. exp: 123.444,
  141. got: 123.44,
  142. },
  143. {
  144. exp: 123.4551,
  145. got: 123.46,
  146. },
  147. {
  148. exp: 123.4449,
  149. got: 123.44,
  150. },
  151. {
  152. exp: 0,
  153. got: 0,
  154. },
  155. {
  156. exp: 0.2,
  157. got: 0.2,
  158. },
  159. }
  160. for _, tt := range tests {
  161. t.Run("TestRoundToTwoDecimals", func(t *testing.T) {
  162. got := RoundToTwoDecimals(tt.exp)
  163. assert.Equal(t, tt.got, got)
  164. })
  165. }
  166. }
  167. func TestGet21DayPeriods(t *testing.T) {
  168. tests := []struct {
  169. startDay string
  170. endDay string
  171. got struct {
  172. DateRange [][]string
  173. Day int32
  174. MiddleDayString []string
  175. }
  176. }{
  177. {
  178. startDay: "2023-01-01",
  179. endDay: "2023-01-02",
  180. got: struct {
  181. DateRange [][]string
  182. Day int32
  183. MiddleDayString []string
  184. }{
  185. DateRange: [][]string{
  186. {"2022-12-13", "2023-01-02"},
  187. },
  188. Day: 11,
  189. MiddleDayString: []string{"2022-12-23"},
  190. },
  191. },
  192. {
  193. startDay: "2024-10-23",
  194. endDay: "2024-10-24",
  195. got: struct {
  196. DateRange [][]string
  197. Day int32
  198. MiddleDayString []string
  199. }{
  200. DateRange: [][]string{
  201. {"2024-10-04", "2024-10-24"},
  202. },
  203. Day: 11,
  204. MiddleDayString: []string{"2024-10-14"},
  205. },
  206. },
  207. {
  208. startDay: "2024-06-22",
  209. endDay: "2024-10-24",
  210. got: struct {
  211. DateRange [][]string
  212. Day int32
  213. MiddleDayString []string
  214. }{
  215. DateRange: [][]string{
  216. {"2024-06-21", "2024-07-11"},
  217. {"2024-07-12", "2024-08-01"},
  218. {"2024-08-02", "2024-08-22"},
  219. {"2024-08-23", "2024-09-12"},
  220. {"2024-09-13", "2024-10-03"},
  221. {"2024-10-04", "2024-10-24"},
  222. }, Day: 11,
  223. MiddleDayString: []string{"2024-07-01", "2024-07-22", "2024-08-12", "2024-09-02", "2024-09-23", "2024-10-14"},
  224. },
  225. },
  226. }
  227. for _, tt := range tests {
  228. t.Run(tt.startDay, func(t *testing.T) {
  229. got, err := Get21DayPeriods(tt.startDay, tt.endDay)
  230. assert.Nil(t, err)
  231. assert.Equal(t, tt.got.DateRange, got)
  232. for i, v := range tt.got.DateRange {
  233. middleDate, err := GetRangeDayMiddleDay(v, tt.got.Day)
  234. assert.Nil(t, err)
  235. assert.Equal(t, tt.got.MiddleDayString[i], middleDate)
  236. }
  237. })
  238. }
  239. }
  240. func TestGetRangeDayByDays(t *testing.T) {
  241. tests := []struct {
  242. startDay string
  243. endDay string
  244. days int32
  245. got [][]string
  246. }{
  247. {
  248. startDay: "2024-10-23",
  249. endDay: "2024-10-24",
  250. days: 5,
  251. got: [][]string{
  252. {"2024-10-23", "2024-10-24"},
  253. },
  254. },
  255. {
  256. startDay: "2024-10-23",
  257. endDay: "2024-10-24",
  258. days: 1,
  259. got: [][]string{
  260. {"2024-10-23", "2024-10-23"},
  261. {"2024-10-24", "2024-10-24"},
  262. },
  263. },
  264. {
  265. startDay: "2024-10-01",
  266. endDay: "2024-10-31",
  267. days: 7,
  268. got: [][]string{
  269. {"2024-10-01", "2024-10-07"},
  270. {"2024-10-08", "2024-10-14"},
  271. {"2024-10-15", "2024-10-21"},
  272. {"2024-10-22", "2024-10-28"},
  273. {"2024-10-29", "2024-10-31"},
  274. },
  275. },
  276. {
  277. startDay: "2024-10-01",
  278. endDay: "2024-10-31",
  279. days: 5,
  280. got: [][]string{
  281. {"2024-10-01", "2024-10-05"},
  282. {"2024-10-06", "2024-10-10"},
  283. {"2024-10-11", "2024-10-15"},
  284. {"2024-10-16", "2024-10-20"},
  285. {"2024-10-21", "2024-10-25"},
  286. {"2024-10-26", "2024-10-30"},
  287. {"2024-10-31", "2024-10-31"},
  288. },
  289. },
  290. }
  291. for _, tt := range tests {
  292. t.Run(tt.startDay, func(t *testing.T) {
  293. got, err := GetRangeDayByDays(tt.startDay, tt.endDay, tt.days)
  294. assert.Nil(t, err)
  295. assert.Equal(t, tt.got, got)
  296. })
  297. }
  298. }
  299. func TestConfidenceInterval2(t *testing.T) {
  300. tests := []struct {
  301. p float64
  302. total float64
  303. min float64
  304. max float64
  305. }{
  306. {
  307. p: 0.38,
  308. total: 114,
  309. min: 29,
  310. max: 47,
  311. },
  312. {
  313. p: 0.49,
  314. total: 142,
  315. min: 40,
  316. max: 58,
  317. },
  318. {
  319. p: 0.41,
  320. total: 125,
  321. min: 32,
  322. max: 50,
  323. },
  324. {
  325. p: 0,
  326. total: 0,
  327. min: 0,
  328. max: 0,
  329. },
  330. }
  331. for _, tt := range tests {
  332. min, max := ConfidenceInterval2(tt.p, tt.total)
  333. assert.Equal(t, tt.min, min)
  334. assert.Equal(t, tt.max, max)
  335. }
  336. }
  337. func TestRemoveDuplicates(t *testing.T) {
  338. tests := []struct {
  339. actual []string
  340. got []string
  341. }{
  342. {
  343. actual: []string{
  344. "1", "1",
  345. },
  346. got: []string{
  347. "1",
  348. },
  349. },
  350. {
  351. actual: []string{
  352. "1", "1", "2",
  353. },
  354. got: []string{
  355. "1", "2",
  356. },
  357. },
  358. {
  359. actual: []string{
  360. "1",
  361. },
  362. got: []string{
  363. "1",
  364. },
  365. },
  366. {
  367. actual: []string{},
  368. got: []string{},
  369. },
  370. }
  371. for _, tt := range tests {
  372. got := RemoveDuplicates(tt.actual)
  373. assert.Equal(t, tt.got, got)
  374. }
  375. }
  376. func TestDaysBetween(t *testing.T) {
  377. tests := []struct {
  378. actual []int64
  379. got int64
  380. }{
  381. {
  382. actual: []int64{
  383. 1730736000, // 2024-11-05 00:00:00
  384. 1730772000, // 2024-11-05 10:00:00
  385. },
  386. got: 0,
  387. },
  388. {
  389. actual: []int64{
  390. 1730772000, // 2024-11-05 10:00:00
  391. 1730908800, // 2024-11-07 00:00:00
  392. },
  393. got: 2,
  394. },
  395. {
  396. actual: []int64{
  397. 1730908800, // 2024-11-07 00:00:00
  398. 1730772000, // 2024-11-05 10:00:00
  399. },
  400. got: -2,
  401. },
  402. }
  403. for _, v := range tests {
  404. got := DaysBetween(v.actual[0], v.actual[1])
  405. assert.Equal(t, got, v.got)
  406. }
  407. }
  408. func TestGetNeckRingActiveTimer(t *testing.T) {
  409. nowTime := time.Now().Format(Layout)
  410. tests := struct {
  411. frameId []int32
  412. dateTime []string
  413. hours []int32
  414. }{
  415. frameId: []int32{
  416. 1, 2, 3, 4, 5, 6,
  417. 11, 12, 13, 14, 15, 16,
  418. 21, 22, 23, 24, 25, 26,
  419. 31, 32, 33, 34, 35, 36,
  420. 41, 42, 43, 44, 45, 46,
  421. 51, 52, 53, 54, 55, 56,
  422. 61, 62, 63, 64, 65, 66,
  423. 71, 72, 73, 74, 75, 76,
  424. 81, 82, 83, 84, 85, 86,
  425. 91, 92, 93, 94, 95, 96,
  426. 101, 102, 103, 104, 105, 106,
  427. 111, 112, 113, 114, 115, 116,
  428. 8, 18, 28, 38, 48, 58, 68, 78, 88, 98, 108, 118,
  429. },
  430. hours: []int32{
  431. 0, 0, 1, 1, 1, 2,
  432. 2, 2, 3, 3, 3, 4,
  433. 4, 4, 5, 5, 5, 6,
  434. 6, 6, 7, 7, 7, 8,
  435. 8, 8, 9, 9, 9, 10,
  436. 10, 10, 11, 11, 11, 12,
  437. 12, 12, 13, 13, 13, 14,
  438. 14, 14, 15, 15, 15, 16,
  439. 16, 16, 17, 17, 17, 18,
  440. 18, 18, 19, 19, 19, 20,
  441. 20, 20, 21, 21, 21, 22,
  442. 22, 22, 23, 23, 23, 24,
  443. 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 0,
  444. },
  445. dateTime: []string{
  446. fmt.Sprintf("%s 00:20:00", nowTime), fmt.Sprintf("%s 00:40:00", nowTime), fmt.Sprintf("%s 01:00:00", nowTime),
  447. fmt.Sprintf("%s 01:20:00", nowTime), fmt.Sprintf("%s 01:40:00", nowTime), fmt.Sprintf("%s 02:00:00", nowTime),
  448. fmt.Sprintf("%s 02:20:00", nowTime), fmt.Sprintf("%s 02:40:00", nowTime), fmt.Sprintf("%s 03:00:00", nowTime),
  449. fmt.Sprintf("%s 03:20:00", nowTime), fmt.Sprintf("%s 03:40:00", nowTime), fmt.Sprintf("%s 04:00:00", nowTime),
  450. fmt.Sprintf("%s 04:20:00", nowTime), fmt.Sprintf("%s 04:40:00", nowTime), fmt.Sprintf("%s 05:00:00", nowTime),
  451. fmt.Sprintf("%s 05:20:00", nowTime), fmt.Sprintf("%s 05:40:00", nowTime), fmt.Sprintf("%s 06:00:00", nowTime),
  452. fmt.Sprintf("%s 06:20:00", nowTime), fmt.Sprintf("%s 06:40:00", nowTime), fmt.Sprintf("%s 07:00:00", nowTime),
  453. fmt.Sprintf("%s 07:20:00", nowTime), fmt.Sprintf("%s 07:40:00", nowTime), fmt.Sprintf("%s 08:00:00", nowTime),
  454. fmt.Sprintf("%s 08:20:00", nowTime), fmt.Sprintf("%s 08:40:00", nowTime), fmt.Sprintf("%s 09:00:00", nowTime),
  455. fmt.Sprintf("%s 09:20:00", nowTime), fmt.Sprintf("%s 09:40:00", nowTime), fmt.Sprintf("%s 10:00:00", nowTime),
  456. fmt.Sprintf("%s 10:20:00", nowTime), fmt.Sprintf("%s 10:40:00", nowTime), fmt.Sprintf("%s 11:00:00", nowTime),
  457. fmt.Sprintf("%s 11:20:00", nowTime), fmt.Sprintf("%s 11:40:00", nowTime), fmt.Sprintf("%s 12:00:00", nowTime),
  458. fmt.Sprintf("%s 12:20:00", nowTime), fmt.Sprintf("%s 12:40:00", nowTime), fmt.Sprintf("%s 13:00:00", nowTime),
  459. fmt.Sprintf("%s 13:20:00", nowTime), fmt.Sprintf("%s 13:40:00", nowTime), fmt.Sprintf("%s 14:00:00", nowTime),
  460. fmt.Sprintf("%s 14:20:00", nowTime), fmt.Sprintf("%s 14:40:00", nowTime), fmt.Sprintf("%s 15:00:00", nowTime),
  461. fmt.Sprintf("%s 15:20:00", nowTime), fmt.Sprintf("%s 15:40:00", nowTime), fmt.Sprintf("%s 16:00:00", nowTime),
  462. fmt.Sprintf("%s 16:20:00", nowTime), fmt.Sprintf("%s 16:40:00", nowTime), fmt.Sprintf("%s 17:00:00", nowTime),
  463. fmt.Sprintf("%s 17:20:00", nowTime), fmt.Sprintf("%s 17:40:00", nowTime), fmt.Sprintf("%s 18:00:00", nowTime),
  464. fmt.Sprintf("%s 18:20:00", nowTime), fmt.Sprintf("%s 18:40:00", nowTime), fmt.Sprintf("%s 19:00:00", nowTime),
  465. fmt.Sprintf("%s 19:20:00", nowTime), fmt.Sprintf("%s 19:40:00", nowTime), fmt.Sprintf("%s 20:00:00", nowTime),
  466. fmt.Sprintf("%s 20:20:00", nowTime), fmt.Sprintf("%s 20:40:00", nowTime), fmt.Sprintf("%s 21:00:00", nowTime),
  467. fmt.Sprintf("%s 21:20:00", nowTime), fmt.Sprintf("%s 21:40:00", nowTime), fmt.Sprintf("%s 22:00:00", nowTime),
  468. fmt.Sprintf("%s 22:20:00", nowTime), fmt.Sprintf("%s 22:40:00", nowTime), fmt.Sprintf("%s 23:00:00", nowTime),
  469. fmt.Sprintf("%s 23:20:00", nowTime), fmt.Sprintf("%s 23:40:00", nowTime), fmt.Sprintf("%s 24:00:00", nowTime),
  470. fmt.Sprintf("%s 02:00:00", nowTime), fmt.Sprintf("%s 04:00:00", nowTime), fmt.Sprintf("%s 06:00:00", nowTime),
  471. fmt.Sprintf("%s 08:00:00", nowTime), fmt.Sprintf("%s 10:00:00", nowTime), fmt.Sprintf("%s 12:00:00", nowTime),
  472. fmt.Sprintf("%s 14:00:00", nowTime), fmt.Sprintf("%s 16:00:00", nowTime), fmt.Sprintf("%s 18:00:00", nowTime),
  473. fmt.Sprintf("%s 20:00:00", nowTime), fmt.Sprintf("%s 22:00:00", nowTime), fmt.Sprintf("%s 00:00:00", nowTime),
  474. },
  475. }
  476. for i, frameId := range tests.frameId {
  477. got, hours := GetNeckRingActiveTimer(frameId)
  478. t.Logf("frameId: %d, test-hours: %d,hours:%d got :%s", frameId, tests.hours[i], hours, got)
  479. //assert.Equal(t, got, tests.dateTime[i])
  480. assert.Equal(t, int32(hours), tests.hours[i])
  481. }
  482. }
  483. func Test_demo(t *testing.T) {
  484. a := []int32{
  485. 211670,
  486. 9121372,
  487. 3204736,
  488. 3212694,
  489. 3204532,
  490. 3214082,
  491. 9121667,
  492. 3212275,
  493. 3210345,
  494. 3217879,
  495. 9422,
  496. 3206975,
  497. 9496,
  498. 3204907,
  499. 212194,
  500. 3211061,
  501. 9120840,
  502. 3207787,
  503. 3210201,
  504. 404,
  505. 3207104,
  506. 3219173,
  507. 3216771,
  508. 3216872,
  509. 3209614,
  510. 3205455,
  511. 416,
  512. 9121026,
  513. 211622,
  514. 3207868,
  515. 3210340,
  516. 9120132,
  517. 3207092,
  518. 3209390,
  519. 3205872,
  520. 3207367,
  521. 3219700,
  522. 9120022,
  523. 211246,
  524. 466,
  525. 3207565,
  526. 3208779,
  527. 3204863,
  528. 3207963,
  529. 3204259,
  530. 3207966,
  531. 2640,
  532. 3214316,
  533. 3205778,
  534. 3206897,
  535. 3207745,
  536. 3209052,
  537. 3208045,
  538. 211627,
  539. 3212873,
  540. 2100766,
  541. 9121950,
  542. 3206076,
  543. 3206438,
  544. 9466,
  545. 9121195,
  546. 9122044,
  547. 3209430,
  548. 3205599,
  549. 2100794,
  550. 3048,
  551. 9467,
  552. 3207480,
  553. 3216011,
  554. 9121725,
  555. 9120340,
  556. 9121597,
  557. 427,
  558. 3209387,
  559. 3209490,
  560. 3214311,
  561. 3206044,
  562. 211253,
  563. 3207553,
  564. 3215616,
  565. 211350,
  566. 3207551,
  567. 3205896,
  568. 417,
  569. 9121008,
  570. 3207694,
  571. 3209372,
  572. 3217873,
  573. 3207227,
  574. 3207568,
  575. 3210615,
  576. 3204769,
  577. 3216095,
  578. 9121338,
  579. 3209124,
  580. 211340,
  581. 3219695,
  582. 9121802,
  583. 3205517,
  584. 3210676,
  585. 9123325,
  586. 3204328,
  587. 9409,
  588. 211349,
  589. 3208860,
  590. 9121769,
  591. 3209221,
  592. 3210916,
  593. 3205880,
  594. 438,
  595. 3205557,
  596. 9421,
  597. 211229,
  598. 444,
  599. 9123260,
  600. 9121464,
  601. 3212818,
  602. 3204834,
  603. 3205408,
  604. 3207486,
  605. 498,
  606. 3206232,
  607. 3206315,
  608. 2100759,
  609. 9121955,
  610. 3204338,
  611. 3207606,
  612. 3208767,
  613. 450,
  614. 9123330,
  615. 9121278,
  616. 9121011,
  617. 9122280,
  618. 479,
  619. 434,
  620. 3207614,
  621. 2355,
  622. 211644,
  623. 453,
  624. 9121308,
  625. 3209449,
  626. 405,
  627. 3204240,
  628. 9120165,
  629. 9445,
  630. 9120456,
  631. 9123057,
  632. 471,
  633. 3206830,
  634. 464,
  635. 403,
  636. 2100749,
  637. 3218278,
  638. 3218600,
  639. 212168,
  640. 9470,
  641. 428,
  642. 3205448,
  643. 3209790,
  644. 3208163,
  645. 213134,
  646. 3207603,
  647. 3206394,
  648. 3204476,
  649. 9121569,
  650. 3206447,
  651. 3209456,
  652. 9120533,
  653. 3209044,
  654. 3214232,
  655. 3209337,
  656. 212193,
  657. 3216684,
  658. 3218450,
  659. 3207194,
  660. 3204853,
  661. 3205858,
  662. 3207922,
  663. 3204645,
  664. 212157,
  665. 3214707,
  666. 213126,
  667. 3219468,
  668. 9120766,
  669. 3218611,
  670. 3215948,
  671. 3211568,
  672. 9120227,
  673. 211348,
  674. 3212621,
  675. 3209898,
  676. 3207637,
  677. 9121071,
  678. 9123113,
  679. 3206491,
  680. 3209922,
  681. 9440,
  682. 3207075,
  683. 423,
  684. 3204875,
  685. 9121888,
  686. 3210395,
  687. 9120630,
  688. 9120214,
  689. 3208166,
  690. 211285,
  691. 3206880,
  692. 3209461,
  693. 3205597,
  694. 3216262,
  695. 3204942,
  696. 9123224,
  697. 3205918,
  698. 3204889,
  699. 3209047,
  700. 3207024,
  701. 3207277,
  702. 3207699,
  703. 3205771,
  704. 9500,
  705. 3204450,
  706. 3205495,
  707. 9483,
  708. 3209876,
  709. 3205533,
  710. 3216075,
  711. 9469,
  712. 3209827,
  713. 9122454,
  714. 413,
  715. 3216308,
  716. 3219301,
  717. 3210042,
  718. 3205064,
  719. 211390,
  720. 9121305,
  721. 3218596,
  722. 3204955,
  723. 3215274,
  724. 212171,
  725. 3209460,
  726. 3211376,
  727. 3213812,
  728. 3205184,
  729. 3209287,
  730. 3211769,
  731. 3205926,
  732. 3216585,
  733. 3213332,
  734. 3209340,
  735. 9123175,
  736. 3205843,
  737. 3207663,
  738. 3210829,
  739. 3209481,
  740. 9450,
  741. 9463,
  742. 3209763,
  743. 3215627,
  744. 9121424,
  745. 3212746,
  746. 3218533,
  747. 3209072,
  748. 3207359,
  749. 3205888,
  750. 3214228,
  751. 3204884,
  752. 3218613,
  753. 3209352,
  754. 3208192,
  755. 3216211,
  756. 3211454,
  757. 3217082,
  758. 3212728,
  759. 3206984,
  760. 3217750,
  761. 3213406,
  762. 3206305,
  763. 9122130,
  764. 9121695,
  765. 9492,
  766. 3207856,
  767. 3218263,
  768. 9121058,
  769. 9123309,
  770. 9122466,
  771. 9122287,
  772. 9120614,
  773. 3084,
  774. 3205559,
  775. 3205840,
  776. 9121444,
  777. 9121777,
  778. 3209308,
  779. 9122313,
  780. 9121672,
  781. 3210180,
  782. 3207645,
  783. 3206419,
  784. 9413,
  785. 211576,
  786. 3209201,
  787. 2601,
  788. 3211708,
  789. 3206969,
  790. 3206871,
  791. 3210430,
  792. 211674,
  793. 9122441,
  794. 3214386,
  795. 3206927,
  796. 3209332,
  797. 9462,
  798. 3206430,
  799. 3207485,
  800. 3204519,
  801. 3216214,
  802. 9123371,
  803. 9120847,
  804. 9123355,
  805. 211690,
  806. 3210362,
  807. 3218862,
  808. 3213687,
  809. 3066,
  810. 3209787,
  811. 9120359,
  812. 9468,
  813. 2315,
  814. 3207031,
  815. 211353,
  816. 211250,
  817. 3207688,
  818. 9122447,
  819. 3218688,
  820. 445,
  821. 3205848,
  822. 3214915,
  823. 3208866,
  824. 1739,
  825. 3204990,
  826. 2100716,
  827. 212130,
  828. 3204214,
  829. 3208985,
  830. 211388,
  831. 9123166,
  832. 3208856,
  833. 211648,
  834. 2311,
  835. 3204411,
  836. 3217860,
  837. 9523,
  838. 9524,
  839. 3209134,
  840. 3209212,
  841. 211630,
  842. 9123151,
  843. 3207375,
  844. 441,
  845. 9525,
  846. 3205815,
  847. 3205527,
  848. 3215344,
  849. 3207185,
  850. 211332,
  851. 3217466,
  852. 9526,
  853. 1783,
  854. 9122414,
  855. 3207617,
  856. 212150,
  857. 3204248,
  858. 3216316,
  859. 3209535,
  860. 3206873,
  861. 3208974,
  862. 9406,
  863. 9122407,
  864. 9121925,
  865. 2351,
  866. 3214481,
  867. 3204826,
  868. 3205906,
  869. 3205109,
  870. 3209014,
  871. 211240,
  872. 3070,
  873. 474,
  874. 3204667,
  875. 3205511,
  876. 409,
  877. 3209061,
  878. 3205074,
  879. 3206009,
  880. 9123010,
  881. 3207536,
  882. 3219231,
  883. 3207198,
  884. 9475,
  885. 9423,
  886. 9121871,
  887. 3204643,
  888. 3205471,
  889. 3206095,
  890. 9121981,
  891. 9120835,
  892. 3206427,
  893. 3218217,
  894. 3207493,
  895. 2100732,
  896. 3204886,
  897. 3208174,
  898. 9486,
  899. 2100772,
  900. 3209419,
  901. 3207087,
  902. 2328,
  903. 3207371,
  904. 3210597,
  905. 3206231,
  906. 3206931,
  907. 3204236,
  908. 3207411,
  909. 3206374,
  910. 3206452,
  911. 3207472,
  912. 9429,
  913. 3218802,
  914. 211381,
  915. 9474,
  916. 3204420,
  917. 3207026,
  918. 3206124,
  919. 3209608,
  920. 3209330,
  921. 3209485,
  922. 3216593,
  923. 3205921,
  924. 2375,
  925. 3204818,
  926. 3215544,
  927. 3213632,
  928. 3216924,
  929. 3204395,
  930. 3207111,
  931. 3206961,
  932. 212169,
  933. 9123027,
  934. 2100744,
  935. 9520,
  936. 3208708,
  937. 3214104,
  938. 3206329,
  939. 9512,
  940. 3211187,
  941. 3207674,
  942. 3206004,
  943. 3207748,
  944. 3209328,
  945. 3209033,
  946. 3205601,
  947. 3205776,
  948. 9438,
  949. 3205269,
  950. 3204664,
  951. 9514,
  952. 3204897,
  953. 9446,
  954. 3208827,
  955. 3209611,
  956. 3208050,
  957. 9501,
  958. 9121120,
  959. 3213788,
  960. 9121699,
  961. 3204409,
  962. 3210073,
  963. 3207546,
  964. 2100758,
  965. 3206082,
  966. 3208975,
  967. 9122051,
  968. 9518,
  969. 3207751,
  970. 9408,
  971. 3206437,
  972. 3207343,
  973. 3207021,
  974. 3216998,
  975. 3205349,
  976. 3214744,
  977. 3205905,
  978. 3212646,
  979. 3209740,
  980. 3206239,
  981. 3207473,
  982. 3207236,
  983. 3209730,
  984. 3204360,
  985. 3206895,
  986. 9120696,
  987. 3204901,
  988. 9508,
  989. 3207935,
  990. 3213977,
  991. 3214166,
  992. 448,
  993. 3205893,
  994. 3212052,
  995. 3205552,
  996. 3211112,
  997. 3213551,
  998. 3217077,
  999. 3206322,
  1000. 9465,
  1001. 3208807,
  1002. 3205211,
  1003. 3215051,
  1004. 3207121,
  1005. 3215725,
  1006. 3207229,
  1007. 3219426,
  1008. 3213345,
  1009. 3217541,
  1010. 3216876,
  1011. 3215675,
  1012. 3214245,
  1013. 3207012,
  1014. 3218806,
  1015. 3217024,
  1016. 3212486,
  1017. 3207620,
  1018. 3211045,
  1019. 3213712,
  1020. 3215268,
  1021. 3215061,
  1022. 3209099,
  1023. 3218820,
  1024. 3212817,
  1025. 3204659,
  1026. 3210976,
  1027. 3213266,
  1028. 3211716,
  1029. 3207860,
  1030. 3213350,
  1031. 9517,
  1032. 3215001,
  1033. 3217667,
  1034. 3213039,
  1035. 3207248,
  1036. 9510,
  1037. 3215056,
  1038. 3218732,
  1039. 3216053,
  1040. 3209995,
  1041. 3215773,
  1042. 3211035,
  1043. 3213295,
  1044. 3205725,
  1045. 9464,
  1046. 3205636}
  1047. value := ``
  1048. for _, v := range a {
  1049. value += fmt.Sprintf(`"%d",`, v)
  1050. }
  1051. fmt.Println(value)
  1052. }