This repository has been archived by the owner on Sep 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
sitemap.ko.xml
1879 lines (1879 loc) · 72.2 KB
/
sitemap.ko.xml
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
<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://blog.adobe.com/ko/publish/2021/07/06/adobe-experience-cloud-new-personalization-capabilities.html</loc>
<lastmod>2021-07-06</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/06/30/how-to-overcome-silos.html</loc>
<lastmod>2021-06-30</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/06/30/premiere-pro-gets-a-cutting-edge-refresh-for-todays-creator.html</loc>
<lastmod>2021-06-30</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/06/29/inner-shadow-outline-stroke-angular-gradient-xd-styling-tools.html</loc>
<lastmod>2021-06-29</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/06/24/announcing-adobe-substance-3d-tools-for-the-next-generation-of-creativity.html</loc>
<lastmod>2021-06-24</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/06/23/photoshop-express-launches-retouch-features.html</loc>
<lastmod>2021-06-23</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/06/22/customer-story-nexon.html</loc>
<lastmod>2021-06-22</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/06/21/illustrator-for-ipad-june-2021-new-features.html</loc>
<lastmod>2021-06-21</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/06/18/mz-generation-leads-metaverse-trend.html</loc>
<lastmod>2021-06-18</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/06/09/photoshop-on-ipad-update-june-2021.html</loc>
<lastmod>2021-06-09</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/06/09/premiere-pro-beta-on-apple-m1-the-results-are-in.html</loc>
<lastmod>2021-06-09</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/06/01/how-to-make-a-video-from-photos-with-premiere-pro.html</loc>
<lastmod>2021-06-01</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/05/28/adobe-summit-health-care-digital-transformation.html</loc>
<lastmod>2021-05-28</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/05/27/adobe-new-korean-fonts-update.html</loc>
<lastmod>2021-05-27</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/05/24/how-to-change-image-resolution-in-photoshop.html</loc>
<lastmod>2021-05-24</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/05/20/summit-adobe-experience-manager-updates.html</loc>
<lastmod>2021-05-20</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/05/20/how-to-make-poster-designs-in-photoshop.html</loc>
<lastmod>2021-05-20</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/05/18/cc-series-sambypen-interview.html</loc>
<lastmod>2021-05-18</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/05/17/how-to-make-a-logo-using-photoshop.html</loc>
<lastmod>2021-05-17</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/05/13/how-to-sharpen-a-photo-to-bring-out-detail.html</loc>
<lastmod>2021-05-13</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/05/12/photoshop-and-adobe-experience-manager-accelerating-creativity-through-apis.html</loc>
<lastmod>2021-05-12</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/05/10/yonsei-univ-customer-story.html</loc>
<lastmod>2021-05-10</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/05/07/adobe-summit-fedex-customer-story.html</loc>
<lastmod>2021-05-07</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/05/03/cc-series-kbs-pd-park-interview.html</loc>
<lastmod>2021-05-03</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/04/29/how-to-improve-brightness-in-a-photo-with-levels.html</loc>
<lastmod>2021-04-29</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/04/28/adobe-new-korean-font-pack.html</loc>
<lastmod>2021-04-28</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/04/27/how-to-retouch-imperfections-with-spot-healing-brush.html</loc>
<lastmod>2021-04-27</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/04/26/how-to-make-youtube-thumbnails-to-boost-video-views.html</loc>
<lastmod>2021-04-26</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/04/23/ecommerce-fulfillment-captivates-customers-with-delivery-competitiveness.html</loc>
<lastmod>2021-04-23</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/04/22/add-vector-graphics-to-make-detail-pages-unique.html</loc>
<lastmod>2021-04-22</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/04/21/adobe-pinkfong-customer-story.html</loc>
<lastmod>2021-04-21</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/04/20/how-to-convert-psd-to-png-or-jpg.html</loc>
<lastmod>2021-04-20</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/04/16/adobe-emoji-survey.html</loc>
<lastmod>2021-04-16</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/04/14/adobe-ncsoft-customer-story.html</loc>
<lastmod>2021-04-14</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/04/08/looking-into-digital-world-evolution-through-metaverse-cases.html</loc>
<lastmod>2021-04-08</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/04/05/cc-series-korean-artist-kim-hyunjung-interview.html</loc>
<lastmod>2021-04-05</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/03/31/how-to-font-pair-basics-what-to-do-and-not-to-do.html</loc>
<lastmod>2021-03-31</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/03/26/agile-marketing-is-essential-in-volatile-market.html</loc>
<lastmod>2021-03-26</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/03/25/new-advanced-esign-features-in-acrobat.html</loc>
<lastmod>2021-03-25</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/03/24/why-is-esg-management-important.html</loc>
<lastmod>2021-03-24</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/03/19/adobe-is-a-leader-in-2021-forrester-agile-cms-wave.html</loc>
<lastmod>2021-03-19</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/03/18/multi-frame-rendering-now-in-after-effects-beta.html</loc>
<lastmod>2021-03-18</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/03/17/adobe-experience-manager-content-commerce-innovations.html</loc>
<lastmod>2021-03-17</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/03/16/adobe-video-march-2021-release-kr.html</loc>
<lastmod>2021-03-16</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/03/15/diversity-survival-strategies.html</loc>
<lastmod>2021-03-15</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/03/15/david-fincher-mank.html</loc>
<lastmod>2021-03-15</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/03/12/adobe-photoshop-ships-on-macs-with-apple-silicon.html</loc>
<lastmod>2021-03-12</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/03/11/cc-series-pixel-artist-joo-interview.html</loc>
<lastmod>2021-03-11</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/03/10/adobe-is-leader-in-2021-gartner-dxp.html</loc>
<lastmod>2021-03-10</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/03/08/adobe-continues-content-authenticity-commitment-founder-c2pa-standards-org.html</loc>
<lastmod>2021-03-08</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/03/02/customer-experience-and-k-nomics.html</loc>
<lastmod>2021-03-02</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/02/27/how-to-create-collages-in-adobe-photoshop-that-create-impact-and-stir-emotions.html</loc>
<lastmod>2021-02-27</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/02/26/2021-digital-trend-report.html</loc>
<lastmod>2021-02-26</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/02/25/cc-series-director-hong-interview.html</loc>
<lastmod>2021-02-25</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/02/24/photoshop-illustrator-and-fresco-introduce-document-collaboration.html</loc>
<lastmod>2021-02-24</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/02/23/6-adobe-xd-plugins-to-test-designs-and-get-user-feedback.html</loc>
<lastmod>2021-02-23</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/02/22/personalization-at-scale-will-top-enterprise-priorities-in-2021-experts-say.html</loc>
<lastmod>2021-02-22</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/02/19/emotional-intelligence-to-strengthen-customer-relationship-management.html</loc>
<lastmod>2021-02-19</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/02/18/e-commerce-2021-what-we-learned-from-2020-holiday-season.html</loc>
<lastmod>2021-02-18</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/02/15/touchless-technology-marketers-should-know.html</loc>
<lastmod>2021-02-15</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/02/11/funsumer-marketing-captivating-the-taste-of-mz-gen.html</loc>
<lastmod>2021-02-11</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/02/9/premiere-pro-after-effects-january-2021-release-and-terminology-changes.html</loc>
<lastmod>2021-02-09</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/02/06/the-value-of-convenience.html</loc>
<lastmod>2021-02-06</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/02/05/segment-strategy-for-personalization-marketing-success.html</loc>
<lastmod>2021-02-05</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/02/04/five-editing-tips-adam-epstein-learned-from-his-time-at-snl.html</loc>
<lastmod>2021-02-04</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/02/03/customer-experience-in-the-new-normal.html</loc>
<lastmod>2021-02-03</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/01/29/cc-series-dqm-interview.html</loc>
<lastmod>2021-01-29</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/01/26/digital-citizenship-key-to-best-practice-cx-in-digital-economy.html</loc>
<lastmod>2021-01-26</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/01/26/adobe-digital-insights-top-3-consumer-trends-shaping-e-signatures-and-how-we-will-work-in-2021.html</loc>
<lastmod>2021-01-26</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/01/22/top-5-digital-marketing-trends.html</loc>
<lastmod>2021-01-22</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/01/21/sub-character-syndrom.html</loc>
<lastmod>2021-01-21</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/01/20/adobe-stocks-2021-creative-trends-resilience-rising.html</loc>
<lastmod>2021-01-20</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/01/20/live-commerce-is-changing-online-shopping-tag-unfinished.html</loc>
<lastmod>2021-01-20</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/01/18/adobe-font-updates-korean-font.html</loc>
<lastmod>2021-01-18</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/01/15/how-3d-and-ar-will-transform-creative-design-in-2021.html</loc>
<lastmod>2021-01-15</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/01/14/3d-avatar-new-trends-on-influencer-marketing.html</loc>
<lastmod>2021-01-14</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/01/13/hyper-personalization-strategies-connecting-brands-with-customers.html</loc>
<lastmod>2021-01-13</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/01/05/pivoting-dna-digital-strategies-in-a-time-of-crisis.html</loc>
<lastmod>2021-01-05</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/12/23/now-in-beta-premiere-pro-premiere-rush-and-audition-for-apple-m1-systems.html</loc>
<lastmod>2020-12-23</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/12/23/five-diversity-and-inclusion-lessons-from-2020.html</loc>
<lastmod>2020-12-23</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/12/22/mary-woo-creating-her-own-opportunities-kr.html</loc>
<lastmod>2020-12-22</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/12/14/a-new-chapter-for-pantone-s-color-of-the-year-in-2021.html</loc>
<lastmod>2020-12-14</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/12/07/guiding-new-b2b-buyer-from-attraction-to-advocacy.html</loc>
<lastmod>2020-12-07</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/11/26/ben-and-jerrys-case-study.html</loc>
<lastmod>2020-11-26</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/11/23/post-covid19-era-employee-improved-exprerience-leads-to-business-success.html</loc>
<lastmod>2020-11-23</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/11/23/photoshop-the-worlds-most-advanced-ai-application-for-creatives.html</loc>
<lastmod>2020-11-23</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/11/17/xd-2020-10-3d.html</loc>
<lastmod>2020-11-17</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/11/12/lightroom-max-release-more-power-editing-precision-growing-photography-community.html</loc>
<lastmod>2020-11-12</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/11/12/adobe-experience-platform-for.html</loc>
<lastmod>2020-11-12</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/11/11/creativity-meets-collaboration-creative-cloud-updates.html</loc>
<lastmod>2020-11-11</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/11/11/direct-to-consumer-retaliers-are-looking-at.html</loc>
<lastmod>2020-11-11</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/11/10/newyearnewyoutuber-campaign-4.html</loc>
<lastmod>2020-11-10</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/11/06/your-creative-system-starts-with-creative-cloud.html</loc>
<lastmod>2020-11-06</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/11/06/adobe-fresco-max2020.html</loc>
<lastmod>2020-11-06</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/11/06/lsk-global-ps-drive-digital-innovation-with-adobe-sign.html</loc>
<lastmod>2020-11-06</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/11/02/create-richer-interactive-ar-with-adobe-aero-desktop-and-mobile.html</loc>
<lastmod>2020-11-02</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/10/29/adobe-2020-holiday-predictions-report.html</loc>
<lastmod>2020-10-29</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/10/27/ob-innovates-b2b-commerce-with-magento-commerce.html</loc>
<lastmod>2020-10-27</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/10/27/introducing-adobe-illustrator-on-the-ipad.html</loc>
<lastmod>2020-10-27</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/10/23/4-reasons-to-choose-aem-managed-service.html</loc>
<lastmod>2020-10-23</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/10/20/premiere-rush-royalty-free-audio-from-splice.html</loc>
<lastmod>2020-10-20</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/10/20/innovating-modern-creators-meet-growing-demand-content.html</loc>
<lastmod>2020-10-20</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/10/20/new-version-creative-cloud-to-outfit-you-for-2020-challenges.html</loc>
<lastmod>2020-10-20</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/10/20/premiere-rush-spolight-new-graphics-audio-browser-tons-of-in-app-content.html</loc>
<lastmod>2020-10-20</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/10/13/workplace-inclusion-why-employers-should-proactively-talk-about-disability-kr.html</loc>
<lastmod>2020-10-13</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/10/07/esports-marketing-connecting-brands-with-mzgen.html</loc>
<lastmod>2020-10-07</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/10/06/adobe-digital-economy-index-the-growth-in-mobile-shopping-and-changes-in-ecommerce-trends.html</loc>
<lastmod>2020-10-06</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/09/24/make-print-mockup.html</loc>
<lastmod>2020-09-24</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/09/22/sept-2020-update.html</loc>
<lastmod>2020-09-22</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/09/11/another-step-forward-adobe-pay-opportunity-parity-kr.html</loc>
<lastmod>2020-09-11</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/09/10/mue-studio.html</loc>
<lastmod>2020-09-10</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/09/03/unexpected-relationships.html</loc>
<lastmod>2020-09-03</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/09/02/people-names-adobe-to-its-top-50-companies-that-care-list.html</loc>
<lastmod>2020-09-02</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/08/28/ladygagaxadobe-rain-on-me-challenge.html</loc>
<lastmod>2020-08-28</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/08/27/why-mobile-customer-experience-is-important.html</loc>
<lastmod>2020-08-27</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/08/27/rleadership-that-business-leaders-need-amid-covid19.html</loc>
<lastmod>2020-08-27</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/08/25/replace-color-in-adobe-premiere-pro.html</loc>
<lastmod>2020-08-25</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/08/24/chaning-role-of-cio-post-covid19.html</loc>
<lastmod>2020-08-24</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/08/20/adobe-digital-economy-index-july-update.html</loc>
<lastmod>2020-08-20</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/08/18/live-commerce-the-chaning-landscape-of-retail-industry-driven-by-digital-transformation.html</loc>
<lastmod>2020-08-18</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/08/14/frommetoyou-adobe-campaign-kr.html</loc>
<lastmod>2020-08-14</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/08/10/adobe-digital-economy-index-june-update.html</loc>
<lastmod>2020-08-10</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/08/06/newyearnewtuber-campaign-3.html</loc>
<lastmod>2020-08-06</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/08/05/create-a-poster-in-adobe-ps.html</loc>
<lastmod>2020-08-05</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/08/04/why-audio-content-is-making-a-comeback-in-video-era.html</loc>
<lastmod>2020-08-04</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/07/31/responsive-design-in-adobe-xd.html</loc>
<lastmod>2020-07-31</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/07/29/adobe-experience-makers-live.html</loc>
<lastmod>2020-07-29</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/07/28/customer-experience-with-genuine-email-marketing.html</loc>
<lastmod>2020-07-28</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/07/27/adobe-ibm-and-red-hat-partner-to-advance-customer-experience-transformation.html</loc>
<lastmod>2020-07-27</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/07/17/ripped-paper-edge.html</loc>
<lastmod>2020-07-17</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/07/16/marketing-trends-resonating-among-mz-generation.html</loc>
<lastmod>2020-07-16</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/07/10/how-beta-is-helping-us.html</loc>
<lastmod>2020-07-10</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/07/10/adobe-cc-video-and-audio-app.html</loc>
<lastmod>2020-07-10</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/07/09/june-2020-release-of-adobe-aero.html</loc>
<lastmod>2020-07-09</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/07/07/adobe-digital-economy-index-may-update.html</loc>
<lastmod>2020-07-07</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/07/06/post-covid19-business-strategies.html</loc>
<lastmod>2020-07-06</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/07/03/make-up-is-not-a-mask.html</loc>
<lastmod>2020-07-03</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/06/29/photoshop-releases-its-largest-set-of-features-since-adobe-max.html</loc>
<lastmod>2020-06-29</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/06/29/bgfretail-innovates-customer-experience-with-adobe-analytics.html</loc>
<lastmod>2020-06-29</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/06/29/june-2020-release-xd.html</loc>
<lastmod>2020-06-29</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/06/29/new-effects-panel-premiere-rush.html</loc>
<lastmod>2020-06-29</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/06/18/adobe-stock-audio.html</loc>
<lastmod>2020-06-18</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/06/17/wfh-adobe-cc.html</loc>
<lastmod>2020-06-17</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/06/17/june-photography-releases.html</loc>
<lastmod>2020-06-17</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/06/16/supporting-a-creative-renaissance.html</loc>
<lastmod>2020-06-16</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/06/12/photoshop-camera-now-available.html</loc>
<lastmod>2020-06-12</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/06/09/yonsei-univ-partners-with-adobe-to-nurture-talents-in-digital-era.html</loc>
<lastmod>2020-06-09</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/06/04/xd-may-release.html</loc>
<lastmod>2020-06-04</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/05/29/evolving-our-brand-identity.html</loc>
<lastmod>2020-05-29</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/05/29/adobe-fresco-may-update.html</loc>
<lastmod>2020-05-29</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/05/25/introducing-the-2020-adobe-analytics-champions.html</loc>
<lastmod>2020-05-25</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/05/25/four-lessons-from-apac-creatives-on-shaping-team-environments.html</loc>
<lastmod>2020-05-25</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/05/21/celebrate-global-accessibility-awareness-day-with-adobe-color.html</loc>
<lastmod>2020-05-21</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/05/19/spring-release.html</loc>
<lastmod>2020-05-19</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/05/18/personalization-strategy-for-customer-experience-management.html</loc>
<lastmod>2020-05-18</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/05/11/newyearnewtuber-campaign-with-3-youtubers.html</loc>
<lastmod>2020-05-11</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/05/11/martech-to-improve-marketing-performance.html</loc>
<lastmod>2020-05-11</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/05/07/how-to-make-speed-ramp-adobe-premiere-rush.html</loc>
<lastmod>2020-05-07</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/05/04/how-to-make-split-color-photo-in-adobe-photoshop.html</loc>
<lastmod>2020-05-04</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/04/29/minimalism-and-milad-safabakhsh.html</loc>
<lastmod>2020-04-29</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/04/28/ecommerce-innovationw-with-omnichannel-strategy-adobesummit2020.html</loc>
<lastmod>2020-04-28</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/04/28/digital-transformation-to-identify-prospects-adobesummit2020.html</loc>
<lastmod>2020-04-28</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/04/28/b2c-b2b-b2me-new-marketing-paradigm-adobesummit2020.html</loc>
<lastmod>2020-04-28</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/04/28/adobesummit2020-sneaks.html</loc>
<lastmod>2020-04-28</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/04/28/b2b-marketerts-to-turn-crisit-to-opportunity-adobeaummit2020.html</loc>
<lastmod>2020-04-28</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/04/23/cxm-playbook-for-successful-customer-experience-management.html</loc>
<lastmod>2020-04-23</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/04/17/free-photoshop-action.html</loc>
<lastmod>2020-04-17</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/04/17/summit-online-2020-customer-journey.html</loc>
<lastmod>2020-04-17</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/04/14/introducing-productions-premiere-pro.html</loc>
<lastmod>2020-04-14</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/04/10/transform-photos.html</loc>
<lastmod>2020-04-10</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/04/06/unlimited-sharing-collaboration-all-xd-plans.html</loc>
<lastmod>2020-04-06</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/03/30/why-brands-have-to-take-notice-of-storytelling-marketing.html</loc>
<lastmod>2020-03-30</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/03/25/water-text-effect-in-photoshop.html</loc>
<lastmod>2020-03-25</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/03/14/make-a-mini-animation.html</loc>
<lastmod>2020-03-14</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/03/11/adobe-naver-partner-square-creativity-for-all.html</loc>
<lastmod>2020-03-11</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/03/09/each-for-equal-driving-progress-for-women-at-adobe-kr.html</loc>
<lastmod>2020-03-09</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/03/07/https-theblog-adobe-com-photography-trends-of-the-2010s.html</loc>
<lastmod>2020-03-07</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/03/03/https-theblog-adobe-com-photoshop-reimagined-for-ipad-introducing-select-subject.html</loc>
<lastmod>2020-03-03</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/03/03/how-adobe-sensei-helps-graphic-designers-transform-book-illustrations.html</loc>
<lastmod>2020-03-03</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/02/28/reasons-your-busienss-adopt-adobe-analytics.html</loc>
<lastmod>2020-02-28</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/02/28/https-theblog-adobe-com-adobe-stock-2020-creative-trends.html</loc>
<lastmod>2020-02-28</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/02/21/happy-birthday-ps.html</loc>
<lastmod>2020-02-21</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/02/21/increas-email-performance-with-these-5-tips.html</loc>
<lastmod>2020-02-21</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/02/20/2020-digital-trends-report-kr.html</loc>
<lastmod>2020-02-20</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/02/19/newyearnewtuber.html</loc>
<lastmod>2020-02-19</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/02/17/5-tips-for-successful-personalized-marekting.html</loc>
<lastmod>2020-02-17</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/02/10/make-a-lasting-impression-with-these-tips-for-designing-a-brochure.html</loc>
<lastmod>2020-02-10</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/02/10/working-with-fonts-in-photoshop-keep-these-5-essentials-in-mind.html</loc>
<lastmod>2020-02-10</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/02/07/b2b-marketing-trend.html</loc>
<lastmod>2020-02-07</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/01/30/6-digital-tech-trends-retailers-can-t-ignore-in-2020-2.html</loc>
<lastmod>2020-01-30</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/01/28/6-digital-tech-trends-retailers-can-t-ignore-in-2020-1.html</loc>
<lastmod>2020-01-28</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/01/28/how-to-respond-to-expanding-digital-work-place.html</loc>
<lastmod>2020-01-28</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2021/01/26/new-year-new-marketing-2021.html</loc>
<lastmod>2020-01-26</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/01/22/forrester-s-5-cx-predictions-for-2020-kr-html.html</loc>
<lastmod>2020-01-22</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/01/20/5-social-trends-for-2020.html</loc>
<lastmod>2020-01-20</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/01/16/five-adobe-leaders-share-rituals-for-a-successful-new-year.html</loc>
<lastmod>2020-01-16</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/01/16/2020-lunar-new-year-rituals.html</loc>
<lastmod>2020-01-16</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/01/09/how-to-color-grade.html</loc>
<lastmod>2020-01-09</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2020/01/02/how-to-blend-fiction.html</loc>
<lastmod>2020-01-02</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/12/26/comic-style-portrait-fresco.html</loc>
<lastmod>2019-12-26</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/12/19/4k-proxy-edit.html</loc>
<lastmod>2019-12-19</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/12/13/street-photography-with-lightroom.html</loc>
<lastmod>2019-12-13</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/12/06/how-to-create-a-swip.html</loc>
<lastmod>2019-12-06</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/12/04/adobe-analytics-marketing-analysis-for-customer-retention-measurement.html</loc>
<lastmod>2019-12-04</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/29/free-photoshop-brush.html</loc>
<lastmod>2019-11-29</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/29/how-to-identify-business-targets.html</loc>
<lastmod>2019-11-29</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/22/watercolor-painting-in-adobe-fresco.html</loc>
<lastmod>2019-11-22</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/20/adobe-analaytics-use-case-solution-for-b2bmarketing-analysis-integrated-data-analysis.html</loc>
<lastmod>2019-11-20</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/19/creativity-for-all-max2019-announcements.html</loc>
<lastmod>2019-11-19</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/15/how-retail-tech-is-changing-consumer-experience.html</loc>
<lastmod>2019-11-15</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/14/meet-adobe-insiders-at-adobe-max2019.html</loc>
<lastmod>2019-11-14</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/13/samsungsds-adopts-adobexd-to-increase-performance-enhance-cusomter-experience.html</loc>
<lastmod>2019-11-13</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/12/creative-cloud-libraries-putting-all-your-assets-at-your-fingertips-and-making-collaboration-easier-than-ever.html</loc>
<lastmod>2019-11-12</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/11/2019-release-of-adobe-xd.html</loc>
<lastmod>2019-11-11</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/11/2019-photography-releases.html</loc>
<lastmod>2019-11-11</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/08/streamline-video-editing-and-deliver-better-stories-faster.html</loc>
<lastmod>2019-11-08</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/05/launching-a-new-version-of-creative-cloud-for-a-new-era-of-creativity.html</loc>
<lastmod>2019-11-05</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/05/adobe-illustrator-is-coming-to-the-ipad.html</loc>
<lastmod>2019-11-05</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/05/introducing-adobe-aero-step-into-a-new-reality.html</loc>
<lastmod>2019-11-05</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/05/creativity-is-everywhere.html</loc>
<lastmod>2019-11-05</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/05/introducing-adobe-photoshop-camera.html</loc>
<lastmod>2019-11-05</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/05/adobe-fresco-on-windows.html</loc>
<lastmod>2019-11-05</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/11/04/lifestyle-marketing-appealing-to-millennials.html</loc>
<lastmod>2019-11-04</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/10/24/tiktok-marketing-targeting-gen-z.html</loc>
<lastmod>2019-10-24</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/10/24/october-2019-release-of-adobe-xd.html</loc>
<lastmod>2019-10-24</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/10/17/a-portal-to-your-creative-world.html</loc>
<lastmod>2019-10-17</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/10/11/puppy-love-and-puppy-style.html</loc>
<lastmod>2019-10-11</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/09/26/adobe-analytics-the-next-10-years-predictions.html</loc>
<lastmod>2019-09-26</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/09/24/how-customer-experience-is-changing-the-future-of-retail.html</loc>
<lastmod>2019-09-24</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/09/24/four-paintings-that-show-what-you-can-do-in-adobe-fresco.html</loc>
<lastmod>2019-09-24</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/09/17/terminator-dark-fate.html</loc>
<lastmod>2019-09-17</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/09/09/thisismychuseok-2019chuseok-with-93minho.html</loc>
<lastmod>2019-09-09</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/09/02/adi-report-are-your-brands-ready-for-voice-technnology.html</loc>
<lastmod>2019-09-02</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/08/30/digital-assets-management-to-increase-efficiency-lghausys.html</loc>
<lastmod>2019-08-30</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/08/26/digital-transformation-of-financial-services-success-stories.html</loc>
<lastmod>2019-08-26</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/08/20/the-fever-of-virtual-influencer-enthralling-millennials.html</loc>
<lastmod>2019-08-20</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/08/07/rush-speed-kr.html</loc>
<lastmod>2019-08-07</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/08/06/drawyoursummer-with-adobe.html</loc>
<lastmod>2019-08-06</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/08/06/tips-and-trends-how-to-influence-travel-booking-this-summer.html</loc>
<lastmod>2019-08-06</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/08/06/kr-alexa-plugin-skill-xd-export-test-voice-prototypes-on-echo.html</loc>
<lastmod>2019-08-06</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/08/01/woowahan-photoshop-webinar-07-2019.html</loc>
<lastmod>2019-08-01</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/08/01/why-ai-intelligent-services-for-improved-cusotmer-experience.html</loc>
<lastmod>2019-08-01</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/07/23/adobe-xd-updates-2019-july.html</loc>
<lastmod>2019-07-23</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/07/18/digital-transformation-of-financial-services.html</loc>
<lastmod>2019-07-18</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/07/16/kr-how-to-use-mock-ups-in-photoshop.html</loc>
<lastmod>2019-07-16</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/07/09/adobe-research-and-uc-berkeley-detecting-facial-manipulations-in-photoshop.html</loc>
<lastmod>2019-07-09</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/07/02/korea-xd-june-2019-updates.html</loc>
<lastmod>2019-07-02</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/07/02/data-anlytics-driving-retail-innovations.html</loc>
<lastmod>2019-07-02</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/06/19/cusotmer-experience-management-to-make-unrivalled-leaders-customer-references.html</loc>
<lastmod>2019-06-19</lastmod>
</url>
<url>
<loc>https://blog.adobe.com/ko/publish/2019/06/18/our-upcoming-drawing-and-painting-app-has-a-new-name-adobe-fresco.html</loc>