-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.pbxproj
2421 lines (2407 loc) · 162 KB
/
project.pbxproj
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
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
005D2FBCF5CA56E7F639CDB90CD65B57 /* GCDWebServerHTTPStatusCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5894CAEEDE84B3C412C99ADFE447C5 /* GCDWebServerHTTPStatusCodes.h */; settings = {ATTRIBUTES = (Public, ); }; };
03986EB82363DE9BAFBC5C5998F0635C /* GCDWebServerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = F1FA0BD587972AEF9484A990A2CC2C93 /* GCDWebServerConnection.h */; settings = {ATTRIBUTES = (Public, ); }; };
05B434976B8B60E6FB5E47DACA15B59D /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BB6D8D80DFBE7C395B248DB060629F0 /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; };
0761CAAB3187DD6C7BBA03C5728BAEE4 /* LoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A884DB57E55F4523B43068A6392C2B4 /* LoginViewController.swift */; };
0780AF0CD8DE25B448A6519C83D54293 /* String+Escape.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36FBA1EFEC2AAD342F5E3AAD44123355 /* String+Escape.swift */; };
088FE11BC6988F3F8F5286BF6F93EA7E /* Masonry.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F647325007A5BA42151F5AF0E827F025 /* Masonry.framework */; };
09141E07ADB2A4E99DA11434E5194C49 /* NSString+NSHash.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FE71459B43007993C7706D850CD5C1A /* NSString+NSHash.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
093EE8FD1D12AA58E3939F9F3AC0F986 /* Login.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 207D623521B3E01ADCE89A42C660C8C0 /* Login.storyboard */; };
0AA9C40A415864276B393E2AF7440AF1 /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = A94CF7AAFF76AD520F9D9829679BFC06 /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
0D602538E4DC32E631EED7C9FF86DE86 /* SSZipArchive.h in Headers */ = {isa = PBXBuildFile; fileRef = D9E72852D36FFC70A3AA910D5625E44C /* SSZipArchive.h */; settings = {ATTRIBUTES = (Public, ); }; };
0DF29D7DAE70204267A3C3E8529A65B1 /* GCDWebServerDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 862555F155F444BEEF39DB5BA1FB93DF /* GCDWebServerDataResponse.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
0F25D7936E940FA6B98753A153651F1C /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = AAE8EFEBF825A8601C790CB3FB5192F6 /* MASViewAttribute.m */; };
1012CD4387DE558832A076673A733C9D /* GCDWebServerFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 41533921015180CE679E30A7B4188627 /* GCDWebServerFunctions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
11B0E232B1D51853BA38ED68DA11FC94 /* JotDrawingContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 70E41A220135C5FE9D22FDDF2CE5E295 /* JotDrawingContainer.m */; settings = {COMPILER_FLAGS = "-fmodules"; }; };
12DA29AF28272F0CE07731EC6EECC7B6 /* UIWindow+Snaphot.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7644C1645E730A6DC712424BB3233BD /* UIWindow+Snaphot.swift */; };
1470D3C3E947CFFE00AFA454AD3901CF /* FeedbackViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D2782C55F46E77A8D0EC8CC2FEDDF01 /* FeedbackViewController.swift */; };
14AF674A8A71B8B533511874112AC3E2 /* GCDWebServerDataRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 68873E5A5D98D8A1C0F3B4B1223D080F /* GCDWebServerDataRequest.h */; settings = {ATTRIBUTES = (Public, ); }; };
150B48F9E3C0035F80A276CFC9146CB1 /* JotTextEditView.m in Sources */ = {isa = PBXBuildFile; fileRef = B83885780FD83C7D11FDE4BF6C764C66 /* JotTextEditView.m */; settings = {COMPILER_FLAGS = "-fmodules"; }; };
15B605893756A55788E585672755FA5B /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E6DE34F4B42049C114EE0C6B4CAFDAD /* Constants.swift */; };
16F485853C0C58E0E456427B42F105D3 /* GCDWebServerDataResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 04E9F563CADE1F82BB94BA910C548C29 /* GCDWebServerDataResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
174DE1BD307D23294AED7B53C5D25E1B /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 641EBC473FFBC3BA57C390229EECD0DD /* Masonry-dummy.m */; };
1751057EC93466F68D6F1AFCFA17D1E0 /* prng.h in Headers */ = {isa = PBXBuildFile; fileRef = A73DCFF25498626B0CBA827590001610 /* prng.h */; settings = {ATTRIBUTES = (Project, ); }; };
19E887316B3099B0ADC89275791A7B6B /* KeychainSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A3C49DFFA5A47D812C07984DE1CB4952 /* KeychainSwift-dummy.m */; };
1C80C7D133303DFF06575DFFA5A8F38B /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = FFB936B56A959D628B1F844A9FAF7D77 /* ViewController+MASAdditions.m */; };
1CDCB094D13A00FE887CFAC1F9EE60A0 /* FeedbackBubble.swift in Sources */ = {isa = PBXBuildFile; fileRef = 675782CE5303D04744A527F64590AFF8 /* FeedbackBubble.swift */; };
1F27B5B6A6F2198C2B1EA0CA916785F6 /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 294AC086764A08FD93BD7DC8DABF0637 /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
230E207B1CFF7A00B93EA857A46A9ED9 /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 008018A41A47138D5D1589EBF0A8FD98 /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
23BF5ED63F32120ECD9DCD2E58D6F5C6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FE604B4415C66A476AA59381C9040698 /* Foundation.framework */; };
24A0D5F82F342AFD1189A197A1C70EFA /* Pods-Prototyper_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A0F2363C03FA4049818CDC680B2E06 /* Pods-Prototyper_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
24F3230B87D0CF5031C6C86C0A2765A5 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 261AE2CB4D14A43466AACF0E6174F503 /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
2B372FBA561A7C42EC37ED24E5F91413 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B7F542522B8A390E94631B8C4640F7B /* MASConstraintMaker.m */; };
2C5DBE4A3D90C353EC37136A81D2E64D /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FF7AC76B981D985C64E0B56F36D5D48 /* View+MASAdditions.m */; };
2C90658E7339C051E6970EF1955E057B /* aestab.c in Sources */ = {isa = PBXBuildFile; fileRef = D46ED065A14C887101B5EC5A781D4D68 /* aestab.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
2D3929FBE6EF601409001742DE494822 /* jot.h in Headers */ = {isa = PBXBuildFile; fileRef = 91E6DC044B628BC729E6688688B6DC09 /* jot.h */; settings = {ATTRIBUTES = (Public, ); }; };
2DDBF66C34C02453161FC264148F5B39 /* aesopt.h in Headers */ = {isa = PBXBuildFile; fileRef = 1540CC3BA399D24CB964F6B5E3EA128D /* aesopt.h */; settings = {ATTRIBUTES = (Project, ); }; };
3084020BD95B1DE3B7A914C7118D32E9 /* brg_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = AE67B76725BE3857BC1447E4A0C24047 /* brg_endian.h */; settings = {ATTRIBUTES = (Project, ); }; };
31964A7C581F3B6E534C31DFC7228706 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BF9938BBCC4B7A94E266E7890605041 /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
32D999FECB1A7006B99280D03A1A48DA /* JotViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B8F1A720BB5CBC9567C60D35F1B1F698 /* JotViewController.m */; settings = {COMPILER_FLAGS = "-fmodules"; }; };
38CC3E3F137EF5967D92F26EBC329216 /* hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = C2433717F12CBCC2B940CAF0E6BB1141 /* hmac.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
38EC53CF54246A77C5EADFF77ED05E7B /* hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A6AD974FB809ADF9A3453F1A940AA2F /* hmac.h */; settings = {ATTRIBUTES = (Project, ); }; };
39C31C8F7171507CAACC84BC15ACC3E6 /* NSHash.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ADAE85BB416E8410B3B41C3162E6EE11 /* NSHash.framework */; };
3A4F95614006EEF40C0B59112FFD6995 /* NSString+NSHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D311F86294B267C71B01EECFB7F5DB8 /* NSString+NSHash.h */; settings = {ATTRIBUTES = (Public, ); }; };
3C10F07293263676CC7113F6DD5CEB4C /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = A0C252728E4107442BFE49C0555C4CD3 /* MASViewConstraint.m */; };
3E5FA0F59E43722275CC6A237F712300 /* ShareViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A24CA6F7876AFEB637E3E90C9E8DE81B /* ShareViewController.swift */; };
3FD64979B90888D0CB5F170B1A862BB3 /* GCDWebServerFileResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 540A0D2B7C7791CEA1D7A592A01B4FC4 /* GCDWebServerFileResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
433E1FC12278D48C62999F723618AD78 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB16B5BEC2E8B0193FC5D34CB81F3FEC /* UIKit.framework */; };
459E8FE550EE5A2EF2CB8718552215FD /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 97719E14C0BDB26420419459285DFDAE /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Public, ); }; };
468C7AAE73D27F65E53D3C9A3C669B37 /* GCDWebServerMultiPartFormRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = F0A32BA0DDD0BFBAD8CEAAC99F971A20 /* GCDWebServerMultiPartFormRequest.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
4795B257226BB164CEC7A3B26077D4A1 /* zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 086B20AE6D486299DDF466AD7A0272D3 /* zip.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
48086510192A2C6EF375D963C8670B30 /* unzip.c in Sources */ = {isa = PBXBuildFile; fileRef = 80DC64A2B2EA0330C0A5FEABA9D60600 /* unzip.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
48F6671C02DB60421CA0726D3766038A /* pwd2key.c in Sources */ = {isa = PBXBuildFile; fileRef = 6A0398FA6BA54D335B4CF82B32CFEBE2 /* pwd2key.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
4AD208E235805B59C369646E62FF8CDA /* aeskey.c in Sources */ = {isa = PBXBuildFile; fileRef = 14E25666F4C778C263EA1D229FDF2529 /* aeskey.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
4AE9BB7028F8591300C7335D381CDA8B /* GCDWebServer-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B83B39ACDFC286E720D0F2E561E93F2 /* GCDWebServer-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
4DD9DE554C14449D921B901329126D81 /* crypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DA38C111E18D5E476CB5FC5E2493EB5 /* crypt.h */; settings = {ATTRIBUTES = (Project, ); }; };
4F06FE17F67BA12C1FD8EA90A8DB0F50 /* GCDWebServerMultiPartFormRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = E3D7A73D82797AC8A64F9A7DA64211B9 /* GCDWebServerMultiPartFormRequest.h */; settings = {ATTRIBUTES = (Public, ); }; };
4F1602EDCDBCF5878616BB3037D0C8A0 /* pwd2key.h in Headers */ = {isa = PBXBuildFile; fileRef = 20625184586560F506D1C7327FB256A3 /* pwd2key.h */; settings = {ATTRIBUTES = (Project, ); }; };
5162CE512269725A7BB7A4D47A60DBCE /* GCDWebServerDataRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E19D206AA8699DAA839A075705233AF /* GCDWebServerDataRequest.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
51F5B51B98EB31A47A4A6FC7E1A04F49 /* unzip.h in Headers */ = {isa = PBXBuildFile; fileRef = 025841FC034AFE9C4337E7888EB641A5 /* unzip.h */; settings = {ATTRIBUTES = (Project, ); }; };
56C1135840CECB111467D27B5E7D4CDF /* annotation_overlay@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 578FC9DA3E4F46BE7FE45ADC7D19B1CC /* annotation_overlay@2x.png */; };
57CF45731A4CD59F91622CA02A3236EC /* Prototyper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 58F41390FC3CBF1CF46749266A400759 /* Prototyper-dummy.m */; };
58EA8B635468B90A64D0D1E481329A3C /* JotDrawingContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AD17006ABC6AA7265AC7DA7439ACDB9 /* JotDrawingContainer.h */; settings = {ATTRIBUTES = (Public, ); }; };
5941B4F6FCE5EDF9E3F093A6DD0EBED9 /* UIImage+Jot.h in Headers */ = {isa = PBXBuildFile; fileRef = D290F569F79A3F59350967B708F09A08 /* UIImage+Jot.h */; settings = {ATTRIBUTES = (Public, ); }; };
5A090B3966101721EB1C40239448A9E2 /* fileenc.c in Sources */ = {isa = PBXBuildFile; fileRef = 703522E1F0CBC6CE998A13F223AC8704 /* fileenc.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
5A9FE8135B2480B9AEC27414BBE2E020 /* JotTextEditView.h in Headers */ = {isa = PBXBuildFile; fileRef = FB2201E2219B3E050FE3239692402742 /* JotTextEditView.h */; settings = {ATTRIBUTES = (Public, ); }; };
5B00C9F9B0979E8EC809882B986F84D7 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2005973F5C49C9DBC3DE148732A99895 /* NSLayoutConstraint+MASDebugAdditions.m */; };
5BF47288056F3B3D207C1FE7469071FB /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = E52DEC7BDB5747A71F3C1FB158F47944 /* MASUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
5C6397CFCF0745AA72320C42FA968405 /* aes_via_ace.h in Headers */ = {isa = PBXBuildFile; fileRef = E34DCE8AA3F39DD5ACA837D7A03B363B /* aes_via_ace.h */; settings = {ATTRIBUTES = (Project, ); }; };
5DA10F65B94EFEBE58FF1E46BCA78B03 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A9E4576B5135609EBC9DB7039F337B2 /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
5E11D97526232356C80F303E1EE74712 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FE604B4415C66A476AA59381C9040698 /* Foundation.framework */; };
60DAC92BE827749E320FF0FC2AFCA27D /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = EB4087EC4393363BFE08DC9ED8466B72 /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
625A6C8F3AEF44BC1418D8FDFCCF9E52 /* jot.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A0BF880860624297802A86EF38364E23 /* jot.framework */; };
63F43B25F4449CA8F17BBD833BE945FA /* GCDWebServerPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 163D7E6E52E4FB787A29878533A1110B /* GCDWebServerPrivate.h */; settings = {ATTRIBUTES = (Private, ); }; };
642F403DFEDC4284F9CE49E0DA7ACFFC /* GCDWebServerStreamedResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 82BD827B40173952D776EEA94AB5A03F /* GCDWebServerStreamedResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
646C76E80D1CE6CC5D71DABA8A339F2B /* jot-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EE4CFF875F66224A3F7B56357988312 /* jot-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
64B3C0EE18C5655CE43E651BB2D29E6F /* entropy.h in Headers */ = {isa = PBXBuildFile; fileRef = 31ED7684601C01376B0D4C5AA52EDF5C /* entropy.h */; settings = {ATTRIBUTES = (Project, ); }; };
65B8F26B1EC708E40046BFA9 /* Prototyper.png in Resources */ = {isa = PBXBuildFile; fileRef = 65B8F26A1EC708E40046BFA9 /* Prototyper.png */; };
6691783F7B5A93BE62EAA5BFDB8FC4AB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FE604B4415C66A476AA59381C9040698 /* Foundation.framework */; };
677916DFBC6BFDC037C19A2F9FD6A98F /* JotTouchBezier.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B7AAABD2C28E618723FDDC4D385EF39 /* JotTouchBezier.m */; settings = {COMPILER_FLAGS = "-fmodules"; }; };
698345F7D279928C652F79077BEBDC02 /* JotTouchPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 382A286495748649E745B4853D82A691 /* JotTouchPoint.h */; settings = {ATTRIBUTES = (Public, ); }; };
6D6A9D9AF6CA34476B25832A027A930B /* SSZipArchive.m in Sources */ = {isa = PBXBuildFile; fileRef = 2382D9E7311A14C4F42E21D556738A15 /* SSZipArchive.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
736D7900049F37587EE8954A0B3C1BDD /* feedback_icon.png in Resources */ = {isa = PBXBuildFile; fileRef = CBBF8577373F487443A05102A95DCE77 /* feedback_icon.png */; };
73D4297B0DD9E0F8E424DBE1890F9BD2 /* sha1.h in Headers */ = {isa = PBXBuildFile; fileRef = 1779B5DB93086987CF111168E7F0644B /* sha1.h */; settings = {ATTRIBUTES = (Project, ); }; };
79E235A75CEDC6916607296BE6462E80 /* sha1.c in Sources */ = {isa = PBXBuildFile; fileRef = 966B4701C20D163083A33DD80FADFAA2 /* sha1.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
7A7317B93CE691B0090FBE3F51A17020 /* ZipArchive.h in Headers */ = {isa = PBXBuildFile; fileRef = 49A2EB6F6B9C16BBDCF84411056F2A5C /* ZipArchive.h */; settings = {ATTRIBUTES = (Public, ); }; };
7B2063EB2A6B28E71566E2A8DC70B298 /* mztools.h in Headers */ = {isa = PBXBuildFile; fileRef = E01D321BD95867FEB78A18A933B3000C /* mztools.h */; settings = {ATTRIBUTES = (Project, ); }; };
7B33C60D36FCDD2853888F16CA77833C /* NSData+NSHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 0819B847FA43E4260C9EA37A7C9AF327 /* NSData+NSHash.h */; settings = {ATTRIBUTES = (Public, ); }; };
7D6CC3C0371E6871886FDA36E5561793 /* SSZipArchive-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B227A6BD5C65F312D2C36857DB246CE /* SSZipArchive-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
7F86E8FD8829C8319CC0A6BEC81C3B9E /* KeychainSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E8316AAA472CC59C7C0DAAB288C05BD /* KeychainSwift.swift */; };
7FA47DAF122DD173A1D89A5B3D2FA5B7 /* delete_icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 21CB83834BD78E5A6D2E2183045BB383 /* delete_icon.png */; };
82697879F97D79C4ECAB059AC90AAA79 /* GCDWebServer.h in Headers */ = {isa = PBXBuildFile; fileRef = D3FD44B2DFC7EA1CF4034B93105293E8 /* GCDWebServer.h */; settings = {ATTRIBUTES = (Public, ); }; };
8343BFD3A110402DD597DF170777ABA3 /* JotViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B317BE9F53C360EF5BB9596CD559B1E /* JotViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
8594765F3C0AD586378B4D85412FBBE5 /* APIHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F073E145C1B397AD8802EB3E8DF0C82 /* APIHandler.swift */; };
87C51D423104DA865FD6CC49E95DEBBA /* SSZipCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = C6268FBA861706072810FE34A4F6F8D1 /* SSZipCommon.h */; settings = {ATTRIBUTES = (Public, ); }; };
885080ACE15797E71436A411E494752A /* GCDWebServerErrorResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4DAF78889D47080748D34512647747 /* GCDWebServerErrorResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
888DE99BF2B347ED054D8E557F7DE1C5 /* JotTouchPoint.m in Sources */ = {isa = PBXBuildFile; fileRef = CA30EB52770C2E740DD88C0374284747 /* JotTouchPoint.m */; settings = {COMPILER_FLAGS = "-fmodules"; }; };
8A7754B2B363DF112A6B648F8227043C /* GCDWebServerRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E2A70A9918023B4C724E752B0CBDB4B /* GCDWebServerRequest.h */; settings = {ATTRIBUTES = (Public, ); }; };
8AE6B600505A77C741133E8F4E3DB7E5 /* GCDWebServerRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = DFEA14547D54B4C7F2CFDB21C590CFFC /* GCDWebServerRequest.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
8B77D84858963174AB7468A4C3EF3EF6 /* zip.h in Headers */ = {isa = PBXBuildFile; fileRef = A4E43A84391539539D888F635B1E18F6 /* zip.h */; settings = {ATTRIBUTES = (Project, ); }; };
8E17AD41D61BC46B3FE97E08081288D5 /* PrototypeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 608BDA48D9C3E5C784AFDB9279A38C5C /* PrototypeViewController.swift */; };
8E9F9210C680764858353C8810CB5DED /* GCDWebServerStreamedResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = D1DD52538FFCA2E60BF9C028EF42D306 /* GCDWebServerStreamedResponse.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
92E86FA5C1492D85EA0FEED1CD1C78D2 /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = F4DDB2052F9DE5901F08BDA41E1C8DCA /* MASConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
9350C6282DC482F76021025A7C32353C /* GCDWebServerURLEncodedFormRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 39943AA98EF780D4B3858E1E68690032 /* GCDWebServerURLEncodedFormRequest.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
954C0B9A0607295DB0B2019A85113AA1 /* brg_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 173CE6316AEA6636902C56A6E7601B59 /* brg_types.h */; settings = {ATTRIBUTES = (Project, ); }; };
96D7F225A13DDB2A96A064E7531F0CB1 /* GCDWebServerResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DBA1A801DF7C6F91C62712E9E29E443 /* GCDWebServerResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
97834A8B36083B62F3B6C52E132C2910 /* GCDWebServerResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 007283843B495351E65924C05E5A86BF /* GCDWebServerResponse.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
9B1E444A12F49C0B23394998F469E39B /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 694EAE2A202190CD70A4B2C3DD243E55 /* MASCompositeConstraint.m */; };
9C1E9F4853695D4B4254C159C8996CD4 /* feedback_icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B87F65E8933CBBCB1575C93386FFFDA1 /* feedback_icon@2x.png */; };
9DE1F8A65AA547CF7113817E148E9165 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DDC3AF714B1639E8556E41A052E593A3 /* MobileCoreServices.framework */; };
9FE5E480187BA5393A346A7692F30513 /* aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 24F784FEE2AFFEFE9A0871BC8854D0D4 /* aes.h */; settings = {ATTRIBUTES = (Project, ); }; };
A12437EE8C2AF818EFAA00874E5A7F55 /* JotDrawView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BD0D39039382044F1F6E1E25E6D58B7 /* JotDrawView.m */; settings = {COMPILER_FLAGS = "-fmodules"; }; };
A243AA89514B5F665F68D8C1B8709527 /* entropy.c in Sources */ = {isa = PBXBuildFile; fileRef = 956167650C6DF4DBC383EB6DC7A4070B /* entropy.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
A4720450E47C7CCC061C9558952FA794 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FE604B4415C66A476AA59381C9040698 /* Foundation.framework */; };
A5F60169B7F5303C9FECB94464D80F35 /* GCDWebServerFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 546116D1D6A9177335F1EBDFAC2AEC4D /* GCDWebServerFunctions.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB9BE10708C91359CF69F97EF702DEB2 /* SSZipArchive-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F9B09AA327D405545E60D1FB60D2A26 /* SSZipArchive-dummy.m */; };
ABD33DFB593555479205EE4824982480 /* JotDrawView.h in Headers */ = {isa = PBXBuildFile; fileRef = F6501E7BFF494DB29FD8A57DE26A14AA /* JotDrawView.h */; settings = {ATTRIBUTES = (Public, ); }; };
AEC499B9D42FE2D1F61D352159F8D87A /* PrototypeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78826BF7DA66110B7B51B3D7533F63BD /* PrototypeView.swift */; };
B1F0959F4A4EF8EE0CAC27A3D2C56955 /* JotTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 31B22479CB6FD290D1DB3948CFD658BB /* JotTextView.h */; settings = {ATTRIBUTES = (Public, ); }; };
B2D6C838C260B07D55837D57F56DFEAB /* PrototypeController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9436B0FCB56AFCA4AC2508DB0B77AE88 /* PrototypeController.swift */; };
B2F6D8FE982C26BE9954B93EEAF0E682 /* annotation_overlay.png in Resources */ = {isa = PBXBuildFile; fileRef = 6A9A666DAA0D537F31E725004111F0A1 /* annotation_overlay.png */; };
B378DF2787F4F5B99E1DC16782725EE8 /* NSError+APIHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3C4A04009FD3A4219864D235FF06EDC /* NSError+APIHandler.swift */; };
B38BAD0347F5A4E1C4293299C4869322 /* TegKeychainConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3643C18298976109FA5078803E974C07 /* TegKeychainConstants.swift */; };
B403A954D8ED02BB354671EFBA64AE4B /* delete_icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7B7931A77382793D336FC77A01F6846E /* delete_icon@2x.png */; };
B42AE0BC3734D23BD5C0D220C50460E1 /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 08C8693B1B766F3ECED9C1354FA8AF80 /* MASLayoutConstraint.m */; };
B4C5603255C5AE466BD0BE82D2EF7885 /* SSZipArchive.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1467218F98343F0443C079C9524F67D3 /* SSZipArchive.framework */; };
B8CFF3E9431857F46D19689757AE9D27 /* ioapi.h in Headers */ = {isa = PBXBuildFile; fileRef = 322D278771F42D99A0BD3F155BCCD837 /* ioapi.h */; settings = {ATTRIBUTES = (Project, ); }; };
B97F7E7FC66280ECF5157595032A4BE3 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ED1ECE0796741560A9FDFB76E2B4E1A /* NSArray+MASAdditions.m */; };
B982F504086DCAE366AD33640EFE11D7 /* fileenc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3322339DE4B2AD7641BABDD4B9290B60 /* fileenc.h */; settings = {ATTRIBUTES = (Project, ); }; };
B9A7F9A076C37758F5E3BF79D1A7FDC9 /* feedback_icon@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F3C8903DB2C49FD0A4D9E0C09F442D77 /* feedback_icon@3x.png */; };
BF1A4F8EE3FB0E2D7718F62084C098A8 /* delete_icon@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 542FB5297105C9B009AF4F00DE770E8B /* delete_icon@3x.png */; };
BF88A2E428BEF2DDA981F74D8AAA02C9 /* NSHash-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E199186AAA2F009DDE9AF95035334299 /* NSHash-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
C05F0D6A7E54A5E54E0C5719A01EF269 /* ioapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FD71F97BC2265417E4DDB291980E3E4 /* ioapi.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
C37430F13527A8103564499917FB8FFA /* KeychainSwiftAccessOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C57C24F87761057DB83C63376EAC1591 /* KeychainSwiftAccessOptions.swift */; };
C56A835CBC010DF5047E85F455CA4A54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FE604B4415C66A476AA59381C9040698 /* Foundation.framework */; };
C56B298B9DEE7D8173C5849AB8F94A46 /* GCDWebServerURLEncodedFormRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A1B665200A113F56665BA98235A2B12 /* GCDWebServerURLEncodedFormRequest.h */; settings = {ATTRIBUTES = (Public, ); }; };
C6EAE4BD39C655FF06D0A68F623F34AB /* GCDWebServerFileRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = C8409C307F81827668979F7BA2E5C68F /* GCDWebServerFileRequest.h */; settings = {ATTRIBUTES = (Public, ); }; };
C7234F0D0EEC27AE8F933D4CC796B6D3 /* GCDWebServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 09F84FA34CC9E2841C109DDDD1D21543 /* GCDWebServer.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
C733696E72653206DC6843C0A9590E6D /* GCDWebServerFileResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 9606443807E48294F625A35878E24EEC /* GCDWebServerFileResponse.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
C8B61D7DECEA5892EEBF6462890A5009 /* NSHash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C230C75F49521325C425EB3585168315 /* NSHash-dummy.m */; };
CA5C352A430BD2C37E61D94B39A08D68 /* Masonry-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6150BDC39E4CC2909F4292AF5AA81B32 /* Masonry-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
CD36AEBEDD53E6A07837925F1AD4BAB0 /* jot-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DE165F97FAED2320E4C538618049F2A /* jot-dummy.m */; };
CEE4168A71E97D69715C2C3234449AB4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FE604B4415C66A476AA59381C9040698 /* Foundation.framework */; };
CF4BAB111B22FB3F6C1167C307EEF99D /* GCDWebServer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 615A42B5E9CAC4DC123972492F11520D /* GCDWebServer-dummy.m */; };
CFE5659C11E163339DCCA5F100D4C66D /* prng.c in Sources */ = {isa = PBXBuildFile; fileRef = 2437DBF4ADF728CA51C133C356670AA3 /* prng.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
D0131ED039C33C730BA9C55B4EDEC6B5 /* Pods-Prototyper_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BBC96FE0E8AB8DCA613153195C071DBE /* Pods-Prototyper_Example-dummy.m */; };
D38D2749A70DA720A7B2415A7A15DF04 /* mztools.c in Sources */ = {isa = PBXBuildFile; fileRef = C04211A480C1ACD65F5A3DEE687BA923 /* mztools.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
D43F5C5F9272D5943B3A9C704C06470C /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 06405243A3BD648E60353D46BEE26695 /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
D47F730BFA7DCFAB5BEBB714E21F52BB /* DeepPressGestureRecognizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 078090E55ED7A2BCAD3A72E55A64A7EB /* DeepPressGestureRecognizer.swift */; };
D51355E0ED2F42D4027AE73D20102218 /* UIImage+Jot.m in Sources */ = {isa = PBXBuildFile; fileRef = 2814F62E73FD05935D933BCEBB12B395 /* UIImage+Jot.m */; settings = {COMPILER_FLAGS = "-fmodules"; }; };
D5966C01724A8A78B439F5C89CB5E275 /* GCDWebServerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = C86395D058A77E217FBD4D632C281FE8 /* GCDWebServerConnection.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
D5CB496700D22DDE9AB0C817486C8AFF /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB16B5BEC2E8B0193FC5D34CB81F3FEC /* UIKit.framework */; };
DD0D50C07B94AB5981FA9DE36004A40F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FE604B4415C66A476AA59381C9040698 /* Foundation.framework */; };
DD12C4585852D3EEAA7A765C7FBB9535 /* GCDWebServerFileRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C9A7DDA898D9F51786334B62E3C4267 /* GCDWebServerFileRequest.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
DE08D4E764010A4E8753E05566D4BD2D /* ImageAnnotationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A116D7CB17B9032E3E30EE604AFFDB1E /* ImageAnnotationViewController.swift */; };
DECEEB31140B66E7F0933F74C2FD1A3E /* JotTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 739CFEC299DEBCCD255411B4DC3713D3 /* JotTextView.m */; settings = {COMPILER_FLAGS = "-fmodules"; }; };
DF8A7B3C42DC674B93DC87EA2A1EAD46 /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 27CE14E74497B6A4C91604A930A43675 /* Masonry.h */; settings = {ATTRIBUTES = (Public, ); }; };
E69A075DE77D0A68A0CA5C34BEE3BC3D /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = B2F31001816F1A2D8BF3B7868DC5759E /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
E74EF41BA9F3898589567F54913E0041 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 595D6CF1DF193153A1C9FDBFD5AE5392 /* CFNetwork.framework */; };
E99D831EF1FAA3A33A47AD84D9A2A187 /* Masonry.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F647325007A5BA42151F5AF0E827F025 /* Masonry.framework */; };
EFE3477942CEF3CF737A621F6CFD72C5 /* JotTouchBezier.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5C42A80E4AE856910895C5C4CBBC57 /* JotTouchBezier.h */; settings = {ATTRIBUTES = (Public, ); }; };
F1E2549642E180E2F620D8F64E594682 /* KeychainSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BCB82ACA369CF4C800016B33532180F4 /* KeychainSwift.framework */; };
F364467FFC5400DEC5E544C548DC4135 /* NSData+NSHash.m in Sources */ = {isa = PBXBuildFile; fileRef = A3B01614A9A614C323A97B87189B9F85 /* NSData+NSHash.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
F41FC25FA80E087AF60C3A5F63614801 /* annotation_overlay@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8CAD2BE56518B27E57E31843EAFCECCD /* annotation_overlay@3x.png */; };
F4D398DB1DC9A92A5BA7DB5262C3A47C /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 096D595802C2ED9087CF4C94E42AB37B /* MASConstraint.m */; };
F4F2831999424C88DD480B54944E8798 /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E59018AC63601558C1EFBBE38D7D7084 /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
F53C330C2F3D66EF316800400BD6063B /* aestab.h in Headers */ = {isa = PBXBuildFile; fileRef = B2E41E235F745062801436A8993A3311 /* aestab.h */; settings = {ATTRIBUTES = (Project, ); }; };
F7C11B8F11B7D9705EFA8E98ED5636E6 /* GCDWebServer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 17BB2C426C3BB110EFFE6E157895083B /* GCDWebServer.framework */; };
F9C437741F7BD1FB883F30C78D1C5002 /* aescrypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 828E2AD97A57E3CB8C84BAE2A4D29379 /* aescrypt.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
FC7DBCCDEF04E94123A8DBBBBEFD8378 /* KeychainSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F18272B2A67C43000AE551996DCEB699 /* KeychainSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
FCE148790C67CF9258FAF0E3989CAE00 /* Prototyper-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CBEEFFD290CD1C275243F146F39C9AB1 /* Prototyper-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
FD8EC83AFBD73B9C1C84E51FD1CF2F48 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FE604B4415C66A476AA59381C9040698 /* Foundation.framework */; };
FE963D34E7CB7ED5E0F7CB6FAFE05576 /* GCDWebServerErrorResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 57F4DE8439BC68D13943E1F7B88FCC11 /* GCDWebServerErrorResponse.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
155A04D7EC9E2529FCFC540E35776EC4 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9419B29E107DA68148FED859CD743911;
remoteInfo = Masonry;
};
16B3D9C9979FDCEEB77ABD50E3586049 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9419B29E107DA68148FED859CD743911;
remoteInfo = Masonry;
};
17A495742084ACEC06C0F4D6F0CA86D7 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 48CC5F0F860DB029BA67AABDA83833C7;
remoteInfo = KeychainSwift;
};
36221E7C1ADC1FFAD542215CC321BABE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 2C74EF3B5E71A03BA572CA751CDBBD29;
remoteInfo = jot;
};
384D563D1766090B60977EB1759E9F6B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8944857531969FE38DE810FA95172780;
remoteInfo = GCDWebServer;
};
4E9608C85C71BC2BA05C97A01655A42E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 43E2D515DF5EE5D2EFE30A1C5A0376F0;
remoteInfo = SSZipArchive;
};
623AA745F12C110CCA528D5A4AC1B8B6 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8944857531969FE38DE810FA95172780;
remoteInfo = GCDWebServer;
};
90BCE33ACEEDB804F2B7B79EAF12FAC1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 43E2D515DF5EE5D2EFE30A1C5A0376F0;
remoteInfo = SSZipArchive;
};
93485AF31DE16D89DB5AFA1BAC7BF8FE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 06BF73951FF4557FB9DADE0A075DF207;
remoteInfo = Prototyper;
};
A296E5A734F62290B3C0926C4F554422 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 2C74EF3B5E71A03BA572CA751CDBBD29;
remoteInfo = jot;
};
B160C45D9445A80165482B1AFAA3C58C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = FFC268C3450767650853732552A3EE34;
remoteInfo = NSHash;
};
B16C682975F59347EF5771819ED0CE8C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = FFC268C3450767650853732552A3EE34;
remoteInfo = NSHash;
};
B347F5F00D6D4A72AE204F82370D5D9E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9419B29E107DA68148FED859CD743911;
remoteInfo = Masonry;
};
BB5722B6673E6ECF4724B8816B578730 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 48CC5F0F860DB029BA67AABDA83833C7;
remoteInfo = KeychainSwift;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
007283843B495351E65924C05E5A86BF /* GCDWebServerResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDWebServerResponse.m; path = GCDWebServer/Core/GCDWebServerResponse.m; sourceTree = "<group>"; };
008018A41A47138D5D1589EBF0A8FD98 /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ViewController+MASAdditions.h"; path = "Masonry/ViewController+MASAdditions.h"; sourceTree = "<group>"; };
025841FC034AFE9C4337E7888EB641A5 /* unzip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unzip.h; path = SSZipArchive/minizip/unzip.h; sourceTree = "<group>"; };
04E9F563CADE1F82BB94BA910C548C29 /* GCDWebServerDataResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDWebServerDataResponse.h; path = GCDWebServer/Responses/GCDWebServerDataResponse.h; sourceTree = "<group>"; };
06405243A3BD648E60353D46BEE26695 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASShorthandAdditions.h"; path = "Masonry/View+MASShorthandAdditions.h"; sourceTree = "<group>"; };
078090E55ED7A2BCAD3A72E55A64A7EB /* DeepPressGestureRecognizer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DeepPressGestureRecognizer.swift; sourceTree = "<group>"; };
0819B847FA43E4260C9EA37A7C9AF327 /* NSData+NSHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+NSHash.h"; path = "NSHash/NSData+NSHash.h"; sourceTree = "<group>"; };
086B20AE6D486299DDF466AD7A0272D3 /* zip.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = zip.c; path = SSZipArchive/minizip/zip.c; sourceTree = "<group>"; };
08C8693B1B766F3ECED9C1354FA8AF80 /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = "<group>"; };
096D595802C2ED9087CF4C94E42AB37B /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = "<group>"; };
09F84FA34CC9E2841C109DDDD1D21543 /* GCDWebServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDWebServer.m; path = GCDWebServer/Core/GCDWebServer.m; sourceTree = "<group>"; };
0BB6D8D80DFBE7C395B248DB060629F0 /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = "<group>"; };
0C5894CAEEDE84B3C412C99ADFE447C5 /* GCDWebServerHTTPStatusCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDWebServerHTTPStatusCodes.h; path = GCDWebServer/Core/GCDWebServerHTTPStatusCodes.h; sourceTree = "<group>"; };
11ED114ED2B3B9415E22FA670C7C5744 /* GCDWebServer.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GCDWebServer.framework; sourceTree = BUILT_PRODUCTS_DIR; };
1467218F98343F0443C079C9524F67D3 /* SSZipArchive.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SSZipArchive.framework; sourceTree = BUILT_PRODUCTS_DIR; };
14E25666F4C778C263EA1D229FDF2529 /* aeskey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aeskey.c; path = SSZipArchive/aes/aeskey.c; sourceTree = "<group>"; };
1540CC3BA399D24CB964F6B5E3EA128D /* aesopt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aesopt.h; path = SSZipArchive/aes/aesopt.h; sourceTree = "<group>"; };
163D7E6E52E4FB787A29878533A1110B /* GCDWebServerPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDWebServerPrivate.h; path = GCDWebServer/Core/GCDWebServerPrivate.h; sourceTree = "<group>"; };
173CE6316AEA6636902C56A6E7601B59 /* brg_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = brg_types.h; path = SSZipArchive/aes/brg_types.h; sourceTree = "<group>"; };
1779B5DB93086987CF111168E7F0644B /* sha1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sha1.h; path = SSZipArchive/aes/sha1.h; sourceTree = "<group>"; };
17BB2C426C3BB110EFFE6E157895083B /* GCDWebServer.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GCDWebServer.framework; sourceTree = BUILT_PRODUCTS_DIR; };
1A884DB57E55F4523B43068A6392C2B4 /* LoginViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LoginViewController.swift; sourceTree = "<group>"; };
1AD17006ABC6AA7265AC7DA7439ACDB9 /* JotDrawingContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JotDrawingContainer.h; path = jot/JotDrawingContainer.h; sourceTree = "<group>"; };
1B227A6BD5C65F312D2C36857DB246CE /* SSZipArchive-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SSZipArchive-umbrella.h"; sourceTree = "<group>"; };
1D311F86294B267C71B01EECFB7F5DB8 /* NSString+NSHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+NSHash.h"; path = "NSHash/NSString+NSHash.h"; sourceTree = "<group>"; };
1DBA1A801DF7C6F91C62712E9E29E443 /* GCDWebServerResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDWebServerResponse.h; path = GCDWebServer/Core/GCDWebServerResponse.h; sourceTree = "<group>"; };
1E14BBB94CB2C04FF2F62D03E7156FF6 /* GCDWebServer.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = GCDWebServer.modulemap; sourceTree = "<group>"; };
1E2E3CD4878F296E7D9C6275CC95B7B1 /* NSHash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = NSHash.xcconfig; sourceTree = "<group>"; };
1EDA024B38741409113DBB6F361D435E /* Masonry.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Masonry.framework; sourceTree = BUILT_PRODUCTS_DIR; };
2005973F5C49C9DBC3DE148732A99895 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+MASDebugAdditions.m"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = "<group>"; };
20625184586560F506D1C7327FB256A3 /* pwd2key.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pwd2key.h; path = SSZipArchive/aes/pwd2key.h; sourceTree = "<group>"; };
207D623521B3E01ADCE89A42C660C8C0 /* Login.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; path = Login.storyboard; sourceTree = "<group>"; };
21CB83834BD78E5A6D2E2183045BB383 /* delete_icon.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = delete_icon.png; sourceTree = "<group>"; };
2382D9E7311A14C4F42E21D556738A15 /* SSZipArchive.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SSZipArchive.m; path = SSZipArchive/SSZipArchive.m; sourceTree = "<group>"; };
23860FD2D91945FAF82067296F414BDE /* jot.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = jot.framework; sourceTree = BUILT_PRODUCTS_DIR; };
240711DD9C43B8A02C1C842888F7B106 /* jot-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jot-prefix.pch"; sourceTree = "<group>"; };
2437DBF4ADF728CA51C133C356670AA3 /* prng.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = prng.c; path = SSZipArchive/aes/prng.c; sourceTree = "<group>"; };
24E5CFFD5ADFC011177A38842A53EB1D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
24F784FEE2AFFEFE9A0871BC8854D0D4 /* aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aes.h; path = SSZipArchive/aes/aes.h; sourceTree = "<group>"; };
261AE2CB4D14A43466AACF0E6174F503 /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = "<group>"; };
27CE14E74497B6A4C91604A930A43675 /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = "<group>"; };
2814F62E73FD05935D933BCEBB12B395 /* UIImage+Jot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Jot.m"; path = "jot/UIImage+Jot.m"; sourceTree = "<group>"; };
294AC086764A08FD93BD7DC8DABF0637 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASAdditions.h"; path = "Masonry/NSArray+MASAdditions.h"; sourceTree = "<group>"; };
2BF9938BBCC4B7A94E266E7890605041 /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASShorthandAdditions.h"; path = "Masonry/NSArray+MASShorthandAdditions.h"; sourceTree = "<group>"; };
2E19D206AA8699DAA839A075705233AF /* GCDWebServerDataRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDWebServerDataRequest.m; path = GCDWebServer/Requests/GCDWebServerDataRequest.m; sourceTree = "<group>"; };
31B22479CB6FD290D1DB3948CFD658BB /* JotTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JotTextView.h; path = jot/JotTextView.h; sourceTree = "<group>"; };
31ED7684601C01376B0D4C5AA52EDF5C /* entropy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = entropy.h; path = SSZipArchive/aes/entropy.h; sourceTree = "<group>"; };
322D278771F42D99A0BD3F155BCCD837 /* ioapi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ioapi.h; path = SSZipArchive/minizip/ioapi.h; sourceTree = "<group>"; };
3322339DE4B2AD7641BABDD4B9290B60 /* fileenc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fileenc.h; path = SSZipArchive/aes/fileenc.h; sourceTree = "<group>"; };
3643C18298976109FA5078803E974C07 /* TegKeychainConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TegKeychainConstants.swift; path = Sources/TegKeychainConstants.swift; sourceTree = "<group>"; };
36FBA1EFEC2AAD342F5E3AAD44123355 /* String+Escape.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "String+Escape.swift"; sourceTree = "<group>"; };
382A286495748649E745B4853D82A691 /* JotTouchPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JotTouchPoint.h; path = jot/JotTouchPoint.h; sourceTree = "<group>"; };
39943AA98EF780D4B3858E1E68690032 /* GCDWebServerURLEncodedFormRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDWebServerURLEncodedFormRequest.m; path = GCDWebServer/Requests/GCDWebServerURLEncodedFormRequest.m; sourceTree = "<group>"; };
3A6AD974FB809ADF9A3453F1A940AA2F /* hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = SSZipArchive/aes/hmac.h; sourceTree = "<group>"; };
3B7F542522B8A390E94631B8C4640F7B /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = "<group>"; };
3C928B1CEFEA1A16A4E900F47939381E /* KeychainSwift.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeychainSwift.xcconfig; sourceTree = "<group>"; };
3F9B09AA327D405545E60D1FB60D2A26 /* SSZipArchive-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SSZipArchive-dummy.m"; sourceTree = "<group>"; };
3FE71459B43007993C7706D850CD5C1A /* NSString+NSHash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+NSHash.m"; path = "NSHash/NSString+NSHash.m"; sourceTree = "<group>"; };
41533921015180CE679E30A7B4188627 /* GCDWebServerFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDWebServerFunctions.m; path = GCDWebServer/Core/GCDWebServerFunctions.m; sourceTree = "<group>"; };
446C9C02C70DFAC588715E93F94D2848 /* GCDWebServer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GCDWebServer-prefix.pch"; sourceTree = "<group>"; };
485CCB67D0C13328881938AC4B3A0907 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
49A2EB6F6B9C16BBDCF84411056F2A5C /* ZipArchive.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZipArchive.h; path = SSZipArchive/ZipArchive.h; sourceTree = "<group>"; };
49E4FCB5449B47C56B9C0ECF40D4AAE0 /* SSZipArchive-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SSZipArchive-prefix.pch"; sourceTree = "<group>"; };
4A1B665200A113F56665BA98235A2B12 /* GCDWebServerURLEncodedFormRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDWebServerURLEncodedFormRequest.h; path = GCDWebServer/Requests/GCDWebServerURLEncodedFormRequest.h; sourceTree = "<group>"; };
4D05EACA738A40326949C2B48CCB0B35 /* Pods-Prototyper_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Prototyper_Example-resources.sh"; sourceTree = "<group>"; };
4E2A70A9918023B4C724E752B0CBDB4B /* GCDWebServerRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDWebServerRequest.h; path = GCDWebServer/Core/GCDWebServerRequest.h; sourceTree = "<group>"; };
4E8316AAA472CC59C7C0DAAB288C05BD /* KeychainSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeychainSwift.swift; path = Sources/KeychainSwift.swift; sourceTree = "<group>"; };
4F5A2F543851B9205A9D9756CFE13D32 /* Prototyper.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Prototyper.modulemap; sourceTree = "<group>"; };
513779A11351E6D53F48174B92051079 /* NSHash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSHash-prefix.pch"; sourceTree = "<group>"; };
51772F083467FA5420D707BC5A27D5BF /* jot.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = jot.xcconfig; sourceTree = "<group>"; };
540A0D2B7C7791CEA1D7A592A01B4FC4 /* GCDWebServerFileResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDWebServerFileResponse.h; path = GCDWebServer/Responses/GCDWebServerFileResponse.h; sourceTree = "<group>"; };
542FB5297105C9B009AF4F00DE770E8B /* delete_icon@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "delete_icon@3x.png"; sourceTree = "<group>"; };
546116D1D6A9177335F1EBDFAC2AEC4D /* GCDWebServerFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDWebServerFunctions.h; path = GCDWebServer/Core/GCDWebServerFunctions.h; sourceTree = "<group>"; };
56A97921AA8AAB8CB60899029AD02FD4 /* Masonry.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Masonry.modulemap; sourceTree = "<group>"; };
578FC9DA3E4F46BE7FE45ADC7D19B1CC /* annotation_overlay@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "annotation_overlay@2x.png"; sourceTree = "<group>"; };
57F4DE8439BC68D13943E1F7B88FCC11 /* GCDWebServerErrorResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDWebServerErrorResponse.m; path = GCDWebServer/Responses/GCDWebServerErrorResponse.m; sourceTree = "<group>"; };
58B11CEBB6475BA87A9FC79F6F013506 /* Prototyper.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Prototyper.framework; sourceTree = BUILT_PRODUCTS_DIR; };
58F41390FC3CBF1CF46749266A400759 /* Prototyper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Prototyper-dummy.m"; sourceTree = "<group>"; };
595D6CF1DF193153A1C9FDBFD5AE5392 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/CFNetwork.framework; sourceTree = DEVELOPER_DIR; };
5A5778654DD1A55F68E5B95390E49BB0 /* NSHash.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = NSHash.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5BFDCD42F03BE30FECAE057041DE8414 /* NSHash.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = NSHash.modulemap; sourceTree = "<group>"; };
5F073E145C1B397AD8802EB3E8DF0C82 /* APIHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = APIHandler.swift; sourceTree = "<group>"; };
5FD71F97BC2265417E4DDB291980E3E4 /* ioapi.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ioapi.c; path = SSZipArchive/minizip/ioapi.c; sourceTree = "<group>"; };
602BFB31549835663321850EF423F1FC /* Pods-Prototyper_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Prototyper_Example-acknowledgements.plist"; sourceTree = "<group>"; };
608BDA48D9C3E5C784AFDB9279A38C5C /* PrototypeViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PrototypeViewController.swift; sourceTree = "<group>"; };
6150BDC39E4CC2909F4292AF5AA81B32 /* Masonry-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-umbrella.h"; sourceTree = "<group>"; };
615A42B5E9CAC4DC123972492F11520D /* GCDWebServer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GCDWebServer-dummy.m"; sourceTree = "<group>"; };
6346DBB0F80A6147E417F953E176168A /* SSZipArchive.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SSZipArchive.xcconfig; sourceTree = "<group>"; };
641EBC473FFBC3BA57C390229EECD0DD /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Masonry-dummy.m"; sourceTree = "<group>"; };
65B8F26A1EC708E40046BFA9 /* Prototyper.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Prototyper.png; sourceTree = "<group>"; };
675782CE5303D04744A527F64590AFF8 /* FeedbackBubble.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = FeedbackBubble.swift; sourceTree = "<group>"; };
68873E5A5D98D8A1C0F3B4B1223D080F /* GCDWebServerDataRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDWebServerDataRequest.h; path = GCDWebServer/Requests/GCDWebServerDataRequest.h; sourceTree = "<group>"; };
6900B76ED00D660CA5C7CA663B87569C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
69450B8A007ED53742F363FE46EA8716 /* Pods-Prototyper_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Prototyper_Example-frameworks.sh"; sourceTree = "<group>"; };
694EAE2A202190CD70A4B2C3DD243E55 /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = "<group>"; };
6A0398FA6BA54D335B4CF82B32CFEBE2 /* pwd2key.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pwd2key.c; path = SSZipArchive/aes/pwd2key.c; sourceTree = "<group>"; };
6A9A666DAA0D537F31E725004111F0A1 /* annotation_overlay.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = annotation_overlay.png; sourceTree = "<group>"; };
6A9E4576B5135609EBC9DB7039F337B2 /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASConstraint+Private.h"; path = "Masonry/MASConstraint+Private.h"; sourceTree = "<group>"; };
6BD0D39039382044F1F6E1E25E6D58B7 /* JotDrawView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JotDrawView.m; path = jot/JotDrawView.m; sourceTree = "<group>"; };
6DA38C111E18D5E476CB5FC5E2493EB5 /* crypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crypt.h; path = SSZipArchive/minizip/crypt.h; sourceTree = "<group>"; };
6E6DE34F4B42049C114EE0C6B4CAFDAD /* Constants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = "<group>"; };
703522E1F0CBC6CE998A13F223AC8704 /* fileenc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fileenc.c; path = SSZipArchive/aes/fileenc.c; sourceTree = "<group>"; };
70E41A220135C5FE9D22FDDF2CE5E295 /* JotDrawingContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JotDrawingContainer.m; path = jot/JotDrawingContainer.m; sourceTree = "<group>"; };
739CFEC299DEBCCD255411B4DC3713D3 /* JotTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JotTextView.m; path = jot/JotTextView.m; sourceTree = "<group>"; };
78826BF7DA66110B7B51B3D7533F63BD /* PrototypeView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PrototypeView.swift; sourceTree = "<group>"; };
7B317BE9F53C360EF5BB9596CD559B1E /* JotViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JotViewController.h; path = jot/JotViewController.h; sourceTree = "<group>"; };
7B7931A77382793D336FC77A01F6846E /* delete_icon@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "delete_icon@2x.png"; sourceTree = "<group>"; };
7C4DAF78889D47080748D34512647747 /* GCDWebServerErrorResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDWebServerErrorResponse.h; path = GCDWebServer/Responses/GCDWebServerErrorResponse.h; sourceTree = "<group>"; };
7C9A7DDA898D9F51786334B62E3C4267 /* GCDWebServerFileRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDWebServerFileRequest.m; path = GCDWebServer/Requests/GCDWebServerFileRequest.m; sourceTree = "<group>"; };
7D4F8A9A680DE8E3E33BFE5C765160E8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
7DE165F97FAED2320E4C538618049F2A /* jot-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "jot-dummy.m"; sourceTree = "<group>"; };
7EE4CFF875F66224A3F7B56357988312 /* jot-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jot-umbrella.h"; sourceTree = "<group>"; };
80DC64A2B2EA0330C0A5FEABA9D60600 /* unzip.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = unzip.c; path = SSZipArchive/minizip/unzip.c; sourceTree = "<group>"; };
828E2AD97A57E3CB8C84BAE2A4D29379 /* aescrypt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aescrypt.c; path = SSZipArchive/aes/aescrypt.c; sourceTree = "<group>"; };
82BD827B40173952D776EEA94AB5A03F /* GCDWebServerStreamedResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDWebServerStreamedResponse.h; path = GCDWebServer/Responses/GCDWebServerStreamedResponse.h; sourceTree = "<group>"; };
85BF1128B28763CC7DEF5E6FE08D13CB /* Pods_Prototyper_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Prototyper_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
862555F155F444BEEF39DB5BA1FB93DF /* GCDWebServerDataResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDWebServerDataResponse.m; path = GCDWebServer/Responses/GCDWebServerDataResponse.m; sourceTree = "<group>"; };
862D5BD969D3CED1489ED635872F45CE /* Prototyper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Prototyper-prefix.pch"; sourceTree = "<group>"; };
8A61B396E24469D386B9657A0D98F801 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
8B7AAABD2C28E618723FDDC4D385EF39 /* JotTouchBezier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JotTouchBezier.m; path = jot/JotTouchBezier.m; sourceTree = "<group>"; };
8B83B39ACDFC286E720D0F2E561E93F2 /* GCDWebServer-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GCDWebServer-umbrella.h"; sourceTree = "<group>"; };
8CAD2BE56518B27E57E31843EAFCECCD /* annotation_overlay@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "annotation_overlay@3x.png"; sourceTree = "<group>"; };
8F0E4BD0E76FD5DCCC34AE5EA924DA8C /* Pods-Prototyper_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Prototyper_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
8FF7AC76B981D985C64E0B56F36D5D48 /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "View+MASAdditions.m"; path = "Masonry/View+MASAdditions.m"; sourceTree = "<group>"; };
91E6DC044B628BC729E6688688B6DC09 /* jot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jot.h; path = jot/jot.h; sourceTree = "<group>"; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
9436B0FCB56AFCA4AC2508DB0B77AE88 /* PrototypeController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PrototypeController.swift; sourceTree = "<group>"; };
956167650C6DF4DBC383EB6DC7A4070B /* entropy.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = entropy.c; path = SSZipArchive/aes/entropy.c; sourceTree = "<group>"; };
9606443807E48294F625A35878E24EEC /* GCDWebServerFileResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDWebServerFileResponse.m; path = GCDWebServer/Responses/GCDWebServerFileResponse.m; sourceTree = "<group>"; };
966B4701C20D163083A33DD80FADFAA2 /* sha1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sha1.c; path = SSZipArchive/aes/sha1.c; sourceTree = "<group>"; };
97719E14C0BDB26420419459285DFDAE /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = "<group>"; };
9B15FBBE8F9C209912B270375A70DF7B /* Pods-Prototyper_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Prototyper_Example.debug.xcconfig"; sourceTree = "<group>"; };
9C7B399E56EA1BD6F8BEA78CAB5F013E /* Masonry.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.xcconfig; sourceTree = "<group>"; };
9D2782C55F46E77A8D0EC8CC2FEDDF01 /* FeedbackViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = FeedbackViewController.swift; sourceTree = "<group>"; };
9D2B5FAA8FC54BA6E16B347850B86DFE /* SSZipArchive.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = SSZipArchive.modulemap; sourceTree = "<group>"; };
9E5C6D7AAF789F048256E386A3D2E9D0 /* KeychainSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = KeychainSwift.modulemap; sourceTree = "<group>"; };
9ED1ECE0796741560A9FDFB76E2B4E1A /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MASAdditions.m"; path = "Masonry/NSArray+MASAdditions.m"; sourceTree = "<group>"; };
A0BF880860624297802A86EF38364E23 /* jot.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = jot.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A0C252728E4107442BFE49C0555C4CD3 /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = "<group>"; };
A116D7CB17B9032E3E30EE604AFFDB1E /* ImageAnnotationViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ImageAnnotationViewController.swift; sourceTree = "<group>"; };
A24CA6F7876AFEB637E3E90C9E8DE81B /* ShareViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ShareViewController.swift; sourceTree = "<group>"; };
A29285BBBA58518DC3EE63FFD8B2C3C9 /* jot.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = jot.modulemap; sourceTree = "<group>"; };
A32EEF2934897EBE6A19F03E52D3B89E /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-prefix.pch"; sourceTree = "<group>"; };
A3B01614A9A614C323A97B87189B9F85 /* NSData+NSHash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+NSHash.m"; path = "NSHash/NSData+NSHash.m"; sourceTree = "<group>"; };
A3C49DFFA5A47D812C07984DE1CB4952 /* KeychainSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeychainSwift-dummy.m"; sourceTree = "<group>"; };
A4E43A84391539539D888F635B1E18F6 /* zip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zip.h; path = SSZipArchive/minizip/zip.h; sourceTree = "<group>"; };
A73DCFF25498626B0CBA827590001610 /* prng.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prng.h; path = SSZipArchive/aes/prng.h; sourceTree = "<group>"; };
A79B835C337CC8F6B7397600EA90176B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
A87BD8C60B91AB7BEFE41537ECD7F405 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
A94CF7AAFF76AD520F9D9829679BFC06 /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = "<group>"; };
A96E7A21A12936498A251279CE9D7B98 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
AAB9733D92CE17864540858B520E6B7A /* Pods-Prototyper_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Prototyper_Example.release.xcconfig"; sourceTree = "<group>"; };
AAE8EFEBF825A8601C790CB3FB5192F6 /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = "<group>"; };
AB5C42A80E4AE856910895C5C4CBBC57 /* JotTouchBezier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JotTouchBezier.h; path = jot/JotTouchBezier.h; sourceTree = "<group>"; };
ADAE85BB416E8410B3B41C3162E6EE11 /* NSHash.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = NSHash.framework; sourceTree = BUILT_PRODUCTS_DIR; };
AE67B76725BE3857BC1447E4A0C24047 /* brg_endian.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = brg_endian.h; path = SSZipArchive/aes/brg_endian.h; sourceTree = "<group>"; };
B2E41E235F745062801436A8993A3311 /* aestab.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aestab.h; path = SSZipArchive/aes/aestab.h; sourceTree = "<group>"; };
B2F31001816F1A2D8BF3B7868DC5759E /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = "<group>"; };
B7DCC1B3EA1553D6C9440BADFA4ABDC3 /* Prototyper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Prototyper.xcconfig; sourceTree = "<group>"; };
B83885780FD83C7D11FDE4BF6C764C66 /* JotTextEditView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JotTextEditView.m; path = jot/JotTextEditView.m; sourceTree = "<group>"; };
B87F65E8933CBBCB1575C93386FFFDA1 /* feedback_icon@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "feedback_icon@2x.png"; sourceTree = "<group>"; };
B8865448D10986048D2856B5900B7156 /* GCDWebServer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GCDWebServer.xcconfig; sourceTree = "<group>"; };
B8A0F2363C03FA4049818CDC680B2E06 /* Pods-Prototyper_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Prototyper_Example-umbrella.h"; sourceTree = "<group>"; };
B8F1A720BB5CBC9567C60D35F1B1F698 /* JotViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JotViewController.m; path = jot/JotViewController.m; sourceTree = "<group>"; };
BBC96FE0E8AB8DCA613153195C071DBE /* Pods-Prototyper_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Prototyper_Example-dummy.m"; sourceTree = "<group>"; };
BCB82ACA369CF4C800016B33532180F4 /* KeychainSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KeychainSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; };
BDA25958FC8D663866E8DF823FA5F18F /* KeychainSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainSwift-prefix.pch"; sourceTree = "<group>"; };
C04211A480C1ACD65F5A3DEE687BA923 /* mztools.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mztools.c; path = SSZipArchive/minizip/mztools.c; sourceTree = "<group>"; };
C1B96B5ECDC88B08C5C04373F3EED964 /* SSZipArchive.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SSZipArchive.framework; sourceTree = BUILT_PRODUCTS_DIR; };
C230C75F49521325C425EB3585168315 /* NSHash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSHash-dummy.m"; sourceTree = "<group>"; };
C2433717F12CBCC2B940CAF0E6BB1141 /* hmac.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hmac.c; path = SSZipArchive/aes/hmac.c; sourceTree = "<group>"; };
C3C4A04009FD3A4219864D235FF06EDC /* NSError+APIHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "NSError+APIHandler.swift"; sourceTree = "<group>"; };
C57C24F87761057DB83C63376EAC1591 /* KeychainSwiftAccessOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeychainSwiftAccessOptions.swift; path = Sources/KeychainSwiftAccessOptions.swift; sourceTree = "<group>"; };
C6268FBA861706072810FE34A4F6F8D1 /* SSZipCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSZipCommon.h; path = SSZipArchive/SSZipCommon.h; sourceTree = "<group>"; };
C8409C307F81827668979F7BA2E5C68F /* GCDWebServerFileRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDWebServerFileRequest.h; path = GCDWebServer/Requests/GCDWebServerFileRequest.h; sourceTree = "<group>"; };
C86395D058A77E217FBD4D632C281FE8 /* GCDWebServerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDWebServerConnection.m; path = GCDWebServer/Core/GCDWebServerConnection.m; sourceTree = "<group>"; };
CA30EB52770C2E740DD88C0374284747 /* JotTouchPoint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JotTouchPoint.m; path = jot/JotTouchPoint.m; sourceTree = "<group>"; };
CBBF8577373F487443A05102A95DCE77 /* feedback_icon.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = feedback_icon.png; sourceTree = "<group>"; };
CBEEFFD290CD1C275243F146F39C9AB1 /* Prototyper-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Prototyper-umbrella.h"; sourceTree = "<group>"; };
D1DD52538FFCA2E60BF9C028EF42D306 /* GCDWebServerStreamedResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDWebServerStreamedResponse.m; path = GCDWebServer/Responses/GCDWebServerStreamedResponse.m; sourceTree = "<group>"; };
D290F569F79A3F59350967B708F09A08 /* UIImage+Jot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Jot.h"; path = "jot/UIImage+Jot.h"; sourceTree = "<group>"; };
D3FD44B2DFC7EA1CF4034B93105293E8 /* GCDWebServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDWebServer.h; path = GCDWebServer/Core/GCDWebServer.h; sourceTree = "<group>"; };
D46ED065A14C887101B5EC5A781D4D68 /* aestab.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aestab.c; path = SSZipArchive/aes/aestab.c; sourceTree = "<group>"; };
D9E72852D36FFC70A3AA910D5625E44C /* SSZipArchive.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSZipArchive.h; path = SSZipArchive/SSZipArchive.h; sourceTree = "<group>"; };
DDC3AF714B1639E8556E41A052E593A3 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/MobileCoreServices.framework; sourceTree = DEVELOPER_DIR; };
DFEA14547D54B4C7F2CFDB21C590CFFC /* GCDWebServerRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDWebServerRequest.m; path = GCDWebServer/Core/GCDWebServerRequest.m; sourceTree = "<group>"; };
E01D321BD95867FEB78A18A933B3000C /* mztools.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mztools.h; path = SSZipArchive/minizip/mztools.h; sourceTree = "<group>"; };
E199186AAA2F009DDE9AF95035334299 /* NSHash-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSHash-umbrella.h"; sourceTree = "<group>"; };
E34DCE8AA3F39DD5ACA837D7A03B363B /* aes_via_ace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aes_via_ace.h; path = SSZipArchive/aes/aes_via_ace.h; sourceTree = "<group>"; };
E3D7A73D82797AC8A64F9A7DA64211B9 /* GCDWebServerMultiPartFormRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDWebServerMultiPartFormRequest.h; path = GCDWebServer/Requests/GCDWebServerMultiPartFormRequest.h; sourceTree = "<group>"; };
E52DEC7BDB5747A71F3C1FB158F47944 /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = "<group>"; };
E59018AC63601558C1EFBBE38D7D7084 /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASAdditions.h"; path = "Masonry/View+MASAdditions.h"; sourceTree = "<group>"; };
E7644C1645E730A6DC712424BB3233BD /* UIWindow+Snaphot.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "UIWindow+Snaphot.swift"; sourceTree = "<group>"; };
E98DB3912180E759E98B8C5F6BE96F54 /* Pods-Prototyper_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-Prototyper_Example.modulemap"; sourceTree = "<group>"; };
EB4087EC4393363BFE08DC9ED8466B72 /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+MASDebugAdditions.h"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = "<group>"; };
F0A32BA0DDD0BFBAD8CEAAC99F971A20 /* GCDWebServerMultiPartFormRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDWebServerMultiPartFormRequest.m; path = GCDWebServer/Requests/GCDWebServerMultiPartFormRequest.m; sourceTree = "<group>"; };
F18272B2A67C43000AE551996DCEB699 /* KeychainSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainSwift-umbrella.h"; sourceTree = "<group>"; };
F1FA0BD587972AEF9484A990A2CC2C93 /* GCDWebServerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDWebServerConnection.h; path = GCDWebServer/Core/GCDWebServerConnection.h; sourceTree = "<group>"; };
F3C8903DB2C49FD0A4D9E0C09F442D77 /* feedback_icon@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "feedback_icon@3x.png"; sourceTree = "<group>"; };
F4DDB2052F9DE5901F08BDA41E1C8DCA /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = "<group>"; };
F647325007A5BA42151F5AF0E827F025 /* Masonry.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Masonry.framework; sourceTree = BUILT_PRODUCTS_DIR; };
F6501E7BFF494DB29FD8A57DE26A14AA /* JotDrawView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JotDrawView.h; path = jot/JotDrawView.h; sourceTree = "<group>"; };
F9042ACF77CD1EC3E894D77180F52488 /* KeychainSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KeychainSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; };
FB16B5BEC2E8B0193FC5D34CB81F3FEC /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
FB2201E2219B3E050FE3239692402742 /* JotTextEditView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JotTextEditView.h; path = jot/JotTextEditView.h; sourceTree = "<group>"; };
FE604B4415C66A476AA59381C9040698 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
FFB936B56A959D628B1F844A9FAF7D77 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ViewController+MASAdditions.m"; path = "Masonry/ViewController+MASAdditions.m"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
47110CC4DDC31050D263E473C6352EED /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
DD0D50C07B94AB5981FA9DE36004A40F /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4F028B766F764C206AAD2186935E0BD2 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
A4720450E47C7CCC061C9558952FA794 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6445880D287B66723BE3F3074E3A64A1 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
CEE4168A71E97D69715C2C3234449AB4 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A17D7B77A98F1981626E1DEEF3CC61E8 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
FD8EC83AFBD73B9C1C84E51FD1CF2F48 /* Foundation.framework in Frameworks */,
088FE11BC6988F3F8F5286BF6F93EA7E /* Masonry.framework in Frameworks */,
433E1FC12278D48C62999F723618AD78 /* UIKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
BD3388149D1BAB8262EC0FDA7AC9343A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
6691783F7B5A93BE62EAA5BFDB8FC4AB /* Foundation.framework in Frameworks */,
F7C11B8F11B7D9705EFA8E98ED5636E6 /* GCDWebServer.framework in Frameworks */,
625A6C8F3AEF44BC1418D8FDFCCF9E52 /* jot.framework in Frameworks */,
F1E2549642E180E2F620D8F64E594682 /* KeychainSwift.framework in Frameworks */,
E99D831EF1FAA3A33A47AD84D9A2A187 /* Masonry.framework in Frameworks */,
39C31C8F7171507CAACC84BC15ACC3E6 /* NSHash.framework in Frameworks */,
B4C5603255C5AE466BD0BE82D2EF7885 /* SSZipArchive.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D3A59DF34E488EBA50EA137F12C4FDD3 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E74EF41BA9F3898589567F54913E0041 /* CFNetwork.framework in Frameworks */,
23BF5ED63F32120ECD9DCD2E58D6F5C6 /* Foundation.framework in Frameworks */,
9DE1F8A65AA547CF7113817E148E9165 /* MobileCoreServices.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
DF97B9315784CB3D6DAD9BDB7C3144D9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
C56A835CBC010DF5047E85F455CA4A54 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
F3F4525334628AEE5AEE8ADC072DAF63 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
5E11D97526232356C80F303E1EE74712 /* Foundation.framework in Frameworks */,
D5CB496700D22DDE9AB0C817486C8AFF /* UIKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
041EED21DBC1FC700B59AB491D95A602 /* Support Files */ = {
isa = PBXGroup;
children = (
6900B76ED00D660CA5C7CA663B87569C /* Info.plist */,
9D2B5FAA8FC54BA6E16B347850B86DFE /* SSZipArchive.modulemap */,
6346DBB0F80A6147E417F953E176168A /* SSZipArchive.xcconfig */,
3F9B09AA327D405545E60D1FB60D2A26 /* SSZipArchive-dummy.m */,
49E4FCB5449B47C56B9C0ECF40D4AAE0 /* SSZipArchive-prefix.pch */,
1B227A6BD5C65F312D2C36857DB246CE /* SSZipArchive-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/SSZipArchive";
sourceTree = "<group>";
};
07E361ADD11B71992C566EE290537DE9 /* Classes */ = {
isa = PBXGroup;
children = (
5F073E145C1B397AD8802EB3E8DF0C82 /* APIHandler.swift */,
6E6DE34F4B42049C114EE0C6B4CAFDAD /* Constants.swift */,
078090E55ED7A2BCAD3A72E55A64A7EB /* DeepPressGestureRecognizer.swift */,
675782CE5303D04744A527F64590AFF8 /* FeedbackBubble.swift */,
9D2782C55F46E77A8D0EC8CC2FEDDF01 /* FeedbackViewController.swift */,
A116D7CB17B9032E3E30EE604AFFDB1E /* ImageAnnotationViewController.swift */,
1A884DB57E55F4523B43068A6392C2B4 /* LoginViewController.swift */,
C3C4A04009FD3A4219864D235FF06EDC /* NSError+APIHandler.swift */,
9436B0FCB56AFCA4AC2508DB0B77AE88 /* PrototypeController.swift */,
78826BF7DA66110B7B51B3D7533F63BD /* PrototypeView.swift */,
608BDA48D9C3E5C784AFDB9279A38C5C /* PrototypeViewController.swift */,
A24CA6F7876AFEB637E3E90C9E8DE81B /* ShareViewController.swift */,
36FBA1EFEC2AAD342F5E3AAD44123355 /* String+Escape.swift */,
E7644C1645E730A6DC712424BB3233BD /* UIWindow+Snaphot.swift */,
);
path = Classes;
sourceTree = "<group>";
};
12F71547814D59FA8E4245AC74E2E18F /* Prototyper */ = {
isa = PBXGroup;
children = (
B3991B3079C671664A9EC1C9657D766E /* Prototyper */,
8730F81DEEFC6B0DBB68689DBC3AFE61 /* Resources */,
59105E57538754AEF059F27A0B1B0316 /* Support Files */,
);
name = Prototyper;
path = ../..;
sourceTree = "<group>";
};
148C125AE9F74C9A98355B62E7A9D3B4 /* Pods-Prototyper_Example */ = {
isa = PBXGroup;
children = (
485CCB67D0C13328881938AC4B3A0907 /* Info.plist */,
E98DB3912180E759E98B8C5F6BE96F54 /* Pods-Prototyper_Example.modulemap */,
8F0E4BD0E76FD5DCCC34AE5EA924DA8C /* Pods-Prototyper_Example-acknowledgements.markdown */,
602BFB31549835663321850EF423F1FC /* Pods-Prototyper_Example-acknowledgements.plist */,
BBC96FE0E8AB8DCA613153195C071DBE /* Pods-Prototyper_Example-dummy.m */,
69450B8A007ED53742F363FE46EA8716 /* Pods-Prototyper_Example-frameworks.sh */,
4D05EACA738A40326949C2B48CCB0B35 /* Pods-Prototyper_Example-resources.sh */,
B8A0F2363C03FA4049818CDC680B2E06 /* Pods-Prototyper_Example-umbrella.h */,
9B15FBBE8F9C209912B270375A70DF7B /* Pods-Prototyper_Example.debug.xcconfig */,
AAB9733D92CE17864540858B520E6B7A /* Pods-Prototyper_Example.release.xcconfig */,
);
name = "Pods-Prototyper_Example";
path = "Target Support Files/Pods-Prototyper_Example";
sourceTree = "<group>";
};
1C639700D968C18B400A3DE2F9879ADD /* Assets */ = {
isa = PBXGroup;
children = (
65B8F26A1EC708E40046BFA9 /* Prototyper.png */,
6A9A666DAA0D537F31E725004111F0A1 /* annotation_overlay.png */,
578FC9DA3E4F46BE7FE45ADC7D19B1CC /* annotation_overlay@2x.png */,
8CAD2BE56518B27E57E31843EAFCECCD /* annotation_overlay@3x.png */,
21CB83834BD78E5A6D2E2183045BB383 /* delete_icon.png */,
7B7931A77382793D336FC77A01F6846E /* delete_icon@2x.png */,
542FB5297105C9B009AF4F00DE770E8B /* delete_icon@3x.png */,
CBBF8577373F487443A05102A95DCE77 /* feedback_icon.png */,
B87F65E8933CBBCB1575C93386FFFDA1 /* feedback_icon@2x.png */,
F3C8903DB2C49FD0A4D9E0C09F442D77 /* feedback_icon@3x.png */,
207D623521B3E01ADCE89A42C660C8C0 /* Login.storyboard */,
);
path = Assets;
sourceTree = "<group>";
};
1EDD321957DB90E3C4CB6BBAA746598C /* iOS */ = {
isa = PBXGroup;
children = (
595D6CF1DF193153A1C9FDBFD5AE5392 /* CFNetwork.framework */,
FE604B4415C66A476AA59381C9040698 /* Foundation.framework */,
DDC3AF714B1639E8556E41A052E593A3 /* MobileCoreServices.framework */,
FB16B5BEC2E8B0193FC5D34CB81F3FEC /* UIKit.framework */,
);
name = iOS;
sourceTree = "<group>";
};
25302CD252F9B87D9AE4F4A77BF82498 /* jot */ = {
isa = PBXGroup;
children = (
91E6DC044B628BC729E6688688B6DC09 /* jot.h */,
1AD17006ABC6AA7265AC7DA7439ACDB9 /* JotDrawingContainer.h */,
70E41A220135C5FE9D22FDDF2CE5E295 /* JotDrawingContainer.m */,
F6501E7BFF494DB29FD8A57DE26A14AA /* JotDrawView.h */,
6BD0D39039382044F1F6E1E25E6D58B7 /* JotDrawView.m */,
FB2201E2219B3E050FE3239692402742 /* JotTextEditView.h */,
B83885780FD83C7D11FDE4BF6C764C66 /* JotTextEditView.m */,
31B22479CB6FD290D1DB3948CFD658BB /* JotTextView.h */,
739CFEC299DEBCCD255411B4DC3713D3 /* JotTextView.m */,
AB5C42A80E4AE856910895C5C4CBBC57 /* JotTouchBezier.h */,
8B7AAABD2C28E618723FDDC4D385EF39 /* JotTouchBezier.m */,
382A286495748649E745B4853D82A691 /* JotTouchPoint.h */,
CA30EB52770C2E740DD88C0374284747 /* JotTouchPoint.m */,
7B317BE9F53C360EF5BB9596CD559B1E /* JotViewController.h */,
B8F1A720BB5CBC9567C60D35F1B1F698 /* JotViewController.m */,
D290F569F79A3F59350967B708F09A08 /* UIImage+Jot.h */,
2814F62E73FD05935D933BCEBB12B395 /* UIImage+Jot.m */,
BA2464F02BB5F1097223D4CA489B2F4A /* Support Files */,
);
path = jot;
sourceTree = "<group>";
};
354DE257C1F4FF9C08C63579C90BB29C /* Support Files */ = {
isa = PBXGroup;
children = (
A79B835C337CC8F6B7397600EA90176B /* Info.plist */,
56A97921AA8AAB8CB60899029AD02FD4 /* Masonry.modulemap */,
9C7B399E56EA1BD6F8BEA78CAB5F013E /* Masonry.xcconfig */,
641EBC473FFBC3BA57C390229EECD0DD /* Masonry-dummy.m */,
A32EEF2934897EBE6A19F03E52D3B89E /* Masonry-prefix.pch */,
6150BDC39E4CC2909F4292AF5AA81B32 /* Masonry-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/Masonry";
sourceTree = "<group>";
};
35F82F23301EB4A2E75E3840BF9230B8 /* Prototyper */ = {
isa = PBXGroup;
children = (
1C639700D968C18B400A3DE2F9879ADD /* Assets */,
);
path = Prototyper;
sourceTree = "<group>";
};
37830A1B8F9E939A79B2059C06BDAA32 /* Frameworks */ = {
isa = PBXGroup;
children = (
17BB2C426C3BB110EFFE6E157895083B /* GCDWebServer.framework */,
A0BF880860624297802A86EF38364E23 /* jot.framework */,
BCB82ACA369CF4C800016B33532180F4 /* KeychainSwift.framework */,
F647325007A5BA42151F5AF0E827F025 /* Masonry.framework */,
ADAE85BB416E8410B3B41C3162E6EE11 /* NSHash.framework */,
1467218F98343F0443C079C9524F67D3 /* SSZipArchive.framework */,
1EDD321957DB90E3C4CB6BBAA746598C /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
387517CB9D4B51B056B2766521D2C1C6 /* Core */ = {
isa = PBXGroup;
children = (
D3FD44B2DFC7EA1CF4034B93105293E8 /* GCDWebServer.h */,
09F84FA34CC9E2841C109DDDD1D21543 /* GCDWebServer.m */,
F1FA0BD587972AEF9484A990A2CC2C93 /* GCDWebServerConnection.h */,
C86395D058A77E217FBD4D632C281FE8 /* GCDWebServerConnection.m */,
68873E5A5D98D8A1C0F3B4B1223D080F /* GCDWebServerDataRequest.h */,
2E19D206AA8699DAA839A075705233AF /* GCDWebServerDataRequest.m */,
04E9F563CADE1F82BB94BA910C548C29 /* GCDWebServerDataResponse.h */,
862555F155F444BEEF39DB5BA1FB93DF /* GCDWebServerDataResponse.m */,
7C4DAF78889D47080748D34512647747 /* GCDWebServerErrorResponse.h */,
57F4DE8439BC68D13943E1F7B88FCC11 /* GCDWebServerErrorResponse.m */,
C8409C307F81827668979F7BA2E5C68F /* GCDWebServerFileRequest.h */,
7C9A7DDA898D9F51786334B62E3C4267 /* GCDWebServerFileRequest.m */,
540A0D2B7C7791CEA1D7A592A01B4FC4 /* GCDWebServerFileResponse.h */,
9606443807E48294F625A35878E24EEC /* GCDWebServerFileResponse.m */,
546116D1D6A9177335F1EBDFAC2AEC4D /* GCDWebServerFunctions.h */,
41533921015180CE679E30A7B4188627 /* GCDWebServerFunctions.m */,
0C5894CAEEDE84B3C412C99ADFE447C5 /* GCDWebServerHTTPStatusCodes.h */,
E3D7A73D82797AC8A64F9A7DA64211B9 /* GCDWebServerMultiPartFormRequest.h */,
F0A32BA0DDD0BFBAD8CEAAC99F971A20 /* GCDWebServerMultiPartFormRequest.m */,
163D7E6E52E4FB787A29878533A1110B /* GCDWebServerPrivate.h */,
4E2A70A9918023B4C724E752B0CBDB4B /* GCDWebServerRequest.h */,
DFEA14547D54B4C7F2CFDB21C590CFFC /* GCDWebServerRequest.m */,
1DBA1A801DF7C6F91C62712E9E29E443 /* GCDWebServerResponse.h */,
007283843B495351E65924C05E5A86BF /* GCDWebServerResponse.m */,
82BD827B40173952D776EEA94AB5A03F /* GCDWebServerStreamedResponse.h */,
D1DD52538FFCA2E60BF9C028EF42D306 /* GCDWebServerStreamedResponse.m */,
4A1B665200A113F56665BA98235A2B12 /* GCDWebServerURLEncodedFormRequest.h */,
39943AA98EF780D4B3858E1E68690032 /* GCDWebServerURLEncodedFormRequest.m */,
);
name = Core;
sourceTree = "<group>";
};
3BCE8B20E32EE2C959F42BB4270A06B1 /* Support Files */ = {
isa = PBXGroup;
children = (
7D4F8A9A680DE8E3E33BFE5C765160E8 /* Info.plist */,
5BFDCD42F03BE30FECAE057041DE8414 /* NSHash.modulemap */,
1E2E3CD4878F296E7D9C6275CC95B7B1 /* NSHash.xcconfig */,
C230C75F49521325C425EB3585168315 /* NSHash-dummy.m */,
513779A11351E6D53F48174B92051079 /* NSHash-prefix.pch */,
E199186AAA2F009DDE9AF95035334299 /* NSHash-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/NSHash";
sourceTree = "<group>";
};
59105E57538754AEF059F27A0B1B0316 /* Support Files */ = {
isa = PBXGroup;
children = (
A96E7A21A12936498A251279CE9D7B98 /* Info.plist */,
4F5A2F543851B9205A9D9756CFE13D32 /* Prototyper.modulemap */,
B7DCC1B3EA1553D6C9440BADFA4ABDC3 /* Prototyper.xcconfig */,
58F41390FC3CBF1CF46749266A400759 /* Prototyper-dummy.m */,
862D5BD969D3CED1489ED635872F45CE /* Prototyper-prefix.pch */,
CBEEFFD290CD1C275243F146F39C9AB1 /* Prototyper-umbrella.h */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/Prototyper";
sourceTree = "<group>";
};
6633BD695CA31FAA89FF8FAD16ACAF8C /* Products */ = {
isa = PBXGroup;
children = (
11ED114ED2B3B9415E22FA670C7C5744 /* GCDWebServer.framework */,
23860FD2D91945FAF82067296F414BDE /* jot.framework */,
F9042ACF77CD1EC3E894D77180F52488 /* KeychainSwift.framework */,
1EDA024B38741409113DBB6F361D435E /* Masonry.framework */,
5A5778654DD1A55F68E5B95390E49BB0 /* NSHash.framework */,
85BF1128B28763CC7DEF5E6FE08D13CB /* Pods_Prototyper_Example.framework */,
58B11CEBB6475BA87A9FC79F6F013506 /* Prototyper.framework */,
C1B96B5ECDC88B08C5C04373F3EED964 /* SSZipArchive.framework */,
);
name = Products;
sourceTree = "<group>";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
BF5322BB26F9A5E804C8BBE8C5A91134 /* Development Pods */,
37830A1B8F9E939A79B2059C06BDAA32 /* Frameworks */,
CB9C756DC2C772C8A1C9D9C9C21BAFC7 /* Pods */,
6633BD695CA31FAA89FF8FAD16ACAF8C /* Products */,
C69951734267780EB87AECC9035F7A20 /* Targets Support Files */,
);
sourceTree = "<group>";
};
8730F81DEEFC6B0DBB68689DBC3AFE61 /* Resources */ = {
isa = PBXGroup;
children = (
35F82F23301EB4A2E75E3840BF9230B8 /* Prototyper */,
);
name = Resources;
sourceTree = "<group>";
};
8FE3B7E4B64F069446DAE1D9A927507A /* GCDWebServer */ = {
isa = PBXGroup;
children = (
387517CB9D4B51B056B2766521D2C1C6 /* Core */,
A205C01932F85149B5F9847544E40166 /* Support Files */,
);
path = GCDWebServer;
sourceTree = "<group>";
};
A205C01932F85149B5F9847544E40166 /* Support Files */ = {
isa = PBXGroup;
children = (
1E14BBB94CB2C04FF2F62D03E7156FF6 /* GCDWebServer.modulemap */,
B8865448D10986048D2856B5900B7156 /* GCDWebServer.xcconfig */,
615A42B5E9CAC4DC123972492F11520D /* GCDWebServer-dummy.m */,
446C9C02C70DFAC588715E93F94D2848 /* GCDWebServer-prefix.pch */,
8B83B39ACDFC286E720D0F2E561E93F2 /* GCDWebServer-umbrella.h */,
8A61B396E24469D386B9657A0D98F801 /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/GCDWebServer";
sourceTree = "<group>";
};
B3991B3079C671664A9EC1C9657D766E /* Prototyper */ = {
isa = PBXGroup;
children = (
07E361ADD11B71992C566EE290537DE9 /* Classes */,
);
path = Prototyper;
sourceTree = "<group>";
};
B3F7F03252E23850F2874013CE78ABB3 /* Masonry */ = {
isa = PBXGroup;
children = (
A94CF7AAFF76AD520F9D9829679BFC06 /* MASCompositeConstraint.h */,
694EAE2A202190CD70A4B2C3DD243E55 /* MASCompositeConstraint.m */,
F4DDB2052F9DE5901F08BDA41E1C8DCA /* MASConstraint.h */,
096D595802C2ED9087CF4C94E42AB37B /* MASConstraint.m */,
6A9E4576B5135609EBC9DB7039F337B2 /* MASConstraint+Private.h */,
97719E14C0BDB26420419459285DFDAE /* MASConstraintMaker.h */,
3B7F542522B8A390E94631B8C4640F7B /* MASConstraintMaker.m */,
B2F31001816F1A2D8BF3B7868DC5759E /* MASLayoutConstraint.h */,
08C8693B1B766F3ECED9C1354FA8AF80 /* MASLayoutConstraint.m */,
27CE14E74497B6A4C91604A930A43675 /* Masonry.h */,
E52DEC7BDB5747A71F3C1FB158F47944 /* MASUtilities.h */,
0BB6D8D80DFBE7C395B248DB060629F0 /* MASViewAttribute.h */,
AAE8EFEBF825A8601C790CB3FB5192F6 /* MASViewAttribute.m */,
261AE2CB4D14A43466AACF0E6174F503 /* MASViewConstraint.h */,
A0C252728E4107442BFE49C0555C4CD3 /* MASViewConstraint.m */,
294AC086764A08FD93BD7DC8DABF0637 /* NSArray+MASAdditions.h */,
9ED1ECE0796741560A9FDFB76E2B4E1A /* NSArray+MASAdditions.m */,
2BF9938BBCC4B7A94E266E7890605041 /* NSArray+MASShorthandAdditions.h */,
EB4087EC4393363BFE08DC9ED8466B72 /* NSLayoutConstraint+MASDebugAdditions.h */,
2005973F5C49C9DBC3DE148732A99895 /* NSLayoutConstraint+MASDebugAdditions.m */,
E59018AC63601558C1EFBBE38D7D7084 /* View+MASAdditions.h */,
8FF7AC76B981D985C64E0B56F36D5D48 /* View+MASAdditions.m */,
06405243A3BD648E60353D46BEE26695 /* View+MASShorthandAdditions.h */,
008018A41A47138D5D1589EBF0A8FD98 /* ViewController+MASAdditions.h */,
FFB936B56A959D628B1F844A9FAF7D77 /* ViewController+MASAdditions.m */,
354DE257C1F4FF9C08C63579C90BB29C /* Support Files */,
);
path = Masonry;
sourceTree = "<group>";
};
B414CFA485A4D119FE686DC066330652 /* KeychainSwift */ = {
isa = PBXGroup;
children = (
4E8316AAA472CC59C7C0DAAB288C05BD /* KeychainSwift.swift */,
C57C24F87761057DB83C63376EAC1591 /* KeychainSwiftAccessOptions.swift */,
3643C18298976109FA5078803E974C07 /* TegKeychainConstants.swift */,
F209500DC4191BE19332F8AD28037A01 /* Support Files */,
);
path = KeychainSwift;
sourceTree = "<group>";
};
B9A6977A8861FD4DBE14AD950CF3E017 /* NSHash */ = {
isa = PBXGroup;
children = (
0819B847FA43E4260C9EA37A7C9AF327 /* NSData+NSHash.h */,
A3B01614A9A614C323A97B87189B9F85 /* NSData+NSHash.m */,
1D311F86294B267C71B01EECFB7F5DB8 /* NSString+NSHash.h */,
3FE71459B43007993C7706D850CD5C1A /* NSString+NSHash.m */,
3BCE8B20E32EE2C959F42BB4270A06B1 /* Support Files */,
);
path = NSHash;
sourceTree = "<group>";
};
BA2464F02BB5F1097223D4CA489B2F4A /* Support Files */ = {
isa = PBXGroup;
children = (
24E5CFFD5ADFC011177A38842A53EB1D /* Info.plist */,
A29285BBBA58518DC3EE63FFD8B2C3C9 /* jot.modulemap */,
51772F083467FA5420D707BC5A27D5BF /* jot.xcconfig */,
7DE165F97FAED2320E4C538618049F2A /* jot-dummy.m */,
240711DD9C43B8A02C1C842888F7B106 /* jot-prefix.pch */,
7EE4CFF875F66224A3F7B56357988312 /* jot-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/jot";
sourceTree = "<group>";
};
BF5322BB26F9A5E804C8BBE8C5A91134 /* Development Pods */ = {
isa = PBXGroup;
children = (
12F71547814D59FA8E4245AC74E2E18F /* Prototyper */,
);
name = "Development Pods";
sourceTree = "<group>";
};
C69951734267780EB87AECC9035F7A20 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
148C125AE9F74C9A98355B62E7A9D3B4 /* Pods-Prototyper_Example */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
CB9C756DC2C772C8A1C9D9C9C21BAFC7 /* Pods */ = {
isa = PBXGroup;
children = (
8FE3B7E4B64F069446DAE1D9A927507A /* GCDWebServer */,
25302CD252F9B87D9AE4F4A77BF82498 /* jot */,
B414CFA485A4D119FE686DC066330652 /* KeychainSwift */,
B3F7F03252E23850F2874013CE78ABB3 /* Masonry */,
B9A6977A8861FD4DBE14AD950CF3E017 /* NSHash */,
FAA32FC1437A5C4E8F2FA448F76CBC88 /* SSZipArchive */,
);
name = Pods;
sourceTree = "<group>";
};
F209500DC4191BE19332F8AD28037A01 /* Support Files */ = {
isa = PBXGroup;
children = (
A87BD8C60B91AB7BEFE41537ECD7F405 /* Info.plist */,
9E5C6D7AAF789F048256E386A3D2E9D0 /* KeychainSwift.modulemap */,
3C928B1CEFEA1A16A4E900F47939381E /* KeychainSwift.xcconfig */,
A3C49DFFA5A47D812C07984DE1CB4952 /* KeychainSwift-dummy.m */,
BDA25958FC8D663866E8DF823FA5F18F /* KeychainSwift-prefix.pch */,
F18272B2A67C43000AE551996DCEB699 /* KeychainSwift-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/KeychainSwift";
sourceTree = "<group>";
};
FAA32FC1437A5C4E8F2FA448F76CBC88 /* SSZipArchive */ = {
isa = PBXGroup;
children = (
24F784FEE2AFFEFE9A0871BC8854D0D4 /* aes.h */,
E34DCE8AA3F39DD5ACA837D7A03B363B /* aes_via_ace.h */,
828E2AD97A57E3CB8C84BAE2A4D29379 /* aescrypt.c */,
14E25666F4C778C263EA1D229FDF2529 /* aeskey.c */,
1540CC3BA399D24CB964F6B5E3EA128D /* aesopt.h */,
D46ED065A14C887101B5EC5A781D4D68 /* aestab.c */,
B2E41E235F745062801436A8993A3311 /* aestab.h */,
AE67B76725BE3857BC1447E4A0C24047 /* brg_endian.h */,
173CE6316AEA6636902C56A6E7601B59 /* brg_types.h */,
6DA38C111E18D5E476CB5FC5E2493EB5 /* crypt.h */,
956167650C6DF4DBC383EB6DC7A4070B /* entropy.c */,
31ED7684601C01376B0D4C5AA52EDF5C /* entropy.h */,
703522E1F0CBC6CE998A13F223AC8704 /* fileenc.c */,
3322339DE4B2AD7641BABDD4B9290B60 /* fileenc.h */,
C2433717F12CBCC2B940CAF0E6BB1141 /* hmac.c */,
3A6AD974FB809ADF9A3453F1A940AA2F /* hmac.h */,
5FD71F97BC2265417E4DDB291980E3E4 /* ioapi.c */,
322D278771F42D99A0BD3F155BCCD837 /* ioapi.h */,
C04211A480C1ACD65F5A3DEE687BA923 /* mztools.c */,
E01D321BD95867FEB78A18A933B3000C /* mztools.h */,
2437DBF4ADF728CA51C133C356670AA3 /* prng.c */,
A73DCFF25498626B0CBA827590001610 /* prng.h */,
6A0398FA6BA54D335B4CF82B32CFEBE2 /* pwd2key.c */,
20625184586560F506D1C7327FB256A3 /* pwd2key.h */,
966B4701C20D163083A33DD80FADFAA2 /* sha1.c */,
1779B5DB93086987CF111168E7F0644B /* sha1.h */,
D9E72852D36FFC70A3AA910D5625E44C /* SSZipArchive.h */,
2382D9E7311A14C4F42E21D556738A15 /* SSZipArchive.m */,
C6268FBA861706072810FE34A4F6F8D1 /* SSZipCommon.h */,