zjf
2023-03-13 881f0da670f20c401c1e1d08b36253abb28f72d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
2022-11-21 14:14:04 +0000  Initial pipeline context: <IDEDistributionProcessingPipelineContext: 0x7fd86ef9d210; archive(resolved)="<IDEArchive: 0x7fd8a3c89c20>", distributionTask(resolved)="2", distributionDestination(resolved)="1", distributionMethod(resolved)="<IDEDistributionMethodiOSAppStoreDistribution: 0x7fd8a32ff990>", team(resolved)="<IDEProvisioningDisambiguatableBasicTeam: 0x7fd8a1ac8790; teamID='PQM7L66DSE', teamName='ProBIM Technology Co., Ltd.', teamType='Company', username='develop@probim.com.cn', isFreeProvisioningTeam='0'>">
    Chain (16, self inclusive):
    <IDEDistributionProcessingPipelineContext: 0x7fd86ef9d210; archive = "<IDEArchive: 0x7fd8a3c89c20>", distributionMethod="<IDEDistributionMethodiOSAppStoreDistribution: 0x7fd8a32ff990>", team="<IDEProvisioningDisambiguatableBasicTeam: 0x7fd8a1ac8790; teamID='PQM7L66DSE', teamName='ProBIM Technology Co., Ltd.', teamType='Company', username='develop@probim.com.cn', isFreeProvisioningTeam='0'>">
    <IDEDistributionProcessingPipelineContext: 0x7fd86edc0910; archive = "<IDEArchive: 0x7fd8a3c89c20>", distributionMethod="<IDEDistributionMethodiOSAppStoreDistribution: 0x7fd8a32ff990>", team="<IDEProvisioningDisambiguatableBasicTeam: 0x7fd8a1ac8790; teamID='PQM7L66DSE', teamName='ProBIM Technology Co., Ltd.', teamType='Company', username='develop@probim.com.cn', isFreeProvisioningTeam='0'>">
    <IDEDistributionContext: 0x7fd87146c870; archive = "<IDEArchive: 0x7fd8a3c89c20>", distributionMethod="<IDEDistributionMethodiOSAppStoreDistribution: 0x7fd8a32ff990>", team="<IDEProvisioningDisambiguatableBasicTeam: 0x7fd8a1ac8790; teamID='PQM7L66DSE', teamName='ProBIM Technology Co., Ltd.', teamType='Company', username='develop@probim.com.cn', isFreeProvisioningTeam='0'>">
    <IDEDistributionContext: 0x7fd86ed2adc0; archive = "<IDEArchive: 0x7fd8a3c89c20>", distributionMethod="<IDEDistributionMethodiOSAppStoreDistribution: 0x7fd8a32ff990>", team="<IDEProvisioningDisambiguatableBasicTeam: 0x7fd8a1ac8790; teamID='PQM7L66DSE', teamName='ProBIM Technology Co., Ltd.', teamType='Company', username='develop@probim.com.cn', isFreeProvisioningTeam='0'>">
    <IDEDistributionContext: 0x7fd870d9d1f0; archive = "<IDEArchive: 0x7fd8a3c89c20>", distributionMethod="<IDEDistributionMethodiOSAppStoreDistribution: 0x7fd8a32ff990>", team="<IDEProvisioningDisambiguatableBasicTeam: 0x7fd8a1ac8790; teamID='PQM7L66DSE', teamName='ProBIM Technology Co., Ltd.', teamType='Company', username='develop@probim.com.cn', isFreeProvisioningTeam='0'>">
    <IDEDistributionContext: 0x7fd86ef5c040; archive = "<IDEArchive: 0x7fd8a3c89c20>", distributionMethod="<IDEDistributionMethodiOSAppStoreDistribution: 0x7fd8a32ff990>", team="<IDEProvisioningDisambiguatableBasicTeam: 0x7fd8a1ac8790; teamID='PQM7L66DSE', teamName='ProBIM Technology Co., Ltd.', teamType='Company', username='develop@probim.com.cn', isFreeProvisioningTeam='0'>">
    <IDEDistributionContext: 0x7fd86ee1b550; archive = "<IDEArchive: 0x7fd8a3c89c20>", distributionMethod="<IDEDistributionMethodiOSAppStoreDistribution: 0x7fd8a32ff990>", team="<IDEProvisioningDisambiguatableBasicTeam: 0x7fd8a1ac8790; teamID='PQM7L66DSE', teamName='ProBIM Technology Co., Ltd.', teamType='Company', username='develop@probim.com.cn', isFreeProvisioningTeam='0'>">
    <IDEDistributionContext: 0x7fd86ee206c0; archive = "<IDEArchive: 0x7fd8a3c89c20>", distributionMethod="<IDEDistributionMethodiOSAppStoreDistribution: 0x7fd8a32ff990>", team="<IDEProvisioningDisambiguatableBasicTeam: 0x7fd8a1ac8790; teamID='PQM7L66DSE', teamName='ProBIM Technology Co., Ltd.', teamType='Company', username='develop@probim.com.cn', isFreeProvisioningTeam='0'>">
    <IDEDistributionContext: 0x7fd86eed7b40; archive = "<IDEArchive: 0x7fd8a3c89c20>", distributionMethod="<IDEDistributionMethodiOSAppStoreDistribution: 0x7fd8a32ff990>", team="<IDEProvisioningDisambiguatableBasicTeam: 0x7fd8a1ac8790; teamID='PQM7L66DSE', teamName='ProBIM Technology Co., Ltd.', teamType='Company', username='develop@probim.com.cn', isFreeProvisioningTeam='0'>">
    <IDEDistributionContext: 0x7fd86eecfaa0; archive = "<IDEArchive: 0x7fd8a3c89c20>", distributionMethod="<IDEDistributionMethodiOSAppStoreDistribution: 0x7fd8a32ff990>", team="<IDEProvisioningDisambiguatableBasicTeam: 0x7fd8a1ac8790; teamID='PQM7L66DSE', teamName='ProBIM Technology Co., Ltd.', teamType='Company', username='develop@probim.com.cn', isFreeProvisioningTeam='0'>">
    <IDEDistributionContext: 0x7fd86ee28ce0; archive = "<IDEArchive: 0x7fd8a3c89c20>", distributionMethod="<IDEDistributionMethodiOSAppStoreDistribution: 0x7fd8a32ff990>", team="<IDEProvisioningDisambiguatableBasicTeam: 0x7fd8a1ac8790; teamID='PQM7L66DSE', teamName='ProBIM Technology Co., Ltd.', teamType='Company', username='develop@probim.com.cn', isFreeProvisioningTeam='0'>">
    <IDEDistributionContext: 0x7fd86ee3a350; archive = "<IDEArchive: 0x7fd8a3c89c20>", distributionMethod="<IDEDistributionMethodiOSAppStoreDistribution: 0x7fd8a32ff990>", team="<IDEProvisioningDisambiguatableBasicTeam: 0x7fd8a1ac8790; teamID='PQM7L66DSE', teamName='ProBIM Technology Co., Ltd.', teamType='Company', username='develop@probim.com.cn', isFreeProvisioningTeam='0'>">
    <IDEDistributionContext: 0x7fd86eeb36f0; archive = "<IDEArchive: 0x7fd8a3c89c20>", distributionMethod="<IDEDistributionMethodiOSAppStoreDistribution: 0x7fd8a32ff990>", team="<IDEProvisioningDisambiguatableBasicTeam: 0x7fd8a1ac8790; teamID='PQM7L66DSE', teamName='ProBIM Technology Co., Ltd.', teamType='Company', username='develop@probim.com.cn', isFreeProvisioningTeam='0'>">
    <IDEDistributionContext: 0x7fd870d80f40; archive = "<IDEArchive: 0x7fd8a3c89c20>", distributionMethod="<IDEDistributionMethodiOSAppStoreDistribution: 0x7fd8a32ff990>", team="(null)">
    <IDEDistributionContext: 0x7fd86ed5dc40; archive = "<IDEArchive: 0x7fd8a3c89c20>", distributionMethod="<IDEDistributionMethodiOSAppStoreDistribution: 0x7fd8a32ff990>", team="(null)">
    <IDEDistributionContext: 0x7fd86ed53ac0; archive = "<IDEArchive: 0x7fd8a3c89c20>", distributionMethod="(null)", team="(null)">
</IDEDistributionProcessingPipelineContext: 0x7fd86ef9d210>
2022-11-21 14:14:04 +0000  Processing step: IDEDistributionCreateDestRootStep
2022-11-21 14:14:04 +0000  Processing step: IDEDistributionCopyItemStep
2022-11-21 14:14:04 +0000  Running /usr/bin/ditto '-V' '/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root/Payload/IphoneBIMe.app'
2022-11-21 14:14:04 +0000  >>> Copying /Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app 
2022-11-21 14:14:04 +0000  copying file ./_CodeSignature/CodeResources ... 
2022-11-21 14:14:04 +0000  119933 bytes for ./_CodeSignature/CodeResources
2022-11-21 14:14:04 +0000  copying file ./marker.zip ... 
2022-11-21 14:14:04 +0000  67582 bytes for ./marker.zip
copying file ./examineAdd2.plist ... 
2022-11-21 14:14:04 +0000  1275 bytes for ./examineAdd2.plist
2022-11-21 14:14:04 +0000  copying file ./LaunchImage-1100-Portrait-2436h@3x.png ... 
2022-11-21 14:14:04 +0000  113897 bytes for ./LaunchImage-1100-Portrait-2436h@3x.png
2022-11-21 14:14:04 +0000  copying file ./LaunchImage@2x.png ... 
2022-11-21 14:14:04 +0000  51649 bytes for ./LaunchImage@2x.png
copying file ./IphoneBIMe ... 
2022-11-21 14:14:04 +0000  16121424 bytes for ./IphoneBIMe
copying file ./examineAdd4.plist ... 
2022-11-21 14:14:04 +0000  557 bytes for ./examineAdd4.plist
copying file ./SGQRCode.bundle/sound.caf ... 
2022-11-21 14:14:04 +0000  129556 bytes for ./SGQRCode.bundle/sound.caf
2022-11-21 14:14:04 +0000  copying file ./SGQRCode.bundle/QRCodeScanLine@3x.png ... 
3891 bytes for ./SGQRCode.bundle/QRCodeScanLine@3x.png
2022-11-21 14:14:04 +0000  copying file ./SGQRCode.bundle/en.lproj/Root.strings ... 
2022-11-21 14:14:04 +0000  546 bytes for ./SGQRCode.bundle/en.lproj/Root.strings
2022-11-21 14:14:04 +0000  copying file ./SGQRCode.bundle/QRCodeScanLine@2x.png ... 
2022-11-21 14:14:04 +0000  2231 bytes for ./SGQRCode.bundle/QRCodeScanLine@2x.png
copying file ./SGQRCode.bundle/QRCodeScanLineGrid@3x.png ... 
2022-11-21 14:14:04 +0000  14817 bytes for ./SGQRCode.bundle/QRCodeScanLineGrid@3x.png
copying file ./SGQRCode.bundle/QRCodeScanLineGrid@2x.png ... 
2022-11-21 14:14:04 +0000  7999 bytes for ./SGQRCode.bundle/QRCodeScanLineGrid@2x.png
2022-11-21 14:14:04 +0000  copying file ./SGQRCode.bundle/Root.plist ... 
1456 bytes for ./SGQRCode.bundle/Root.plist
2022-11-21 14:14:04 +0000  copying file ./DwgViewController.storyboardc/UIViewController-Chr-87-vXo.nib ... 
2022-11-21 14:14:04 +0000  919 bytes for ./DwgViewController.storyboardc/UIViewController-Chr-87-vXo.nib
2022-11-21 14:14:04 +0000  copying file ./DwgViewController.storyboardc/Chr-87-vXo-view-5By-Hi-wEg.nib ... 
1250 bytes for ./DwgViewController.storyboardc/Chr-87-vXo-view-5By-Hi-wEg.nib
2022-11-21 14:14:04 +0000  copying file ./DwgViewController.storyboardc/Info.plist ... 
2022-11-21 14:14:04 +0000  258 bytes for ./DwgViewController.storyboardc/Info.plist
copying file ./txt.shx ... 
2022-11-21 14:14:04 +0000  20857 bytes for ./txt.shx
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/EditImageAudioToolBtn@2x.png ... 
2022-11-21 14:14:04 +0000  499 bytes for ./LFMediaEditingController.bundle/EditImageAudioToolBtn@2x.png
copying file ./LFMediaEditingController.bundle/EditImageMosaicToolBtn@2x.png ... 
2022-11-21 14:14:04 +0000  138 bytes for ./LFMediaEditingController.bundle/EditImageMosaicToolBtn@2x.png
copying file ./LFMediaEditingController.bundle/EditImageEmotionToolBtn@2x.png ... 
2022-11-21 14:14:04 +0000  503 bytes for ./LFMediaEditingController.bundle/EditImageEmotionToolBtn@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/AudioTrack/EditImageAllSelect@2x.png ... 
2022-11-21 14:14:04 +0000  480 bytes for ./LFMediaEditingController.bundle/AudioTrack/EditImageAllSelect@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/AudioTrack/EditImageAllSelect_HL@2x.png ... 
2022-11-21 14:14:04 +0000  477 bytes for ./LFMediaEditingController.bundle/AudioTrack/EditImageAllSelect_HL@2x.png
copying file ./LFMediaEditingController.bundle/AudioTrack/EditImageNoSelect@2x.png ... 
2022-11-21 14:14:04 +0000  915 bytes for ./LFMediaEditingController.bundle/AudioTrack/EditImageNoSelect@2x.png
copying file ./LFMediaEditingController.bundle/AudioTrack/EditImageUnSelect@2x.png ... 
2022-11-21 14:14:04 +0000  704 bytes for ./LFMediaEditingController.bundle/AudioTrack/EditImageUnSelect@2x.png
copying file ./LFMediaEditingController.bundle/AudioTrack/EditImageUnSelect_HL@2x.png ... 
2022-11-21 14:14:04 +0000  1031 bytes for ./LFMediaEditingController.bundle/AudioTrack/EditImageUnSelect_HL@2x.png
copying file ./LFMediaEditingController.bundle/AudioTrack/EditImageInverseSelect_HL@2x.png ... 
2022-11-21 14:14:04 +0000  679 bytes for ./LFMediaEditingController.bundle/AudioTrack/EditImageInverseSelect_HL@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/AudioTrack/EditImageSelectd@2x.png ... 
2022-11-21 14:14:04 +0000  963 bytes for ./LFMediaEditingController.bundle/AudioTrack/EditImageSelectd@2x.png
copying file ./LFMediaEditingController.bundle/AudioTrack/EditImageAddBtn_HL@2x.png ... 
2022-11-21 14:14:04 +0000  223 bytes for ./LFMediaEditingController.bundle/AudioTrack/EditImageAddBtn_HL@2x.png
copying file ./LFMediaEditingController.bundle/AudioTrack/EditImageInverseSelect@2x.png ... 
2022-11-21 14:14:04 +0000  649 bytes for ./LFMediaEditingController.bundle/AudioTrack/EditImageInverseSelect@2x.png
copying file ./LFMediaEditingController.bundle/AudioTrack/EditImageAddBtn@2x.png ... 
2022-11-21 14:14:04 +0000  198 bytes for ./LFMediaEditingController.bundle/AudioTrack/EditImageAddBtn@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/002.png ... 
2022-11-21 14:14:04 +0000  3882 bytes for ./LFMediaEditingController.bundle/stickers/002.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/016.png ... 
2022-11-21 14:14:04 +0000  4627 bytes for ./LFMediaEditingController.bundle/stickers/016.png
copying file ./LFMediaEditingController.bundle/stickers/017.png ... 
2022-11-21 14:14:04 +0000  5663 bytes for ./LFMediaEditingController.bundle/stickers/017.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/003.png ... 
2022-11-21 14:14:04 +0000  2684 bytes for ./LFMediaEditingController.bundle/stickers/003.png
copying file ./LFMediaEditingController.bundle/stickers/029.png ... 
2022-11-21 14:14:04 +0000  10273 bytes for ./LFMediaEditingController.bundle/stickers/029.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/015.png ... 
2022-11-21 14:14:04 +0000  6959 bytes for ./LFMediaEditingController.bundle/stickers/015.png
copying file ./LFMediaEditingController.bundle/stickers/001.png ... 
2022-11-21 14:14:04 +0000  4267 bytes for ./LFMediaEditingController.bundle/stickers/001.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/014.png ... 
2022-11-21 14:14:04 +0000  4643 bytes for ./LFMediaEditingController.bundle/stickers/014.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/028.png ... 
2022-11-21 14:14:04 +0000  15853 bytes for ./LFMediaEditingController.bundle/stickers/028.png
copying file ./LFMediaEditingController.bundle/stickers/010.png ... 
2022-11-21 14:14:04 +0000  10757 bytes for ./LFMediaEditingController.bundle/stickers/010.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/004.png ... 
2022-11-21 14:14:04 +0000  2792 bytes for ./LFMediaEditingController.bundle/stickers/004.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/038.png ... 
2022-11-21 14:14:04 +0000  11089 bytes for ./LFMediaEditingController.bundle/stickers/038.png
copying file ./LFMediaEditingController.bundle/stickers/039.png ... 
2022-11-21 14:14:04 +0000  13093 bytes for ./LFMediaEditingController.bundle/stickers/039.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/005.png ... 
2022-11-21 14:14:04 +0000  11071 bytes for ./LFMediaEditingController.bundle/stickers/005.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/011.png ... 
2022-11-21 14:14:04 +0000  30937 bytes for ./LFMediaEditingController.bundle/stickers/011.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/007.png ... 
2022-11-21 14:14:04 +0000  2450 bytes for ./LFMediaEditingController.bundle/stickers/007.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/013.png ... 
2022-11-21 14:14:04 +0000  4489 bytes for ./LFMediaEditingController.bundle/stickers/013.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/012.png ... 
2022-11-21 14:14:04 +0000  10848 bytes for ./LFMediaEditingController.bundle/stickers/012.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/006.png ... 
2022-11-21 14:14:04 +0000  1673 bytes for ./LFMediaEditingController.bundle/stickers/006.png
copying file ./LFMediaEditingController.bundle/stickers/048.png ... 
2022-11-21 14:14:04 +0000  154931 bytes for ./LFMediaEditingController.bundle/stickers/048.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/040.png ... 
2022-11-21 14:14:04 +0000  9850 bytes for ./LFMediaEditingController.bundle/stickers/040.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/041.png ... 
2022-11-21 14:14:04 +0000  16289 bytes for ./LFMediaEditingController.bundle/stickers/041.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/043.png ... 
2022-11-21 14:14:04 +0000  20973 bytes for ./LFMediaEditingController.bundle/stickers/043.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/042.png ... 
2022-11-21 14:14:04 +0000  13207 bytes for ./LFMediaEditingController.bundle/stickers/042.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/046.png ... 
2022-11-21 14:14:04 +0000  17335 bytes for ./LFMediaEditingController.bundle/stickers/046.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/047.png ... 
2022-11-21 14:14:04 +0000  168510 bytes for ./LFMediaEditingController.bundle/stickers/047.png
copying file ./LFMediaEditingController.bundle/stickers/045.png ... 
2022-11-21 14:14:04 +0000  56087 bytes for ./LFMediaEditingController.bundle/stickers/045.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/044.png ... 
2022-11-21 14:14:04 +0000  17846 bytes for ./LFMediaEditingController.bundle/stickers/044.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/023.png ... 
2022-11-21 14:14:04 +0000  21646 bytes for ./LFMediaEditingController.bundle/stickers/023.png
copying file ./LFMediaEditingController.bundle/stickers/037.png ... 
2022-11-21 14:14:04 +0000  14899 bytes for ./LFMediaEditingController.bundle/stickers/037.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/036.png ... 
2022-11-21 14:14:04 +0000  11932 bytes for ./LFMediaEditingController.bundle/stickers/036.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/022.png ... 
2022-11-21 14:14:04 +0000  10855 bytes for ./LFMediaEditingController.bundle/stickers/022.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/008.png ... 
2022-11-21 14:14:04 +0000  13539 bytes for ./LFMediaEditingController.bundle/stickers/008.png
copying file ./LFMediaEditingController.bundle/stickers/034.png ... 
2022-11-21 14:14:04 +0000  17132 bytes for ./LFMediaEditingController.bundle/stickers/034.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/020.png ... 
2022-11-21 14:14:04 +0000  6481 bytes for ./LFMediaEditingController.bundle/stickers/020.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/021.png ... 
2022-11-21 14:14:04 +0000  8710 bytes for ./LFMediaEditingController.bundle/stickers/021.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/035.png ... 
2022-11-21 14:14:04 +0000  4627 bytes for ./LFMediaEditingController.bundle/stickers/035.png
copying file ./LFMediaEditingController.bundle/stickers/009.png ... 
2022-11-21 14:14:04 +0000  15121 bytes for ./LFMediaEditingController.bundle/stickers/009.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/031.png ... 
2022-11-21 14:14:04 +0000  13639 bytes for ./LFMediaEditingController.bundle/stickers/031.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/025.png ... 
2022-11-21 14:14:04 +0000  12670 bytes for ./LFMediaEditingController.bundle/stickers/025.png
copying file ./LFMediaEditingController.bundle/stickers/019.png ... 
2022-11-21 14:14:04 +0000  3857 bytes for ./LFMediaEditingController.bundle/stickers/019.png
copying file ./LFMediaEditingController.bundle/stickers/018.png ... 
2022-11-21 14:14:04 +0000  4926 bytes for ./LFMediaEditingController.bundle/stickers/018.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/024.png ... 
2022-11-21 14:14:04 +0000  22627 bytes for ./LFMediaEditingController.bundle/stickers/024.png
copying file ./LFMediaEditingController.bundle/stickers/030.png ... 
2022-11-21 14:14:04 +0000  4709 bytes for ./LFMediaEditingController.bundle/stickers/030.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/026.png ... 
2022-11-21 14:14:04 +0000  2316 bytes for ./LFMediaEditingController.bundle/stickers/026.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/032.png ... 
2022-11-21 14:14:04 +0000  17418 bytes for ./LFMediaEditingController.bundle/stickers/032.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/stickers/033.png ... 
2022-11-21 14:14:04 +0000  12515 bytes for ./LFMediaEditingController.bundle/stickers/033.png
copying file ./LFMediaEditingController.bundle/stickers/027.png ... 
2022-11-21 14:14:04 +0000  17781 bytes for ./LFMediaEditingController.bundle/stickers/027.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/EditImageTextAlignmentLeft@2x.png ... 
2022-11-21 14:14:04 +0000  1129 bytes for ./LFMediaEditingController.bundle/EditImageTextAlignmentLeft@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/EditImagePenTool_Fluorescent@2x.png ... 
2022-11-21 14:14:04 +0000  1710 bytes for ./LFMediaEditingController.bundle/EditImagePenTool_Fluorescent@2x.png
copying file ./LFMediaEditingController.bundle/EditImagePenToolBtn@2x.png ... 
2022-11-21 14:14:04 +0000  361 bytes for ./LFMediaEditingController.bundle/EditImagePenToolBtn@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/EditVideoCropToolBtn@2x.png ... 
2022-11-21 14:14:04 +0000  123 bytes for ./LFMediaEditingController.bundle/EditVideoCropToolBtn@2x.png
copying file ./LFMediaEditingController.bundle/EditImageTextAlignmentCenter@2x.png ... 
2022-11-21 14:14:04 +0000  1178 bytes for ./LFMediaEditingController.bundle/EditImageTextAlignmentCenter@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/EditImageStickRemove_HL@2x.png ... 
2022-11-21 14:14:04 +0000  13592 bytes for ./LFMediaEditingController.bundle/EditImageStickRemove_HL@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/StickerZoomingViewCircle@2x.png ... 
2022-11-21 14:14:04 +0000  753 bytes for ./LFMediaEditingController.bundle/StickerZoomingViewCircle@2x.png
copying file ./LFMediaEditingController.bundle/EditImagePenTool_Highlight_HL@2x.png ... 
2022-11-21 14:14:04 +0000  2365 bytes for ./LFMediaEditingController.bundle/EditImagePenTool_Highlight_HL@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/EditImageCropToolBtn_HL@2x.png ... 
2022-11-21 14:14:04 +0000  125 bytes for ./LFMediaEditingController.bundle/EditImageCropToolBtn_HL@2x.png
copying file ./LFMediaEditingController.bundle/AlbumCommentLine@2x.png ... 
2022-11-21 14:14:04 +0000  89 bytes for ./LFMediaEditingController.bundle/AlbumCommentLine@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/EditImageTextAlignmentLeft_HL@2x.png ... 
2022-11-21 14:14:04 +0000  1696 bytes for ./LFMediaEditingController.bundle/EditImageTextAlignmentLeft_HL@2x.png
copying file ./LFMediaEditingController.bundle/StickerDisplayFail@2x.png ... 
2022-11-21 14:14:04 +0000  11653 bytes for ./LFMediaEditingController.bundle/StickerDisplayFail@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/EditImageTextAlignmentRight_HL@2x.png ... 
1677 bytes for ./LFMediaEditingController.bundle/EditImageTextAlignmentRight_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImageEmotionToolBtn_HL@2x.png ... 
2022-11-21 14:14:04 +0000  482 bytes for ./LFMediaEditingController.bundle/EditImageEmotionToolBtn_HL@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/EditImagePenTool_Eraser_HL@2x.png ... 
2022-11-21 14:14:04 +0000  2047 bytes for ./LFMediaEditingController.bundle/EditImagePenTool_Eraser_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImagePenTool_Paint_HL@2x.png ... 
2022-11-21 14:14:04 +0000  2824 bytes for ./LFMediaEditingController.bundle/EditImagePenTool_Paint_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImageRevokeBtn@2x.png ... 
390 bytes for ./LFMediaEditingController.bundle/EditImageRevokeBtn@2x.png
copying file ./LFMediaEditingController.bundle/EditImageFilterToolBtn@2x.png ... 
773 bytes for ./LFMediaEditingController.bundle/EditImageFilterToolBtn@2x.png
copying file ./LFMediaEditingController.bundle/EditImageBrushBlurryBtn@2x.png ... 
1625 bytes for ./LFMediaEditingController.bundle/EditImageBrushBlurryBtn@2x.png
copying file ./LFMediaEditingController.bundle/EditImagePenTool_Chalk@2x.png ... 
923 bytes for ./LFMediaEditingController.bundle/EditImagePenTool_Chalk@2x.png
copying file ./LFMediaEditingController.bundle/EditImageConfirmBtn_HL@2x.png ... 
466 bytes for ./LFMediaEditingController.bundle/EditImageConfirmBtn_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImageCancelBtn_HL@2x.png ... 
244 bytes for ./LFMediaEditingController.bundle/EditImageCancelBtn_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImageCropToolBtn@2x.png ... 
125 bytes for ./LFMediaEditingController.bundle/EditImageCropToolBtn@2x.png
copying file ./LFMediaEditingController.bundle/EditVideoCropToolBtn_HL@2x.png ... 
123 bytes for ./LFMediaEditingController.bundle/EditVideoCropToolBtn_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImageConfirmBtn@2x.png ... 
461 bytes for ./LFMediaEditingController.bundle/EditImageConfirmBtn@2x.png
copying file ./LFMediaEditingController.bundle/EditImageRevokeBtn_HL@2x.png ... 
330 bytes for ./LFMediaEditingController.bundle/EditImageRevokeBtn_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImageRateToolBtn@2x.png ... 
667 bytes for ./LFMediaEditingController.bundle/EditImageRateToolBtn@2x.png
copying file ./LFMediaEditingController.bundle/EditImageWaterDrop@2x.png ... 
514 bytes for ./LFMediaEditingController.bundle/EditImageWaterDrop@2x.png
copying file ./LFMediaEditingController.bundle/EditImageBrushBlurryBtn_HL@2x.png ... 
2314 bytes for ./LFMediaEditingController.bundle/EditImageBrushBlurryBtn_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImageTraditionalMosaicBtn@2x.png ... 
112 bytes for ./LFMediaEditingController.bundle/EditImageTraditionalMosaicBtn@2x.png
copying file ./LFMediaEditingController.bundle/EditImageTextBG_HL@2x.png ... 
1055 bytes for ./LFMediaEditingController.bundle/EditImageTextBG_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImageTextToolBtn_HL@2x.png ... 
130 bytes for ./LFMediaEditingController.bundle/EditImageTextToolBtn_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImagePenTool_Highlight@2x.png ... 
1277 bytes for ./LFMediaEditingController.bundle/EditImagePenTool_Highlight@2x.png
copying file ./LFMediaEditingController.bundle/EditImageAudioToolBtn_HL@2x.png ... 
564 bytes for ./LFMediaEditingController.bundle/EditImageAudioToolBtn_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImagePenTool_Chalk_HL@2x.png ... 
1619 bytes for ./LFMediaEditingController.bundle/EditImagePenTool_Chalk_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImageTraditionalMosaicBtn_HL@2x.png ... 
112 bytes for ./LFMediaEditingController.bundle/EditImageTraditionalMosaicBtn_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImageRateToolBtn_HL@2x.png ... 
630 bytes for ./LFMediaEditingController.bundle/EditImageRateToolBtn_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImagePenTool_Stamp@2x.png ... 
1456 bytes for ./LFMediaEditingController.bundle/EditImagePenTool_Stamp@2x.png
copying file ./LFMediaEditingController.bundle/EditImageFilterToolBtn_HL@2x.png ... 
749 bytes for ./LFMediaEditingController.bundle/EditImageFilterToolBtn_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImageCancelBtn@2x.png ... 
244 bytes for ./LFMediaEditingController.bundle/EditImageCancelBtn@2x.png
copying file ./LFMediaEditingController.bundle/EditImageTextBG@2x.png ... 
474 bytes for ./LFMediaEditingController.bundle/EditImageTextBG@2x.pn
2022-11-21 14:14:04 +0000  g
copying file ./LFMediaEditingController.bundle/EditImageTextAlignmentRight@2x.png ... 
1138 bytes for ./LFMediaEditingController.bundle/EditImageTextAlignmentRight@2x.png
copying file ./LFMediaEditingController.bundle/EditImagePenTool_Paint@2x.png ... 
1447 bytes for ./LFMediaEditingController.bundle/EditImagePenTool_Paint@2x.png
copying file ./LFMediaEditingController.bundle/brush/fruit/5@2x.png ... 
22705 bytes for ./LFMediaEditingController.bundle/brush/fruit/5@2x.png
copying file ./LFMediaEditingController.bundle/brush/fruit/1@2x.png ... 
2022-11-21 14:14:04 +0000  20558 bytes for ./LFMediaEditingController.bundle/brush/fruit/1@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/brush/fruit/3@2x.png ... 
2022-11-21 14:14:04 +0000  24359 bytes for ./LFMediaEditingController.bundle/brush/fruit/3@2x.png
copying file ./LFMediaEditingController.bundle/brush/fruit/6@2x.png ... 
2022-11-21 14:14:04 +0000  21031 bytes for ./LFMediaEditingController.bundle/brush/fruit/6@2x.png
copying file ./LFMediaEditingController.bundle/brush/fruit/4@2x.png ... 
2022-11-21 14:14:04 +0000  21530 bytes for ./LFMediaEditingController.bundle/brush/fruit/4@2x.png
copying file ./LFMediaEditingController.bundle/brush/fruit/2@2x.png ... 
2022-11-21 14:14:04 +0000  23461 bytes for ./LFMediaEditingController.bundle/brush/fruit/2@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/brush/EditImageStampBrushHeart@2x.png ... 
2022-11-21 14:14:04 +0000  12914 bytes for ./LFMediaEditingController.bundle/brush/EditImageStampBrushHeart@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/brush/heart/5@2x.png ... 
2022-11-21 14:14:04 +0000  20030 bytes for ./LFMediaEditingController.bundle/brush/heart/5@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/brush/heart/1@2x.png ... 
2022-11-21 14:14:04 +0000  24897 bytes for ./LFMediaEditingController.bundle/brush/heart/1@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/brush/heart/3@2x.png ... 
2022-11-21 14:14:04 +0000  28008 bytes for ./LFMediaEditingController.bundle/brush/heart/3@2x.png
copying file ./LFMediaEditingController.bundle/brush/heart/4@2x.png ... 
2022-11-21 14:14:04 +0000  19321 bytes for ./LFMediaEditingController.bundle/brush/heart/4@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/brush/heart/2@2x.png ... 
2022-11-21 14:14:04 +0000  25859 bytes for ./LFMediaEditingController.bundle/brush/heart/2@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/brush/EditImageStampBrushAnimal@2x.png ... 
2022-11-21 14:14:04 +0000  11521 bytes for ./LFMediaEditingController.bundle/brush/EditImageStampBrushAnimal@2x.png
copying file ./LFMediaEditingController.bundle/brush/EditImageChalkBrush@2x.png ... 
2022-11-21 14:14:04 +0000  4008 bytes for ./LFMediaEditingController.bundle/brush/EditImageChalkBrush@2x.png
copying file ./LFMediaEditingController.bundle/brush/animal/5@2x.png ... 
2022-11-21 14:14:04 +0000  13174 bytes for ./LFMediaEditingController.bundle/brush/animal/5@2x.png
copying file ./LFMediaEditingController.bundle/brush/animal/1@2x.png ... 
2022-11-21 14:14:04 +0000  11561 bytes for ./LFMediaEditingController.bundle/brush/animal/1@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/brush/animal/3@2x.png ... 
2022-11-21 14:14:04 +0000  14860 bytes for ./LFMediaEditingController.bundle/brush/animal/3@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/brush/animal/4@2x.png ... 
2022-11-21 14:14:04 +0000  12720 bytes for ./LFMediaEditingController.bundle/brush/animal/4@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/brush/animal/2@2x.png ... 
2022-11-21 14:14:04 +0000  10907 bytes for ./LFMediaEditingController.bundle/brush/animal/2@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/brush/EditImageSmearBrush@2x.png ... 
2022-11-21 14:14:04 +0000  6042 bytes for ./LFMediaEditingController.bundle/brush/EditImageSmearBrush@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/brush/EditImageStampBrushFruit@2x.png ... 
2022-11-21 14:14:04 +0000  12651 bytes for ./LFMediaEditingController.bundle/brush/EditImageStampBrushFruit@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/EditImageMosaicToolBtn_HL@2x.png ... 
2022-11-21 14:14:04 +0000  138 bytes for ./LFMediaEditingController.bundle/EditImageMosaicToolBtn_HL@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/EditImageTextStyle@2x.png ... 
2022-11-21 14:14:04 +0000  172 bytes for ./LFMediaEditingController.bundle/EditImageTextStyle@2x.png
copying file ./LFMediaEditingController.bundle/EditImagePenToolBtn_HL@2x.png ... 
2022-11-21 14:14:04 +0000  363 bytes for ./LFMediaEditingController.bundle/EditImagePenToolBtn_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImageStickRemove@2x.png ... 
2022-11-21 14:14:04 +0000  8857 bytes for ./LFMediaEditingController.bundle/EditImageStickRemove@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/EditImageTextToolBtn@2x.png ... 
130 bytes for ./LFMediaEditingController.bundle/EditImageTextToolBtn@2x.png
copying file ./LFMediaEditingController.bundle/EditImageBrushMosaicBtn_HL@2x.png ... 
2022-11-21 14:14:04 +0000  854 bytes for ./LFMediaEditingController.bundle/EditImageBrushMosaicBtn_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImageTextAlignmentCenter_HL@2x.png ... 
1737 bytes for ./LFMediaEditingController.bundle/EditImageTextAlignmentCenter_HL@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/EditImageBrushMosaicBtn@2x.png ... 
2022-11-21 14:14:04 +0000  871 bytes for ./LFMediaEditingController.bundle/EditImageBrushMosaicBtn@2x.png
copying file ./LFMediaEditingController.bundle/EditImageTextFont_HL@2x.png ... 
2022-11-21 14:14:04 +0000  2807 bytes for ./LFMediaEditingController.bundle/EditImageTextFont_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImagePenTool_Stamp_HL@2x.png ... 
2022-11-21 14:14:04 +0000  2688 bytes for ./LFMediaEditingController.bundle/EditImagePenTool_Stamp_HL@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/EditImagePenTool_Eraser@2x.png ... 
2022-11-21 14:14:04 +0000  1112 bytes for ./LFMediaEditingController.bundle/EditImagePenTool_Eraser@2x.png
copying file ./LFMediaEditingController.bundle/EditImagePenTool_Fluorescent_HL@2x.png ... 
2022-11-21 14:14:04 +0000  3511 bytes for ./LFMediaEditingController.bundle/EditImagePenTool_Fluorescent_HL@2x.png
copying file ./LFMediaEditingController.bundle/LFMediaEditingController.strings ... 
2022-11-21 14:14:04 +0000  1950 bytes for ./LFMediaEditingController.bundle/LFMediaEditingController.strings
copying file ./LFMediaEditingController.bundle/StickerZoomingViewDelete@2x.png ... 
2022-11-21 14:14:04 +0000  827 bytes for ./LFMediaEditingController.bundle/StickerZoomingViewDelete@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/StickerDisplayPlaceholder@2x.png ... 
2022-11-21 14:14:04 +0000  9910 bytes for ./LFMediaEditingController.bundle/StickerDisplayPlaceholder@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFMediaEditingController.bundle/EditImageTextStyle_HL@2x.png ... 
2022-11-21 14:14:04 +0000  169 bytes for ./LFMediaEditingController.bundle/EditImageTextStyle_HL@2x.png
copying file ./LFMediaEditingController.bundle/EditImageTextFont@2x.png ... 
2022-11-21 14:14:04 +0000  1484 bytes for ./LFMediaEditingController.bundle/EditImageTextFont@2x.png
2022-11-21 14:14:04 +0000  copying file ./MJRefresh.bundle/zh-Hans.lproj/Localizable.strings ... 
2022-11-21 14:14:04 +0000  1368 bytes for ./MJRefresh.bundle/zh-Hans.lproj/Localizable.strings
2022-11-21 14:14:04 +0000  copying file ./MJRefresh.bundle/en.lproj/Localizable.strings ... 
2022-11-21 14:14:04 +0000  1374 bytes for ./MJRefresh.bundle/en.lproj/Localizable.strings
2022-11-21 14:14:04 +0000  copying file ./MJRefresh.bundle/uk.lproj/Localizable.strings ... 
2022-11-21 14:14:04 +0000  1534 bytes for ./MJRefresh.bundle/uk.lproj/Localizable.strings
2022-11-21 14:14:04 +0000  copying file ./MJRefresh.bundle/arrow@2x.png ... 
2022-11-21 14:14:04 +0000  1033 bytes for ./MJRefresh.bundle/arrow@2x.png
2022-11-21 14:14:04 +0000  copying file ./MJRefresh.bundle/ko.lproj/Localizable.strings ... 
2022-11-21 14:14:04 +0000  771 bytes for ./MJRefresh.bundle/ko.lproj/Localizable.strings
2022-11-21 14:14:04 +0000  copying file ./MJRefresh.bundle/zh-Hant.lproj/Localizable.strings ... 
2022-11-21 14:14:04 +0000  891 bytes for ./MJRefresh.bundle/zh-Hant.lproj/Localizable.strings
2022-11-21 14:14:04 +0000  copying file ./MJRefresh.bundle/trail_arrow@2x.png ... 
2022-11-21 14:14:04 +0000  2322 bytes for ./MJRefresh.bundle/trail_arrow@2x.png
copying file ./MJRefresh.bundle/ru.lproj/Localizable.strings ... 
2022-11-21 14:14:04 +0000  1502 bytes for ./MJRefresh.bundle/ru.lproj/Localizable.strings
2022-11-21 14:14:04 +0000  copying file ./examineAdd6.plist ... 
2022-11-21 14:14:04 +0000  1090 bytes for ./examineAdd6.plist
copying file ./LaunchImage-568h@2x.png ... 
2022-11-21 14:14:04 +0000  67344 bytes for ./LaunchImage-568h@2x.png
2022-11-21 14:14:04 +0000  copying file ./AppIcon60x60@2x.png ... 
2022-11-21 14:14:04 +0000  24225 bytes for ./AppIcon60x60@2x.png
copying file ./issueAdd.plist ... 
2022-11-21 14:14:04 +0000  454 bytes for ./issueAdd.plist
2022-11-21 14:14:04 +0000  copying file ./examineAdd1.plist ... 
2022-11-21 14:14:04 +0000  701 bytes for ./examineAdd1.plist
copying file ./examineAdd3.plist ... 
2022-11-21 14:14:04 +0000  656 bytes for ./examineAdd3.plist
2022-11-21 14:14:04 +0000  copying file ./LXFCameraController.nib ... 
2022-11-21 14:14:04 +0000  5208 bytes for ./LXFCameraController.nib
2022-11-21 14:14:04 +0000  copying file ./LFEasyNoticeBar.bundle/error@2x.png ... 
2022-11-21 14:14:04 +0000  2274 bytes for ./LFEasyNoticeBar.bundle/error@2x.png
copying file ./LFEasyNoticeBar.bundle/warning@2x.png ... 
2022-11-21 14:14:04 +0000  1961 bytes for ./LFEasyNoticeBar.bundle/warning@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFEasyNoticeBar.bundle/success@2x.png ... 
2022-11-21 14:14:04 +0000  2537 bytes for ./LFEasyNoticeBar.bundle/success@2x.png
copying file ./LFEasyNoticeBar.bundle/info@2x.png ... 
2022-11-21 14:14:04 +0000  1814 bytes for ./LFEasyNoticeBar.bundle/info@2x.png
2022-11-21 14:14:04 +0000  copying file ./LaunchImage-800-667h@2x.png ... 
2022-11-21 14:14:04 +0000  87737 bytes for ./LaunchImage-800-667h@2x.png
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/de.lproj/Localizable.strings ... 
2022-11-21 14:14:04 +0000  1909 bytes for ./TZImagePickerController.bundle/de.lproj/Localizable.strings
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/ar.lproj/Localizable.strings ... 
2022-11-21 14:14:04 +0000  2237 bytes for ./TZImagePickerController.bundle/ar.lproj/Localizable.strings
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/takePicture@2x.png ... 
2022-11-21 14:14:04 +0000  3054 bytes for ./TZImagePickerController.bundle/takePicture@2x.png
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/zh-Hans.lproj/Localizable.strings ... 
2022-11-21 14:14:04 +0000  2892 bytes for ./TZImagePickerController.bundle/zh-Hans.lproj/Localizable.strings
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/ja.lproj/Localizable.strings ... 
2022-11-21 14:14:04 +0000  2127 bytes for ./TZImagePickerController.bundle/ja.lproj/Localizable.strings
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/photo_sel_photoPickerVc@2x.png ... 
2022-11-21 14:14:04 +0000  1006 bytes for ./TZImagePickerController.bundle/photo_sel_photoPickerVc@2x.png
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/en.lproj/Localizable.strings ... 
2022-11-21 14:14:04 +0000  3760 bytes for ./TZImagePickerController.bundle/en.lproj/Localizable.strings
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/MMVideoPreviewPlayHL@2x.png ... 
2022-11-21 14:14:04 +0000  3645 bytes for ./TZImagePickerController.bundle/MMVideoPreviewPlayHL@2x.png
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/es.lproj/Localizable.strings ... 
2022-11-21 14:14:04 +0000  1857 bytes for ./TZImagePickerController.bundle/es.lproj/Localizable.strings
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/photo_sel_previewVc@2x.png ... 
2022-11-21 14:14:04 +0000  1183 bytes for ./TZImagePickerController.bundle/photo_sel_previewVc@2x.png
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/MMVideoPreviewPlay@2x.png ... 
2022-11-21 14:14:04 +0000  3645 bytes for ./TZImagePickerController.bundle/MMVideoPreviewPlay@2x.png
copying file ./TZImagePickerController.bundle/iCloudError@2x.png ... 
2022-11-21 14:14:04 +0000  4394 bytes for ./TZImagePickerController.bundle/iCloudError@2x.png
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/preview_original_def@2x.png ... 
2022-11-21 14:14:04 +0000  392 bytes for ./TZImagePickerController.bundle/preview_original_def@2x.png
copying file ./TZImagePickerController.bundle/addMore@2x.png ... 
2022-11-21 14:14:04 +0000  643 bytes for ./TZImagePickerController.bundle/addMore@2x.png
copying file ./TZImagePickerController.bundle/photo_def_previewVc@2x.png ... 
2022-11-21 14:14:04 +0000  1155 bytes for ./TZImagePickerController.bundle/photo_def_previewVc@2x.png
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/photo_original_sel@2x.png ... 
2022-11-21 14:14:04 +0000  620 bytes for ./TZImagePickerController.bundle/photo_original_sel@2x.png
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/ko-KP.lproj/Localizable.strings ... 
2022-11-21 14:14:04 +0000  2021 bytes for ./TZImagePickerController.bundle/ko-KP.lproj/Localizable.strings
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/zh-Hant.lproj/Localizable.strings ... 
2022-11-21 14:14:04 +0000  2892 bytes for ./TZImagePickerController.bundle/zh-Hant.lproj/Localizable.strings
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/takePicture80@2x.png ... 
2022-11-21 14:14:04 +0000  1285 bytes for ./TZImagePickerController.bundle/takePicture80@2x.png
copying file ./TZImagePickerController.bundle/photo_def_photoPickerVc@2x.png ... 
2022-11-21 14:14:04 +0000  1155 bytes for ./TZImagePickerController.bundle/photo_def_photoPickerVc@2x.png
copying file ./TZImagePickerController.bundle/right_arrow@2x.png ... 
1259 bytes for ./TZImagePickerController.bundle/right_arrow@2x.png
copying file ./TZImagePickerController.bundle/preview_number_icon@2x.png ... 
501 bytes for ./TZImagePickerController.bundle/preview_number_icon@2x.png
copying file ./TZImagePickerController.bundle/vi.lproj/Localizable.strings ... 
2073 bytes for ./TZImagePickerController.bundle/vi.lproj/Localizable.strings
copying file ./TZImagePickerController.bundle/navi_back@2x.png ... 
116 bytes for ./TZImagePickerController.bundle/navi_back@2x.png
copying file ./TZImagePickerController.bundle/ru.lproj/Localizable.strings ... 
2022-11-21 14:14:04 +0000  2477 bytes for ./TZImagePickerController.bundle/ru.lproj/Localizable.strings
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/photo_original_def@2x.png ... 
2022-11-21 14:14:04 +0000  1602 bytes for ./TZImagePickerController.bundle/photo_original_def@2x.png
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/fr.lproj/Localizable.strings ... 
2022-11-21 14:14:04 +0000  1992 bytes for ./TZImagePickerController.bundle/fr.lproj/Localizable.strings
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/pt.lproj/Localizable.strings ... 
2022-11-21 14:14:04 +0000  1876 bytes for ./TZImagePickerController.bundle/pt.lproj/Localizable.strings
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/photo_number_icon@2x.png ... 
2022-11-21 14:14:04 +0000  501 bytes for ./TZImagePickerController.bundle/photo_number_icon@2x.png
copying file ./TZImagePickerController.bundle/VideoSendIcon@2x.png ... 
2022-11-21 14:14:04 +0000  223 bytes for ./TZImagePickerController.bundle/VideoSendIcon@2x.png
2022-11-21 14:14:04 +0000  copying file ./TZImagePickerController.bundle/tip@2x.png ... 
2022-11-21 14:14:04 +0000  671 bytes for ./TZImagePickerController.bundle/tip@2x.png
copying file ./loading_push.json ... 
2022-11-21 14:14:04 +0000  2601 bytes for ./loading_push.json
2022-11-21 14:14:04 +0000  copying file ./STAR_bim365_com_cn.cer ... 
2022-11-21 14:14:04 +0000  1633 bytes for ./STAR_bim365_com_cn.cer
copying file ./LaunchImage-1200-Portrait-2688h@3x.png ... 
2022-11-21 14:14:04 +0000  154463 bytes for ./LaunchImage-1200-Portrait-2688h@3x.png
2022-11-21 14:14:04 +0000  copying file ./examineAdd5.plist ... 
966 bytes for ./examineAdd5.plist
2022-11-21 14:14:04 +0000  copying file ./Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib ... 
2022-11-21 14:14:04 +0000  916 bytes for ./Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib
2022-11-21 14:14:04 +0000  copying file ./Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib ... 
2022-11-21 14:14:04 +0000  1173 bytes for ./Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib
copying file ./Base.lproj/Main.storyboardc/Info.plist ... 
2022-11-21 14:14:04 +0000  258 bytes for ./Base.lproj/Main.storyboardc/Info.plist
2022-11-21 14:14:04 +0000  copying file ./Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib ... 
2022-11-21 14:14:04 +0000  1173 bytes for ./Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib
2022-11-21 14:14:04 +0000  copying file ./Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib ... 
896 bytes for ./Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib
2022-11-21 14:14:04 +0000  copying file ./Base.lproj/LaunchScreen.storyboardc/Info.plist ... 
2022-11-21 14:14:04 +0000  258 bytes for ./Base.lproj/LaunchScreen.storyboardc/Info.plist
2022-11-21 14:14:04 +0000  copying file ./loading_alone.json ... 
2022-11-21 14:14:04 +0000  5801 bytes for ./loading_alone.json
2022-11-21 14:14:04 +0000  copying file ./LFImagePickerController.bundle/takePicture@2x.png ... 
2022-11-21 14:14:04 +0000  1588 bytes for ./LFImagePickerController.bundle/takePicture@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFImagePickerController.bundle/video_pause@2x.png ... 
2022-11-21 14:14:04 +0000  2209 bytes for ./LFImagePickerController.bundle/video_pause@2x.png
copying file ./LFImagePickerController.bundle/LFImagePickerController.strings ... 
2022-11-21 14:14:04 +0000  2572 bytes for ./LFImagePickerController.bundle/LFImagePickerController.strings
copying file ./LFImagePickerController.bundle/MMVideoPreviewPlayHL@2x.png ... 
2022-11-21 14:14:04 +0000  2721 bytes for ./LFImagePickerController.bundle/MMVideoPreviewPlayHL@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFImagePickerController.bundle/MMVideoPreviewPlay@2x.png ... 
2022-11-21 14:14:04 +0000  2733 bytes for ./LFImagePickerController.bundle/MMVideoPreviewPlay@2x.png
copying file ./LFImagePickerController.bundle/album_list_img_default@2x.png ... 
2022-11-21 14:14:04 +0000  696 bytes for ./LFImagePickerController.bundle/album_list_img_default@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFImagePickerController.bundle/photo_album_def@2x.png ... 
1966 bytes for ./LFImagePickerController.bundle/photo_album_def@2x.png
copying file ./LFImagePickerController.bundle/titleView_arrow@2x.png ... 
2022-11-21 14:14:04 +0000  904 bytes for ./LFImagePickerController.bundle/titleView_arrow@2x.png
copying file ./LFImagePickerController.bundle/photo_original_sel@2x.png ... 
2022-11-21 14:14:04 +0000  2674 bytes for ./LFImagePickerController.bundle/photo_original_sel@2x.png
copying file ./LFImagePickerController.bundle/fileicon_piiic_wall@2x.png ... 
2022-11-21 14:14:04 +0000  2846 bytes for ./LFImagePickerController.bundle/fileicon_piiic_wall@2x.png
copying file ./LFImagePickerController.bundle/photo_album_sel@2x.png ... 
2022-11-21 14:14:04 +0000  3415 bytes for ./LFImagePickerController.bundle/photo_album_sel@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFImagePickerController.bundle/contacts_add_myablum@2x.png ... 
2022-11-21 14:14:04 +0000  250 bytes for ./LFImagePickerController.bundle/contacts_add_myablum@2x.png
copying file ./LFImagePickerController.bundle/fileicon_gif_wall@2x.png ... 
2022-11-21 14:14:04 +0000  2511 bytes for ./LFImagePickerController.bundle/fileicon_gif_wall@2x.png
copying file ./LFImagePickerController.bundle/navigationbar_back_arrow@2x.png ... 
2022-11-21 14:14:04 +0000  455 bytes for ./LFImagePickerController.bundle/navigationbar_back_arrow@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFImagePickerController.bundle/video_play@2x.png ... 
2022-11-21 14:14:04 +0000  1145 bytes for ./LFImagePickerController.bundle/video_play@2x.png
copying file ./LFImagePickerController.bundle/photo_original_def@2x.png ... 
2022-11-21 14:14:04 +0000  1608 bytes for ./LFImagePickerController.bundle/photo_original_def@2x.png
copying file ./LFImagePickerController.bundle/fileicon_hor_wall@2x.png ... 
2022-11-21 14:14:04 +0000  3105 bytes for ./LFImagePickerController.bundle/fileicon_hor_wall@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFImagePickerController.bundle/fileicon_live_wall@2x.png ... 
2022-11-21 14:14:04 +0000  3128 bytes for ./LFImagePickerController.bundle/fileicon_live_wall@2x.png
copying file ./LFImagePickerController.bundle/ablum_sel@2x.png ... 
2022-11-21 14:14:04 +0000  804 bytes for ./LFImagePickerController.bundle/ablum_sel@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFImagePickerController.bundle/fileicon_video_wall@2x.png ... 
2022-11-21 14:14:04 +0000  233 bytes for ./LFImagePickerController.bundle/fileicon_video_wall@2x.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/GNaviConfig.xml ... 
2022-11-21 14:14:04 +0000  170 bytes for ./AMap.bundle/GNaviConfig.xml
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/res.zip ... 
2022-11-21 14:14:04 +0000  343780 bytes for ./AMap.bundle/res.zip
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/images/purplePin@3x.png ... 
2022-11-21 14:14:04 +0000  2844 bytes for ./AMap.bundle/images/purplePin@3x.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/images/arrow_line_outer.png ... 
2022-11-21 14:14:04 +0000  1518 bytes for ./AMap.bundle/images/arrow_line_outer.png
copying file ./AMap.bundle/images/greenPin@3x.png ... 
2022-11-21 14:14:04 +0000  2844 bytes for ./AMap.bundle/images/greenPin@3x.png
copying file ./AMap.bundle/images/offline_shouqi_2@2x.png ... 
2022-11-21 14:14:04 +0000  225 bytes for ./AMap.bundle/images/offline_shouqi_2@2x.png
copying file ./AMap.bundle/images/particle_fog.png ... 
2022-11-21 14:14:04 +0000  86051 bytes for ./AMap.bundle/images/particle_fog.png
copying file ./AMap.bundle/images/lineTexture.png ... 
2022-11-21 14:14:04 +0000  2830 bytes for ./AMap.bundle/images/lineTexture.png
copying file ./AMap.bundle/images/greenPin_lift@3x.png ... 
2022-11-21 14:14:04 +0000  1401 bytes for ./AMap.bundle/images/greenPin_lift@3x.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/images/greenPin_lift@2x.png ... 
2022-11-21 14:14:04 +0000  960 bytes for ./AMap.bundle/images/greenPin_lift@2x.png
copying file ./AMap.bundle/images/offline_shouqi@2x.png ... 
2022-11-21 14:14:04 +0000  197 bytes for ./AMap.bundle/images/offline_shouqi@2x.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/images/offline_zhankai@2x.png ... 
2022-11-21 14:14:04 +0000  200 bytes for ./AMap.bundle/images/offline_zhankai@2x.png
copying file ./AMap.bundle/images/particle_rain.png ... 
2022-11-21 14:14:04 +0000  4954 bytes for ./AMap.bundle/images/particle_rain.png
copying file ./AMap.bundle/images/calloutArrowMask.png ... 
2022-11-21 14:14:04 +0000  323 bytes for ./AMap.bundle/images/calloutArrowMask.png
copying file ./AMap.bundle/images/traffic_texture_red.png ... 
2022-11-21 14:14:04 +0000  1097 bytes for ./AMap.bundle/images/traffic_texture_red.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/images/calloutArrowMask@2x.png ... 
2022-11-21 14:14:04 +0000  572 bytes for ./AMap.bundle/images/calloutArrowMask@2x.png
copying file ./AMap.bundle/images/greenPin@2x.png ... 
2022-11-21 14:14:04 +0000  1893 bytes for ./AMap.bundle/images/greenPin@2x.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/images/particle_sun_1.png ... 
2022-11-21 14:14:04 +0000  3600 bytes for ./AMap.bundle/images/particle_sun_1.png
copying file ./AMap.bundle/images/particle_sun_0.png ... 
2022-11-21 14:14:04 +0000  6178 bytes for ./AMap.bundle/images/particle_sun_0.png
copying file ./AMap.bundle/images/purplePin@2x.png ... 
2022-11-21 14:14:04 +0000  1873 bytes for ./AMap.bundle/images/purplePin@2x.png
copying file ./AMap.bundle/images/offline_sousuo@2x.png ... 
2022-11-21 14:14:04 +0000  587 bytes for ./AMap.bundle/images/offline_sousuo@2x.png
copying file ./AMap.bundle/images/select_.png ... 
2022-11-21 14:14:04 +0000  1082 bytes for ./AMap.bundle/images/select_.png
copying file ./AMap.bundle/images/pin_shadow.png ... 
2022-11-21 14:14:04 +0000  609 bytes for ./AMap.bundle/images/pin_shadow.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/images/offline_clear@2x.png ... 
2022-11-21 14:14:04 +0000  4107 bytes for ./AMap.bundle/images/offline_clear@2x.png
copying file ./AMap.bundle/images/arrow_line_inner.png ... 
2022-11-21 14:14:04 +0000  1398 bytes for ./AMap.bundle/images/arrow_line_inner.png
copying file ./AMap.bundle/images/greenPin.png ... 
2022-11-21 14:14:04 +0000  988 bytes for ./AMap.bundle/images/greenPin.png
copying file ./AMap.bundle/images/offline_down@2x.png ... 
2022-11-21 14:14:04 +0000  548 bytes for ./AMap.bundle/images/offline_down@2x.png
copying file ./AMap.bundle/images/arrow_line_3d_shadow.png ... 
2022-11-21 14:14:04 +0000  958 bytes for ./AMap.bundle/images/arrow_line_3d_shadow.png
copying file ./AMap.bundle/images/purplePin_lift.png ... 
2022-11-21 14:14:04 +0000  418 bytes for ./AMap.bundle/images/purplePin_lift.png
copying file ./AMap.bundle/images/redPin_lift@3x.png ... 
2022-11-21 14:14:04 +0000  1405 bytes for ./AMap.bundle/images/redPin_lift@3x.png
copying file ./AMap.bundle/images/redPin_lift.png ... 
2022-11-21 14:14:04 +0000  418 bytes for ./AMap.bundle/images/redPin_lift.png
copying file ./AMap.bundle/images/particle_haze.png ... 
2022-11-21 14:14:04 +0000  15547 bytes for ./AMap.bundle/images/particle_haze.png
copying file ./AMap.bundle/images/lineDashTexture.png ... 
2022-11-21 14:14:04 +0000  628 bytes for ./AMap.bundle/images/lineDashTexture.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/images/traffic_texture_blue.png ... 
2022-11-21 14:14:04 +0000  1121 bytes for ./AMap.bundle/images/traffic_texture_blue.png
copying file ./AMap.bundle/images/traffic_texture_green.png ... 
2022-11-21 14:14:04 +0000  1065 bytes for ./AMap.bundle/images/traffic_texture_green.png
copying file ./AMap.bundle/images/traffic_texture_yellow.png ... 
2022-11-21 14:14:04 +0000  1076 bytes for ./AMap.bundle/images/traffic_texture_yellow.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/images/marker_blue@2x.png ... 
2022-11-21 14:14:04 +0000  2547 bytes for ./AMap.bundle/images/marker_blue@2x.png
copying file ./AMap.bundle/images/arrow_line_3d_outer.png ... 
2022-11-21 14:14:04 +0000  347 bytes for ./AMap.bundle/images/arrow_line_3d_outer.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/images/purplePin.png ... 
2022-11-21 14:14:04 +0000  988 bytes for ./AMap.bundle/images/purplePin.png
copying file ./AMap.bundle/images/redPin_lift@2x.png ... 
2022-11-21 14:14:04 +0000  955 bytes for ./AMap.bundle/images/redPin_lift@2x.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/images/particle_snow.png ... 
2022-11-21 14:14:04 +0000  17148 bytes for ./AMap.bundle/images/particle_snow.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/images/traffic_texture_darkred.png ... 
2022-11-21 14:14:04 +0000  947 bytes for ./AMap.bundle/images/traffic_texture_darkred.png
copying file ./AMap.bundle/images/select_@3x.png ... 
2162 bytes for ./AMap.bundle/images/select_@3x.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/images/lineDashTextureDot.png ... 
1400 bytes for ./AMap.bundle/images/lineDashTextureDot.png
copying file ./AMap.bundle/images/pin_shadow@2x.png ... 
1155 bytes for ./AMap.bundle/images/pin_shadow@2x.png
copying file ./AMap.bundle/images/redPin@3x.png ... 
2022-11-21 14:14:04 +0000  2848 bytes for ./AMap.bundle/images/redPin@3x.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/images/purplePin_lift@2x.png ... 
2022-11-21 14:14:04 +0000  960 bytes for ./AMap.bundle/images/purplePin_lift@2x.png
copying file ./AMap.bundle/images/purplePin_lift@3x.png ... 
2022-11-21 14:14:04 +0000  1406 bytes for ./AMap.bundle/images/purplePin_lift@3x.png
copying file ./AMap.bundle/images/lineTextureThin.png ... 
2022-11-21 14:14:04 +0000  554 bytes for ./AMap.bundle/images/lineTextureThin.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/images/redPin@2x.png ... 
2022-11-21 14:14:04 +0000  1878 bytes for ./AMap.bundle/images/redPin@2x.png
copying file ./AMap.bundle/images/offline_zhankai_2@2x.png ... 
2022-11-21 14:14:04 +0000  227 bytes for ./AMap.bundle/images/offline_zhankai_2@2x.png
copying file ./AMap.bundle/images/pin_shadow@3x.png ... 
2022-11-21 14:14:04 +0000  1817 bytes for ./AMap.bundle/images/pin_shadow@3x.png
copying file ./AMap.bundle/images/traffic_texture_gray.png ... 
2022-11-21 14:14:04 +0000  1049 bytes for ./AMap.bundle/images/traffic_texture_gray.png
copying file ./AMap.bundle/images/arrow_line_3d_inner.png ... 
2022-11-21 14:14:04 +0000  441 bytes for ./AMap.bundle/images/arrow_line_3d_inner.png
copying file ./AMap.bundle/images/redPin.png ... 
2022-11-21 14:14:04 +0000  986 bytes for ./AMap.bundle/images/redPin.png
copying file ./AMap.bundle/images/select_@2x.png ... 
2022-11-21 14:14:04 +0000  1082 bytes for ./AMap.bundle/images/select_@2x.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/images/marker_blue.png ... 
2022-11-21 14:14:04 +0000  1972 bytes for ./AMap.bundle/images/marker_blue.png
copying file ./AMap.bundle/images/greenPin_lift.png ... 
2022-11-21 14:14:04 +0000  425 bytes for ./AMap.bundle/images/greenPin_lift.png
copying file ./AMap.bundle/offline/offlinePackage.plist ... 
2022-11-21 14:14:04 +0000  108395 bytes for ./AMap.bundle/offline/offlinePackage.plist
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/3d_navi_sky_day.data ... 
2022-11-21 14:14:04 +0000  1823 bytes for ./AMap.bundle/AMap3D.bundle/3d_navi_sky_day.data
copying file ./AMap.bundle/AMap3D.bundle/dash.data ... 
2022-11-21 14:14:04 +0000  241 bytes for ./AMap.bundle/AMap3D.bundle/dash.data
copying file ./AMap.bundle/AMap3D.bundle/icons_7_16_1560344652.data ... 
2022-11-21 14:14:04 +0000  23596 bytes for ./AMap.bundle/AMap3D.bundle/icons_7_16_1560344652.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/grass_night.png ... 
2022-11-21 14:14:04 +0000  82 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/grass_night.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/cross_sky_night.png ... 
2022-11-21 14:14:04 +0000  17123 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/cross_sky_night.png
copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/d_yellow_night.png ... 
2022-11-21 14:14:04 +0000  15480 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/d_yellow_night.png
copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/cross_bk_grass_day.png ... 
2022-11-21 14:14:04 +0000  107287 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/cross_bk_grass_day.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/road_bottom_day.png ... 
2022-11-21 14:14:04 +0000  1523 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/road_bottom_day.png
copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/1016_1.png ... 
2022-11-21 14:14:04 +0000  370 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/1016_1.png
copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/1016_2.png ... 
2022-11-21 14:14:04 +0000  297 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/1016_2.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/d_yellow_day.png ... 
2022-11-21 14:14:04 +0000  15480 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/d_yellow_day.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/exit_label_bk_secondary_day.png ... 
2022-11-21 14:14:04 +0000  179 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/exit_label_bk_secondary_day.png
copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/grass_day.png ... 
2022-11-21 14:14:04 +0000  82 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/grass_day.png
copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/1015_1.png ... 
2022-11-21 14:14:04 +0000  1094 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/1015_1.png
copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/cross_bk_grass_night.png ... 
2022-11-21 14:14:04 +0000  79787 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/cross_bk_grass_night.png
copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/roadbk_main_day.png ... 
2022-11-21 14:14:04 +0000  99 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/roadbk_main_day.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/1015_2.png ... 
2022-11-21 14:14:04 +0000  108 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/1015_2.png
copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/exit_label_bk_main_day.png ... 
2022-11-21 14:14:04 +0000  175 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/exit_label_bk_main_day.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/cross_sky_day.png ... 
2022-11-21 14:14:04 +0000  20699 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/cross_sky_day.png
copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/road_bottom_night.png ... 
2022-11-21 14:14:04 +0000  1523 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/road_bottom_night.png
copying file ./AMap.bundle/AMap3D.bundle/VM3DRes/roadbk_main_night.png ... 
2022-11-21 14:14:04 +0000  82 bytes for ./AMap.bundle/AMap3D.bundle/VM3DRes/roadbk_main_night.png
copying file ./AMap.bundle/AMap3D.bundle/icons_3_16_1560517561.data ... 
2022-11-21 14:14:04 +0000  32309 bytes for ./AMap.bundle/AMap3D.bundle/icons_3_16_1560517561.data
copying file ./AMap.bundle/AMap3D.bundle/style_5_16_1561711250.data ... 
2022-11-21 14:14:04 +0000  8775 bytes for ./AMap.bundle/AMap3D.bundle/style_5_16_1561711250.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/bktile_n.data ... 
2022-11-21 14:14:04 +0000  109 bytes for ./AMap.bundle/AMap3D.bundle/bktile_n.data
copying file ./AMap.bundle/AMap3D.bundle/bktile.data ... 
2022-11-21 14:14:04 +0000  109 bytes for ./AMap.bundle/AMap3D.bundle/bktile.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/icons_9_16_1560344664.data ... 
2022-11-21 14:14:04 +0000  51159 bytes for ./AMap.bundle/AMap3D.bundle/icons_9_16_1560344664.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/icons_6_16_1560344646.data ... 
2022-11-21 14:14:04 +0000  26238 bytes for ./AMap.bundle/AMap3D.bundle/icons_6_16_1560344646.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/3dportrait.xml ... 
2022-11-21 14:14:04 +0000  4336 bytes for ./AMap.bundle/AMap3D.bundle/3dportrait.xml
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/3dlandscape.xml ... 
2022-11-21 14:14:04 +0000  4336 bytes for ./AMap.bundle/AMap3D.bundle/3dlandscape.xml
copying file ./AMap.bundle/AMap3D.bundle/style_17_16_1561023816.data ... 
2022-11-21 14:14:04 +0000  273 bytes for ./AMap.bundle/AMap3D.bundle/style_17_16_1561023816.data
copying file ./AMap.bundle/AMap3D.bundle/dash_cd.data ... 
1034 bytes for ./AMap.bundle/AMap3D.bundle/dash_cd.data
copying file ./AMap.bundle/AMap3D.bundle/style_100_16_1561026477.data ... 
2022-11-21 14:14:04 +0000  4365 bytes for ./AMap.bundle/AMap3D.bundle/style_100_16_1561026477.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/search_scenic_icon.data ... 
2022-11-21 14:14:04 +0000  38112 bytes for ./AMap.bundle/AMap3D.bundle/search_scenic_icon.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/3d_sky_day.data ... 
2022-11-21 14:14:04 +0000  57143 bytes for ./AMap.bundle/AMap3D.bundle/3d_sky_day.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/roadarrow.data ... 
2022-11-21 14:14:04 +0000  446 bytes for ./AMap.bundle/AMap3D.bundle/roadarrow.data
copying file ./AMap.bundle/AMap3D.bundle/icons_25_16_1560344307.data ... 
2022-11-21 14:14:04 +0000  17677 bytes for ./AMap.bundle/AMap3D.bundle/icons_25_16_1560344307.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/icons_2_16_1560344131.data ... 
2022-11-21 14:14:04 +0000  28474 bytes for ./AMap.bundle/AMap3D.bundle/icons_2_16_1560344131.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/style_4_16_1561711243.data ... 
2022-11-21 14:14:04 +0000  8711 bytes for ./AMap.bundle/AMap3D.bundle/style_4_16_1561711243.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/style_3_16_1561987623.data ... 
2022-11-21 14:14:04 +0000  13005 bytes for ./AMap.bundle/AMap3D.bundle/style_3_16_1561987623.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/waterline.data ... 
2022-11-21 14:14:04 +0000  148 bytes for ./AMap.bundle/AMap3D.bundle/waterline.data
copying file ./AMap.bundle/AMap3D.bundle/building.data ... 
2022-11-21 14:14:04 +0000  996 bytes for ./AMap.bundle/AMap3D.bundle/building.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/tmc_n_allinone.data ... 
2022-11-21 14:14:04 +0000  256 bytes for ./AMap.bundle/AMap3D.bundle/tmc_n_allinone.data
copying file ./AMap.bundle/AMap3D.bundle/config_2_16_1560339691.data ... 
2022-11-21 14:14:04 +0000  207 bytes for ./AMap.bundle/AMap3D.bundle/config_2_16_1560339691.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/tmc_allinone.data ... 
2022-11-21 14:14:04 +0000  1171 bytes for ./AMap.bundle/AMap3D.bundle/tmc_allinone.data
copying file ./AMap.bundle/AMap3D.bundle/crossing_nigth_bk.data ... 
2022-11-21 14:14:04 +0000  18794 bytes for ./AMap.bundle/AMap3D.bundle/crossing_nigth_bk.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/styleiconslist.data ... 
868 bytes for ./AMap.bundle/AMap3D.bundle/styleiconslist.data
copying file ./AMap.bundle/AMap3D.bundle/3d_sky_night.data ... 
2022-11-21 14:14:04 +0000  49684 bytes for ./AMap.bundle/AMap3D.bundle/3d_sky_night.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/lineround.data ... 
2022-11-21 14:14:04 +0000  450 bytes for ./AMap.bundle/AMap3D.bundle/lineround.data
copying file ./AMap.bundle/AMap3D.bundle/mapprofile_1_16_1560563265.data ... 
2022-11-21 14:14:04 +0000  1779 bytes for ./AMap.bundle/AMap3D.bundle/mapprofile_1_16_1560563265.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/style_6_16_1562032423.data ... 
2022-11-21 14:14:04 +0000  16123 bytes for ./AMap.bundle/AMap3D.bundle/style_6_16_1562032423.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/style_0_16_1561381751.data ... 
2022-11-21 14:14:04 +0000  6619 bytes for ./AMap.bundle/AMap3D.bundle/style_0_16_1561381751.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/icons_8_16_1560344658.data ... 
2022-11-21 14:14:04 +0000  16283 bytes for ./AMap.bundle/AMap3D.bundle/icons_8_16_1560344658.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/icons_4_16_1560344142.data ... 
2022-11-21 14:14:04 +0000  29374 bytes for ./AMap.bundle/AMap3D.bundle/icons_4_16_1560344142.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/mapprofile_2_16_1560563265.data ... 
2022-11-21 14:14:04 +0000  1768 bytes for ./AMap.bundle/AMap3D.bundle/mapprofile_2_16_1560563265.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/style_50_16_1501671321.data ... 
2022-11-21 14:14:04 +0000  1606 bytes for ./AMap.bundle/AMap3D.bundle/style_50_16_1501671321.data
copying file ./AMap.bundle/AMap3D.bundle/tmc_l_allinone.data ... 
2022-11-21 14:14:04 +0000  1305 bytes for ./AMap.bundle/AMap3D.bundle/tmc_l_allinone.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/weather/yunqian.png ... 
2022-11-21 14:14:04 +0000  90355 bytes for ./AMap.bundle/AMap3D.bundle/weather/yunqian.png
copying file ./AMap.bundle/AMap3D.bundle/weather/rainmask.png ... 
2022-11-21 14:14:04 +0000  96 bytes for ./AMap.bundle/AMap3D.bundle/weather/rainmask.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/weather/fog.png ... 
2022-11-21 14:14:04 +0000  86051 bytes for ./AMap.bundle/AMap3D.bundle/weather/fog.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/weather/shanbai.png ... 
2022-11-21 14:14:04 +0000  5057 bytes for ./AMap.bundle/AMap3D.bundle/weather/shanbai.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/weather/haze.png ... 
2022-11-21 14:14:04 +0000  15547 bytes for ./AMap.bundle/AMap3D.bundle/weather/haze.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/weather/snow.png ... 
2022-11-21 14:14:04 +0000  17148 bytes for ./AMap.bundle/AMap3D.bundle/weather/snow.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/weather/snow_far.png ... 
2022-11-21 14:14:04 +0000  17637 bytes for ./AMap.bundle/AMap3D.bundle/weather/snow_far.png
copying file ./AMap.bundle/AMap3D.bundle/weather/snowmask.png ... 
2022-11-21 14:14:04 +0000  21837 bytes for ./AMap.bundle/AMap3D.bundle/weather/snowmask.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/weather/yunhou.png ... 
2022-11-21 14:14:04 +0000  149750 bytes for ./AMap.bundle/AMap3D.bundle/weather/yunhou.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/weather/shandianyun.png ... 
2022-11-21 14:14:04 +0000  58874 bytes for ./AMap.bundle/AMap3D.bundle/weather/shandianyun.png
copying file ./AMap.bundle/AMap3D.bundle/weather/rain.png ... 
2022-11-21 14:14:04 +0000  3196 bytes for ./AMap.bundle/AMap3D.bundle/weather/rain.png
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/config_1_16_1560339683.data ... 
2022-11-21 14:14:04 +0000  489 bytes for ./AMap.bundle/AMap3D.bundle/config_1_16_1560339683.data
copying file ./AMap.bundle/AMap3D.bundle/dash_tq.data ... 
2022-11-21 14:14:04 +0000  249 bytes for ./AMap.bundle/AMap3D.bundle/dash_tq.data
copying file ./AMap.bundle/AMap3D.bundle/icons_50_16_1541648499.data ... 
2022-11-21 14:14:04 +0000  25385 bytes for ./AMap.bundle/AMap3D.bundle/icons_50_16_1541648499.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/icons-for_custom_5_14.data ... 
2022-11-21 14:14:04 +0000  2628 bytes for ./AMap.bundle/AMap3D.bundle/icons-for_custom_5_14.data
copying file ./AMap.bundle/AMap3D.bundle/icons_1_16_1561444603.data ... 
2022-11-21 14:14:04 +0000  29587 bytes for ./AMap.bundle/AMap3D.bundle/icons_1_16_1561444603.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/style_1_16_1562032355.data ... 
2022-11-21 14:14:04 +0000  18639 bytes for ./AMap.bundle/AMap3D.bundle/style_1_16_1562032355.data
2022-11-21 14:14:04 +0000  copying file ./AMap.bundle/AMap3D.bundle/icons_5_16_1561028345.data ... 
2022-11-21 14:14:04 +0000  65548 bytes for ./AMap.bundle/AMap3D.bundle/icons_5_16_1561028345.data
copying file ./AMap.bundle/AMap3D.bundle/style-for_custom_0_16_1561381751.data ... 
2022-11-21 14:14:04 +0000  6609 bytes for ./AMap.bundle/AMap3D.bundle/style-for_custom_0_16_1561381751.data
copying file ./AMap.bundle/AMap3D.bundle/crossing_day_bk.data ... 
2022-11-21 14:14:04 +0000  25317 bytes for ./AMap.bundle/AMap3D.bundle/crossing_day_bk.data
2022-11-21 14:14:04 +0000  copying file ./Assets.car ... 
2022-11-21 14:14:04 +0000  4779640 bytes for ./Assets.car
copying file ./AppIcon76x76@2x~ipad.png ... 
2022-11-21 14:14:04 +0000  34789 bytes for ./AppIcon76x76@2x~ipad.png
copying file ./LaunchImage-800-Portrait-736h@3x.png ... 
2022-11-21 14:14:04 +0000  114556 bytes for ./LaunchImage-800-Portrait-736h@3x.png
copying file ./LaunchImage-700@2x.png ... 
51649 bytes for ./LaunchImage-700@2x.png
copying file ./adinit.dat ... 
2022-11-21 14:14:04 +0000  260531 bytes for ./adinit.dat
2022-11-21 14:14:04 +0000  copying file ./include.dsp ... 
2022-11-21 14:14:04 +0000  23083 bytes for ./include.dsp
2022-11-21 14:14:04 +0000  copying file ./LaunchImage-700-568h@2x.png ... 
2022-11-21 14:14:04 +0000  67344 bytes for ./LaunchImage-700-568h@2x.png
copying file ./hztxt.shx ... 
2022-11-21 14:14:04 +0000  1171617 bytes for ./hztxt.shx
copying file ./BackNavItem.nib ... 
2022-11-21 14:14:04 +0000  4128 bytes for ./BackNavItem.nib
copying file ./LaunchImage-1200-Portrait-1792h@2x.png ... 
2022-11-21 14:14:04 +0000  91487 bytes for ./LaunchImage-1200-Portrait-1792h@2x.png
2022-11-21 14:14:04 +0000  copying file ./STAR_probim_cn.cer ... 
2022-11-21 14:14:04 +0000  1621 bytes for ./STAR_probim_cn.cer
copying file ./examineAdd.plist ... 
2022-11-21 14:14:04 +0000  839 bytes for ./examineAdd.plist
2022-11-21 14:14:04 +0000  copying file ./LFTipsGuideView.bundle/whiteMask@2x.png ... 
2022-11-21 14:14:04 +0000  2089 bytes for ./LFTipsGuideView.bundle/whiteMask@2x.png
copying file ./LFTipsGuideView.bundle/okBtn@2x.png ... 
2022-11-21 14:14:04 +0000  22971 bytes for ./LFTipsGuideView.bundle/okBtn@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFTipsGuideView.bundle/right_top@2x.png ... 
2022-11-21 14:14:04 +0000  2499 bytes for ./LFTipsGuideView.bundle/right_top@2x.png
copying file ./LFTipsGuideView.bundle/left_top@2x.png ... 
2022-11-21 14:14:04 +0000  2333 bytes for ./LFTipsGuideView.bundle/left_top@2x.png
copying file ./LFTipsGuideView.bundle/left_down@2x.png ... 
2022-11-21 14:14:04 +0000  2470 bytes for ./LFTipsGuideView.bundle/left_down@2x.png
copying file ./LFTipsGuideView.bundle/whiteMask2@2x.png ... 
2022-11-21 14:14:04 +0000  1160 bytes for ./LFTipsGuideView.bundle/whiteMask2@2x.png
2022-11-21 14:14:04 +0000  copying file ./LFTipsGuideView.bundle/right_down@2x.png ... 
2022-11-21 14:14:04 +0000  1934 bytes for ./LFTipsGuideView.bundle/right_down@2x.png
2022-11-21 14:14:04 +0000  copying file ./images.bundle/fail@3x.png ... 
2022-11-21 14:14:04 +0000  1584 bytes for ./images.bundle/fail@3x.png
copying file ./images.bundle/loading@2x.png ... 
2022-11-21 14:14:04 +0000  1126 bytes for ./images.bundle/loading@2x.png
2022-11-21 14:14:04 +0000  copying file ./images.bundle/en.lproj/Root.strings ... 
2022-11-21 14:14:04 +0000  546 bytes for ./images.bundle/en.lproj/Root.strings
2022-11-21 14:14:04 +0000  copying file ./images.bundle/fail@2x.png ... 
2022-11-21 14:14:04 +0000  1584 bytes for ./images.bundle/fail@2x.png
copying file ./images.bundle/loading@3x.png ... 
2022-11-21 14:14:04 +0000  1126 bytes for ./images.bundle/loading@3x.png
2022-11-21 14:14:04 +0000  copying file ./images.bundle/success@2x.png ... 
2022-11-21 14:14:04 +0000  1497 bytes for ./images.bundle/success@2x.png
copying file ./images.bundle/success@3x.png ... 
2022-11-21 14:14:04 +0000  1497 bytes for ./images.bundle/success@3x.png
2022-11-21 14:14:04 +0000  copying file ./images.bundle/success.png ... 
2022-11-21 14:14:04 +0000  1211 bytes for ./images.bundle/success.png
copying file ./images.bundle/Root.plist ... 
2022-11-21 14:14:04 +0000  1456 bytes for ./images.bundle/Root.plist
copying file ./images.bundle/loading.png ... 
2022-11-21 14:14:04 +0000  1126 bytes for ./images.bundle/loading.png
2022-11-21 14:14:04 +0000  copying file ./images.bundle/fail.png ... 
2022-11-21 14:14:04 +0000  1584 bytes for ./images.bundle/fail.png
2022-11-21 14:14:04 +0000  copying file ./Frameworks/Shape.framework/_CodeSignature/CodeResources ... 
2022-11-21 14:14:04 +0000  2086 bytes for ./Frameworks/Shape.framework/_CodeSignature/CodeResources
2022-11-21 14:14:04 +0000  copying file ./Frameworks/Shape.framework/Shape ... 
2022-11-21 14:14:04 +0000  31338208 bytes for ./Frameworks/Shape.framework/Shape
copying file ./Frameworks/Shape.framework/include.dsp ... 
2022-11-21 14:14:04 +0000  23083 bytes for ./Frameworks/Shape.framework/include.dsp
copying file ./Frameworks/Shape.framework/Info.plist ... 
2022-11-21 14:14:04 +0000  727 bytes for ./Frameworks/Shape.framework/Info.plist
copying file ./loading_refresh.json ... 
2022-11-21 14:14:04 +0000  5840 bytes for ./loading_refresh.json
copying file ./LaunchImage.png ... 
2022-11-21 14:14:04 +0000  19348 bytes for ./LaunchImage.png
copying file ./embedded.mobileprovision ... 
2022-11-21 14:14:04 +0000  14903 bytes for ./embedded.mobileprovision
copying file ./PBShareBtn.nib ... 
2022-11-21 14:14:04 +0000  4163 bytes for ./PBShareBtn.nib
copying file ./Info.plist ... 
3137 bytes for ./Info.plist
copying file ./issueAdd2.plist ... 
2022-11-21 14:14:04 +0000  628 bytes for ./issueAdd2.plist
copying file ./PkgInfo ... 
2022-11-21 14:14:04 +0000  8 bytes for ./PkgInfo
2022-11-21 14:14:04 +0000  /usr/bin/ditto exited with 0
2022-11-21 14:14:04 +0000  Processing step: IDEDistributionEmbedProfileStep
2022-11-21 14:14:04 +0000  Skipping profile for item: <IDEDistributionItem: 0x7fd872459160; bundleID='com.jiankeyan.Shape', path='<DVTFilePath:0x7fd8714c7060:'/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app/Frameworks/Shape.framework'>', codeSigningInfo='<_DVTCodeSigningInformation_Path: 0x7fd872458960; isSigned='1', isAdHocSigned='0', signingCertificate='<DVTSigningCertificate: 0x7fd86eebb9d0; name='Apple Development: Zhang JingFang (G75H54H5L4)', hash='A91839012EC4A3BE395E6E3EFBE6B0BFEE1D2A5D', serialNumber='270C04695F493F645C9F8B1033357C19', certificateKinds='(
    "1.2.840.113635.100.6.1.12",
    "1.2.840.113635.100.6.1.2"
), issueDate='2022-03-29 03:05:12 +0000''>', entitlements='(null)', teamID='PQM7L66DSE', identifier='com.jiankeyan.Shape', executablePath='<DVTFilePath:0x7fd86ee6c480:'/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app/Frameworks/Shape.framework/Shape'>', hardenedRuntime='0'>'>
2022-11-21 14:14:04 +0000  Processing step: IDEDistributionInfoPlistStep
2022-11-21 14:14:04 +0000  Processing step: IDEDistributionItemRemovalStep
2022-11-21 14:14:04 +0000  Processing step: IDEDistributionAppThinningPlistStep
2022-11-21 14:14:04 +0000  Skipping step: IDEDistributionAppThinningPlistStep because it said so
2022-11-21 14:14:04 +0000  Processing step: IDEDistributionCompileBitcodeStep
2022-11-21 14:14:04 +0000  Skipping step: IDEDistributionCompileBitcodeStep because it said so
2022-11-21 14:14:04 +0000  Processing step: IDEDistributionCodeSlimmingStep
2022-11-21 14:14:04 +0000  Processing step: IDEDistributionCopyBCSymbolMapsStep
2022-11-21 14:14:04 +0000  Processing step: IDEDistributionSymbolsStep
2022-11-21 14:14:04 +0000  Processing symbols for Shape.framework
2022-11-21 14:14:04 +0000  Running /usr/bin/rsync '-8aPhhE' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root/Payload/IphoneBIMe.app/Frameworks/Shape.framework' '--link-dest' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root/Payload/IphoneBIMe.app/Frameworks' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd'
2022-11-21 14:14:04 +0000  building file list ... 
2022-11-21 14:14:04 +0000   0 files... 2022-11-21 14:14:04 +0000  6 files to consider
2022-11-21 14:14:04 +0000  Shape.framework/
2022-11-21 14:14:04 +0000  Shape.framework/_CodeSignature/
2022-11-21 14:14:04 +0000  
sent 234 bytes  received 32 bytes  532.00 bytes/sec
total size is 29.91M  speedup is 117910.19
2022-11-21 14:14:04 +0000  /usr/bin/rsync exited with 0
2022-11-21 14:14:04 +0000  Running /usr/bin/rsync '-8aPhhE' '/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/dSYMs/' '--link-dest' '/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/dSYMs/' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd'
2022-11-21 14:14:04 +0000  building file list ... 
2022-11-21 14:14:04 +0000   0 files... 2022-11-21 14:14:04 +0000  7 files to consider
2022-11-21 14:14:04 +0000  ./
2022-11-21 14:14:04 +0000  IphoneBIMe.app.dSYM/
IphoneBIMe.app.dSYM/Contents/
IphoneBIMe.app.dSYM/Contents/Resources/
2022-11-21 14:14:04 +0000  IphoneBIMe.app.dSYM/Contents/Resources/DWARF/
2022-11-21 14:14:04 +0000  
sent 258 bytes  received 50 bytes  616.00 bytes/sec
total size is 23.64M  speedup is 80474.56
2022-11-21 14:14:04 +0000  /usr/bin/rsync exited with 0
2022-11-21 14:14:04 +0000  Running /Applications/Xcode.app/Contents/Developer/usr/bin/symbols '-noTextInSOD' '-noDaemon' '-arch' 'all' '-symbolsPackageDir' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Symbols' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Shape.framework/Shape'
2022-11-21 14:14:10 +0000  /var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Shape.framework/Shape [arm64, 5.204224 seconds]:
2022-11-21 14:14:10 +0000  /Applications/Xcode.app/Contents/Developer/usr/bin/symbols exited with 0
2022-11-21 14:14:10 +0000  Processing symbols for IphoneBIMe.app
2022-11-21 14:14:10 +0000  Running /usr/bin/rsync '-8aPhhE' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root/Payload/IphoneBIMe.app' '--link-dest' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root/Payload' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd'
2022-11-21 14:14:10 +0000  building file list ... 
2022-11-21 14:14:10 +0000   0 files... 2022-11-21 14:14:10 +0000   100 files... 2022-11-21 14:14:10 +0000   200 files... 2022-11-21 14:14:10 +0000   300 files... 2022-11-21 14:14:10 +0000   400 files... 2022-11-21 14:14:10 +0000  467 files to consider
2022-11-21 14:14:10 +0000  IphoneBIMe.app/
2022-11-21 14:14:10 +0000  IphoneBIMe.app/AMap.bundle/
IphoneBIMe.app/AMap.bundle/AMap3D.bundle/
IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/
IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/
IphoneBIMe.app/AMap.bundle/images/
IphoneBIMe.app/AMap.bundle/offline/
IphoneBIMe.app/Base.lproj/
IphoneBIMe.app/Base.lproj/LaunchScreen.storyboardc/
IphoneBIMe.app/Base.lproj/Main.storyboardc/
IphoneBIMe.app/DwgViewController.storyboardc/
IphoneBIMe.app/Frameworks/
IphoneBIMe.app/Frameworks/Shape.framework/
IphoneBIMe.app/Frameworks/Shape.framework/_CodeSignature/
IphoneBIMe.app/LFEasyNoticeBar.bundle/
IphoneBIMe.app/LFImagePickerController.bundle/
IphoneBIMe.app/LFMediaEditingController.bundle/
IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/
IphoneBIMe.app/LFMediaEditingController.bundle/brush/
IphoneBIMe.app/LFMediaEditingController.bundle/brush/animal/
IphoneBIMe.app/LFMediaEditingController.bundle/brush/fruit/
IphoneBIMe.app/LFMediaEditingController.bundle/brush/heart/
IphoneBIMe.app/LFMediaEditingController.bundle/stickers/
IphoneBIMe.app/LFTipsGuideView.bundle/
IphoneBIMe.app/MJRefresh.bundle/
IphoneBIMe.app/MJRefresh.bundle/en.lproj/
IphoneBIMe.app/MJRefresh.bundle/ko.lproj/
IphoneBIMe.app/MJRefresh.bundle/ru.lproj/
IphoneBIMe.app/MJRefresh.bundle/uk.lproj/
IphoneBIMe.app/MJRefresh.bundle/zh-Hans.lproj/
IphoneBIMe.app/MJRefresh.bundle/zh-Hant.lproj/
IphoneBIMe.app/SGQRCode.bundle/
IphoneBIMe.app/SGQRCode.bundle/en.lproj/
IphoneBIMe.app/TZImagePickerController.bundle/
IphoneBIMe.app/TZImagePickerController.bundle/ar.lproj/
IphoneBIMe.app/TZImagePickerController.bundle/de.lproj/
IphoneBIMe.app/TZImagePickerController.bundle/en.lproj/
IphoneBIMe.app/TZImagePickerController.bundle/es.lproj/
IphoneBIMe.app/TZImagePickerController.bundle/fr.lproj/
IphoneBIMe.app/TZImagePickerController.bundle/ja.lproj/
IphoneBIMe.app/TZImagePickerController.bundle/ko-KP.lproj/
IphoneBIMe.app/TZImagePickerController.bundle/pt.lproj/
IphoneBIMe.app/TZImagePickerController.bundle/ru.lproj/
IphoneBIMe.app/TZImagePickerController.bundle/vi.lproj/
IphoneBIMe.app/TZImagePickerController.bundle/zh-Hans.lproj/
IphoneBIMe.app/TZImagePickerController.bundle/zh-Hant.lproj/
IphoneBIMe.app/_CodeSignature/
IphoneBIMe.app/images.bundle/
IphoneBIMe.app/images.bundle/en.lproj/
2022-11-21 14:14:10 +0000  
sent 12.89K bytes  received 314 bytes  26.40K bytes/sec
total size is 55.84M  speedup is 4331.91
2022-11-21 14:14:10 +0000  /usr/bin/rsync exited with 0
2022-11-21 14:14:10 +0000  Running /usr/bin/rsync '-8aPhhE' '/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/dSYMs/' '--link-dest' '/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/dSYMs/' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd'
2022-11-21 14:14:10 +0000  building file list ... 
2022-11-21 14:14:10 +0000   0 files... 2022-11-21 14:14:10 +0000  7 files to consider
2022-11-21 14:14:10 +0000  ./
2022-11-21 14:14:10 +0000  IphoneBIMe.app.dSYM/
IphoneBIMe.app.dSYM/Contents/
IphoneBIMe.app.dSYM/Contents/Resources/
IphoneBIMe.app.dSYM/Contents/Resources/DWARF/
2022-11-21 14:14:10 +0000  
sent 270 bytes  received 62 bytes  664.00 bytes/sec
total size is 23.64M  speedup is 74657.12
2022-11-21 14:14:10 +0000  /usr/bin/rsync exited with 0
2022-11-21 14:14:10 +0000  Running /Applications/Xcode.app/Contents/Developer/usr/bin/symbols '-noTextInSOD' '-noDaemon' '-arch' 'all' '-symbolsPackageDir' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Symbols' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/IphoneBIMe.app.dSYM/Contents/Resources/Dwarf/IphoneBIMe'
2022-11-21 14:14:11 +0000  /var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/IphoneBIMe.app.dSYM/Contents/Resources/Dwarf/IphoneBIMe [arm64, 0.671427 seconds]:
2022-11-21 14:14:11 +0000  /Applications/Xcode.app/Contents/Developer/usr/bin/symbols exited with 0
2022-11-21 14:14:11 +0000  Processing step: IDEDistributionCopyAppleProvidedContentStep
2022-11-21 14:14:11 +0000  Processing step: IDEDistributionAppThinningStep
2022-11-21 14:14:11 +0000  Skipping step: IDEDistributionAppThinningStep because it said so
2022-11-21 14:14:11 +0000  Processing step: IDEDistributionArchThinningStep
2022-11-21 14:14:11 +0000  Running /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root/Payload/IphoneBIMe.app/Frameworks/Shape.framework/Shape' '-verify_arch' 'arm64e'
2022-11-21 14:14:11 +0000  /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo exited with 1
2022-11-21 14:14:11 +0000  Skipping architecture thinning for item "Shape" because arch "arm64e" wasn't found
2022-11-21 14:14:11 +0000  Running /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root/Payload/IphoneBIMe.app/IphoneBIMe' '-verify_arch' 'arm64e'
2022-11-21 14:14:11 +0000  /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo exited with 1
2022-11-21 14:14:11 +0000  Skipping architecture thinning for item "IphoneBIMe" because arch "arm64e" wasn't found
2022-11-21 14:14:11 +0000  Processing step: IDEDistributionODRStep
2022-11-21 14:14:11 +0000  Processing step: IDEDistributionStripXattrsStep
2022-11-21 14:14:11 +0000  Skipping stripping extended attributes of item: <IDEDistributionItem: 0x7fd872459160; bundleID='com.jiankeyan.Shape', path='<DVTFilePath:0x7fd8714c7060:'/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app/Frameworks/Shape.framework'>', codeSigningInfo='<_DVTCodeSigningInformation_Path: 0x7fd872458960; isSigned='1', isAdHocSigned='0', signingCertificate='<DVTSigningCertificate: 0x7fd8720559c0; name='Apple Development: Zhang JingFang (G75H54H5L4)', hash='A91839012EC4A3BE395E6E3EFBE6B0BFEE1D2A5D', serialNumber='270C04695F493F645C9F8B1033357C19', certificateKinds='(
    "1.2.840.113635.100.6.1.12",
    "1.2.840.113635.100.6.1.2"
), issueDate='2022-03-29 03:05:12 +0000''>', entitlements='(null)', teamID='PQM7L66DSE', identifier='com.jiankeyan.Shape', executablePath='<DVTFilePath:0x7fd86ee6c480:'/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app/Frameworks/Shape.framework/Shape'>', hardenedRuntime='0'>'>
2022-11-21 14:14:11 +0000  Running /usr/bin/xattr '-crs' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root/Payload/IphoneBIMe.app'
2022-11-21 14:14:11 +0000  /usr/bin/xattr exited with 0
2022-11-21 14:14:11 +0000  Processing step: IDEDistributionCodesignStep
2022-11-21 14:14:11 +0000  Entitlements for <IDEDistributionItem: 0x7fd872459160; bundleID='com.jiankeyan.Shape', path='<DVTFilePath:0x7fd8714c7060:'/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app/Frameworks/Shape.framework'>', codeSigningInfo='<_DVTCodeSigningInformation_Path: 0x7fd872458960; isSigned='1', isAdHocSigned='0', signingCertificate='<DVTSigningCertificate: 0x7fd86eeb89b0; name='Apple Development: Zhang JingFang (G75H54H5L4)', hash='A91839012EC4A3BE395E6E3EFBE6B0BFEE1D2A5D', serialNumber='270C04695F493F645C9F8B1033357C19', certificateKinds='(
    "1.2.840.113635.100.6.1.12",
    "1.2.840.113635.100.6.1.2"
), issueDate='2022-03-29 03:05:12 +0000''>', entitlements='(null)', teamID='PQM7L66DSE', identifier='com.jiankeyan.Shape', executablePath='<DVTFilePath:0x7fd86ee6c480:'/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app/Frameworks/Shape.framework/Shape'>', hardenedRuntime='0'>'>: {
}
2022-11-21 14:14:11 +0000  Entitlements for <IDEDistributionItem: 0x7fd872459160; bundleID='com.jiankeyan.Shape', path='<DVTFilePath:0x7fd8714c7060:'/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app/Frameworks/Shape.framework'>', codeSigningInfo='<_DVTCodeSigningInformation_Path: 0x7fd872458960; isSigned='1', isAdHocSigned='0', signingCertificate='<DVTSigningCertificate: 0x7fd86edb6d10; name='Apple Development: Zhang JingFang (G75H54H5L4)', hash='A91839012EC4A3BE395E6E3EFBE6B0BFEE1D2A5D', serialNumber='270C04695F493F645C9F8B1033357C19', certificateKinds='(
    "1.2.840.113635.100.6.1.12",
    "1.2.840.113635.100.6.1.2"
), issueDate='2022-03-29 03:05:12 +0000''>', entitlements='(null)', teamID='PQM7L66DSE', identifier='com.jiankeyan.Shape', executablePath='<DVTFilePath:0x7fd86ee6c480:'/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app/Frameworks/Shape.framework/Shape'>', hardenedRuntime='0'>'> are: {
}
2022-11-21 14:14:11 +0000  Writing entitlements for <IDEDistributionItem: 0x7fd872459160; bundleID='com.jiankeyan.Shape', path='<DVTFilePath:0x7fd8714c7060:'/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app/Frameworks/Shape.framework'>', codeSigningInfo='<_DVTCodeSigningInformation_Path: 0x7fd872458960; isSigned='1', isAdHocSigned='0', signingCertificate='<DVTSigningCertificate: 0x7fd86ed34b20; name='Apple Development: Zhang JingFang (G75H54H5L4)', hash='A91839012EC4A3BE395E6E3EFBE6B0BFEE1D2A5D', serialNumber='270C04695F493F645C9F8B1033357C19', certificateKinds='(
    "1.2.840.113635.100.6.1.12",
    "1.2.840.113635.100.6.1.2"
), issueDate='2022-03-29 03:05:12 +0000''>', entitlements='(null)', teamID='PQM7L66DSE', identifier='com.jiankeyan.Shape', executablePath='<DVTFilePath:0x7fd86ee6c480:'/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app/Frameworks/Shape.framework/Shape'>', hardenedRuntime='0'>'> to: /var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/entitlements~~~W1tICH
2022-11-21 14:14:11 +0000  Running /usr/bin/codesign '-vvv' '--force' '--sign' '69640BFAF53B6195AB82E966B4E2BBEAF287E544' '--entitlements' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/entitlements~~~W1tICH' '--generate-entitlement-der' '--preserve-metadata=identifier,flags,runtime' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root/Payload/IphoneBIMe.app/Frameworks/Shape.framework'
2022-11-21 14:14:11 +0000  /var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root/Payload/IphoneBIMe.app/Frameworks/Shape.framework: replacing existing signature
2022-11-21 14:14:11 +0000  /var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root/Payload/IphoneBIMe.app/Frameworks/Shape.framework: signed bundle with Mach-O universal (arm64) [com.jiankeyan.Shape]
2022-11-21 14:14:11 +0000  /usr/bin/codesign exited with 0
2022-11-21 14:14:11 +0000  Entitlements for <IDEDistributionItem: 0x7fd86eed56d0; bundleID='com.probim.IPhoneBIMe', path='<DVTFilePath:0x7fd8a531c910:'/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app'>', codeSigningInfo='<_DVTCodeSigningInformation_Path: 0x7fd8a4ec2d40; isSigned='1', isAdHocSigned='0', signingCertificate='<DVTSigningCertificate: 0x7fd86eeb7d80; name='Apple Development: Zhang JingFang (G75H54H5L4)', hash='A91839012EC4A3BE395E6E3EFBE6B0BFEE1D2A5D', serialNumber='270C04695F493F645C9F8B1033357C19', certificateKinds='(
    "1.2.840.113635.100.6.1.12",
    "1.2.840.113635.100.6.1.2"
), issueDate='2022-03-29 03:05:12 +0000''>', entitlements='{
    "application-identifier" = "PQM7L66DSE.com.probim.IPhoneBIMe";
    "aps-environment" = development;
    "com.apple.developer.team-identifier" = PQM7L66DSE;
    "get-task-allow" = 1;
}', teamID='PQM7L66DSE', identifier='com.probim.IPhoneBIMe', executablePath='<DVTFilePath:0x7fd8714a5570:'/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app/IphoneBIMe'>', hardenedRuntime='0'>'>: {
    "application-identifier" = "PQM7L66DSE.com.probim.IPhoneBIMe";
    "aps-environment" = production;
    "beta-reports-active" = 1;
    "com.apple.developer.team-identifier" = PQM7L66DSE;
    "get-task-allow" = 0;
}
2022-11-21 14:14:11 +0000  Entitlements for <IDEDistributionItem: 0x7fd86eed56d0; bundleID='com.probim.IPhoneBIMe', path='<DVTFilePath:0x7fd8a531c910:'/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app'>', codeSigningInfo='<_DVTCodeSigningInformation_Path: 0x7fd8a4ec2d40; isSigned='1', isAdHocSigned='0', signingCertificate='<DVTSigningCertificate: 0x7fd8714d8370; name='Apple Development: Zhang JingFang (G75H54H5L4)', hash='A91839012EC4A3BE395E6E3EFBE6B0BFEE1D2A5D', serialNumber='270C04695F493F645C9F8B1033357C19', certificateKinds='(
    "1.2.840.113635.100.6.1.12",
    "1.2.840.113635.100.6.1.2"
), issueDate='2022-03-29 03:05:12 +0000''>', entitlements='{
    "application-identifier" = "PQM7L66DSE.com.probim.IPhoneBIMe";
    "aps-environment" = development;
    "com.apple.developer.team-identifier" = PQM7L66DSE;
    "get-task-allow" = 1;
}', teamID='PQM7L66DSE', identifier='com.probim.IPhoneBIMe', executablePath='<DVTFilePath:0x7fd8714a5570:'/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app/IphoneBIMe'>', hardenedRuntime='0'>'> are: {
    "application-identifier" = "PQM7L66DSE.com.probim.IPhoneBIMe";
    "aps-environment" = production;
    "beta-reports-active" = 1;
    "com.apple.developer.team-identifier" = PQM7L66DSE;
    "get-task-allow" = 0;
}
2022-11-21 14:14:11 +0000  Writing entitlements for <IDEDistributionItem: 0x7fd86eed56d0; bundleID='com.probim.IPhoneBIMe', path='<DVTFilePath:0x7fd8a531c910:'/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app'>', codeSigningInfo='<_DVTCodeSigningInformation_Path: 0x7fd8a4ec2d40; isSigned='1', isAdHocSigned='0', signingCertificate='<DVTSigningCertificate: 0x7fd86efcc540; name='Apple Development: Zhang JingFang (G75H54H5L4)', hash='A91839012EC4A3BE395E6E3EFBE6B0BFEE1D2A5D', serialNumber='270C04695F493F645C9F8B1033357C19', certificateKinds='(
    "1.2.840.113635.100.6.1.12",
    "1.2.840.113635.100.6.1.2"
), issueDate='2022-03-29 03:05:12 +0000''>', entitlements='{
    "application-identifier" = "PQM7L66DSE.com.probim.IPhoneBIMe";
    "aps-environment" = development;
    "com.apple.developer.team-identifier" = PQM7L66DSE;
    "get-task-allow" = 1;
}', teamID='PQM7L66DSE', identifier='com.probim.IPhoneBIMe', executablePath='<DVTFilePath:0x7fd8714a5570:'/Users/zhangjf/Library/Developer/Xcode/Archives/2022-11-21/IphoneBIMe 2022-11-21, 10.13 PM.xcarchive/Products/Applications/IphoneBIMe.app/IphoneBIMe'>', hardenedRuntime='0'>'> to: /var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/entitlements~~~1n19hD
2022-11-21 14:14:11 +0000  Running /usr/bin/codesign '-vvv' '--force' '--sign' '69640BFAF53B6195AB82E966B4E2BBEAF287E544' '--entitlements' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/entitlements~~~1n19hD' '--generate-entitlement-der' '--preserve-metadata=identifier,flags,runtime' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root/Payload/IphoneBIMe.app'
2022-11-21 14:14:11 +0000  /var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root/Payload/IphoneBIMe.app: replacing existing signature
2022-11-21 14:14:12 +0000  /var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root/Payload/IphoneBIMe.app: signed app bundle with Mach-O thin (arm64) [com.probim.IPhoneBIMe]
2022-11-21 14:14:12 +0000  /usr/bin/codesign exited with 0
2022-11-21 14:14:12 +0000  Processing step: IDEDistributionZipODRItemStep
2022-11-21 14:14:12 +0000  Skipping step: IDEDistributionZipODRItemStep because it said so
2022-11-21 14:14:12 +0000  Skipping step: IDEDistributionZipODRItemStep because it said so
2022-11-21 14:14:12 +0000  Processing step: IDEDistributionCreateIPAStep
2022-11-21 14:14:12 +0000  Running /usr/bin/rsync '-8aPhhE' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Symbols' '--link-dest' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root'
2022-11-21 14:14:12 +0000  building file list ... 
2022-11-21 14:14:12 +0000   0 files... 2022-11-21 14:14:12 +0000  3 files to consider
2022-11-21 14:14:12 +0000  Symbols/
2022-11-21 14:14:12 +0000  
sent 200 bytes  received 26 bytes  452.00 bytes/sec
total size is 24.52M  speedup is 113787.08
2022-11-21 14:14:12 +0000  /usr/bin/rsync exited with 0
2022-11-21 14:14:12 +0000  Running /usr/bin/ditto '-V' '-c' '-k' '--norsrc' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root' '/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Packages/IphoneBIMe.ipa'
2022-11-21 14:14:12 +0000  >>> Copying /var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root 
2022-11-21 14:14:12 +0000  copying file ./Payload/IphoneBIMe.app/_CodeSignature/CodeResources ... 
2022-11-21 14:14:12 +0000  119933 bytes for ./Payload/IphoneBIMe.app/_CodeSignature/CodeResources
2022-11-21 14:14:12 +0000  copying file ./Payload/IphoneBIMe.app/marker.zip ... 
2022-11-21 14:14:12 +0000  67582 bytes for ./Payload/IphoneBIMe.app/marker.zip
2022-11-21 14:14:12 +0000  copying file ./Payload/IphoneBIMe.app/examineAdd2.plist ... 
2022-11-21 14:14:12 +0000  1275 bytes for ./Payload/IphoneBIMe.app/examineAdd2.plist
copying file ./Payload/IphoneBIMe.app/LaunchImage-1100-Portrait-2436h@3x.png ... 
2022-11-21 14:14:12 +0000  113897 bytes for ./Payload/IphoneBIMe.app/LaunchImage-1100-Portrait-2436h@3x.png
2022-11-21 14:14:12 +0000  copying file ./Payload/IphoneBIMe.app/LaunchImage@2x.png ... 
2022-11-21 14:14:12 +0000  51649 bytes for ./Payload/IphoneBIMe.app/LaunchImage@2x.png
copying file ./Payload/IphoneBIMe.app/IphoneBIMe ... 
2022-11-21 14:14:13 +0000  16121504 bytes for ./Payload/IphoneBIMe.app/IphoneBIMe
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/examineAdd4.plist ... 
557 bytes for ./Payload/IphoneBIMe.app/examineAdd4.plist
copying file ./Payload/IphoneBIMe.app/SGQRCode.bundle/sound.caf ... 
2022-11-21 14:14:13 +0000  129556 bytes for ./Payload/IphoneBIMe.app/SGQRCode.bundle/sound.caf
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/SGQRCode.bundle/QRCodeScanLine@3x.png ... 
3891 bytes for ./Payload/IphoneBIMe.app/SGQRCode.bundle/QRCodeScanLine@3x.png
copying file ./Payload/IphoneBIMe.app/SGQRCode.bundle/en.lproj/Root.strings ... 
2022-11-21 14:14:13 +0000  546 bytes for ./Payload/IphoneBIMe.app/SGQRCode.bundle/en.lproj/Root.strings
copying file ./Payload/IphoneBIMe.app/SGQRCode.bundle/QRCodeScanLine@2x.png ... 
2022-11-21 14:14:13 +0000  2231 bytes for ./Payload/IphoneBIMe.app/SGQRCode.bundle/QRCodeScanLine@2x.png
copying file ./Payload/IphoneBIMe.app/SGQRCode.bundle/QRCodeScanLineGrid@3x.png ... 
2022-11-21 14:14:13 +0000  14817 bytes for ./Payload/IphoneBIMe.app/SGQRCode.bundle/QRCodeScanLineGrid@3x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/SGQRCode.bundle/QRCodeScanLineGrid@2x.png ... 
2022-11-21 14:14:13 +0000  7999 bytes for ./Payload/IphoneBIMe.app/SGQRCode.bundle/QRCodeScanLineGrid@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/SGQRCode.bundle/Root.plist ... 
2022-11-21 14:14:13 +0000  1456 bytes for ./Payload/IphoneBIMe.app/SGQRCode.bundle/Root.plist
copying file ./Payload/IphoneBIMe.app/DwgViewController.storyboardc/UIViewController-Chr-87-vXo.nib ... 
2022-11-21 14:14:13 +0000  919 bytes for ./Payload/IphoneBIMe.app/DwgViewController.storyboardc/UIViewController-Chr-87-vXo.nib
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/DwgViewController.storyboardc/Chr-87-vXo-view-5By-Hi-wEg.nib ... 
2022-11-21 14:14:13 +0000  1250 bytes for ./Payload/IphoneBIMe.app/DwgViewController.storyboardc/Chr-87-vXo-view-5By-Hi-wEg.nib
copying file ./Payload/IphoneBIMe.app/DwgViewController.storyboardc/Info.plist ... 
2022-11-21 14:14:13 +0000  258 bytes for ./Payload/IphoneBIMe.app/DwgViewController.storyboardc/Info.plist
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/txt.shx ... 
2022-11-21 14:14:13 +0000  20857 bytes for ./Payload/IphoneBIMe.app/txt.shx
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageAudioToolBtn@2x.png ... 
2022-11-21 14:14:13 +0000  499 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageAudioToolBtn@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageMosaicToolBtn@2x.png ... 
2022-11-21 14:14:13 +0000  138 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageMosaicToolBtn@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageEmotionToolBtn@2x.png ... 
2022-11-21 14:14:13 +0000  503 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageEmotionToolBtn@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageAllSelect@2x.png ... 
2022-11-21 14:14:13 +0000  480 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageAllSelect@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageAllSelect_HL@2x.png ... 
2022-11-21 14:14:13 +0000  477 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageAllSelect_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageNoSelect@2x.png ... 
2022-11-21 14:14:13 +0000  915 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageNoSelect@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageUnSelect@2x.png ... 
2022-11-21 14:14:13 +0000  704 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageUnSelect@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageUnSelect_HL@2x.png ... 
2022-11-21 14:14:13 +0000  1031 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageUnSelect_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageInverseSelect_HL@2x.png ... 
2022-11-21 14:14:13 +0000  679 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageInverseSelect_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageSelectd@2x.png ... 
2022-11-21 14:14:13 +0000  963 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageSelectd@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageAddBtn_HL@2x.png ... 
2022-11-21 14:14:13 +0000  223 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageAddBtn_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageInverseSelect@2x.png ... 
2022-11-21 14:14:13 +0000  649 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageInverseSelect@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageAddBtn@2x.png ... 
2022-11-21 14:14:13 +0000  198 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AudioTrack/EditImageAddBtn@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/002.png ... 
2022-11-21 14:14:13 +0000  3882 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/002.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/016.png ... 
2022-11-21 14:14:13 +0000  4627 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/016.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/017.png ... 
2022-11-21 14:14:13 +0000  5663 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/017.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/003.png ... 
2022-11-21 14:14:13 +0000  2684 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/003.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/029.png ... 
2022-11-21 14:14:13 +0000  10273 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/029.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/015.png ... 
2022-11-21 14:14:13 +0000  6959 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/015.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/001.png ... 
2022-11-21 14:14:13 +0000  4267 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/001.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/014.png ... 
2022-11-21 14:14:13 +0000  4643 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/014.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/028.png ... 
2022-11-21 14:14:13 +0000  15853 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/028.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/010.png ... 
2022-11-21 14:14:13 +0000  10757 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/010.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/004.png ... 
2022-11-21 14:14:13 +0000  2792 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/004.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/038.png ... 
2022-11-21 14:14:13 +0000  11089 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/038.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/039.png ... 
2022-11-21 14:14:13 +0000  13093 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/039.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/005.png ... 
2022-11-21 14:14:13 +0000  11071 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/005.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/011.png ... 
2022-11-21 14:14:13 +0000  30937 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/011.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/007.png ... 
2022-11-21 14:14:13 +0000  2450 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/007.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/013.png ... 
2022-11-21 14:14:13 +0000  4489 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/013.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/012.png ... 
2022-11-21 14:14:13 +0000  10848 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/012.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/006.png ... 
2022-11-21 14:14:13 +0000  1673 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/006.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/048.png ... 
2022-11-21 14:14:13 +0000  154931 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/048.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/040.png ... 
9850 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/040.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/041.png ... 
2022-11-21 14:14:13 +0000  16289 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/041.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/043.png ... 
2022-11-21 14:14:13 +0000  20973 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/043.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/042.png ... 
2022-11-21 14:14:13 +0000  13207 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/042.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/046.png ... 
2022-11-21 14:14:13 +0000  17335 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/046.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/047.png ... 
2022-11-21 14:14:13 +0000  168510 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/047.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/045.png ... 
2022-11-21 14:14:13 +0000  56087 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/045.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/044.png ... 
2022-11-21 14:14:13 +0000  17846 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/044.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/023.png ... 
2022-11-21 14:14:13 +0000  21646 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/023.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/037.png ... 
2022-11-21 14:14:13 +0000  14899 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/037.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/036.png ... 
2022-11-21 14:14:13 +0000  11932 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/036.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/022.png ... 
2022-11-21 14:14:13 +0000  10855 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/022.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/008.png ... 
2022-11-21 14:14:13 +0000  13539 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/008.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/034.png ... 
2022-11-21 14:14:13 +0000  17132 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/034.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/020.png ... 
6481 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/020.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/021.png ... 
2022-11-21 14:14:13 +0000  8710 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/021.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/035.png ... 
2022-11-21 14:14:13 +0000  4627 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/035.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/009.png ... 
2022-11-21 14:14:13 +0000  15121 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/009.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/031.png ... 
2022-11-21 14:14:13 +0000  13639 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/031.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/025.png ... 
2022-11-21 14:14:13 +0000  12670 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/025.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/019.png ... 
2022-11-21 14:14:13 +0000  3857 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/019.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/018.png ... 
2022-11-21 14:14:13 +0000  4926 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/018.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/024.png ... 
2022-11-21 14:14:13 +0000  22627 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/024.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/030.png ... 
2022-11-21 14:14:13 +0000  4709 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/030.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/026.png ... 
2022-11-21 14:14:13 +0000  2316 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/026.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/032.png ... 
2022-11-21 14:14:13 +0000  17418 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/032.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/033.png ... 
2022-11-21 14:14:13 +0000  12515 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/033.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/027.png ... 
2022-11-21 14:14:13 +0000  17781 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/stickers/027.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextAlignmentLeft@2x.png ... 
2022-11-21 14:14:13 +0000  1129 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextAlignmentLeft@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Fluorescent@2x.png ... 
2022-11-21 14:14:13 +0000  1710 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Fluorescent@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenToolBtn@2x.png ... 
2022-11-21 14:14:13 +0000  361 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenToolBtn@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditVideoCropToolBtn@2x.png ... 
2022-11-21 14:14:13 +0000  123 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditVideoCropToolBtn@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextAlignmentCenter@2x.png ... 
2022-11-21 14:14:13 +0000  1178 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextAlignmentCenter@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageStickRemove_HL@2x.png ... 
2022-11-21 14:14:13 +0000  13592 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageStickRemove_HL@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/StickerZoomingViewCircle@2x.png ... 
2022-11-21 14:14:13 +0000  753 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/StickerZoomingViewCircle@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Highlight_HL@2x.png ... 
2022-11-21 14:14:13 +0000  2365 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Highlight_HL@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageCropToolBtn_HL@2x.png ... 
2022-11-21 14:14:13 +0000  125 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageCropToolBtn_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AlbumCommentLine@2x.png ... 
2022-11-21 14:14:13 +0000  89 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/AlbumCommentLine@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextAlignmentLeft_HL@2x.png ... 
2022-11-21 14:14:13 +0000  1696 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextAlignmentLeft_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/StickerDisplayFail@2x.png ... 
2022-11-21 14:14:13 +0000  11653 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/StickerDisplayFail@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextAlignmentRight_HL@2x.png ... 
2022-11-21 14:14:13 +0000  1677 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextAlignmentRight_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageEmotionToolBtn_HL@2x.png ... 
2022-11-21 14:14:13 +0000  482 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageEmotionToolBtn_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Eraser_HL@2x.png ... 
2022-11-21 14:14:13 +0000  2047 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Eraser_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Paint_HL@2x.png ... 
2022-11-21 14:14:13 +0000  2824 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Paint_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageRevokeBtn@2x.png ... 
2022-11-21 14:14:13 +0000  390 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageRevokeBtn@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageFilterToolBtn@2x.png ... 
2022-11-21 14:14:13 +0000  773 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageFilterToolBtn@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageBrushBlurryBtn@2x.png ... 
2022-11-21 14:14:13 +0000  1625 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageBrushBlurryBtn@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Chalk@2x.png ... 
2022-11-21 14:14:13 +0000  923 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Chalk@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageConfirmBtn_HL@2x.png ... 
2022-11-21 14:14:13 +0000  466 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageConfirmBtn_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageCancelBtn_HL@2x.png ... 
2022-11-21 14:14:13 +0000  244 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageCancelBtn_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageCropToolBtn@2x.png ... 
2022-11-21 14:14:13 +0000  125 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageCropToolBtn@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditVideoCropToolBtn_HL@2x.png ... 
2022-11-21 14:14:13 +0000  123 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditVideoCropToolBtn_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageConfirmBtn@2x.png ... 
2022-11-21 14:14:13 +0000  461 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageConfirmBtn@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageRevokeBtn_HL@2x.png ... 
2022-11-21 14:14:13 +0000  330 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageRevokeBtn_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageRateToolBtn@2x.png ... 
2022-11-21 14:14:13 +0000  667 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageRateToolBtn@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageWaterDrop@2x.png ... 
2022-11-21 14:14:13 +0000  514 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageWaterDrop@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageBrushBlurryBtn_HL@2x.png ... 
2022-11-21 14:14:13 +0000  2314 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageBrushBlurryBtn_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTraditionalMosaicBtn@2x.png ... 
2022-11-21 14:14:13 +0000  112 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTraditionalMosaicBtn@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextBG_HL@2x.png ... 
1055 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextBG_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextToolBtn_HL@2x.png ... 
2022-11-21 14:14:13 +0000  130 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextToolBtn_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Highlight@2x.png ... 
2022-11-21 14:14:13 +0000  1277 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Highlight@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageAudioToolBtn_HL@2x.png ... 
2022-11-21 14:14:13 +0000  564 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageAudioToolBtn_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Chalk_HL@2x.png ... 
2022-11-21 14:14:13 +0000  1619 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Chalk_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTraditionalMosaicBtn_HL@2x.png ... 
2022-11-21 14:14:13 +0000  112 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTraditionalMosaicBtn_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageRateToolBtn_HL@2x.png ... 
2022-11-21 14:14:13 +0000  630 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageRateToolBtn_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Stamp@2x.png ... 
2022-11-21 14:14:13 +0000  1456 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Stamp@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageFilterToolBtn_HL@2x.png ... 
2022-11-21 14:14:13 +0000  749 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageFilterToolBtn_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageCancelBtn@2x.png ... 
2022-11-21 14:14:13 +0000  244 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageCancelBtn@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextBG@2x.png ... 
2022-11-21 14:14:13 +0000  474 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextBG@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextAlignmentRight@2x.png ... 
2022-11-21 14:14:13 +0000  1138 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextAlignmentRight@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Paint@2x.png ... 
2022-11-21 14:14:13 +0000  1447 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Paint@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/fruit/5@2x.png ... 
2022-11-21 14:14:13 +0000  22705 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/fruit/5@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/fruit/1@2x.png ... 
2022-11-21 14:14:13 +0000  20558 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/fruit/1@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/fruit/3@2x.png ... 
2022-11-21 14:14:13 +0000  24359 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/fruit/3@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/fruit/6@2x.png ... 
2022-11-21 14:14:13 +0000  21031 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/fruit/6@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/fruit/4@2x.png ... 
2022-11-21 14:14:13 +0000  21530 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/fruit/4@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/fruit/2@2x.png ... 
2022-11-21 14:14:13 +0000  23461 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/fruit/2@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/EditImageStampBrushHeart@2x.png ... 
2022-11-21 14:14:13 +0000  12914 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/EditImageStampBrushHeart@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/heart/5@2x.png ... 
2022-11-21 14:14:13 +0000  20030 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/heart/5@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/heart/1@2x.png ... 
2022-11-21 14:14:13 +0000  24897 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/heart/1@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/heart/3@2x.png ... 
2022-11-21 14:14:13 +0000  28008 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/heart/3@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/heart/4@2x.png ... 
2022-11-21 14:14:13 +0000  19321 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/heart/4@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/heart/2@2x.png ... 
2022-11-21 14:14:13 +0000  25859 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/heart/2@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/EditImageStampBrushAnimal@2x.png ... 
2022-11-21 14:14:13 +0000  11521 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/EditImageStampBrushAnimal@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/EditImageChalkBrush@2x.png ... 
2022-11-21 14:14:13 +0000  4008 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/EditImageChalkBrush@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/animal/5@2x.png ... 
2022-11-21 14:14:13 +0000  13174 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/animal/5@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/animal/1@2x.png ... 
2022-11-21 14:14:13 +0000  11561 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/animal/1@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/animal/3@2x.png ... 
2022-11-21 14:14:13 +0000  14860 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/animal/3@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/animal/4@2x.png ... 
2022-11-21 14:14:13 +0000  12720 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/animal/4@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/animal/2@2x.png ... 
2022-11-21 14:14:13 +0000  10907 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/animal/2@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/EditImageSmearBrush@2x.png ... 
2022-11-21 14:14:13 +0000  6042 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/EditImageSmearBrush@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/EditImageStampBrushFruit@2x.png ... 
2022-11-21 14:14:13 +0000  12651 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/brush/EditImageStampBrushFruit@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageMosaicToolBtn_HL@2x.png ... 
2022-11-21 14:14:13 +0000  138 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageMosaicToolBtn_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextStyle@2x.png ... 
2022-11-21 14:14:13 +0000  172 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextStyle@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenToolBtn_HL@2x.png ... 
2022-11-21 14:14:13 +0000  363 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenToolBtn_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageStickRemove@2x.png ... 
2022-11-21 14:14:13 +0000  8857 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageStickRemove@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextToolBtn@2x.png ... 
2022-11-21 14:14:13 +0000  130 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextToolBtn@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageBrushMosaicBtn_HL@2x.png ... 
2022-11-21 14:14:13 +0000  854 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageBrushMosaicBtn_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextAlignmentCenter_HL@2x.png ... 
2022-11-21 14:14:13 +0000  1737 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextAlignmentCenter_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageBrushMosaicBtn@2x.png ... 
2022-11-21 14:14:13 +0000  871 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageBrushMosaicBtn@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextFont_HL@2x.png ... 
2022-11-21 14:14:13 +0000  2807 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextFont_HL@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Stamp_HL@2x.png ... 
2022-11-21 14:14:13 +0000  2688 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Stamp_HL@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Eraser@2x.png ... 
2022-11-21 14:14:13 +0000  1112 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Eraser@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Fluorescent_HL@2x.png ... 
2022-11-21 14:14:13 +0000  3511 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImagePenTool_Fluorescent_HL@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/LFMediaEditingController.strings ... 
2022-11-21 14:14:13 +0000  1950 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/LFMediaEditingController.strings
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/StickerZoomingViewDelete@2x.png ... 
2022-11-21 14:14:13 +0000  827 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/StickerZoomingViewDelete@2x.png
copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/StickerDisplayPlaceholder@2x.png ... 
2022-11-21 14:14:13 +0000  9910 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/StickerDisplayPlaceholder@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextStyle_HL@2x.png ... 
2022-11-21 14:14:13 +0000  169 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextStyle_HL@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextFont@2x.png ... 
2022-11-21 14:14:13 +0000  1484 bytes for ./Payload/IphoneBIMe.app/LFMediaEditingController.bundle/EditImageTextFont@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  1368 bytes for ./Payload/IphoneBIMe.app/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/MJRefresh.bundle/en.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  1374 bytes for ./Payload/IphoneBIMe.app/MJRefresh.bundle/en.lproj/Localizable.strings
copying file ./Payload/IphoneBIMe.app/MJRefresh.bundle/uk.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  1534 bytes for ./Payload/IphoneBIMe.app/MJRefresh.bundle/uk.lproj/Localizable.strings
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/MJRefresh.bundle/arrow@2x.png ... 
2022-11-21 14:14:13 +0000  1033 bytes for ./Payload/IphoneBIMe.app/MJRefresh.bundle/arrow@2x.png
copying file ./Payload/IphoneBIMe.app/MJRefresh.bundle/ko.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  771 bytes for ./Payload/IphoneBIMe.app/MJRefresh.bundle/ko.lproj/Localizable.strings
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/MJRefresh.bundle/zh-Hant.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  891 bytes for ./Payload/IphoneBIMe.app/MJRefresh.bundle/zh-Hant.lproj/Localizable.strings
copying file ./Payload/IphoneBIMe.app/MJRefresh.bundle/trail_arrow@2x.png ... 
2022-11-21 14:14:13 +0000  2322 bytes for ./Payload/IphoneBIMe.app/MJRefresh.bundle/trail_arrow@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/MJRefresh.bundle/ru.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  1502 bytes for ./Payload/IphoneBIMe.app/MJRefresh.bundle/ru.lproj/Localizable.strings
copying file ./Payload/IphoneBIMe.app/examineAdd6.plist ... 
2022-11-21 14:14:13 +0000  1090 bytes for ./Payload/IphoneBIMe.app/examineAdd6.plist
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LaunchImage-568h@2x.png ... 
2022-11-21 14:14:13 +0000  67344 bytes for ./Payload/IphoneBIMe.app/LaunchImage-568h@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AppIcon60x60@2x.png ... 
2022-11-21 14:14:13 +0000  24225 bytes for ./Payload/IphoneBIMe.app/AppIcon60x60@2x.png
copying file ./Payload/IphoneBIMe.app/issueAdd.plist ... 
2022-11-21 14:14:13 +0000  454 bytes for ./Payload/IphoneBIMe.app/issueAdd.plist
copying file ./Payload/IphoneBIMe.app/examineAdd1.plist ... 
2022-11-21 14:14:13 +0000  701 bytes for ./Payload/IphoneBIMe.app/examineAdd1.plist
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/examineAdd3.plist ... 
2022-11-21 14:14:13 +0000  656 bytes for ./Payload/IphoneBIMe.app/examineAdd3.plist
copying file ./Payload/IphoneBIMe.app/LXFCameraController.nib ... 
2022-11-21 14:14:13 +0000  5208 bytes for ./Payload/IphoneBIMe.app/LXFCameraController.nib
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFEasyNoticeBar.bundle/error@2x.png ... 
2022-11-21 14:14:13 +0000  2274 bytes for ./Payload/IphoneBIMe.app/LFEasyNoticeBar.bundle/error@2x.png
copying file ./Payload/IphoneBIMe.app/LFEasyNoticeBar.bundle/warning@2x.png ... 
2022-11-21 14:14:13 +0000  1961 bytes for ./Payload/IphoneBIMe.app/LFEasyNoticeBar.bundle/warning@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFEasyNoticeBar.bundle/success@2x.png ... 
2022-11-21 14:14:13 +0000  2537 bytes for ./Payload/IphoneBIMe.app/LFEasyNoticeBar.bundle/success@2x.png
copying file ./Payload/IphoneBIMe.app/LFEasyNoticeBar.bundle/info@2x.png ... 
2022-11-21 14:14:13 +0000  1814 bytes for ./Payload/IphoneBIMe.app/LFEasyNoticeBar.bundle/info@2x.png
copying file ./Payload/IphoneBIMe.app/LaunchImage-800-667h@2x.png ... 
2022-11-21 14:14:13 +0000  87737 bytes for ./Payload/IphoneBIMe.app/LaunchImage-800-667h@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/de.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  1909 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/de.lproj/Localizable.strings
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/ar.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  2237 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/ar.lproj/Localizable.strings
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/takePicture@2x.png ... 
2022-11-21 14:14:13 +0000  3054 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/takePicture@2x.png
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/zh-Hans.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  2892 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/zh-Hans.lproj/Localizable.strings
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/ja.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  2127 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/ja.lproj/Localizable.strings
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/photo_sel_photoPickerVc@2x.png ... 
2022-11-21 14:14:13 +0000  1006 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/photo_sel_photoPickerVc@2x.png
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/en.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  3760 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/en.lproj/Localizable.strings
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/MMVideoPreviewPlayHL@2x.png ... 
2022-11-21 14:14:13 +0000  3645 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/MMVideoPreviewPlayHL@2x.png
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/es.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  1857 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/es.lproj/Localizable.strings
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/photo_sel_previewVc@2x.png ... 
2022-11-21 14:14:13 +0000  1183 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/photo_sel_previewVc@2x.png
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/MMVideoPreviewPlay@2x.png ... 
2022-11-21 14:14:13 +0000  3645 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/MMVideoPreviewPlay@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/iCloudError@2x.png ... 
2022-11-21 14:14:13 +0000  4394 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/iCloudError@2x.png
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/preview_original_def@2x.png ... 
2022-11-21 14:14:13 +0000  392 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/preview_original_def@2x.png
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/addMore@2x.png ... 
2022-11-21 14:14:13 +0000  643 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/addMore@2x.png
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/photo_def_previewVc@2x.png ... 
2022-11-21 14:14:13 +0000  1155 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/photo_def_previewVc@2x.png
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/photo_original_sel@2x.png ... 
2022-11-21 14:14:13 +0000  620 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/photo_original_sel@2x.png
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/ko-KP.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  2021 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/ko-KP.lproj/Localizable.strings
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/zh-Hant.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  2892 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/zh-Hant.lproj/Localizable.strings
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/takePicture80@2x.png ... 
2022-11-21 14:14:13 +0000  1285 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/takePicture80@2x.png
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/photo_def_photoPickerVc@2x.png ... 
2022-11-21 14:14:13 +0000  1155 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/photo_def_photoPickerVc@2x.png
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/right_arrow@2x.png ... 
2022-11-21 14:14:13 +0000  1259 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/right_arrow@2x.png
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/preview_number_icon@2x.png ... 
2022-11-21 14:14:13 +0000  501 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/preview_number_icon@2x.png
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/vi.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  2073 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/vi.lproj/Localizable.strings
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/navi_back@2x.png ... 
2022-11-21 14:14:13 +0000  116 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/navi_back@2x.png
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/ru.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  2477 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/ru.lproj/Localizable.strings
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/photo_original_def@2x.png ... 
2022-11-21 14:14:13 +0000  1602 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/photo_original_def@2x.png
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/fr.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  1992 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/fr.lproj/Localizable.strings
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/pt.lproj/Localizable.strings ... 
2022-11-21 14:14:13 +0000  1876 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/pt.lproj/Localizable.strings
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/photo_number_icon@2x.png ... 
2022-11-21 14:14:13 +0000  501 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/photo_number_icon@2x.png
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/VideoSendIcon@2x.png ... 
2022-11-21 14:14:13 +0000  223 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/VideoSendIcon@2x.png
copying file ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/tip@2x.png ... 
2022-11-21 14:14:13 +0000  671 bytes for ./Payload/IphoneBIMe.app/TZImagePickerController.bundle/tip@2x.png
copying file ./Payload/IphoneBIMe.app/loading_push.json ... 
2022-11-21 14:14:13 +0000  2601 bytes for ./Payload/IphoneBIMe.app/loading_push.json
copying file ./Payload/IphoneBIMe.app/STAR_bim365_com_cn.cer ... 
2022-11-21 14:14:13 +0000  1633 bytes for ./Payload/IphoneBIMe.app/STAR_bim365_com_cn.cer
copying file ./Payload/IphoneBIMe.app/LaunchImage-1200-Portrait-2688h@3x.png ... 
2022-11-21 14:14:13 +0000  154463 bytes for ./Payload/IphoneBIMe.app/LaunchImage-1200-Portrait-2688h@3x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/examineAdd5.plist ... 
966 bytes for ./Payload/IphoneBIMe.app/examineAdd5.plist
copying file ./Payload/IphoneBIMe.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib ... 
2022-11-21 14:14:13 +0000  916 bytes for ./Payload/IphoneBIMe.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib
copying file ./Payload/IphoneBIMe.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib ... 
2022-11-21 14:14:13 +0000  1173 bytes for ./Payload/IphoneBIMe.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib
copying file ./Payload/IphoneBIMe.app/Base.lproj/Main.storyboardc/Info.plist ... 
2022-11-21 14:14:13 +0000  258 bytes for ./Payload/IphoneBIMe.app/Base.lproj/Main.storyboardc/Info.plist
copying file ./Payload/IphoneBIMe.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib ... 
2022-11-21 14:14:13 +0000  1173 bytes for ./Payload/IphoneBIMe.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib
copying file ./Payload/IphoneBIMe.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib ... 
2022-11-21 14:14:13 +0000  896 bytes for ./Payload/IphoneBIMe.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib
copying file ./Payload/IphoneBIMe.app/Base.lproj/LaunchScreen.storyboardc/Info.plist ... 
2022-11-21 14:14:13 +0000  258 bytes for ./Payload/IphoneBIMe.app/Base.lproj/LaunchScreen.storyboardc/Info.plist
copying file ./Payload/IphoneBIMe.app/loading_alone.json ... 
2022-11-21 14:14:13 +0000  5801 bytes for ./Payload/IphoneBIMe.app/loading_alone.json
copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/takePicture@2x.png ... 
2022-11-21 14:14:13 +0000  1588 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/takePicture@2x.png
copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/video_pause@2x.png ... 
2022-11-21 14:14:13 +0000  2209 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/video_pause@2x.png
copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/LFImagePickerController.strings ... 
2022-11-21 14:14:13 +0000  2572 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/LFImagePickerController.strings
copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/MMVideoPreviewPlayHL@2x.png ... 
2022-11-21 14:14:13 +0000  2721 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/MMVideoPreviewPlayHL@2x.png
copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/MMVideoPreviewPlay@2x.png ... 
2022-11-21 14:14:13 +0000  2733 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/MMVideoPreviewPlay@2x.png
copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/album_list_img_default@2x.png ... 
2022-11-21 14:14:13 +0000  696 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/album_list_img_default@2x.png
copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/photo_album_def@2x.png ... 
2022-11-21 14:14:13 +0000  1966 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/photo_album_def@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/titleView_arrow@2x.png ... 
2022-11-21 14:14:13 +0000  904 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/titleView_arrow@2x.png
copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/photo_original_sel@2x.png ... 
2022-11-21 14:14:13 +0000  2674 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/photo_original_sel@2x.png
copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/fileicon_piiic_wall@2x.png ... 
2022-11-21 14:14:13 +0000  2846 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/fileicon_piiic_wall@2x.png
copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/photo_album_sel@2x.png ... 
2022-11-21 14:14:13 +0000  3415 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/photo_album_sel@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/contacts_add_myablum@2x.png ... 
2022-11-21 14:14:13 +0000  250 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/contacts_add_myablum@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/fileicon_gif_wall@2x.png ... 
2022-11-21 14:14:13 +0000  2511 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/fileicon_gif_wall@2x.png
copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/navigationbar_back_arrow@2x.png ... 
2022-11-21 14:14:13 +0000  455 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/navigationbar_back_arrow@2x.png
copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/video_play@2x.png ... 
2022-11-21 14:14:13 +0000  1145 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/video_play@2x.png
copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/photo_original_def@2x.png ... 
2022-11-21 14:14:13 +0000  1608 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/photo_original_def@2x.png
copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/fileicon_hor_wall@2x.png ... 
2022-11-21 14:14:13 +0000  3105 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/fileicon_hor_wall@2x.png
copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/fileicon_live_wall@2x.png ... 
2022-11-21 14:14:13 +0000  3128 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/fileicon_live_wall@2x.png
copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/ablum_sel@2x.png ... 
2022-11-21 14:14:13 +0000  804 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/ablum_sel@2x.png
copying file ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/fileicon_video_wall@2x.png ... 
2022-11-21 14:14:13 +0000  233 bytes for ./Payload/IphoneBIMe.app/LFImagePickerController.bundle/fileicon_video_wall@2x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/GNaviConfig.xml ... 
2022-11-21 14:14:13 +0000  170 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/GNaviConfig.xml
copying file ./Payload/IphoneBIMe.app/AMap.bundle/res.zip ... 
2022-11-21 14:14:13 +0000  343780 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/res.zip
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/purplePin@3x.png ... 
2022-11-21 14:14:13 +0000  2844 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/purplePin@3x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/arrow_line_outer.png ... 
2022-11-21 14:14:13 +0000  1518 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/arrow_line_outer.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/greenPin@3x.png ... 
2022-11-21 14:14:13 +0000  2844 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/greenPin@3x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/offline_shouqi_2@2x.png ... 
2022-11-21 14:14:13 +0000  225 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/offline_shouqi_2@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/particle_fog.png ... 
2022-11-21 14:14:13 +0000  86051 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/particle_fog.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/lineTexture.png ... 
2022-11-21 14:14:13 +0000  2830 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/lineTexture.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/greenPin_lift@3x.png ... 
2022-11-21 14:14:13 +0000  1401 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/greenPin_lift@3x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/greenPin_lift@2x.png ... 
2022-11-21 14:14:13 +0000  960 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/greenPin_lift@2x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/offline_shouqi@2x.png ... 
2022-11-21 14:14:13 +0000  197 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/offline_shouqi@2x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/offline_zhankai@2x.png ... 
2022-11-21 14:14:13 +0000  200 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/offline_zhankai@2x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/particle_rain.png ... 
2022-11-21 14:14:13 +0000  4954 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/particle_rain.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/calloutArrowMask.png ... 
2022-11-21 14:14:13 +0000  323 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/calloutArrowMask.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/traffic_texture_red.png ... 
2022-11-21 14:14:13 +0000  1097 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/traffic_texture_red.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/calloutArrowMask@2x.png ... 
2022-11-21 14:14:13 +0000  572 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/calloutArrowMask@2x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/greenPin@2x.png ... 
2022-11-21 14:14:13 +0000  1893 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/greenPin@2x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/particle_sun_1.png ... 
2022-11-21 14:14:13 +0000  3600 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/particle_sun_1.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/particle_sun_0.png ... 
2022-11-21 14:14:13 +0000  6178 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/particle_sun_0.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/purplePin@2x.png ... 
2022-11-21 14:14:13 +0000  1873 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/purplePin@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/offline_sousuo@2x.png ... 
2022-11-21 14:14:13 +0000  587 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/offline_sousuo@2x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/select_.png ... 
2022-11-21 14:14:13 +0000  1082 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/select_.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/pin_shadow.png ... 
2022-11-21 14:14:13 +0000  609 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/pin_shadow.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/offline_clear@2x.png ... 
2022-11-21 14:14:13 +0000  4107 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/offline_clear@2x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/arrow_line_inner.png ... 
2022-11-21 14:14:13 +0000  1398 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/arrow_line_inner.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/greenPin.png ... 
2022-11-21 14:14:13 +0000  988 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/greenPin.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/offline_down@2x.png ... 
2022-11-21 14:14:13 +0000  548 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/offline_down@2x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/arrow_line_3d_shadow.png ... 
2022-11-21 14:14:13 +0000  958 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/arrow_line_3d_shadow.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/purplePin_lift.png ... 
2022-11-21 14:14:13 +0000  418 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/purplePin_lift.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/redPin_lift@3x.png ... 
2022-11-21 14:14:13 +0000  1405 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/redPin_lift@3x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/redPin_lift.png ... 
2022-11-21 14:14:13 +0000  418 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/redPin_lift.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/particle_haze.png ... 
2022-11-21 14:14:13 +0000  15547 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/particle_haze.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/lineDashTexture.png ... 
2022-11-21 14:14:13 +0000  628 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/lineDashTexture.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/traffic_texture_blue.png ... 
2022-11-21 14:14:13 +0000  1121 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/traffic_texture_blue.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/traffic_texture_green.png ... 
2022-11-21 14:14:13 +0000  1065 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/traffic_texture_green.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/traffic_texture_yellow.png ... 
2022-11-21 14:14:13 +0000  1076 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/traffic_texture_yellow.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/marker_blue@2x.png ... 
2022-11-21 14:14:13 +0000  2547 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/marker_blue@2x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/arrow_line_3d_outer.png ... 
2022-11-21 14:14:13 +0000  347 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/arrow_line_3d_outer.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/purplePin.png ... 
2022-11-21 14:14:13 +0000  988 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/purplePin.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/redPin_lift@2x.png ... 
2022-11-21 14:14:13 +0000  955 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/redPin_lift@2x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/particle_snow.png ... 
2022-11-21 14:14:13 +0000  17148 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/particle_snow.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/traffic_texture_darkred.png ... 
2022-11-21 14:14:13 +0000  947 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/traffic_texture_darkred.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/select_@3x.png ... 
2022-11-21 14:14:13 +0000  2162 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/select_@3x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/lineDashTextureDot.png ... 
2022-11-21 14:14:13 +0000  1400 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/lineDashTextureDot.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/pin_shadow@2x.png ... 
2022-11-21 14:14:13 +0000  1155 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/pin_shadow@2x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/redPin@3x.png ... 
2022-11-21 14:14:13 +0000  2848 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/redPin@3x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/purplePin_lift@2x.png ... 
2022-11-21 14:14:13 +0000  960 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/purplePin_lift@2x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/purplePin_lift@3x.png ... 
2022-11-21 14:14:13 +0000  1406 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/purplePin_lift@3x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/lineTextureThin.png ... 
2022-11-21 14:14:13 +0000  554 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/lineTextureThin.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/redPin@2x.png ... 
2022-11-21 14:14:13 +0000  1878 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/redPin@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/offline_zhankai_2@2x.png ... 
2022-11-21 14:14:13 +0000  227 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/offline_zhankai_2@2x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/pin_shadow@3x.png ... 
2022-11-21 14:14:13 +0000  1817 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/pin_shadow@3x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/traffic_texture_gray.png ... 
2022-11-21 14:14:13 +0000  1049 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/traffic_texture_gray.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/arrow_line_3d_inner.png ... 
2022-11-21 14:14:13 +0000  441 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/arrow_line_3d_inner.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/redPin.png ... 
2022-11-21 14:14:13 +0000  986 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/redPin.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/select_@2x.png ... 
2022-11-21 14:14:13 +0000  1082 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/select_@2x.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/marker_blue.png ... 
2022-11-21 14:14:13 +0000  1972 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/marker_blue.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/images/greenPin_lift.png ... 
2022-11-21 14:14:13 +0000  425 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/images/greenPin_lift.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/offline/offlinePackage.plist ... 
2022-11-21 14:14:13 +0000  108395 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/offline/offlinePackage.plist
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/3d_navi_sky_day.data ... 
2022-11-21 14:14:13 +0000  1823 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/3d_navi_sky_day.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/dash.data ... 
2022-11-21 14:14:13 +0000  241 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/dash.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_7_16_1560344652.data ... 
2022-11-21 14:14:13 +0000  23596 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_7_16_1560344652.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/grass_night.png ... 
2022-11-21 14:14:13 +0000  82 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/grass_night.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/cross_sky_night.png ... 
2022-11-21 14:14:13 +0000  17123 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/cross_sky_night.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/d_yellow_night.png ... 
2022-11-21 14:14:13 +0000  15480 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/d_yellow_night.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/cross_bk_grass_day.png ... 
2022-11-21 14:14:13 +0000  107287 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/cross_bk_grass_day.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/road_bottom_day.png ... 
2022-11-21 14:14:13 +0000  1523 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/road_bottom_day.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/1016_1.png ... 
2022-11-21 14:14:13 +0000  370 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/1016_1.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/1016_2.png ... 
2022-11-21 14:14:13 +0000  297 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/1016_2.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/d_yellow_day.png ... 
2022-11-21 14:14:13 +0000  15480 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/d_yellow_day.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/exit_label_bk_secondary_day.png ... 
2022-11-21 14:14:13 +0000  179 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/exit_label_bk_secondary_day.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/grass_day.png ... 
2022-11-21 14:14:13 +0000  82 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/grass_day.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/1015_1.png ... 
2022-11-21 14:14:13 +0000  1094 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/1015_1.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/cross_bk_grass_night.png ... 
2022-11-21 14:14:13 +0000  79787 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/cross_bk_grass_night.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/roadbk_main_day.png ... 
2022-11-21 14:14:13 +0000  99 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/roadbk_main_day.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/1015_2.png ... 
2022-11-21 14:14:13 +0000  108 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/1015_2.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/exit_label_bk_main_day.png ... 
2022-11-21 14:14:13 +0000  175 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/exit_label_bk_main_day.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/cross_sky_day.png ... 
2022-11-21 14:14:13 +0000  20699 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/cross_sky_day.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/road_bottom_night.png ... 
2022-11-21 14:14:13 +0000  1523 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/road_bottom_night.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/roadbk_main_night.png ... 
2022-11-21 14:14:13 +0000  82 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/VM3DRes/roadbk_main_night.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_3_16_1560517561.data ... 
2022-11-21 14:14:13 +0000  32309 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_3_16_1560517561.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_5_16_1561711250.data ... 
2022-11-21 14:14:13 +0000  8775 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_5_16_1561711250.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/bktile_n.data ... 
2022-11-21 14:14:13 +0000  109 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/bktile_n.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/bktile.data ... 
2022-11-21 14:14:13 +0000  109 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/bktile.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_9_16_1560344664.data ... 
2022-11-21 14:14:13 +0000  51159 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_9_16_1560344664.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_6_16_1560344646.data ... 
2022-11-21 14:14:13 +0000  26238 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_6_16_1560344646.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/3dportrait.xml ... 
2022-11-21 14:14:13 +0000  4336 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/3dportrait.xml
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/3dlandscape.xml ... 
2022-11-21 14:14:13 +0000  4336 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/3dlandscape.xml
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_17_16_1561023816.data ... 
273 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_17_16_1561023816.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/dash_cd.data ... 
2022-11-21 14:14:13 +0000  1034 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/dash_cd.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_100_16_1561026477.data ... 
2022-11-21 14:14:13 +0000  4365 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_100_16_1561026477.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/search_scenic_icon.data ... 
2022-11-21 14:14:13 +0000  38112 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/search_scenic_icon.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/3d_sky_day.data ... 
2022-11-21 14:14:13 +0000  57143 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/3d_sky_day.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/roadarrow.data ... 
2022-11-21 14:14:13 +0000  446 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/roadarrow.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_25_16_1560344307.data ... 
2022-11-21 14:14:13 +0000  17677 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_25_16_1560344307.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_2_16_1560344131.data ... 
2022-11-21 14:14:13 +0000  28474 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_2_16_1560344131.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_4_16_1561711243.data ... 
2022-11-21 14:14:13 +0000  8711 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_4_16_1561711243.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_3_16_1561987623.data ... 
2022-11-21 14:14:13 +0000  13005 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_3_16_1561987623.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/waterline.data ... 
2022-11-21 14:14:13 +0000  148 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/waterline.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/building.data ... 
2022-11-21 14:14:13 +0000  996 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/building.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/tmc_n_allinone.data ... 
2022-11-21 14:14:13 +0000  256 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/tmc_n_allinone.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/config_2_16_1560339691.data ... 
2022-11-21 14:14:13 +0000  207 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/config_2_16_1560339691.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/tmc_allinone.data ... 
2022-11-21 14:14:13 +0000  1171 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/tmc_allinone.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/crossing_nigth_bk.data ... 
2022-11-21 14:14:13 +0000  18794 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/crossing_nigth_bk.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/styleiconslist.data ... 
2022-11-21 14:14:13 +0000  868 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/styleiconslist.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/3d_sky_night.data ... 
2022-11-21 14:14:13 +0000  49684 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/3d_sky_night.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/lineround.data ... 
2022-11-21 14:14:13 +0000  450 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/lineround.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/mapprofile_1_16_1560563265.data ... 
2022-11-21 14:14:13 +0000  1779 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/mapprofile_1_16_1560563265.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_6_16_1562032423.data ... 
2022-11-21 14:14:13 +0000  16123 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_6_16_1562032423.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_0_16_1561381751.data ... 
2022-11-21 14:14:13 +0000  6619 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_0_16_1561381751.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_8_16_1560344658.data ... 
2022-11-21 14:14:13 +0000  16283 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_8_16_1560344658.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_4_16_1560344142.data ... 
2022-11-21 14:14:13 +0000  29374 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_4_16_1560344142.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/mapprofile_2_16_1560563265.data ... 
2022-11-21 14:14:13 +0000  1768 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/mapprofile_2_16_1560563265.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_50_16_1501671321.data ... 
2022-11-21 14:14:13 +0000  1606 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_50_16_1501671321.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/tmc_l_allinone.data ... 
2022-11-21 14:14:13 +0000  1305 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/tmc_l_allinone.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/yunqian.png ... 
2022-11-21 14:14:13 +0000  90355 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/yunqian.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/rainmask.png ... 
2022-11-21 14:14:13 +0000  96 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/rainmask.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/fog.png ... 
2022-11-21 14:14:13 +0000  86051 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/fog.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/shanbai.png ... 
2022-11-21 14:14:13 +0000  5057 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/shanbai.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/haze.png ... 
2022-11-21 14:14:13 +0000  15547 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/haze.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/snow.png ... 
2022-11-21 14:14:13 +0000  17148 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/snow.png
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/snow_far.png ... 
2022-11-21 14:14:13 +0000  17637 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/snow_far.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/snowmask.png ... 
2022-11-21 14:14:13 +0000  21837 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/snowmask.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/yunhou.png ... 
2022-11-21 14:14:13 +0000  149750 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/yunhou.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/shandianyun.png ... 
2022-11-21 14:14:13 +0000  58874 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/shandianyun.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/rain.png ... 
2022-11-21 14:14:13 +0000  3196 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/weather/rain.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/config_1_16_1560339683.data ... 
2022-11-21 14:14:13 +0000  489 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/config_1_16_1560339683.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/dash_tq.data ... 
2022-11-21 14:14:13 +0000  249 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/dash_tq.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_50_16_1541648499.data ... 
2022-11-21 14:14:13 +0000  25385 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_50_16_1541648499.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons-for_custom_5_14.data ... 
2022-11-21 14:14:13 +0000  2628 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons-for_custom_5_14.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_1_16_1561444603.data ... 
2022-11-21 14:14:13 +0000  29587 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_1_16_1561444603.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_1_16_1562032355.data ... 
2022-11-21 14:14:13 +0000  18639 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style_1_16_1562032355.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_5_16_1561028345.data ... 
2022-11-21 14:14:13 +0000  65548 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/icons_5_16_1561028345.data
copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style-for_custom_0_16_1561381751.data ... 
2022-11-21 14:14:13 +0000  6609 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/style-for_custom_0_16_1561381751.data
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/crossing_day_bk.data ... 
2022-11-21 14:14:13 +0000  25317 bytes for ./Payload/IphoneBIMe.app/AMap.bundle/AMap3D.bundle/crossing_day_bk.data
copying file ./Payload/IphoneBIMe.app/Assets.car ... 
2022-11-21 14:14:13 +0000  4779640 bytes for ./Payload/IphoneBIMe.app/Assets.car
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/AppIcon76x76@2x~ipad.png ... 
2022-11-21 14:14:13 +0000  34789 bytes for ./Payload/IphoneBIMe.app/AppIcon76x76@2x~ipad.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LaunchImage-800-Portrait-736h@3x.png ... 
2022-11-21 14:14:13 +0000  114556 bytes for ./Payload/IphoneBIMe.app/LaunchImage-800-Portrait-736h@3x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LaunchImage-700@2x.png ... 
2022-11-21 14:14:13 +0000  51649 bytes for ./Payload/IphoneBIMe.app/LaunchImage-700@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/adinit.dat ... 
2022-11-21 14:14:13 +0000  260531 bytes for ./Payload/IphoneBIMe.app/adinit.dat
copying file ./Payload/IphoneBIMe.app/include.dsp ... 
2022-11-21 14:14:13 +0000  23083 bytes for ./Payload/IphoneBIMe.app/include.dsp
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LaunchImage-700-568h@2x.png ... 
2022-11-21 14:14:13 +0000  67344 bytes for ./Payload/IphoneBIMe.app/LaunchImage-700-568h@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/hztxt.shx ... 
2022-11-21 14:14:13 +0000  1171617 bytes for ./Payload/IphoneBIMe.app/hztxt.shx
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/BackNavItem.nib ... 
2022-11-21 14:14:13 +0000  4128 bytes for ./Payload/IphoneBIMe.app/BackNavItem.nib
copying file ./Payload/IphoneBIMe.app/LaunchImage-1200-Portrait-1792h@2x.png ... 
2022-11-21 14:14:13 +0000  91487 bytes for ./Payload/IphoneBIMe.app/LaunchImage-1200-Portrait-1792h@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/STAR_probim_cn.cer ... 
2022-11-21 14:14:13 +0000  1621 bytes for ./Payload/IphoneBIMe.app/STAR_probim_cn.cer
copying file ./Payload/IphoneBIMe.app/examineAdd.plist ... 
2022-11-21 14:14:13 +0000  839 bytes for ./Payload/IphoneBIMe.app/examineAdd.plist
copying file ./Payload/IphoneBIMe.app/LFTipsGuideView.bundle/whiteMask@2x.png ... 
2022-11-21 14:14:13 +0000  2089 bytes for ./Payload/IphoneBIMe.app/LFTipsGuideView.bundle/whiteMask@2x.png
copying file ./Payload/IphoneBIMe.app/LFTipsGuideView.bundle/okBtn@2x.png ... 
2022-11-21 14:14:13 +0000  22971 bytes for ./Payload/IphoneBIMe.app/LFTipsGuideView.bundle/okBtn@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFTipsGuideView.bundle/right_top@2x.png ... 
2022-11-21 14:14:13 +0000  2499 bytes for ./Payload/IphoneBIMe.app/LFTipsGuideView.bundle/right_top@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/LFTipsGuideView.bundle/left_top@2x.png ... 
2022-11-21 14:14:13 +0000  2333 bytes for ./Payload/IphoneBIMe.app/LFTipsGuideView.bundle/left_top@2x.png
copying file ./Payload/IphoneBIMe.app/LFTipsGuideView.bundle/left_down@2x.png ... 
2022-11-21 14:14:13 +0000  2470 bytes for ./Payload/IphoneBIMe.app/LFTipsGuideView.bundle/left_down@2x.png
copying file ./Payload/IphoneBIMe.app/LFTipsGuideView.bundle/whiteMask2@2x.png ... 
2022-11-21 14:14:13 +0000  1160 bytes for ./Payload/IphoneBIMe.app/LFTipsGuideView.bundle/whiteMask2@2x.png
copying file ./Payload/IphoneBIMe.app/LFTipsGuideView.bundle/right_down@2x.png ... 
2022-11-21 14:14:13 +0000  1934 bytes for ./Payload/IphoneBIMe.app/LFTipsGuideView.bundle/right_down@2x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/images.bundle/fail@3x.png ... 
2022-11-21 14:14:13 +0000  1584 bytes for ./Payload/IphoneBIMe.app/images.bundle/fail@3x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/images.bundle/loading@2x.png ... 
2022-11-21 14:14:13 +0000  1126 bytes for ./Payload/IphoneBIMe.app/images.bundle/loading@2x.png
copying file ./Payload/IphoneBIMe.app/images.bundle/en.lproj/Root.strings ... 
2022-11-21 14:14:13 +0000  546 bytes for ./Payload/IphoneBIMe.app/images.bundle/en.lproj/Root.strings
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/images.bundle/fail@2x.png ... 
2022-11-21 14:14:13 +0000  1584 bytes for ./Payload/IphoneBIMe.app/images.bundle/fail@2x.png
copying file ./Payload/IphoneBIMe.app/images.bundle/loading@3x.png ... 
2022-11-21 14:14:13 +0000  1126 bytes for ./Payload/IphoneBIMe.app/images.bundle/loading@3x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/images.bundle/success@2x.png ... 
2022-11-21 14:14:13 +0000  1497 bytes for ./Payload/IphoneBIMe.app/images.bundle/success@2x.png
copying file ./Payload/IphoneBIMe.app/images.bundle/success@3x.png ... 
2022-11-21 14:14:13 +0000  1497 bytes for ./Payload/IphoneBIMe.app/images.bundle/success@3x.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/images.bundle/success.png ... 
2022-11-21 14:14:13 +0000  1211 bytes for ./Payload/IphoneBIMe.app/images.bundle/success.png
copying file ./Payload/IphoneBIMe.app/images.bundle/Root.plist ... 
2022-11-21 14:14:13 +0000  1456 bytes for ./Payload/IphoneBIMe.app/images.bundle/Root.plist
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/images.bundle/loading.png ... 
2022-11-21 14:14:13 +0000  1126 bytes for ./Payload/IphoneBIMe.app/images.bundle/loading.png
copying file ./Payload/IphoneBIMe.app/images.bundle/fail.png ... 
2022-11-21 14:14:13 +0000  1584 bytes for ./Payload/IphoneBIMe.app/images.bundle/fail.png
2022-11-21 14:14:13 +0000  copying file ./Payload/IphoneBIMe.app/Frameworks/Shape.framework/_CodeSignature/CodeResources ... 
2022-11-21 14:14:13 +0000  2086 bytes for ./Payload/IphoneBIMe.app/Frameworks/Shape.framework/_CodeSignature/CodeResources
copying file ./Payload/IphoneBIMe.app/Frameworks/Shape.framework/Shape ... 
2022-11-21 14:14:15 +0000  31338528 bytes for ./Payload/IphoneBIMe.app/Frameworks/Shape.framework/Shape
2022-11-21 14:14:15 +0000  copying file ./Payload/IphoneBIMe.app/Frameworks/Shape.framework/include.dsp ... 
23083 bytes for ./Payload/IphoneBIMe.app/Frameworks/Shape.framework/include.dsp
2022-11-21 14:14:15 +0000  copying file ./Payload/IphoneBIMe.app/Frameworks/Shape.framework/Info.plist ... 
733 bytes for ./Payload/IphoneBIMe.app/Frameworks/Shape.framework/Info.plist
copying file ./Payload/IphoneBIMe.app/loading_refresh.json ... 
2022-11-21 14:14:15 +0000  5840 bytes for ./Payload/IphoneBIMe.app/loading_refresh.json
copying file ./Payload/IphoneBIMe.app/LaunchImage.png ... 
2022-11-21 14:14:15 +0000  19348 bytes for ./Payload/IphoneBIMe.app/LaunchImage.png
2022-11-21 14:14:15 +0000  copying file ./Payload/IphoneBIMe.app/embedded.mobileprovision ... 
2022-11-21 14:14:15 +0000  14248 bytes for ./Payload/IphoneBIMe.app/embedded.mobileprovision
2022-11-21 14:14:15 +0000  copying file ./Payload/IphoneBIMe.app/PBShareBtn.nib ... 
2022-11-21 14:14:15 +0000  4163 bytes for ./Payload/IphoneBIMe.app/PBShareBtn.nib
copying file ./Payload/IphoneBIMe.app/Info.plist ... 
2022-11-21 14:14:15 +0000  3137 bytes for ./Payload/IphoneBIMe.app/Info.plist
copying file ./Payload/IphoneBIMe.app/issueAdd2.plist ... 
2022-11-21 14:14:15 +0000  628 bytes for ./Payload/IphoneBIMe.app/issueAdd2.plist
2022-11-21 14:14:15 +0000  copying file ./Payload/IphoneBIMe.app/PkgInfo ... 
2022-11-21 14:14:15 +0000  8 bytes for ./Payload/IphoneBIMe.app/PkgInfo
copying file ./Symbols/C201A1B8-D628-3B65-A5C1-19CC36635AC0.symbols ... 
2022-11-21 14:14:15 +0000  14459532 bytes for ./Symbols/C201A1B8-D628-3B65-A5C1-19CC36635AC0.symbols
2022-11-21 14:14:15 +0000  copying file ./Symbols/41882249-F42C-3EA1-9330-5C36A03E420F.symbols ... 
2022-11-21 14:14:16 +0000  11256348 bytes for ./Symbols/41882249-F42C-3EA1-9330-5C36A03E420F.symbols
2022-11-21 14:14:16 +0000  /usr/bin/ditto exited with 0
2022-11-21 14:14:16 +0000  Processing step: IDEDistributionAppStoreInformationStep
2022-11-21 14:14:16 +0000  Skipping step: IDEDistributionAppStoreInformationStep because it said so
2022-11-21 14:14:16 +0000  Processing step: IDEDistributionGenerateProcessedDistributionItems
2022-11-21 14:14:16 +0000  IDEDistributionItem init <DVTFilePath:0x7fd8a9bee9f0:'/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root/Payload/IphoneBIMe.app/Frameworks/Shape.framework'>
2022-11-21 14:14:16 +0000  IDEDistributionItem init <DVTFilePath:0x7fd891b927e0:'/var/folders/jx/6fb7zpcn4_1bb73820gqyy3w0000gn/T/XcodeDistPipeline.~~~iJvuLd/Root/Payload/IphoneBIMe.app'>
2022-11-21 14:14:16 +0000  Processing step: IDEDistributionCreateManifestStep
2022-11-21 14:14:16 +0000  Skipping step: IDEDistributionCreateManifestStep because it said so