-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
Β·2266 lines (2213 loc) Β· 218 KB
/
index.html
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
<!--[if lt IE 9]>
<html id="ng-app" ng-app="InVision" ng-controller="AppController" inv-key-combos class="lt-ie9 ng-app:InVision" lang="en">
<![endif]-->
<!--[if gt IE 8]><!-->
<html ng-app="InVision" ng-controller="AppController" inv-key-combos lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<title ng-bind="windowTitle">
InVision
</title>
<!-- Custom webfonts -->
<style>
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 300;
src: local('Open Sans Light'), local('OpenSans-Light'), url(assets/fonts/open_sans/OpenSans-light.woff) format('woff');
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: local('Open Sans'), local('OpenSans'), url(assets/fonts/open_sans/OpenSans.woff) format('woff');
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(assets/fonts/open_sans/OpenSans-semibold.woff) format('woff');
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 700;
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(assets/fonts/open_sans/OpenSans-bold.woff) format('woff');
}
</style>
<!-- Interface styles -->
<link type="text/css" rel="stylesheet" href="assets/jquery-ui-1.9.2.custom/css/no-theme/jquery-ui-1.9.2.custom.min.css">
<link type="text/css" rel="stylesheet" href="assets/apps/share/css/uniform.default.css">
<link type="text/css" rel="stylesheet" href="assets/apps/share/css/bootstrap.css">
<link type="text/css" rel="stylesheet" href="assets/apps/share/css/intlTelInput.css">
<link type="text/css" rel="stylesheet" href="assets/apps/share/css/share-offline.css">
<link rel="icon" type="image/ico" href="assets/apps/common/img/favicon.ico">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lte IE 9]>
<script src="/assets/react/es5-shim.min.js"></script>
<script src="/assets/react/es5-sham.min.js"></script>
<![endif]-->
<!--[if lt IE 9]>
<script src="/assets/html5shim/html5.js"></script>
<![endif]-->
<!--[if lt IE 8]>
<script src="/assets/json2/json2.js"></script>
<![endif]-->
</head>
<body
class="branding-invision"
ng-class="bodyClass"
ng-style="bodyStyle">
<!--
This is the initial loading sequence. We need to be able to display this BEFORE the AngularJS
framework loads in order to give the user some sence of activity. But, when the framework kicks
in, it will be able to use the bound ng-controller.
-->
<!-- BEGIN: Loading Sequence. -->
<div ng-if="isLoadingOpen" ng-controller="loading.LoadingController" inv-loading-sequence class="m-loading">
<!-- BEGIN: Loading Indicator. -->
<div class="loading-backdrop">
<div class="loading-container">
<div class="status-container">
<div class="status"></div>
<div class="logo"></div>
</div> <!-- status-container -->
<h2>Loading Experience</h2>
<p>
Powered by <a href="http://www.InVisionApp.com/" target="_blank">InVision</a>
, the best way to share and collaborate on design.
</p>
</div> <!-- loading-container -->
<div class="loading-footer">
<div class="logo"></div>
<h3><a href="http://www.InVisionApp.com/" target="_blank">Powered by InVision</a></h3>
<p><em>Prototyping, Collaboration & Workflow for Designers</em></p>
</div> <!-- loading-footer -->
</div> <!-- loading-backdrop -->
<!-- END: Loading Indicator. -->
</div>
<!-- END: Loading Sequence. -->
<div ng-include=" '/assets/apps/share/views/partials/preload.htm' "></div>
<div ng-include=" '/assets/apps/share/views/layouts/modal.htm' "></div>
<div ng-include=" '/assets/apps/share/views/toolbar/toolbar.htm' "></div>
<div ng-include=" '/assets/apps/share/views/powered-by/powered-by.htm' "></div>
<div
ng-if="isBrowseOpen"
ng-include=" '/assets/apps/share/views/browse/browse.htm' "></div>
<!-- In order to be able to disable horizontal scrolling for some screens, we need to wrap the view in order to be able to maintain screen alignment -->
<div class="desktop-wrapper">
<!-- Tour Points -->
<div
ng-if=" subview == 'preview' "
ng-include=" '/assets/apps/share/views/preview/preview-tour-comments.htm' "></div>
<div
ng-if="subview == 'comments'"
ng-include=" '/assets/apps/share/views/comments/comments.htm' "></div>
<div
ng-if="subview == 'preview'"
is-share-loaded="{{!isLoadingOpen}}"
inv-preview-auto-redirect-listener
ng-include=" '/assets/apps/share/views/preview/preview.htm' "></div>
<!-- Screens for comment mode -->
<div
ng-show="subview == 'comments'"
ng-include=" '/assets/apps/share/views/screens/screens.htm' "c></div>
</div>
<div
ng-if="browserCompatibility.isNotCompatible"
class="m-browser-compatibility ng-cloak"></div>
<script type="text/javascript" src="assets/scripts.js"></script>
<script type="text/javascript">
(function( ng, app ){
"use strict";
app.value(
"config",
{
user: {
id: 39493186,
name: "Filipa Gomes",
email: "[email protected]",
avatarID: "00000000-0000-0000-0000000000000006",
isAccountAuthenticated: true,
isAnonymous: false,
hasSeenCommentToolTip: true
},
shouldShowPoweredBy: false,
share: {"isNavigateAllowed":true,"screenID":0,"hasClosedShareIntro":true,"isLoadAllScreens":true,"showToolbarIntroduction":false},
project: {"mobileStatusbarIsOpaque":false,"defaultBackgroundColor":"","mobileStatusbarBackgroundColor":"#000000","homeScreenID":284363247,"sortTypeID":1,"lastAccessedAt":1520853638000,"isInGracePeriod":false,"userID":39493186,"companyID":0,"isProcessed":true,"id":13635696,"defaultBackgroundImageID":"","defaultbackgroundimageposition":"","isSample":false,"isAdvanced":false,"mobileStatusbarIsVisible":false,"defaultbackgroundframe":"0","mobileStatusbarFontColor":"white","updatedAt":1520965643000,"defaultZoomScrollBehavior":1,"name":"PayUp App Mockups","mobileDeviceWidth":375,"isMobile":true,"isArchived":false,"isOverQuota":false,"createdAt":1520853638000,"mobileDeviceID":27,"defaultAlignment":"center","defaultbackgroundautostretch":"0","isSnap":false},
screens: [{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"DEBDA1","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363247.png","commentCount":0,"screenGroupId":7928683,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Phone [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363247,"imageUrl":"assets/Phone [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#DEBDA1","fixedHeaderBackground":"#00626E"},"updatedAt":1520853638000,"height":1334.0,"name":"Phone Screen","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":1,"createdAt":1520853638000,"fixedHeaderHeight":0,"clientFilename":"Phone [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"2ab9cd","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363250.gif","commentCount":0,"screenGroupId":7928683,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_logo_anim_liso.gif","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363250,"imageUrl":"assets/logo_anim_liso.gif","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#2AB9CD","fixedHeaderBackground":"#2AB9CD"},"updatedAt":1520963936000,"height":1334.0,"name":"Logo Animation","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":2,"createdAt":1520853639000,"fixedHeaderHeight":0,"clientFilename":"logo_anim_liso.gif"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":750.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"284363251.jpg","commentCount":0,"screenGroupId":7928683,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Inicio logged out [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":284363251,"imageUrl":"assets/Inicio logged out [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#25B8CC"},"updatedAt":1520964002000,"height":1334.0,"name":"User Onboarding 01","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":3,"createdAt":1520853639000,"fixedHeaderHeight":0,"clientFilename":"Inicio logged out [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":750.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"284363253.jpg","commentCount":0,"screenGroupId":7928683,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Inicio logged out [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":284363253,"imageUrl":"assets/Inicio logged out [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#25B8CC"},"updatedAt":1520964009000,"height":1334.0,"name":"User Onboarding 02","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":4,"createdAt":1520853639000,"fixedHeaderHeight":0,"clientFilename":"Inicio logged out [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":750.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"284363258.jpg","commentCount":0,"screenGroupId":7928683,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Inicio logged out [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":284363258,"imageUrl":"assets/Inicio logged out [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#25B8CC"},"updatedAt":1520964021000,"height":1334.0,"name":"User Onboarding 03","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":5,"createdAt":1520853640000,"fixedHeaderHeight":0,"clientFilename":"Inicio logged out [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":750.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"284363259.jpg","commentCount":0,"screenGroupId":7928683,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Inicio logged out [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":284363259,"imageUrl":"assets/Inicio logged out [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#25B8CC"},"updatedAt":1520964028000,"height":1334.0,"name":"User Onboarding 04","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":6,"createdAt":1520853640000,"fixedHeaderHeight":0,"clientFilename":"Inicio logged out [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ecf4f7","width":750.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"284363260.jpg","commentCount":0,"screenGroupId":7928683,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Autenticacao 01.1 - user [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":284363260,"imageUrl":"assets/Autenticacao 01.1 - user [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#ECF4F7","fixedHeaderBackground":"#ECF4F7"},"updatedAt":1520964045000,"height":1334.0,"name":"Login 01","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":7,"createdAt":1520853641000,"fixedHeaderHeight":0,"clientFilename":"Autenticacao 01.1 - user [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ecf4f7","width":750.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"284363261.jpg","commentCount":0,"screenGroupId":7928683,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Autenticacao 01.2 - user [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":284363261,"imageUrl":"assets/Autenticacao 01.2 - user [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#ECF4F7","fixedHeaderBackground":"#ECF4F7"},"updatedAt":1520964048000,"height":1334.0,"name":"Login 02","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":8,"createdAt":1520853641000,"fixedHeaderHeight":0,"clientFilename":"Autenticacao 01.2 - user [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"d6d9e0","width":750.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"284363262.jpg","commentCount":0,"screenGroupId":7928683,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Autenticacao 02 - user [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":284363262,"imageUrl":"assets/Autenticacao 02 - user [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D6D9E0","fixedHeaderBackground":"#ECF4F7"},"updatedAt":1520964059000,"height":1334.0,"name":"Login 03","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":9,"createdAt":1520853642000,"fixedHeaderHeight":0,"clientFilename":"Autenticacao 02 - user [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"d6d9e0","width":750.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"284363263.jpg","commentCount":0,"screenGroupId":7928683,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Autenticacao 03 - [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":284363263,"imageUrl":"assets/Autenticacao 03 - [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D6D9E0","fixedHeaderBackground":"#ECF4F7"},"updatedAt":1520964064000,"height":1334.0,"name":"Login 04","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":10,"createdAt":1520853642000,"fixedHeaderHeight":0,"clientFilename":"Autenticacao 03 - [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"d6d9e0","width":750.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"284363265.jpg","commentCount":0,"screenGroupId":7928683,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Autenticacao 04 - password [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":284363265,"imageUrl":"assets/Autenticacao 04 - password [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D6D9E0","fixedHeaderBackground":"#ECF4F7"},"updatedAt":1520964069000,"height":1334.0,"name":"Login 05","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":11,"createdAt":1520853643000,"fixedHeaderHeight":0,"clientFilename":"Autenticacao 04 - password [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363280.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Home [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":158,"isProcessed":true,"id":284363280,"imageUrl":"assets/Home [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853643000,"height":2444.0,"name":"Home Screen","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":12,"createdAt":1520853643000,"fixedHeaderHeight":128,"clientFilename":"Home [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"1e2e6e","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363281.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Bot entry.png","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363281,"imageUrl":"assets/Bot entry.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#1E2E6E","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853644000,"height":1334.0,"name":"Bot Entry","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":13,"createdAt":1520853644000,"fixedHeaderHeight":0,"clientFilename":"Bot entry.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D6D9E0","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363283.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Criar grupo [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363283,"imageUrl":"assets/Criar grupo [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D6D9E0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853644000,"height":1334.0,"name":"Criar Grupo 01","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":14,"createdAt":1520853644000,"fixedHeaderHeight":0,"clientFilename":"Criar grupo [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D6D9E0","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363284.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Criar grupo [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363284,"imageUrl":"assets/Criar grupo [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D6D9E0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853645000,"height":1334.0,"name":"Criar Grupo 02","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":15,"createdAt":1520853645000,"fixedHeaderHeight":0,"clientFilename":"Criar grupo [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363291.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Criar grupo [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363291,"imageUrl":"assets/Criar grupo [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#FFFFFF"},"updatedAt":1520853646000,"height":4050.0,"name":"Criar Grupo 03","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":16,"createdAt":1520853646000,"fixedHeaderHeight":226,"clientFilename":"Criar grupo [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363300.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Criar grupo [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363300,"imageUrl":"assets/Criar grupo [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#FFFFFF"},"updatedAt":1520853647000,"height":4050.0,"name":"Criar Grupo 04","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":17,"createdAt":1520853647000,"fixedHeaderHeight":226,"clientFilename":"Criar grupo [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D8DBE1","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363302.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Criar grupo [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363302,"imageUrl":"assets/Criar grupo [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D7DAE0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853647000,"height":1334.0,"name":"Criar Grupo 05","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":18,"createdAt":1520853647000,"fixedHeaderHeight":0,"clientFilename":"Criar grupo [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D8DBE1","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363310.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Criar grupo [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363310,"imageUrl":"assets/Criar grupo [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D8DBE1","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853648000,"height":1334.0,"name":"Criar Grupo 06","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":19,"createdAt":1520853648000,"fixedHeaderHeight":0,"clientFilename":"Criar grupo [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D8DBE1","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363311.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Criar grupo [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363311,"imageUrl":"assets/Criar grupo [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D8DBE1","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853648000,"height":1334.0,"name":"Criar Grupo 07","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":20,"createdAt":1520853648000,"fixedHeaderHeight":0,"clientFilename":"Criar grupo [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D8DBE1","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363324.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Criar grupo [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363324,"imageUrl":"assets/Criar grupo [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D7DAE0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853649000,"height":1334.0,"name":"Criar Grupo 08","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":21,"createdAt":1520853649000,"fixedHeaderHeight":0,"clientFilename":"Criar grupo [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"d9d6cc","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363330.gif","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Criar Grupo 09_anim.gif","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363330,"imageUrl":"assets/Criar Grupo 09_anim.gif","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#BFC2C0","fixedHeaderBackground":"#18316B"},"updatedAt":1520853650000,"height":1334.0,"name":"Criar Grupo 09 Anim","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":22,"createdAt":1520853650000,"fixedHeaderHeight":0,"clientFilename":"Criar Grupo 09_anim.gif"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"EDF4F7","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363331.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Criar grupo [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363331,"imageUrl":"assets/Criar grupo [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#EDF4F7","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853650000,"height":1334.0,"name":"Criar Grupo 09","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":23,"createdAt":1520853650000,"fixedHeaderHeight":0,"clientFilename":"Criar grupo [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"EDF4F7","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363341.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Criar grupo [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363341,"imageUrl":"assets/Criar grupo [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#EDF4F7","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853651000,"height":1334.0,"name":"Criar Grupo 10","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":24,"createdAt":1520853651000,"fixedHeaderHeight":0,"clientFilename":"Criar grupo [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363343.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Criar grupo [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363343,"imageUrl":"assets/Criar grupo [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853651000,"height":1334.0,"name":"Criar Grupo 11","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":25,"createdAt":1520853651000,"fixedHeaderHeight":0,"clientFilename":"Criar grupo [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"EDF4F7","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363345.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_adicionar despesa [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363345,"imageUrl":"assets/adicionar despesa [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520964262000,"height":1334.0,"name":"Adicionar Despesa 01","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":26,"createdAt":1520853652000,"fixedHeaderHeight":0,"clientFilename":"adicionar despesa [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363347.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_adicionar despesa [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363347,"imageUrl":"assets/adicionar despesa [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#25B8CC","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520964266000,"height":1334.0,"name":"Adicionar Despesa 02","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":27,"createdAt":1520853652000,"fixedHeaderHeight":0,"clientFilename":"adicionar despesa [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D7DAE1","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363348.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_adicionar despesa [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363348,"imageUrl":"assets/adicionar despesa [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#EDF4F7","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520964280000,"height":1334.0,"name":"Adicionar Despesa 03","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":28,"createdAt":1520853652000,"fixedHeaderHeight":0,"clientFilename":"adicionar despesa [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D7DAE1","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363349.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_adicionar despesa [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363349,"imageUrl":"assets/adicionar despesa [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#EDF4F7","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520964283000,"height":1334.0,"name":"Adicionar Despesa 04","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":29,"createdAt":1520853653000,"fixedHeaderHeight":0,"clientFilename":"adicionar despesa [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D6D9E0","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363350.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_adicionar despesa [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363350,"imageUrl":"assets/adicionar despesa [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D6D9E0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520964286000,"height":1334.0,"name":"Adicionar Despesa 05","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":30,"createdAt":1520853654000,"fixedHeaderHeight":0,"clientFilename":"adicionar despesa [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D6D9E0","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363351.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_adicionar despesa [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363351,"imageUrl":"assets/adicionar despesa [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D6D9E0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520964290000,"height":1334.0,"name":"Adicionar Despesa 06","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":31,"createdAt":1520853654000,"fixedHeaderHeight":0,"clientFilename":"adicionar despesa [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"dfd1d2","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363353.gif","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_adicionar Despesa 07_anim.gif","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363353,"imageUrl":"assets/adicionar Despesa 07_anim.gif","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#BFC1C0","fixedHeaderBackground":"#18316B"},"updatedAt":1520853655000,"height":1334.0,"name":"Adicionar Despesa 07 Anim","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":32,"createdAt":1520853655000,"fixedHeaderHeight":0,"clientFilename":"adicionar Despesa 07_anim.gif"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"EDF4F7","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363357.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_adicionar despesa [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363357,"imageUrl":"assets/adicionar despesa [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#EDF4F7","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520964298000,"height":1334.0,"name":"Adicionar Despesa 07","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":33,"createdAt":1520853655000,"fixedHeaderHeight":0,"clientFilename":"adicionar despesa [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"EDF4F7","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363359.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_adicionar despesa [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363359,"imageUrl":"assets/adicionar despesa [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#EDF4F7","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520964303000,"height":1334.0,"name":"Adicionar Despesa 08","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":34,"createdAt":1520853656000,"fixedHeaderHeight":0,"clientFilename":"adicionar despesa [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363371.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_adicionar despesa [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363371,"imageUrl":"assets/adicionar despesa [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520964306000,"height":1334.0,"name":"Adicionar Despesa 09","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":35,"createdAt":1520853657000,"fixedHeaderHeight":0,"clientFilename":"adicionar despesa [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"c8ced6","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363373.gif","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_adicionar Despesa 10 - Bye_anim.gif","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363373,"imageUrl":"assets/adicionar Despesa 10 - Bye_anim.gif","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#BABBCE","fixedHeaderBackground":"#32B8CC"},"updatedAt":1520853658000,"height":1334.0,"name":"Adicionar Despesa 10 - Bye Anim","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":36,"createdAt":1520853658000,"fixedHeaderHeight":0,"clientFilename":"adicionar Despesa 10 - Bye_anim.gif"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"25B8CC","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363377.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_adicionar despesa 10 - [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363377,"imageUrl":"assets/adicionar despesa 10 - [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#25B8CC","fixedHeaderBackground":"#25B8CC"},"updatedAt":1520964318000,"height":1334.0,"name":"Adicionar Despesa 10 - Bye","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":37,"createdAt":1520853659000,"fixedHeaderHeight":0,"clientFilename":"adicionar despesa 10 - [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363379.png","commentCount":0,"screenGroupId":7928684,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Home screen [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":158,"isProcessed":true,"id":284363379,"imageUrl":"assets/Home screen [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853659000,"height":2872.0,"name":"Home Screen Actualizado","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":38,"createdAt":1520853659000,"fixedHeaderHeight":128,"clientFilename":"Home screen [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"EDF4F7","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363383.png","commentCount":0,"screenGroupId":7928685,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Editar [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363383,"imageUrl":"assets/Editar [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#EDF4F7","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853660000,"height":1334.0,"name":"Editar Grupo","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":39,"createdAt":1520853660000,"fixedHeaderHeight":0,"clientFilename":"Editar [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"EDF4F7","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363388.png","commentCount":0,"screenGroupId":7928685,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Editar [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363388,"imageUrl":"assets/Editar [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#EDF4F7","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853660000,"height":1746.0,"name":"Editar Despesa","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":40,"createdAt":1520853660000,"fixedHeaderHeight":128,"clientFilename":"Editar [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363393.png","commentCount":0,"screenGroupId":7928685,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Categorias de [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363393,"imageUrl":"assets/Categorias de [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#FFFFFF"},"updatedAt":1520853661000,"height":2064.0,"name":"Categorias De Despesas","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":41,"createdAt":1520853661000,"fixedHeaderHeight":128,"clientFilename":"Categorias de [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363398.png","commentCount":0,"screenGroupId":7928685,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Categorias de Despesas [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363398,"imageUrl":"assets/Categorias de Despesas [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#FFFFFF"},"updatedAt":1520853662000,"height":2064.0,"name":"Categorias De Despesas Selected","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":42,"createdAt":1520853662000,"fixedHeaderHeight":128,"clientFilename":"Categorias de Despesas [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363412.png","commentCount":0,"screenGroupId":7928686,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Home screen [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":158,"isProcessed":true,"id":284363412,"imageUrl":"assets/Home screen [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853662000,"height":2444.0,"name":"Home Screen Actions","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":43,"createdAt":1520853662000,"fixedHeaderHeight":128,"clientFilename":"Home screen [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":750.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"284363416.png","commentCount":0,"screenGroupId":7928686,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/[email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":158,"isProcessed":true,"id":284363416,"imageUrl":"assets/[email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##FFFFFF","fixedHeaderBackground":"##edf4f7"},"updatedAt":1520964554000,"height":2294.0,"name":"HistoΜrico","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":44,"createdAt":1520853663000,"fixedHeaderHeight":216,"clientFilename":"[email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"edf4f7","width":750.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"284363418.png","commentCount":0,"screenGroupId":7928686,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/[email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":284363418,"imageUrl":"assets/[email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"##edf4f7","fixedHeaderBackground":"##edf4f7"},"updatedAt":1520964568000,"height":2466.0,"name":"DefinicΜ§oΜes","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":45,"createdAt":1520853663000,"fixedHeaderHeight":128,"clientFilename":"[email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"000000","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363424.png","commentCount":0,"screenGroupId":7928686,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/[email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363424,"imageUrl":"assets/[email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#000000","fixedHeaderBackground":"#000000"},"updatedAt":1520853664000,"height":1334.0,"name":"Erro","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":46,"createdAt":1520853664000,"fixedHeaderHeight":0,"clientFilename":"[email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"EDF4F7","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363426.png","commentCount":0,"screenGroupId":7928687,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Consultar [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":158,"isProcessed":true,"id":284363426,"imageUrl":"assets/Consultar [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#0","fixedHeaderBackground":"#0"},"updatedAt":1520853664000,"height":1926.0,"name":"Consultar Grupos","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":47,"createdAt":1520853664000,"fixedHeaderHeight":272,"clientFilename":"Consultar [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"EDF4F7","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363432.png","commentCount":0,"screenGroupId":7928687,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Grupo [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":158,"isProcessed":true,"id":284363432,"imageUrl":"assets/Grupo [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#0","fixedHeaderBackground":"#2B386F"},"updatedAt":1520853665000,"height":2498.0,"name":"Grupo Geral","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":48,"createdAt":1520853665000,"fixedHeaderHeight":216,"clientFilename":"Grupo [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"EDF4F7","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363442.png","commentCount":0,"screenGroupId":7928687,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Grupo [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":158,"isProcessed":true,"id":284363442,"imageUrl":"assets/Grupo [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#0","fixedHeaderBackground":"#2B386F"},"updatedAt":1520853666000,"height":1424.0,"name":"Grupo Despesas","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":49,"createdAt":1520853666000,"fixedHeaderHeight":216,"clientFilename":"Grupo [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363448.png","commentCount":0,"screenGroupId":7928687,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Grupo [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363448,"imageUrl":"assets/Grupo [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#2B386F"},"updatedAt":1520853666000,"height":1334.0,"name":"Grupo Mensagens","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":50,"createdAt":1520853666000,"fixedHeaderHeight":216,"clientFilename":"Grupo [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"EDF4F7","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363450.png","commentCount":0,"screenGroupId":7928687,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Grupo [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":158,"isProcessed":true,"id":284363450,"imageUrl":"assets/Grupo [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#0","fixedHeaderBackground":"#2B386F"},"updatedAt":1520853667000,"height":1488.0,"name":"Grupo Membros","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":51,"createdAt":1520853667000,"fixedHeaderHeight":216,"clientFilename":"Grupo [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363452.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Home screen [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":158,"isProcessed":true,"id":284363452,"imageUrl":"assets/Home screen [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853668000,"height":2444.0,"name":"Home Screen Power-User","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":52,"createdAt":1520853668000,"fixedHeaderHeight":128,"clientFilename":"Home screen [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"1E2E6E","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363475.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Bot entry power [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363475,"imageUrl":"assets/Bot entry power [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#1E2E6E","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853668000,"height":1334.0,"name":"Bot Entry Power User","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":53,"createdAt":1520853668000,"fixedHeaderHeight":0,"clientFilename":"Bot entry power [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D6D9E0","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363480.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Power-user [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363480,"imageUrl":"assets/Power-user [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D6D9E0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853669000,"height":1334.0,"name":"Power-User 1","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":54,"createdAt":1520853669000,"fixedHeaderHeight":0,"clientFilename":"Power-user [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D1D5DC","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363481.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Power-user [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363481,"imageUrl":"assets/Power-user [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D1D5DC","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853669000,"height":1334.0,"name":"Power-User 2","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":55,"createdAt":1520853669000,"fixedHeaderHeight":0,"clientFilename":"Power-user [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D6D9E0","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363512.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Power-user [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363512,"imageUrl":"assets/Power-user [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D6D9E0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853669000,"height":1334.0,"name":"Power-User 3","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":56,"createdAt":1520853669000,"fixedHeaderHeight":0,"clientFilename":"Power-user [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D6D9E0","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363516.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Power-user [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363516,"imageUrl":"assets/Power-user [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D6D9E0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853670000,"height":1334.0,"name":"Power-User 4","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":57,"createdAt":1520853670000,"fixedHeaderHeight":0,"clientFilename":"Power-user [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363523.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Power-user [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363523,"imageUrl":"assets/Power-user [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853671000,"height":1334.0,"name":"Power-User 5","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":58,"createdAt":1520853671000,"fixedHeaderHeight":0,"clientFilename":"Power-user [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363527.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Power-user [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363527,"imageUrl":"assets/Power-user [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853671000,"height":1334.0,"name":"Power-User 6","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":59,"createdAt":1520853671000,"fixedHeaderHeight":0,"clientFilename":"Power-user [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363531.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Power-user [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363531,"imageUrl":"assets/Power-user [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853672000,"height":1334.0,"name":"Power-User 7","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":60,"createdAt":1520853672000,"fixedHeaderHeight":0,"clientFilename":"Power-user [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D6D9E0","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363535.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Power-user [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363535,"imageUrl":"assets/Power-user [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D6D9E0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853672000,"height":1334.0,"name":"Power-User 8","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":61,"createdAt":1520853672000,"fixedHeaderHeight":0,"clientFilename":"Power-user [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D6D9E0","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363539.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Power-user [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363539,"imageUrl":"assets/Power-user [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D6D9E0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853673000,"height":1334.0,"name":"Power-User 9","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":62,"createdAt":1520853673000,"fixedHeaderHeight":0,"clientFilename":"Power-user [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D6D9E0","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363542.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Power-user [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363542,"imageUrl":"assets/Power-user [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D6D9E0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853674000,"height":1334.0,"name":"Power-User 10","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":63,"createdAt":1520853674000,"fixedHeaderHeight":0,"clientFilename":"Power-user [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D6D9E0","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363551.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Power-user [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363551,"imageUrl":"assets/Power-user [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D6D9E0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853674000,"height":1334.0,"name":"Power-User 11","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":64,"createdAt":1520853674000,"fixedHeaderHeight":0,"clientFilename":"Power-user [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"D6D9E0","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363560.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Power-user [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363560,"imageUrl":"assets/Power-user [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#D6D9E0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853675000,"height":1334.0,"name":"Power-User 12","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":65,"createdAt":1520853675000,"fixedHeaderHeight":0,"clientFilename":"Power-user [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"EDF4F7","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363568.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Power-user [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363568,"imageUrl":"assets/Power-user [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#EDF4F7","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853675000,"height":1334.0,"name":"Power-User 13","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":66,"createdAt":1520853675000,"fixedHeaderHeight":0,"clientFilename":"Power-user [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363580.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Power-user [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363580,"imageUrl":"assets/Power-user [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853676000,"height":1334.0,"name":"Power-User 14","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":67,"createdAt":1520853676000,"fixedHeaderHeight":0,"clientFilename":"Power-user [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"25B8CC","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363584.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Power-user 15 - bye [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363584,"imageUrl":"assets/Power-user 15 - bye [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#25B8CC","fixedHeaderBackground":"#25B8CC"},"updatedAt":1520853677000,"height":1334.0,"name":"Power-User 15 - Bye Copy","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":68,"createdAt":1520853677000,"fixedHeaderHeight":0,"clientFilename":"Power-user 15 - bye [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"25B8CC","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363587.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Power-user 15 - [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363587,"imageUrl":"assets/Power-user 15 - [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#25B8CC","fixedHeaderBackground":"#25B8CC"},"updatedAt":1520853677000,"height":1334.0,"name":"Power-User 15 - Bye","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":69,"createdAt":1520853677000,"fixedHeaderHeight":0,"clientFilename":"Power-user 15 - [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363599.png","commentCount":0,"screenGroupId":7928688,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Home screen actualizado [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":158,"isProcessed":true,"id":284363599,"imageUrl":"assets/Home screen actualizado [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#0","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853678000,"height":2872.0,"name":"Home Screen Actualizado Power-User","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":70,"createdAt":1520853678000,"fixedHeaderHeight":128,"clientFilename":"Home screen actualizado [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"EDF4F7","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363601.png","commentCount":0,"screenGroupId":7928689,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Editar despesa e grupo [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363601,"imageUrl":"assets/Editar despesa e grupo [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#EDF4F7","fixedHeaderBackground":"#1E2E6E"},"updatedAt":1520853678000,"height":1746.0,"name":"Editar Despesa E Grupo Power-User","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":71,"createdAt":1520853678000,"fixedHeaderHeight":128,"clientFilename":"Editar despesa e grupo [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363604.png","commentCount":0,"screenGroupId":7928689,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Categorias de Despesas [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363604,"imageUrl":"assets/Categorias de Despesas [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#FFFFFF"},"updatedAt":1520853679000,"height":2064.0,"name":"Categorias De Despesas Power-User","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":72,"createdAt":1520853679000,"fixedHeaderHeight":128,"clientFilename":"Categorias de Despesas [email protected]"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":750.0,"screenUploadState":"","backgroundImageWidth":"","serverFileName":"284363615.png","commentCount":0,"screenGroupId":7928689,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":13635696,"isPlaceholder":false,"userID":39493186,"thumbnailUrl":"assets/thumb_Categorias de Despesas Selected [email protected]","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":284363615,"imageUrl":"assets/Categorias de Despesas Selected [email protected]","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#FFFFFF"},"updatedAt":1520853680000,"height":2064.0,"name":"Categorias De Despesas Selected Power-User","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Filipa Gomes","isArchived":false,"sort":73,"createdAt":1520853680000,"fixedHeaderHeight":128,"clientFilename":"Categorias de Despesas Selected [email protected]"}],
dividers: [{"position":0,"projectID":13635696,"sort":0,"expanded":true,"label":"","type":"divider","dividerID":0},{"position":0,"projectID":13635696,"sort":1,"label":"Onboarding e Login","type":"divider","dividerID":7928683},{"position":0,"projectID":13635696,"sort":2,"label":"Bot Walk Through - Criar Grupo e Despesa","type":"divider","dividerID":7928684},{"position":0,"projectID":13635696,"sort":3,"label":"Bot Walk Through - Edição","type":"divider","dividerID":7928685},{"position":0,"projectID":13635696,"sort":4,"label":"Geral","type":"divider","dividerID":7928686},{"position":0,"projectID":13635696,"sort":5,"label":"Grupos","type":"divider","dividerID":7928687},{"position":0,"projectID":13635696,"sort":6,"label":"Power User - Criar Grupo e Despesa","type":"divider","dividerID":7928688},{"position":0,"projectID":13635696,"sort":7,"label":"Power User - Edição","type":"divider","dividerID":7928689}],
metaScreens: {"splash":{"sameOriginImageUrl":"","relation":"apple-touch-startup-image","backgroundColor":"","imageUrl":""},"icon":{"sameOriginImageUrl":"","relation":"apple-touch-icon-precomposed","imageUrl":""}},
hotspots: [{"eventTypeID":9,"targetScreenID":284363347,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":-10.0,"y":-10.0,"screenID":284363345,"id":821993224,"isScrollTo":false,"metaData":{"redirectAfter":800},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363348,"width":164.0,"height":100.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":2.0,"y":1230.0,"screenID":284363347,"id":821993226,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363349,"width":744.0,"height":430.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":2.0,"y":900.0,"screenID":284363348,"id":821993243,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363350,"width":550.0,"height":86.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":96.0,"y":792.0,"screenID":284363349,"id":821993306,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363351,"width":738.0,"height":426.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":4.0,"y":902.0,"screenID":284363350,"id":821993205,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363353,"width":182.0,"height":98.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":562.0,"y":1232.0,"screenID":284363351,"id":821993263,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":9,"targetScreenID":284363359,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":-10.0,"y":-10.0,"screenID":284363353,"id":821993141,"isScrollTo":false,"metaData":{"redirectAfter":2350},"targetTypeID":1},{"eventTypeID":9,"targetScreenID":284363359,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":-10.0,"y":-10.0,"screenID":284363357,"id":821993264,"isScrollTo":false,"metaData":{"redirectAfter":1000},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363388,"width":208.0,"height":98.0,"isBottomAligned":false,"templateID":"","transitionTypeID":4,"x":444.0,"y":1142.0,"screenID":284363359,"id":821993265,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363371,"width":342.0,"height":104.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":94.0,"y":1140.0,"screenID":284363359,"id":821993266,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363373,"width":108.0,"height":92.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":8.0,"y":44.0,"screenID":284363371,"id":821993260,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":9,"targetScreenID":284363379,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":-10.0,"y":-10.0,"screenID":284363373,"id":821993142,"isScrollTo":false,"metaData":{"redirectAfter":5980},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363379,"width":314.0,"height":76.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":236.0,"y":1192.0,"screenID":284363373,"id":821993143,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":9,"targetScreenID":284363379,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":-10.0,"y":-10.0,"screenID":284363377,"id":821993244,"isScrollTo":false,"metaData":{"redirectAfter":1000},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363261,"width":480.0,"height":108.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":60.0,"y":892.0,"screenID":284363260,"id":821993233,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363262,"width":744.0,"height":430.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":0.0,"y":900.0,"screenID":284363261,"id":821993302,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363262,"width":744.0,"height":432.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":0.0,"y":898.0,"screenID":284363261,"id":821993303,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363263,"width":162.0,"height":106.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":534.0,"y":686.0,"screenID":284363262,"id":821993207,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363263,"width":184.0,"height":96.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":560.0,"y":1234.0,"screenID":284363262,"id":821993208,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363265,"width":746.0,"height":430.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":0.0,"y":900.0,"screenID":284363263,"id":821993255,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363280,"width":150.0,"height":106.0,"isBottomAligned":false,"templateID":"","transitionTypeID":4,"x":542.0,"y":688.0,"screenID":284363265,"id":821993240,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363280,"width":180.0,"height":94.0,"isBottomAligned":false,"templateID":"","transitionTypeID":4,"x":564.0,"y":1236.0,"screenID":284363265,"id":821993242,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363283,"width":314.0,"height":86.0,"isBottomAligned":false,"templateID":"","transitionTypeID":5,"x":2.0,"y":640.0,"screenID":284363475,"id":821993289,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363480,"width":468.0,"height":84.0,"isBottomAligned":false,"templateID":"","transitionTypeID":5,"x":2.0,"y":1026.0,"screenID":284363475,"id":821993290,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363283,"width":312.0,"height":84.0,"isBottomAligned":false,"templateID":"","transitionTypeID":5,"x":2.0,"y":644.0,"screenID":284363281,"id":821993137,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363480,"width":476.0,"height":86.0,"isBottomAligned":false,"templateID":"","transitionTypeID":5,"x":2.0,"y":1030.0,"screenID":284363281,"id":821993138,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363601,"width":120.0,"height":90.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":0.0,"y":34.0,"screenID":284363604,"id":821993315,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363615,"width":744.0,"height":116.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":0.0,"y":1034.0,"screenID":284363604,"id":821993316,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363601,"width":124.0,"height":82.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":0.0,"y":42.0,"screenID":284363615,"id":821993197,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363601,"width":158.0,"height":80.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":586.0,"y":42.0,"screenID":284363615,"id":821993198,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363388,"width":118.0,"height":88.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":4.0,"y":36.0,"screenID":284363398,"id":821993267,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363388,"width":158.0,"height":84.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":588.0,"y":42.0,"screenID":284363398,"id":821993268,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":0,"width":108.0,"height":86.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":6.0,"y":36.0,"screenID":284363393,"id":821993222,"isScrollTo":false,"metaData":{},"targetTypeID":2},{"eventTypeID":1,"targetScreenID":284363398,"width":742.0,"height":114.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":2.0,"y":1036.0,"screenID":284363393,"id":821993223,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":0,"width":154.0,"height":70.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":4.0,"y":50.0,"screenID":284363426,"id":821993272,"isScrollTo":false,"metaData":{},"targetTypeID":2},{"eventTypeID":1,"targetScreenID":284363432,"width":354.0,"height":464.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":378.0,"y":298.0,"screenID":284363426,"id":821993273,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363284,"width":744.0,"height":430.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":0.0,"y":900.0,"screenID":284363283,"id":821993203,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363291,"width":552.0,"height":128.0,"isBottomAligned":false,"templateID":"","transitionTypeID":4,"x":98.0,"y":688.0,"screenID":284363284,"id":821993301,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363300,"width":744.0,"height":114.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":0.0,"y":564.0,"screenID":284363291,"id":821993218,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363284,"width":210.0,"height":76.0,"isBottomAligned":false,"templateID":"","transitionTypeID":5,"x":2.0,"y":48.0,"screenID":284363291,"id":821993219,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363302,"width":730.0,"height":96.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":6.0,"y":126.0,"screenID":284363300,"id":821993262,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363310,"width":740.0,"height":426.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":2.0,"y":896.0,"screenID":284363302,"id":821993225,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363311,"width":744.0,"height":110.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":0.0,"y":226.0,"screenID":284363310,"id":821993189,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":9,"targetScreenID":284363324,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":-10.0,"y":-10.0,"screenID":284363311,"id":821993305,"isScrollTo":false,"metaData":{"redirectAfter":800},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363330,"width":144.0,"height":70.0,"isBottomAligned":false,"templateID":"","transitionTypeID":5,"x":598.0,"y":52.0,"screenID":284363324,"id":821993278,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":9,"targetScreenID":284363341,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":-10.0,"y":-10.0,"screenID":284363330,"id":821993140,"isScrollTo":false,"metaData":{"redirectAfter":2130},"targetTypeID":1},{"eventTypeID":9,"targetScreenID":284363341,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":-10.0,"y":-10.0,"screenID":284363331,"id":821993310,"isScrollTo":false,"metaData":{"redirectAfter":1000},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363383,"width":276.0,"height":102.0,"isBottomAligned":false,"templateID":"","transitionTypeID":4,"x":376.0,"y":818.0,"screenID":284363341,"id":821993269,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363343,"width":280.0,"height":104.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":92.0,"y":818.0,"screenID":284363341,"id":821993270,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363345,"width":270.0,"height":178.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":390.0,"y":506.0,"screenID":284363343,"id":821993279,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363604,"width":156.0,"height":146.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":378.0,"y":494.0,"screenID":284363601,"id":821993245,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363580,"width":124.0,"height":72.0,"isBottomAligned":false,"templateID":"","transitionTypeID":5,"x":620.0,"y":50.0,"screenID":284363601,"id":821993246,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363568,"width":138.0,"height":72.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":4.0,"y":50.0,"screenID":284363601,"id":821993247,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":0,"width":130.0,"height":78.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":4.0,"y":40.0,"screenID":284363388,"id":821993252,"isScrollTo":false,"metaData":{},"targetTypeID":2},{"eventTypeID":1,"targetScreenID":284363393,"width":152.0,"height":158.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":300.0,"y":490.0,"screenID":284363388,"id":821993253,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363371,"width":152.0,"height":66.0,"isBottomAligned":false,"templateID":"","transitionTypeID":5,"x":592.0,"y":48.0,"screenID":284363388,"id":821993254,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363343,"width":136.0,"height":78.0,"isBottomAligned":false,"templateID":"","transitionTypeID":5,"x":610.0,"y":44.0,"screenID":284363383,"id":821993195,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363341,"width":154.0,"height":76.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":2.0,"y":46.0,"screenID":284363383,"id":821993196,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":0,"width":256.0,"height":90.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":110.0,"y":766.0,"screenID":284363424,"id":821993299,"isScrollTo":false,"metaData":{},"targetTypeID":2},{"eventTypeID":1,"targetScreenID":0,"width":202.0,"height":78.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":4.0,"y":50.0,"screenID":284363416,"id":821993206,"isScrollTo":false,"metaData":{},"targetTypeID":2},{"eventTypeID":4,"targetScreenID":284363280,"width":740.0,"height":194.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":4.0,"y":766.0,"screenID":284363412,"id":821993193,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":5,"targetScreenID":284363412,"width":738.0,"height":160.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":2.0,"y":786.0,"screenID":284363280,"id":821993313,"isScrollTo":true,"metaData":{},"targetTypeID":1},{"eventTypeID":5,"targetScreenID":284363253,"width":738.0,"height":950.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":6.0,"y":54.0,"screenID":284363251,"id":821993276,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":5,"targetScreenID":284363258,"width":742.0,"height":954.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":2.0,"y":52.0,"screenID":284363253,"id":821993311,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":5,"targetScreenID":284363259,"width":742.0,"height":946.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":2.0,"y":60.0,"screenID":284363258,"id":821993300,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":9,"targetScreenID":284363251,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":-10.0,"y":-10.0,"screenID":284363250,"id":821993139,"isScrollTo":false,"metaData":{"redirectAfter":3010},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363250,"width":138.0,"height":166.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":392.0,"y":752.0,"screenID":284363247,"id":821993220,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363481,"width":742.0,"height":428.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":2.0,"y":900.0,"screenID":284363480,"id":821993280,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363452,"width":104.0,"height":92.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":10.0,"y":46.0,"screenID":284363480,"id":821993281,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363551,"width":116.0,"height":102.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":628.0,"y":796.0,"screenID":284363542,"id":821993320,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":9,"targetScreenID":284363560,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":-10.0,"y":-10.0,"screenID":284363551,"id":821993283,"isScrollTo":false,"metaData":{"redirectAfter":800},"targetTypeID":1},{"eventTypeID":9,"targetScreenID":284363568,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":-10.0,"y":-10.0,"screenID":284363560,"id":821993293,"isScrollTo":false,"metaData":{"redirectAfter":800},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363601,"width":268.0,"height":104.0,"isBottomAligned":false,"templateID":"","transitionTypeID":4,"x":382.0,"y":1194.0,"screenID":284363568,"id":821993238,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363580,"width":276.0,"height":108.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":94.0,"y":1192.0,"screenID":284363568,"id":821993239,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363584,"width":118.0,"height":88.0,"isBottomAligned":false,"templateID":"","transitionTypeID":10,"x":10.0,"y":46.0,"screenID":284363580,"id":821993292,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":9,"targetScreenID":284363599,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":-10.0,"y":-10.0,"screenID":284363584,"id":821993212,"isScrollTo":false,"metaData":{"redirectAfter":1000},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363599,"width":300.0,"height":92.0,"isBottomAligned":false,"templateID":"","transitionTypeID":3,"x":238.0,"y":1178.0,"screenID":284363584,"id":821993213,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363512,"width":128.0,"height":98.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":616.0,"y":756.0,"screenID":284363481,"id":821993274,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363452,"width":116.0,"height":100.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":4.0,"y":42.0,"screenID":284363481,"id":821993275,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":9,"targetScreenID":284363516,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":-10.0,"y":-10.0,"screenID":284363512,"id":821993261,"isScrollTo":false,"metaData":{"redirectAfter":800},"targetTypeID":1},{"eventTypeID":9,"targetScreenID":284363523,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":-10.0,"y":-10.0,"screenID":284363516,"id":821993256,"isScrollTo":false,"metaData":{"redirectAfter":800},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363527,"width":280.0,"height":90.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":322.0,"y":1010.0,"screenID":284363523,"id":821993237,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363531,"width":310.0,"height":76.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":30.0,"y":1122.0,"screenID":284363527,"id":821993321,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363535,"width":104.0,"height":96.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":630.0,"y":798.0,"screenID":284363531,"id":821993227,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":9,"targetScreenID":284363539,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":-10.0,"y":-10.0,"screenID":284363535,"id":821993204,"isScrollTo":false,"metaData":{"redirectAfter":800},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363542,"width":742.0,"height":428.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":2.0,"y":902.0,"screenID":284363539,"id":821993312,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":0,"width":106.0,"height":76.0,"isBottomAligned":false,"templateID":"","transitionTypeID":2,"x":4.0,"y":48.0,"screenID":284363418,"id":821993190,"isScrollTo":false,"metaData":{},"targetTypeID":2},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363345,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363347,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363347,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363348,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363348,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363349,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363349,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363350,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363350,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363351,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363351,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363357,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363359,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363359,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363371,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":0,"width":136.0,"height":124.0,"isBottomAligned":false,"templateID":23327899,"transitionTypeID":8,"x":306.0,"y":1166.0,"screenID":284363475,"id":821993122,"isScrollTo":false,"metaData":{},"targetTypeID":2},{"eventTypeID":1,"targetScreenID":0,"width":136.0,"height":124.0,"isBottomAligned":false,"templateID":23327899,"transitionTypeID":8,"x":306.0,"y":1166.0,"screenID":284363281,"id":821993122,"isScrollTo":false,"metaData":{},"targetTypeID":2},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363426,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363281,"width":104.0,"height":108.0,"isBottomAligned":true,"templateID":23327898,"transitionTypeID":8,"x":322.0,"y":52.0,"screenID":284363426,"id":821993120,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363280,"width":128.0,"height":102.0,"isBottomAligned":true,"templateID":23327902,"transitionTypeID":4,"x":0.0,"y":4.0,"screenID":284363426,"id":821993127,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363416,"width":146.0,"height":102.0,"isBottomAligned":true,"templateID":23327904,"transitionTypeID":4,"x":596.0,"y":6.0,"screenID":284363426,"id":821993129,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363283,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363280,"width":110.0,"height":82.0,"isBottomAligned":false,"templateID":23327900,"transitionTypeID":2,"x":2.0,"y":48.0,"screenID":284363283,"id":821993124,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363284,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363284,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363341,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363341,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363343,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363442,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363281,"width":104.0,"height":108.0,"isBottomAligned":true,"templateID":23327898,"transitionTypeID":8,"x":322.0,"y":52.0,"screenID":284363442,"id":821993120,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363280,"width":128.0,"height":102.0,"isBottomAligned":true,"templateID":23327902,"transitionTypeID":4,"x":0.0,"y":4.0,"screenID":284363442,"id":821993127,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363426,"width":180.0,"height":78.0,"isBottomAligned":false,"templateID":23327903,"transitionTypeID":2,"x":0.0,"y":42.0,"screenID":284363442,"id":821993128,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363416,"width":146.0,"height":102.0,"isBottomAligned":true,"templateID":23327904,"transitionTypeID":4,"x":596.0,"y":6.0,"screenID":284363442,"id":821993129,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363448,"width":202.0,"height":74.0,"isBottomAligned":false,"templateID":23327906,"transitionTypeID":8,"x":320.0,"y":138.0,"screenID":284363442,"id":821993133,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363450,"width":174.0,"height":76.0,"isBottomAligned":false,"templateID":23327907,"transitionTypeID":8,"x":536.0,"y":136.0,"screenID":284363442,"id":821993134,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363432,"width":122.0,"height":72.0,"isBottomAligned":false,"templateID":23327908,"transitionTypeID":8,"x":6.0,"y":144.0,"screenID":284363442,"id":821993136,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363432,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363281,"width":104.0,"height":108.0,"isBottomAligned":true,"templateID":23327898,"transitionTypeID":8,"x":322.0,"y":52.0,"screenID":284363432,"id":821993120,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363280,"width":128.0,"height":102.0,"isBottomAligned":true,"templateID":23327902,"transitionTypeID":4,"x":0.0,"y":4.0,"screenID":284363432,"id":821993127,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363426,"width":180.0,"height":78.0,"isBottomAligned":false,"templateID":23327903,"transitionTypeID":2,"x":0.0,"y":42.0,"screenID":284363432,"id":821993128,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363416,"width":146.0,"height":102.0,"isBottomAligned":true,"templateID":23327904,"transitionTypeID":4,"x":596.0,"y":6.0,"screenID":284363432,"id":821993129,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363442,"width":162.0,"height":72.0,"isBottomAligned":false,"templateID":23327905,"transitionTypeID":8,"x":144.0,"y":140.0,"screenID":284363432,"id":821993131,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363448,"width":202.0,"height":74.0,"isBottomAligned":false,"templateID":23327906,"transitionTypeID":8,"x":320.0,"y":138.0,"screenID":284363432,"id":821993133,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363450,"width":174.0,"height":76.0,"isBottomAligned":false,"templateID":23327907,"transitionTypeID":8,"x":536.0,"y":136.0,"screenID":284363432,"id":821993134,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363450,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363281,"width":104.0,"height":108.0,"isBottomAligned":true,"templateID":23327898,"transitionTypeID":8,"x":322.0,"y":52.0,"screenID":284363450,"id":821993120,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363280,"width":128.0,"height":102.0,"isBottomAligned":true,"templateID":23327902,"transitionTypeID":4,"x":0.0,"y":4.0,"screenID":284363450,"id":821993127,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363426,"width":180.0,"height":78.0,"isBottomAligned":false,"templateID":23327903,"transitionTypeID":2,"x":0.0,"y":42.0,"screenID":284363450,"id":821993128,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363416,"width":146.0,"height":102.0,"isBottomAligned":true,"templateID":23327904,"transitionTypeID":4,"x":596.0,"y":6.0,"screenID":284363450,"id":821993129,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363442,"width":162.0,"height":72.0,"isBottomAligned":false,"templateID":23327905,"transitionTypeID":8,"x":144.0,"y":140.0,"screenID":284363450,"id":821993131,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363448,"width":202.0,"height":74.0,"isBottomAligned":false,"templateID":23327906,"transitionTypeID":8,"x":320.0,"y":138.0,"screenID":284363450,"id":821993133,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363432,"width":122.0,"height":72.0,"isBottomAligned":false,"templateID":23327908,"transitionTypeID":8,"x":6.0,"y":144.0,"screenID":284363450,"id":821993136,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363448,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363426,"width":180.0,"height":78.0,"isBottomAligned":false,"templateID":23327903,"transitionTypeID":2,"x":0.0,"y":42.0,"screenID":284363448,"id":821993128,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363442,"width":162.0,"height":72.0,"isBottomAligned":false,"templateID":23327905,"transitionTypeID":8,"x":144.0,"y":140.0,"screenID":284363448,"id":821993131,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363450,"width":174.0,"height":76.0,"isBottomAligned":false,"templateID":23327907,"transitionTypeID":8,"x":536.0,"y":136.0,"screenID":284363448,"id":821993134,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363432,"width":122.0,"height":72.0,"isBottomAligned":false,"templateID":23327908,"transitionTypeID":8,"x":6.0,"y":144.0,"screenID":284363448,"id":821993136,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363281,"width":104.0,"height":108.0,"isBottomAligned":true,"templateID":23327898,"transitionTypeID":8,"x":322.0,"y":52.0,"screenID":284363416,"id":821993120,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363426,"width":132.0,"height":102.0,"isBottomAligned":true,"templateID":23327901,"transitionTypeID":4,"x":446.0,"y":4.0,"screenID":284363416,"id":821993126,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363280,"width":128.0,"height":102.0,"isBottomAligned":true,"templateID":23327902,"transitionTypeID":4,"x":0.0,"y":4.0,"screenID":284363416,"id":821993127,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363599,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363281,"width":104.0,"height":108.0,"isBottomAligned":true,"templateID":23327898,"transitionTypeID":8,"x":322.0,"y":52.0,"screenID":284363599,"id":821993120,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363426,"width":132.0,"height":102.0,"isBottomAligned":true,"templateID":23327901,"transitionTypeID":4,"x":446.0,"y":4.0,"screenID":284363599,"id":821993126,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363416,"width":146.0,"height":102.0,"isBottomAligned":true,"templateID":23327904,"transitionTypeID":4,"x":596.0,"y":6.0,"screenID":284363599,"id":821993129,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363379,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363281,"width":104.0,"height":108.0,"isBottomAligned":true,"templateID":23327898,"transitionTypeID":8,"x":322.0,"y":52.0,"screenID":284363379,"id":821993120,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363426,"width":132.0,"height":102.0,"isBottomAligned":true,"templateID":23327901,"transitionTypeID":4,"x":446.0,"y":4.0,"screenID":284363379,"id":821993126,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363416,"width":146.0,"height":102.0,"isBottomAligned":true,"templateID":23327904,"transitionTypeID":4,"x":596.0,"y":6.0,"screenID":284363379,"id":821993129,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363452,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363281,"width":104.0,"height":108.0,"isBottomAligned":true,"templateID":23327898,"transitionTypeID":8,"x":322.0,"y":52.0,"screenID":284363452,"id":821993120,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363426,"width":132.0,"height":102.0,"isBottomAligned":true,"templateID":23327901,"transitionTypeID":4,"x":446.0,"y":4.0,"screenID":284363452,"id":821993126,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363416,"width":146.0,"height":102.0,"isBottomAligned":true,"templateID":23327904,"transitionTypeID":4,"x":596.0,"y":6.0,"screenID":284363452,"id":821993129,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363280,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363281,"width":104.0,"height":108.0,"isBottomAligned":true,"templateID":23327898,"transitionTypeID":8,"x":322.0,"y":52.0,"screenID":284363280,"id":821993120,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363426,"width":132.0,"height":102.0,"isBottomAligned":true,"templateID":23327901,"transitionTypeID":4,"x":446.0,"y":4.0,"screenID":284363280,"id":821993126,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363416,"width":146.0,"height":102.0,"isBottomAligned":true,"templateID":23327904,"transitionTypeID":4,"x":596.0,"y":6.0,"screenID":284363280,"id":821993129,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363260,"width":744.0,"height":98.0,"isBottomAligned":false,"templateID":23327897,"transitionTypeID":3,"x":0.0,"y":1232.0,"screenID":284363251,"id":821993118,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363260,"width":744.0,"height":98.0,"isBottomAligned":false,"templateID":23327897,"transitionTypeID":3,"x":0.0,"y":1232.0,"screenID":284363253,"id":821993118,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363260,"width":744.0,"height":98.0,"isBottomAligned":false,"templateID":23327897,"transitionTypeID":3,"x":0.0,"y":1232.0,"screenID":284363258,"id":821993118,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363260,"width":744.0,"height":98.0,"isBottomAligned":false,"templateID":23327897,"transitionTypeID":3,"x":0.0,"y":1232.0,"screenID":284363259,"id":821993118,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363480,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363542,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363542,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363551,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363551,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363560,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363568,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363568,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363580,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363481,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363512,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363512,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363516,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363516,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363523,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363523,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363527,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363527,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363531,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363531,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363535,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363535,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":284363418,"width":112.0,"height":96.0,"isBottomAligned":false,"templateID":23327895,"transitionTypeID":3,"x":634.0,"y":34.0,"screenID":284363539,"id":821993115,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":284363424,"width":114.0,"height":92.0,"isBottomAligned":false,"templateID":23327896,"transitionTypeID":1,"x":6.0,"y":42.0,"screenID":284363539,"id":821993117,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":false,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":50,"positionID":2,"reverseTransitionOnClose":true}},"targetTypeID":7}],
branding: {
stub: "invision",
url: "http://www.InVisionApp.com/"
},
mobileDevices: [{"viewportWidth":"0","loadScreenResolution":"","mobileSkinColor":"","className":"desktop","viewportHeight":"0","iconResolution":"","platform":"any","mobileSkin":"any","description":"desktop","isDefaultDeviceType":true,"deviceHeight":0,"orientation":"any","deviceType":"desktop","mobileDeviceID":0,"mobileSkinFilename":"","deviceWidth":0},{"viewportWidth":"320","loadScreenResolution":"640 x 1096","mobileSkinColor":"black","className":"iphone-portrait","viewportHeight":"568","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 5 (Black)","isDefaultDeviceType":false,"deviceHeight":778,"orientation":"portrait","deviceType":"phone","mobileDeviceID":1,"mobileSkinFilename":"iphone-portrait.png","deviceWidth":374},{"viewportWidth":"568","loadScreenResolution":"640 x 1096","mobileSkinColor":"black","className":"iphone-landscape","viewportHeight":"320","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 5 (Black)","isDefaultDeviceType":false,"deviceHeight":374,"orientation":"landscape","deviceType":"phone","mobileDeviceID":2,"mobileSkinFilename":"iphone-landscape.png","deviceWidth":778},{"viewportWidth":"576","loadScreenResolution":"1536 x 2048","mobileSkinColor":"black","className":"ipad-portrait","viewportHeight":"768","iconResolution":"152 x 152","platform":"iOS","mobileSkin":"iPad","description":"iPad - Black","isDefaultDeviceType":true,"deviceHeight":950,"orientation":"portrait","deviceType":"tablet","mobileDeviceID":3,"mobileSkinFilename":"ipad-portrait.png","deviceWidth":640},{"viewportWidth":"768","loadScreenResolution":"2048 x 1496","mobileSkinColor":"black","className":"ipad-landscape","viewportHeight":"576","iconResolution":"152 x 152","platform":"iOS","mobileSkin":"iPad","description":"iPad - Black","isDefaultDeviceType":true,"deviceHeight":640,"orientation":"landscape","deviceType":"tablet","mobileDeviceID":4,"mobileSkinFilename":"ipad-landscape.png","deviceWidth":950},{"viewportWidth":"320","loadScreenResolution":"640 x 920","mobileSkinColor":"black","className":"iphone4-portrait","viewportHeight":"480","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 4 (Black)","isDefaultDeviceType":false,"deviceHeight":690,"orientation":"portrait","deviceType":"phone","mobileDeviceID":5,"mobileSkinFilename":"iphone4-portrait.png","deviceWidth":374},{"viewportWidth":"480","loadScreenResolution":"640 x 920","mobileSkinColor":"black","className":"iphone4-landscape","viewportHeight":"320","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 4 (Black)","isDefaultDeviceType":false,"deviceHeight":374,"orientation":"landscape","deviceType":"phone","mobileDeviceID":6,"mobileSkinFilename":"iphone4-landscape.png","deviceWidth":690},{"viewportWidth":"360","loadScreenResolution":"1080 x 1920","mobileSkinColor":"black","className":"htcOne-portrait","viewportHeight":"640","iconResolution":"192 x 192","platform":"Android","mobileSkin":"HTC One","description":"HTC One - Black","isDefaultDeviceType":true,"deviceHeight":836,"orientation":"portrait","deviceType":"phone","mobileDeviceID":7,"mobileSkinFilename":"htcOne-portrait.png","deviceWidth":402},{"viewportWidth":"640","loadScreenResolution":"1920 x 1080","mobileSkinColor":"black","className":"htcOne-landscape","viewportHeight":"360","iconResolution":"192 x 192","platform":"Android","mobileSkin":"HTC One","description":"HTC One - Black","isDefaultDeviceType":true,"deviceHeight":402,"orientation":"landscape","deviceType":"phone","mobileDeviceID":8,"mobileSkinFilename":"htcOne-landscape.png","deviceWidth":836},{"viewportWidth":"360","loadScreenResolution":"1080 x 1920","mobileSkinColor":"black","className":"samsungS4-portrait","viewportHeight":"640","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Samsung Galaxy S4","description":"Samsung Galaxy S4 - Black","isDefaultDeviceType":false,"deviceHeight":786,"orientation":"portrait","deviceType":"phone","mobileDeviceID":9,"mobileSkinFilename":"samsungS4-portrait.png","deviceWidth":406},{"viewportWidth":"640","loadScreenResolution":"1920 x 1080","mobileSkinColor":"black","className":"samsungS4-landscape","viewportHeight":"360","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Samsung Galaxy S4","description":"Samsung Galaxy S4 - Black","isDefaultDeviceType":false,"deviceHeight":406,"orientation":"landscape","deviceType":"phone","mobileDeviceID":10,"mobileSkinFilename":"samsungS4-landscape.png","deviceWidth":786},{"viewportWidth":"320","loadScreenResolution":"640 x 1096","mobileSkinColor":"white","className":"iphone-portrait","viewportHeight":"568","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 5 (White)","isDefaultDeviceType":false,"deviceHeight":778,"orientation":"portrait","deviceType":"phone","mobileDeviceID":11,"mobileSkinFilename":"iphone-portrait-white.png","deviceWidth":374},{"viewportWidth":"568","loadScreenResolution":"640 x 1096","mobileSkinColor":"white","className":"iphone-landscape","viewportHeight":"320","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 5 (White)","isDefaultDeviceType":false,"deviceHeight":374,"orientation":"landscape","deviceType":"phone","mobileDeviceID":12,"mobileSkinFilename":"iphone-landscape-white.png","deviceWidth":778},{"viewportWidth":"576","loadScreenResolution":"1536 x 2048","mobileSkinColor":"white","className":"ipad-portrait","viewportHeight":"768","iconResolution":"152 x 152","platform":"iOS","mobileSkin":"iPad","description":"iPad - White","isDefaultDeviceType":false,"deviceHeight":950,"orientation":"portrait","deviceType":"tablet","mobileDeviceID":13,"mobileSkinFilename":"ipad-portrait-white.png","deviceWidth":640},{"viewportWidth":"768","loadScreenResolution":"2048 x 1496","mobileSkinColor":"white","className":"ipad-landscape","viewportHeight":"576","iconResolution":"152 x 152","platform":"iOS","mobileSkin":"iPad","description":"iPad - White","isDefaultDeviceType":false,"deviceHeight":640,"orientation":"landscape","deviceType":"tablet","mobileDeviceID":14,"mobileSkinFilename":"ipad-landscape-white.png","deviceWidth":950},{"viewportWidth":"320","loadScreenResolution":"640 x 920","mobileSkinColor":"white","className":"iphone4-portrait","viewportHeight":"480","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 4 (White)","isDefaultDeviceType":false,"deviceHeight":690,"orientation":"portrait","deviceType":"phone","mobileDeviceID":15,"mobileSkinFilename":"iphone4-portrait-white.png","deviceWidth":374},{"viewportWidth":"480","loadScreenResolution":"640 x 920","mobileSkinColor":"white","className":"iphone4-landscape","viewportHeight":"320","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 4 (White)","isDefaultDeviceType":false,"deviceHeight":374,"orientation":"landscape","deviceType":"phone","mobileDeviceID":16,"mobileSkinFilename":"iphone4-landscape-white.png","deviceWidth":690},{"viewportWidth":"360","loadScreenResolution":"1080 x 1920","mobileSkinColor":"white","className":"htcOne-portrait","viewportHeight":"640","iconResolution":"192 x 192","platform":"Android","mobileSkin":"HTC One","description":"HTC One - White","isDefaultDeviceType":false,"deviceHeight":836,"orientation":"portrait","deviceType":"phone","mobileDeviceID":17,"mobileSkinFilename":"htcOne-portrait-white.png","deviceWidth":402},{"viewportWidth":"640","loadScreenResolution":"1920 x 1080","mobileSkinColor":"white","className":"htcOne-landscape","viewportHeight":"360","iconResolution":"192 x 192","platform":"Android","mobileSkin":"HTC One","description":"HTC One - White","isDefaultDeviceType":false,"deviceHeight":402,"orientation":"landscape","deviceType":"phone","mobileDeviceID":18,"mobileSkinFilename":"htcOne-landscape-white.png","deviceWidth":836},{"viewportWidth":"360","loadScreenResolution":"1080 x 1920","mobileSkinColor":"white","className":"samsungS4-portrait","viewportHeight":"640","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Samsung Galaxy S4","description":"Samsung Galaxy S4 - White","isDefaultDeviceType":false,"deviceHeight":786,"orientation":"portrait","deviceType":"phone","mobileDeviceID":19,"mobileSkinFilename":"samsungS4-portrait-white.png","deviceWidth":406},{"viewportWidth":"640","loadScreenResolution":"1920 x 1080","mobileSkinColor":"white","className":"samsungS4-landscape","viewportHeight":"360","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Samsung Galaxy S4","description":"Samsung Galaxy S4 - White","isDefaultDeviceType":false,"deviceHeight":406,"orientation":"landscape","deviceType":"phone","mobileDeviceID":20,"mobileSkinFilename":"samsungS4-landscape-white.png","deviceWidth":786},{"viewportWidth":"450","loadScreenResolution":"1080 x 1920","mobileSkinColor":"black","className":"nexus7-portrait","viewportHeight":"685","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Nexus 7","description":"Nexus 7","isDefaultDeviceType":true,"deviceHeight":870,"orientation":"portrait","deviceType":"tablet","mobileDeviceID":21,"mobileSkinFilename":"nexus7-portrait.png","deviceWidth":532},{"viewportWidth":"720","loadScreenResolution":"1920 x 1080","mobileSkinColor":"black","className":"nexus7-landscape","viewportHeight":"415","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Nexus 7","description":"Nexus 7","isDefaultDeviceType":true,"deviceHeight":532,"orientation":"landscape","deviceType":"tablet","mobileDeviceID":22,"mobileSkinFilename":"nexus7-landscape.png","deviceWidth":870},{"viewportWidth":"600","loadScreenResolution":"1080 x 1920","mobileSkinColor":"black","className":"nexus10-portrait","viewportHeight":"925","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Nexus 10","description":"Nexus 10","isDefaultDeviceType":false,"deviceHeight":1112,"orientation":"portrait","deviceType":"tablet","mobileDeviceID":23,"mobileSkinFilename":"nexus10-portrait.png","deviceWidth":776},{"viewportWidth":"960","loadScreenResolution":"1920 x 1080","mobileSkinColor":"black","className":"nexus10-landscape","viewportHeight":"565","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Nexus 10","description":"Nexus 10","isDefaultDeviceType":false,"deviceHeight":776,"orientation":"landscape","deviceType":"tablet","mobileDeviceID":24,"mobileSkinFilename":"nexus10-landscape.png","deviceWidth":1112},{"viewportWidth":"375","loadScreenResolution":"750 x 1294","mobileSkinColor":"black","className":"iphone6-portrait","viewportHeight":"667","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6-8 (Black)","isDefaultDeviceType":true,"deviceHeight":850,"orientation":"portrait","deviceType":"phone","mobileDeviceID":25,"mobileSkinFilename":"iphone6-portrait.png","deviceWidth":416},{"viewportWidth":"667","loadScreenResolution":"750 x 1294","mobileSkinColor":"black","className":"iphone6-landscape","viewportHeight":"375","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6-8 (Black)","isDefaultDeviceType":true,"deviceHeight":416,"orientation":"landscape","deviceType":"phone","mobileDeviceID":26,"mobileSkinFilename":"iphone6-landscape.png","deviceWidth":850},{"viewportWidth":"375","loadScreenResolution":"750 x 1294","mobileSkinColor":"white","className":"iphone6-portrait","viewportHeight":"667","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6-8 (White)","isDefaultDeviceType":false,"deviceHeight":850,"orientation":"portrait","deviceType":"phone","mobileDeviceID":27,"mobileSkinFilename":"iphone6-portrait-white.png","deviceWidth":416},{"viewportWidth":"667","loadScreenResolution":"750 x 1294","mobileSkinColor":"white","className":"iphone6-landscape","viewportHeight":"375","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6-8 (White)","isDefaultDeviceType":false,"deviceHeight":416,"orientation":"landscape","deviceType":"phone","mobileDeviceID":28,"mobileSkinFilename":"iphone6-landscape-white.png","deviceWidth":850},{"viewportWidth":"412","loadScreenResolution":"1242 x 2148","mobileSkinColor":"black","className":"iphone6plus-portrait","viewportHeight":"734","iconResolution":"180 x 180","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6-8 Plus (Black)","isDefaultDeviceType":false,"deviceHeight":920,"orientation":"portrait","deviceType":"phone","mobileDeviceID":29,"mobileSkinFilename":"iphone6plus-portrait.png","deviceWidth":454},{"viewportWidth":"734","loadScreenResolution":"1242 x 2148","mobileSkinColor":"black","className":"iphone6plus-landscape","viewportHeight":"412","iconResolution":"180 x 180","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6-8 Plus (Black)","isDefaultDeviceType":false,"deviceHeight":454,"orientation":"landscape","deviceType":"phone","mobileDeviceID":30,"mobileSkinFilename":"iphone6plus-landscape.png","deviceWidth":920},{"viewportWidth":"412","loadScreenResolution":"1242 x 2148","mobileSkinColor":"white","className":"iphone6plus-portrait","viewportHeight":"734","iconResolution":"180 x 180","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6-8 Plus (White)","isDefaultDeviceType":false,"deviceHeight":920,"orientation":"portrait","deviceType":"phone","mobileDeviceID":31,"mobileSkinFilename":"iphone6plus-portrait-white.png","deviceWidth":454},{"viewportWidth":"734","loadScreenResolution":"1242 x 2148","mobileSkinColor":"white","className":"iphone6plus-landscape","viewportHeight":"412","iconResolution":"180 x 180","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6-8 Plus (White)","isDefaultDeviceType":false,"deviceHeight":454,"orientation":"landscape","deviceType":"phone","mobileDeviceID":32,"mobileSkinFilename":"iphone6plus-portrait-white.png","deviceWidth":920},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"roseGold","className":"apple-watch-38mm-roseGold","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Rose Gold","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":33,"mobileSkinFilename":"apple-watch-38mm-roseGold.png","deviceWidth":209},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"silverAluminum","className":"apple-watch-38mm-silverAluminum","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Silver Aluminum","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":34,"mobileSkinFilename":"apple-watch-38mm-silverAluminum.png","deviceWidth":209},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"spaceBlackStainlessSteel","className":"apple-watch-38mm-spaceBlackStainlessSteel","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Space Black Stainless Steel","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":35,"mobileSkinFilename":"apple-watch-38mm-spaceBlackStainlessSteel.png","deviceWidth":209},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"spaceGrayAluminum","className":"apple-watch-38mm-spaceGrayAluminum","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Space Gray Aluminum","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":36,"mobileSkinFilename":"apple-watch-38mm-spaceGrayAluminum.png","deviceWidth":209},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"stainlessSteel","className":"apple-watch-38mm-stainlessSteel","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Stainless Steel","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":37,"mobileSkinFilename":"apple-watch-38mm-stainlessSteel.png","deviceWidth":209},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"yellowGold","className":"apple-watch-38mm-yellowGold","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Yellow Gold","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":38,"mobileSkinFilename":"apple-watch-38mm-yellowGold.png","deviceWidth":209},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"roseGold","className":"apple-watch-42mm-roseGold","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Rose Gold","isDefaultDeviceType":false,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":39,"mobileSkinFilename":"apple-watch-42mm-roseGold.png","deviceWidth":240},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"silverAluminum","className":"apple-watch-42mm-silverAluminum","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Silver Aluminum","isDefaultDeviceType":false,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":40,"mobileSkinFilename":"apple-watch-42mm-silverAluminum.png","deviceWidth":240},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"spaceBlackStainlessSteel","className":"apple-watch-42mm-spaceBlackStainlessSteel","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Space Black Stainless Steel","isDefaultDeviceType":false,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":41,"mobileSkinFilename":"apple-watch-42mm-spaceBlackStainlessSteel.png","deviceWidth":240},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"spaceGrayAluminum","className":"apple-watch-42mm-spaceGrayAluminum","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Space Gray Aluminum","isDefaultDeviceType":true,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":42,"mobileSkinFilename":"apple-watch-42mm-spaceGrayAluminum.png","deviceWidth":240},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"stainlessSteel","className":"apple-watch-42mm-stainlessSteel","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Stainless Steel","isDefaultDeviceType":false,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":43,"mobileSkinFilename":"apple-watch-42mm-stainlessSteel.png","deviceWidth":240},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"yellowGold","className":"apple-watch-42mm-yellowGold","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Yellow Gold","isDefaultDeviceType":false,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":44,"mobileSkinFilename":"apple-watch-42mm-yellowGold.png","deviceWidth":240},{"viewportWidth":"160","loadScreenResolution":"320px x 320px","mobileSkinColor":"round-dark","className":"android-round-dark","viewportHeight":"160","iconResolution":"144 x 144","platform":"android","mobileSkin":"android-watch","description":"Round - Dark","isDefaultDeviceType":false,"deviceHeight":310,"orientation":"portrait","deviceType":"watch","mobileDeviceID":45,"mobileSkinFilename":"android-round-dark.png","deviceWidth":185},{"viewportWidth":"160","loadScreenResolution":"320px x 320px","mobileSkinColor":"round-light","className":"android-round-light","viewportHeight":"160","iconResolution":"144 x 144","platform":"android","mobileSkin":"android-watch","description":"Round - Light","isDefaultDeviceType":false,"deviceHeight":310,"orientation":"portrait","deviceType":"watch","mobileDeviceID":46,"mobileSkinFilename":"android-round-light.png","deviceWidth":185},{"viewportWidth":"160","loadScreenResolution":"320px x 320px","mobileSkinColor":"square-dark","className":"android-square-dark","viewportHeight":"160","iconResolution":"144 x 144","platform":"android","mobileSkin":"android-watch","description":"Square - Dark","isDefaultDeviceType":true,"deviceHeight":377,"orientation":"portrait","deviceType":"watch","mobileDeviceID":47,"mobileSkinFilename":"android-square-dark.png","deviceWidth":223},{"viewportWidth":"160","loadScreenResolution":"320px x 320px","mobileSkinColor":"square-light","className":"android-square-light","viewportHeight":"160","iconResolution":"144 x 144","platform":"android","mobileSkin":"android-watch","description":"Square - Light","isDefaultDeviceType":false,"deviceHeight":377,"orientation":"portrait","deviceType":"watch","mobileDeviceID":48,"mobileSkinFilename":"android-square-light.png","deviceWidth":223},{"viewportWidth":"375","loadScreenResolution":"1242 x 2148","mobileSkinColor":"black","className":"iphoneX-portrait","viewportHeight":"812","iconResolution":"180 x 180","platform":"iOS","mobileSkin":"iPhoneX","description":"iPhone X","isDefaultDeviceType":true,"deviceHeight":855,"orientation":"portrait","deviceType":"phone","mobileDeviceID":49,"mobileSkinFilename":"iphoneX-portrait.png","deviceWidth":420},{"viewportWidth":"812","loadScreenResolution":"2148 x 1242","mobileSkinColor":"black","className":"iphoneX-landscape","viewportHeight":"375","iconResolution":"180 x 180","platform":"iOS","mobileSkin":"iPhoneX","description":"iPhone X","isDefaultDeviceType":true,"deviceHeight":421,"orientation":"landscape","deviceType":"phone","mobileDeviceID":50,"mobileSkinFilename":"iphoneX-landscape.png","deviceWidth":856}]
}
);
})( angular, InVision );
</script>
<script type="text/ng-template" id="/assets/apps/share/views/powered-by/powered-by.htm"><!-- Hide this object for a specific customer project shares. Everyone else should see it. -->
<div ng-hide="project.companyID == 71">
<a
ng-if=" !project.isMobile || share.isEmbed "
class="powered-by"
href="http://www.invisionapp.com/?utm_medium=virality&utm_source=Share%20CTA"
target="_blank">
<img src="assets/apps/share/img/made-with-invision.png" />
</a>
<a
ng-if="project.isMobile && !share.isEmbed"
class="mobile-powered-by"
href="http://www.invisionapp.com/?utm_medium=virality&utm_source=Share%20CTA"
target="_blank">
made with InVision
</a>
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/directives/share-sketch-viewer.htm"><div id="shareSketchViewer" ng-show=" isShowingSketchViewer ">
<div class="modalOverlay">
<div class="sketchViewer">
<div class="closeViewer" ng-click=" closeSketchViewer() "></div>
<div ng-show=" sketchImageIsProcessing " class="isProcessing">
<p>
<img src="assets/apps/share/img/draw.png"/><br/>
This sketch is currently being processed.<br/>
<span class="sub">It'll be available shortly!</span>
</p>
</div>
<!-- Non-Temporaray sketches here -->
<div ng-if=" !sketchViewerSketchIsTemp " class="imageContainer">
<img ng-src="/api/comments/{{sketchViewerSketch.commentID}}/sketch/{{sketchViewerSketch.id}}"
inv-console-sketch-viewer-image
ng-style="{ width: screen.width * screen.displayScale + 'px',
height: screen.height * screen.displayScale + 'px'
}"/>
</div>
<!-- Temporary sketches here -->
<div ng-if=" sketchViewerSketchIsTemp " class="imageContainer">
<img ng-src="{{ screen.imageUrl }}"
ng-style="{ width: screen.width * screen.displayScale + 'px',
height: screen.height * screen.displayScale + 'px'
}" />
<div class="whiteOverlay" ng-style="{ opacity : sketchViewerSketch.opacity }"></div>
<div class="tempSketchOverlay" ng-bind-html=" sketchViewerSketch.svg ">
</div>
</div>
</div>
</div>
</div></script><script type="text/ng-template" id="/assets/apps/share/views/directives/share-sketch-builder.htm"><div id="shareSketchBuilder">
<div id="builderWindow">
<div id="sketchToolbar">
<div class="whiteboard_tools">
<a ng-click="setWhiteboardOpacity(0, 'none')" id="whiteboard_none" class="whiteboard_tool none overlay" ng-class="{ active: whiteboardSelected == 'none'}"><span>Transparent</span></a>
<a ng-click="setWhiteboardOpacity(.7, 'half')" id="whiteboard_half" class="whiteboard_tool half overlay" ng-class="{ active: whiteboardSelected == 'half'}"><span>50%</span></a>
<a ng-click="setWhiteboardOpacity(1, 'full')" id="whiteboard_full" class="whiteboard_tool full overlay" ng-class="{ active: whiteboardSelected == 'full'}"><span>100%</span></a>
</div> <!-- whiteboard_tools -->
<div class="tools">
<a id="pencil" class="sketch_tool pencil">
<i class="tool_icon tool_pencil"></i>
</a>
<a id="rect" class="sketch_tool square">
<i class="tool_icon tool_square"></i>
</a>
<a id="circle" class="sketch_tool circle">
<i class="tool_icon tool_circle"></i>
</a>
<a id="line" class="sketch_tool line">
<i class="tool_icon tool_line"></i>
</a>
<!--
<a id="arrow" class="sketch_tool arrow">
<i class="tool_icon tool_arrow"></i>
</a>
-->
<a id="text" class="sketch_tool text">
<i class="tool_icon tool_text"></i>
</a>
<a id="move" class="sketch_tool move">
<i class="tool_icon tool_move"></i>
</a>
<div class="actions_toolbar">
<a id="undo" rel="tooltip" data-placement="bottom" title="Undo action" class="sketch_action undo inactive">
<i class="tool_icon tool_undo"></i>
</a>
<a id="redo" rel="tooltip" data-placement="bottom" title="Redo action" class="sketch_action redo inactive">
<i class="tool_icon tool_redo"></i>
</a>
<a id="delete" rel="tooltip" data-placement="bottom" title="Remove element" class="sketch_action delete inactive">
<i class="tool_icon tool_delete"></i>
</a>
</div>
</div>
<div class="sketch_btns">
<a ng-click=" hideSketchBuilder() " class="btn cancel">Cancel</a>
<a ng-click=" saveSketch() " class="btn save">I'm Done</a>
</div>
</div>
<div class="scroll-wrap">
<div class="sketchImage_wrapper">
<img
ng-src="{{ screen.imageUrl }}"
ng-style="{ width: screen.width * screen.displayScale + 'px',
height: screen.height * screen.displayScale + 'px'}"
class="sketch_image"
/>
</div>
<div id="whiteboard_overlay" ng-class="whiteboardSelected"></div>
</div> <!-- scroll-wrap -->
</div> <!-- end builderWindow -->
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/directives/toggle.htm">
<div class="m-toggle off">
<!-- BEGIN: Labels Track. -->
<div class="toggle-labels-track">
<div class="toggle-labels">
<div class="toggle-label on">
<span class="text">On</span>
</div>
<div class="toggle-label off">
<span class="text">Off</span>
</div>
</div>
</div>
<!-- END: Labels Track. -->
<!-- BEGIN: Thumb Track. -->
<div class="toggle-thumb-track">
<a href="" class="toggle-thumb">
<span class="toggle-end">
<br />
</span>
</a>
</div>
<!-- END: Thumb Track. -->
</div></script><script type="text/ng-template" id="/assets/apps/share/views/toolbar/toolbar.htm">
<div
ng-controller="toolbar.ToolbarController"
ng-show="( includeBrowseTool || includeCommentsTool )"
ng-mouseenter="updateIsUserOverToolbar( true )"
ng-mouseleave="updateIsUserOverToolbar( false )"
ng-hide="share.isEmbed"
ng-class="{ 'tour-is-running': isShareTourRunning }"
class="m-toolbar">
<!-- iPhone projects -->
<div
id="shareSMS"
inv-fade-show="isShowingSmsForm"
ng-if=" deviceTemplate.deviceType == 'phone' && !! shareUrl "
ng-class="{
'no-comments': ! includeCommentsTool,
'no-browse': ! includeBrowseTool
}">
<div class="smsForm" inv-fade-show="isShowingSmsForm" duration="slow" >
<a ng-click="toggleSmsShareForm()" class="closeButton"><img src="assets/apps/share/img/close4.png" alt="Close" /></a>
<h2>Install "{{ project.name }}" on your phone</h2>
<p>Visit <a ng-href="{{ shareUrl }}">{{shareUrl}}</a> on your phone or SMS the link to your number:</p>
<input inv-i8n-telephone
type="text"
class="phoneNumber"
country-code="share.countryCode"
ng-class="{ messageSent: sms.messageSent }"
ui-keypress="{13:'sendShareSms()'}"
name="phoneNumber"
placeholder="Enter mobile number"
ng-model="sms.phoneNumber">
<button ng-click="sendShareSms()">
Send
</button>
<div class="message">
{{sms.message}}
</div>
</div>
</div>
<!-- BEGIN: Toolbar. -->
<div
inv-toolbar
class="toolbar"
ng-class="{
active: isActive,
'highlight-tour': !hasSeenTour
}">
<!-- helper -->
<div
class="begin-share-tour"
ng-show=" false "
>
<!-- bouncy tooltip -->
<div
class="comment-tip-wrapper"
ng-show="shouldShowBounceToolTip()">
<span
inv-bouncy-tooltip
msg="Learn how to explore this design"
callback="hasSeenCommentTooltip()"></span>
</div> <!-- comment-tip-wrapper -->
<div class="helper" ng-class="{'hasSeenCommentsTooltip': hasSeenCommentsTooltip}" ng-click="showShareTour()">?</div>
</div> <!-- begin-share-tour -->
<!-- AQUA-421 comment cta tooltip -->
<div
class="comments-cta-tooltip"
ng-class="{ transition: commentToolTipVisible }"
ng-if="includeCommentsTool">
<div class="popover top comments-tip">
<div class="arrow"></div>
<div class="popover-content">
<i ng-click="closeCommentTooltipExperiment()" class="comments-tooltip-close"></i>Turn on comment mode to collaborate on this prototype
</div>
</div>
</div> <!-- comment cta tooltip -->
<div class="tools">
<div ng-if=" deviceTemplate.deviceType == 'phone' && !! shareUrl " class="tool share-sms-tool">
<a ng-click="toggleSmsShareForm()"><span class="toolbar-menu-device"></span></a>
</div>
<div
ng-show="includeBrowseTool"
ng-class="{ active: tourSubView == 'thumbnails' }"
class="tool browse-toggle-tool">
<a ng-click="toggleBrowse()" ng-class="{ on: isBrowseOpen }"><span class="toolbar-menu-sprite"></span></a>
</div>
<div
ng-show="includeCommentsTool"
ng-class="{
active: tourSubView == 'comments',
'no-browse': !includeBrowseTool && ( deviceTemplate.deviceType != 'phone' )
}"
class="tool comments-toggle-tool">
<div class="clickable"></div>
<span class="comments" ng-class="{ new: unreadCommentCount, old: ( commentCount && ! unreadCommentCount ) }">
<span class="unread">{{ unreadCommentCount }}</span>
<span class="total">{{ commentCount }}</span>
</span>
<span ng-hide="leaveCommentButtonExperiment" class="description">
Comments
</span>
<div ng-hide="leaveCommentButtonExperiment" ng-model="isShowingComments" inv-toggle></div>
<div ng-if="leaveCommentButtonExperiment">
<div ng-if="!isShowingComments" class="comments-button">
<span class="comments-button-labels"><i class="comments-button-icon-bubble"></i>Open comments</span>
</div>
<div ng-if="isShowingComments" class="comments-button">
<i class="comments-button-icon-close"></i><span class="comments-button-labels">Close comments</span>
</div>
</div>
</div>
</div>
</div>
<!-- END: Toolbar. -->
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/browse/thumbnails.htm">
<div class="thumbnail-list" ng-class="{ 'without-comments': excludeComments }">
<div ng-repeat="displayItem in displayObjects"
class="{{displayItem.type}}"
ng-class="{ 'invisible-group': displayItem.type == 'divider' && displayItem.sort == 0}" >
<div ng-if=" shouldDividerDisplay(displayItem) " class="divider">
<p class="dividerLabel">
<span class="title">{{ displayItem.label }}</span>
<span class="count">{{ displayItem.screenCount }}</span>
</p>
</div>
<a ng-if="displayItem.type == 'screenObj' "
ng-click="applyScreenNavigation( displayItem )"
class="item"
ng-class="{ selected: ( displayItem == selectedScreen ) }">
<span class="thumbnail-viewport " style="background: #{{displayItem.backgroundColor}}">
<img ng-src="{{ displayItem.thumbnailUrl }}" />
</span>
<span class="name">
{{ displayItem.name }}
</span>
<span class="hasComments" ng-if=" displayItem.unreadCommentCount ">•</span>
</a>
</div>
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/browse/list.htm">
<div class="name-list" ng-class="{ 'without-comments': excludeComments }">
<!-- BEGIN: Header Row. -->
<div class="header-row">
<span class="col name-col">
<a ng-click class="name">
Name
</a>
</span>
<span class="col comments-col">
<a ng-click class="comments">
Comments
</a>
</span>
<span class="col version-col">
<a ng-click class="version">
Version
</a>
</span>
<span class="col updated-at-col">
<a ng-click class="updated-at">
Last Updated
</a>
</span>
<span class="col updated-by-col">
<a ng-click class="updated-by">
Updated By
</a>
</span>
</div>
<!-- END: Header Row. -->
<!-- BEGIN: Data Rows. -->
<div ng-repeat="displayItem in displayObjects | filter:search" class="data-row">
<div ng-if=" displayItem.type == 'divider' " class="divider">
<div class="line">
<span class="dividerLabel">{{displayItem.label}}</span>
</div>
</div>
<a ng-if="displayItem.type == 'screenObj' "
ng-click="applyScreenNavigation( displayItem )"
class="item"
ng-class="{ selected: ( displayItem == selectedScreen ) }">
<span class="col name-col">
<span class="name">
{{ displayItem.name }}
</span>
</span>
<span class="col comments-col">
<span class="comments" ng-class="{ new: displayItem.unreadCommentCount, old: ( displayItem.commentCount && ! displayItem.unreadCommentCount ) }">
<span class="unread">{{ displayItem.unreadCommentCount }}</span>
<span class="total">{{ displayItem.commentCount }}</span>
</span>
</span>
<span class="col version-col">
<span class="version">
{{ displayItem.imageVersion }}
</span>
</span>
<span class="col updated-at-col">
<span class="updated-at">
{{ displayItem.updatedAtDateLabel }}
</span>
</span>
<span class="col updated-by-col">
<span class="updated-by">
{{ displayItem.updatedByUserName }}
</span>
</span>
</a>
</div>
<!-- END: Data Rows. -->
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/browse/browse.htm">
<div
ng-controller="browse.BrowseController"
inv-browse-key-combos
class="m-browse"
ng-class="{
mobile: project.isMobile,
phone: deviceTemplate.deviceType == 'phone',
tablet: isTabletPortrait
} ">
<!-- BEGIN: Header. -->
<div class="header">
<span ng-if=" project.isMobile ">
<img ng-if=" !! appIcon.imageUrl " class="appIcon" ng-src="{{ appIcon.imageUrl }}" alt="{{ project.name }}">
<img ng-if=" ! appIcon.imageUrl " class="appIcon" ng-src="assets/apps/share/img/icon.png">
</span>
<h2>
{{ project.name }}
</h2>
<a class="btnClose" href="javascript:;" ng-click=" toggleBrowse() ">x</a>
</div>
<!-- END: Header. -->
<!-- BEGIN: Screens. -->
<div class="screens">
<div ng-include=" '/assets/apps/share/views/browse/thumbnails.htm' "></div>
</div>
<!-- END: Screens. -->
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/presentations/slides.htm"><div ng-switch on="subview">
<div ng-switch-when="comments">
<div
id="comments_bar"
ng-controller="toolbar.ToolbarController"
ng-hide="isShowingSketchBuilder">
<h2>Click anywhere on the image to leave a comment</h2>
<p class="close"><a ng-click="switchToPreview()">Close</a></p>
</div> <!-- share_bar -->
</div>
</div>
<!-- desktop projects -->
<div
ng-if=" !project.isMobile || subview == 'comments' "
inv-screens
ng-controller="screens.ScreensController"
class="m-screens desktop"
ng-style="bodyStyle"
ng-class="{
isScaledCommentMode: project.isMobile,
'comment-mode': subview == 'comments'
}">
<div
class="screen visible {{ screen.alignment }}"
ng-style="{
width: ( (screen.width * screen.displayScale) + 'px' ),
height: ( (screen.height * screen.displayScale) + 'px' )
}">
<img
ng-src="{{ getScreenUrl() }}"
ng-style="{
width: ( (screen.width * screen.displayScale) + 'px' ),
height: ( (screen.height * screen.displayScale) + 'px' )
}" />
</div>
</div>
<!-- mobile projects-->
<div
ng-if=" project.isMobile && subview == 'preview' "
class="m-screens" >
<div class="screen mobile visible {{ screen.alignment }}">
<img ng-src="{{ getScreenUrl() }}" />
</div> <!-- screen mobile visible -->
</div> <!-- m-screens -->
</script><script type="text/ng-template" id="/assets/apps/share/views/comments/comments.htm"><div
ng-controller="comments.CommentsController"
inv-comments-key-combos
class="m-comments"
ng-class="{ mobile: project.isMobile }">
<!-- Context. -->
<div ng-include=" '/assets/apps/share/views/comments/context.htm' "></div>
<!-- Catchup Toolbar. -->
<div ng-include=" '/assets/apps/share/views/comments/catchup-toolbar.htm' "></div>
<!-- Markers. -->
<div ng-include=" '/assets/apps/share/views/comments/markers.htm' "></div>
<!-- View controlled by switch to overlay everything -->
<div inv-share-sketch-builder
ng-if=" isShowingSketchBuilder " >
</div>
<!-- Sketch viewer modal-->
<div inv-share-sketch-viewer
ng-if=" isShowingSketchViewer ">
</div>
<div id="cursor-tooltip"
inv-comments-cursor-tooltip
ng-show="isHoveringViewport && !( isHoveringHotspot || isShowingConversationMenu)"
>
Click to leave a comment
</div>
</div></script><script type="text/ng-template" id="/assets/apps/share/views/comments/context.htm"><div class="clickToCommentCTA"
ng-show="clickToCommentCTAActive"
ng-click="dismissClickToCommentCTA($event)"
ng-class=" clickToCommentCTAActive ? 'animateInclickToCommentCTA':'' ">
<div class="clickToCommentCTAOverlay">
<div class="clickToCommentCTAClose"></div>
<div class="clickToCommentCTAButton unselectable" ng-class="clickToCommentCTAVariant" ng-style="{ 'margin-top': ( clickToCommentCTAMargin + 'px' )}">
Click anywhere to leave a comment on this screen
</div>
</div>
</div>
<!-- BEGIN: Context. -->
<div class="context">
<a ng-href="#/screens/{{ screenID }}">
<span>Comment Mode</span>
</a>
<!-- Borders. -->
<div class="border n"></div>
<div class="border e"></div>
<div class="border s"></div>
<div class="border w"></div>
</div>
<!-- END: Context. --></script><script type="text/ng-template" id="/assets/apps/share/views/comments/catchup-toolbar.htm"><div ng-controller="comments.CatchupToolbarController" inv-comments-catchup-toolbar-helper class="comments-catchup-toolbar">
<div class="markers-container" class="{ unread-comments: unreadConversations.length, no-unread-comments: !unreadConversations.length }">
<p ng-show="unreadConversations.length">
{{ unreadConversations.length }} unread
<span ng-pluralize count="unreadConversations.length" when="{ one: 'conversation', other: 'conversations' }"></span>:
</p>
<p ng-hide="unreadConversations.length">No unread comments on this page...</p>
<!-- unread markers -->
<div class="markers" ng-show="unreadConversations.length">
<a
ng-repeat="conversation in visibleUnreadConversations"
href="#/screens/{{ screenID }}/comments/{{ conversation.id }}"
class="marker"
ng-click="markCommentsAsRead( conversation )"
ng-class="{
complete: conversation.isComplete,
comment: ! conversation.isForDevelopment && ! conversation.isTourPoint && ! conversation.isPrivate,
'dev-note': conversation.isForDevelopment,
'tour-point': conversation.isTourPoint,
'private-comment': conversation.isPrivate && ! conversation.isForDevelopment,
read: ! conversation.isUnread
}">
<span ng-if="conversation.label != '' && conversation.label > 0">{{ conversation.label }}</span>
</a>
</div>
<div ng-show="hiddenUnreadConversations.length" class="overflow-count">
+ {{ hiddenUnreadConversations.length }} more
</div>
</div> <!-- markers-container -->
<!-- BEGIN: Filters. -->
<div class="filters">
<p>View:</p>
<div class="type-filter">
<div class="dropdown">
<a href="#" data-toggle="dropdown" class="dropdown-toggle">
<span class="text">{{ filters.type.label }} ({{ filters.type.count }})</span>
<span class="drop"></span>
</a>
<ul class="dropdown-menu">
<li ng-repeat="option in typeFilterOptions" ng-hide="option.isPrivate && !user.canViewPrivateComments">
<a ng-click="changeTypeFilter( option )">{{ option.label }} ({{ option.count }})</a>
</li>
</ul>
</div>
</div>
<div class="status-filter">
<label for="filterShowCompleted">
<input type="checkbox" id="filterShowCompleted" ng-model="filters.showCompleted.value" ng-change="changeShowCompletedFilter()" inv-uniform />
Show Resolved ({{ filters.showCompleted.count }})
</label>
</div>
</div>
<!-- END: Filters. -->
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/comments/form.htm"><form
ng-controller="comments.FormController"
inv-comments-form
class="conversation comment-thread-container mentions emoji-root"
ng-class="{ teaser: ( isShowingTeaser && !tempSketches.length ) }"
ng-style="{
left: ( conversation.x * screen.displayScale + 'px' ),
top: ( ( conversation.y * screen.displayScale ) + 9 + 'px' )
}"
ng-keydown="$event.which === 13 && handleKeyDown($event)"
>
<div class="emoji-placeholder"></div>
<div
ng-class="{
'comment-thread': true,
'comment': ! conversation.isForDevelopment && ! conversation.isTourPoint && ! conversation.isPrivate,
'dev-note': conversation.isForDevelopment,
'tour-point': conversation.isTourPoint,
'private-comment': conversation.isPrivate,
'signup-required': (isIdentifying || isAuthenticating) && signupRequiredForComment,
'authenticating': isAuthenticating,
'is-identifying': (isIdentifying || isAuthenticating) && !signupRequiredForComment,
'is-logging-in': isLoggingIn,
'lazy-signup': lazyPasswordToSignUpFlow && isSignup,
'lazy-signup-thanks': thanksForLazyPassword
}"
>
<header>
<span ng-hide=" conversation.id == 0 ">
<input
id="conversationIsComplete"
type="checkbox"
ng-model="conversation.isComplete"
ng-change="updateConversationStatus( conversation )"
ng-disabled="( conversation.id == 0 )"
inv-uniform
/>
<label
ng-show="! marker.isComplete"
for="commentIsComplete"
class="mark-label"
ng-class="{ disabled: marker.isSaved == false }"
>
Mark as resolved
</label>
<label
ng-show="marker.isComplete"
for="commentIsComplete"
class="complete mark-label"
ng-class="{ disabled: marker.isSaved == false }"
>
Marked resolved
</label>
</span>
<!-- conversationIsComplete -->
<div
class="dropdown type-dropdown"
ng-class="{ saved: !! conversation.id }"
ng-show="showInternalOptions">
<a data-toggle="dropdown" class="dropdown-toggle" ng-hide="!! conversation.id">
<span class="text comment" ng-show="!conversation.isForDevelopment && !conversation.isPrivate && !conversation.isTourPoint">
<span class="dot"></span>
<span>Leave a Comment</span>
</span>
<span class="text private-comment" ng-show="!conversation.isForDevelopment && conversation.isPrivate">
<span class="dot"></span>
<span>Private Comment</span>
</span>
<span class="text dev-note" ng-show="conversation.isForDevelopment">
<span class="dot"></span>
<span>Note</span>
</span>
<span class="text tour-point" ng-show="conversation.isTourPoint">
<span class="dot"></span>
<span>Tour Point</span>
</span>
<span class="drop" ng-hide=" !! conversation.id "></span>
</a>
<a data-toggle="dropdown" class="dropdown-toggle dots" ng-hide="! conversation.id">
<span class="small-dot"></span>
<span class="small-dot"></span>
<span class="small-dot"></span>
</a>
<ul class="dropdown-menu">
<li>
<a ng-click="setTypeAsComment()" class="comment">
<span class="dot"></span> Comment
</a>
</li>
<li ng-hide="!user.canViewPrivateComments">
<a ng-click="setTypeAsPrivateComment()" class="private-comment">
<span class="dot"></span> Private Comment
</a>
</li>
<li ng-hide="!user.canViewPrivateComments">
<a ng-click="setTypeAsDevNote()" class="dev-note">
<span class="dot"></span> Note
</a>
</li>
<li>
<a ng-click="setTypeAsTourPoint()" class="tour-point">
<span class="dot"></span> Tour Point
</a>
</li>
</ul>
</div>
<span
class="non-collaborator-label"
ng-show=" !showInternalOptions"
ng-class="{ saved: !! conversation.id }"
>
<span class="dot"></span> Leave a Comment
</span>
<button
class="close"
type="button"
ng-click="closeConversation()"
ng-hide="!! conversation.id ">
×
</button>
</header>
<section class="comment-content">
<!-- BEGIN: Comments. -->
<div
ng-repeat="comment in comments"
ng-init=" showDeleteCommentConfirmation = false ; "
class="comment-item comment"
ng-class="{
first: $first,
unread: comment.isUnread,
collapsed: comment.isCollapsed,
'first-collapsed': comment.isFirstCollapsed,
last: $last
}"
inv-fade-show="!comment.isCollapsed || ( comment.isCollapsed && comment.isFirstCollapsed )">
<!-- Special section for collapsed area -->
<div ng-if=" comment.isCollapsed " class="collapsed-comments">
<span ng-click="expandComments( )">View Previous Replies</span>
</div>
<!-- show new comment indicator -->
<div
ng-if=" $first && conversation.isTourPoint && comments.length > 1 "
class="new-hrule">
<span
ng-pluralize
count=" comments.length - 1 "
when="{
'0': '0 Replies',
'one': '1 Reply',
'other': '{} Replies'
}">
</span>
</div>
<div class="m-avatar" ng-class="{ 'system-avatar': comment.userHasSystemAvatar }">
<span class="rendering">{{ comment.userInitials }}</span>
<img ng-src="/avatars/{{ comment.userAvatarID }}" class="rendering" />
</div>
<div class="post-content post-emojis">
<h2 ng-hide="$first && conversation.isTourPoint">
<span class="name">{{ comment.userName }}</span>
<span class="created-at">{{ comment.dateLabel }}</span>
</h2>
<h2 ng-show="$first && conversation.isTourPoint && comment.isEditing">
<!-- we need to keep the spacing consistent for editing mode -->
</h2>
<div class="comment-item-options"
ng-show=" !comment.isEditing "
ng-if=" !comment.isPlaceholder "
ng-class="{'is-collapsed': comment.isCollapsed}">
<ul class="comment-item-options__tools">
<li class="view-history hidden">
<a
inv-history-overlay
overlay-image="{{comment.imageUrl}}"
overlay-marker-pos="{{getMarkerPos(conversation, screen.displayScale)}}"
overlay-screen-data="{{getScreenDisplayData(screen)}}"
ng-if="( ! comment.isEditing && ( comment.screenImageVersion != screen.imageVersion ) && comment.imageUrl )">
View History
</a>
</li>
<li
class="edit-comment hidden"
ng-show="canEdit && ( comment.isOwnedByUser || project.isOwnedByUser )"
>
<a ng-click="editComment( comment )">
Edit
</a>
</li>
<li
class="delete-comment hidden"
ng-show="canEdit && ( comment.isOwnedByUser || project.isOwnedByUser )"
>
<a ng-click="showDeleteConfirmation( comment, $first )">
Delete
</a>
</li>
</ul>
<a class="comment-item-options__thumbs-up"
ng-if=" !comment.isPlaceholder "
ng-show=" canLike "
ng-hide=" $first && conversation.isTourPoint "
ng-class="{ 'liked': comment.numberOfLikes, 'by-user': comment.hasUserLiked }"
ng-click="toggleLike( comment )"
inv-tooltip="{{ comment.likedByList }}">
<i class="icon thumbs up"></i>
{{comment.numberOfLikes}}
</a>
</div> <!-- post-options -->
<div class="post-comment"
ng-show="! comment.isEditing"
ng-class="{'is-owner': comment.isOwnedByUser || project.isOwnedByUser}"
ng-bind-html="comment.html"
>
</div>
<div ng-if="comment.isEditing" class="editing-mode">
<div
inv-comment
inv-cmd-enter="saveComment(comment)"
comment="comment.comment"
name="post-comment"
screen-id="screen.id"
class-string="{{ getClassesString('existing') }}"
tab-index="101"
has-emojis="true"
has-mentions="hasInitialMentions"
has-mention-shortcut="true"
has-who-is-notified="false"
></div>
</div>
<div
class="sketchList"
ng-if="!sketchesDisabled"
ng-show="comment.sketches.length > 0 && ( ! $first || ! conversation.isTourPoint )">
<div
ng-repeat="sketch in comment.sketches"
class="sketch">
<a
class="text"
ng-click=" startSketchViewer( sketch , false, conversation ) "
ng-class="{
editing: comment.isEditing
}">
<strong>{{ comment.userFirstName }}’s attached a sketch.</strong> View?
<span inv-tooltip="delete" class="delete" ng-show="comment.isEditing" ng-click=" deleteSketch( sketch.id )">x</span>
</a>
</div> <!-- sketch -->
</div> <!-- sketchList -->
<div class="post-buttons" ng-show="( comment.isEditing )">
<button
type="button"
class="save"
ng-show="comment.isEditing"
tabindex="102"
ng-click="saveComment(comment)">
Save
</button>
<button
type="button"
class="cancel"
ng-show="comment.isEditing"
tabindex="103"
ng-click="stopEditingComments( comment )">
Cancel
</button>
</div>
</div> <!-- post-content -->
<!-- Delete confirmation for single comment. -->
<div inv-fade-show="comment.isDeleting" class="delete-confirmation">
<p>Delete this comment?</p>
<div class="action">
<a ng-click="deleteComment( comment )" class="confirm">Yes, Delete</a>
<a ng-click="hideDeleteConfirmation( comment )" class="cancel">Cancel</a>
</div>
</div>
</div>
<!-- END: Comments. -->
</section>
<div class="comment-item post-new-comment">
<div
inv-comment-teaser
ng-show="isShowingTeaser"