This repository has been archived by the owner on May 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
wikisync.log
3342 lines (3342 loc) · 595 KB
/
wikisync.log
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
2020-12-16 17:05:15,887 : INFO : iGEM_login : Successfully logged in as ballaneypranav.
2020-12-16 17:05:17,050 : INFO : iGEM_upload_file : Uploaded T--BITSPilani-Goa_India--img--Team--Ameya.jpg to https://2020.igem.org/wiki/images/2/28/T--BITSPilani-Goa_India--img--Team--Ameya.jpg.
2020-12-16 17:05:18,128 : INFO : iGEM_upload_file : Uploaded T--BITSPilani-Goa_India--img--Software--WikiStarter.svg to https://2020.igem.org/wiki/images/a/a0/T--BITSPilani-Goa_India--img--Software--WikiStarter.svg.
2020-12-16 17:08:18,979 : INFO : iGEM_upload_file : Uploaded T--BITSPilani-Goa_India--img--Awards--compositePart.svg to https://2020.igem.org/wiki/images/8/81/T--BITSPilani-Goa_India--img--Awards--compositePart.svg.
2020-12-16 17:08:20,033 : INFO : iGEM_upload_file : Uploaded T--BITSPilani-Goa_India--img--Title--SugarGain_logo.svg to https://2020.igem.org/wiki/images/e/e3/T--BITSPilani-Goa_India--img--Title--SugarGain_logo.svg.
2020-12-16 17:08:21,218 : INFO : iGEM_upload_file : Uploaded T--BITSPilani-Goa_India--img--Software--WikiSync.svg to https://2020.igem.org/wiki/images/a/a4/T--BITSPilani-Goa_India--img--Software--WikiSync.svg.
2020-12-16 17:08:21,937 : INFO : iGEM_upload_file : Uploaded T--BITSPilani-Goa_India--img--Awards--gold.svg to https://2020.igem.org/wiki/images/a/ab/T--BITSPilani-Goa_India--img--Awards--gold.svg.
2020-12-16 17:08:22,224 : INFO : iGEM_URL : css/index.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/indexCSS?action=raw&ctype=text/css in index.html.
2020-12-16 17:08:22,226 : INFO : iGEM_URL : index.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/index-bundleJS?action=raw&ctype=text/javascript in index.html.
2020-12-16 17:08:22,229 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in index.html.
2020-12-16 17:08:22,229 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in index.html.
2020-12-16 17:08:22,229 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in index.html.
2020-12-16 17:08:22,229 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in index.html.
2020-12-16 17:08:22,229 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in index.html.
2020-12-16 17:08:22,229 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in index.html.
2020-12-16 17:08:22,230 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in index.html.
2020-12-16 17:08:22,230 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in index.html.
2020-12-16 17:08:22,230 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in index.html.
2020-12-16 17:08:22,230 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in index.html.
2020-12-16 17:08:22,230 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in index.html.
2020-12-16 17:08:22,230 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in index.html.
2020-12-16 17:08:22,231 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in index.html.
2020-12-16 17:08:22,231 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in index.html.
2020-12-16 17:08:22,231 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in index.html.
2020-12-16 17:08:22,231 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in index.html.
2020-12-16 17:08:22,231 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in index.html.
2020-12-16 17:08:22,232 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in index.html.
2020-12-16 17:08:22,232 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in index.html.
2020-12-16 17:08:22,232 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in index.html.
2020-12-16 17:08:22,232 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/index.html but was not found.
2020-12-16 17:08:22,232 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in index.html.
2020-12-16 17:08:22,232 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in index.html.
2020-12-16 17:08:22,233 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in index.html.
2020-12-16 17:08:22,233 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in index.html.
2020-12-16 17:08:22,233 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in index.html.
2020-12-16 17:08:22,233 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in index.html.
2020-12-16 17:08:22,234 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in index.html.
2020-12-16 17:08:22,234 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in index.html.
2020-12-16 17:08:22,234 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in index.html.
2020-12-16 17:08:22,235 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in index.html.
2020-12-16 17:08:22,235 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in index.html.
2020-12-16 17:08:22,235 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in index.html.
2020-12-16 17:08:22,235 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in index.html.
2020-12-16 17:08:22,235 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in index.html.
2020-12-16 17:08:22,235 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in index.html.
2020-12-16 17:08:22,236 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in index.html.
2020-12-16 17:08:22,236 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in index.html.
2020-12-16 17:08:22,236 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in index.html.
2020-12-16 17:08:22,236 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in index.html.
2020-12-16 17:08:22,236 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in index.html.
2020-12-16 17:08:22,236 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in index.html.
2020-12-16 17:08:22,237 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in index.html.
2020-12-16 17:08:22,237 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in index.html.
2020-12-16 17:08:22,237 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in index.html.
2020-12-16 17:08:22,237 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in index.html.
2020-12-16 17:08:22,237 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in index.html.
2020-12-16 17:08:22,237 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in index.html.
2020-12-16 17:08:22,238 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in index.html.
2020-12-16 17:08:22,238 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in index.html.
2020-12-16 17:08:22,238 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in index.html.
2020-12-16 17:08:22,238 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in index.html.
2020-12-16 17:08:22,238 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in index.html.
2020-12-16 17:08:22,238 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in index.html.
2020-12-16 17:08:22,239 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in index.html.
2020-12-16 17:08:22,239 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in index.html.
2020-12-16 17:08:22,239 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in index.html.
2020-12-16 17:08:22,239 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in index.html.
2020-12-16 17:08:22,239 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in index.html.
2020-12-16 17:08:22,239 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in index.html.
2020-12-16 17:08:22,240 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in index.html.
2020-12-16 17:08:22,240 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in index.html.
2020-12-16 17:08:22,240 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in index.html.
2020-12-16 17:08:22,240 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in index.html.
2020-12-16 17:08:22,240 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in index.html.
2020-12-16 17:08:22,240 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in index.html.
2020-12-16 17:08:22,241 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in index.html.
2020-12-16 17:08:22,241 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in index.html.
2020-12-16 17:08:22,241 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in index.html.
2020-12-16 17:08:22,241 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in index.html.
2020-12-16 17:08:22,241 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/index.html but was not found.
2020-12-16 17:08:22,241 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in index.html.
2020-12-16 17:08:22,260 : INFO : iGEM_URL : ./assets/img/Home--Design.svg was changed to https://2020.igem.org/wiki/images/8/87/T--BITSPilani-Goa_India--img--Home--Design.svg in index.html.
2020-12-16 17:08:22,261 : INFO : iGEM_URL : ./assets/img/Home--Design.svg was changed to https://2020.igem.org/wiki/images/8/87/T--BITSPilani-Goa_India--img--Home--Design.svg in index.html.
2020-12-16 17:08:22,261 : INFO : iGEM_URL : ./assets/img/Home--Human-Practices.svg was changed to https://2020.igem.org/wiki/images/3/31/T--BITSPilani-Goa_India--img--Home--Human-Practices.svg in index.html.
2020-12-16 17:08:22,261 : INFO : iGEM_URL : ./assets/img/Home--Human-Practices.svg was changed to https://2020.igem.org/wiki/images/3/31/T--BITSPilani-Goa_India--img--Home--Human-Practices.svg in index.html.
2020-12-16 17:08:22,261 : INFO : iGEM_URL : ./assets/img/Home--Modelling.svg was changed to https://2020.igem.org/wiki/images/4/4c/T--BITSPilani-Goa_India--img--Home--Modelling.svg in index.html.
2020-12-16 17:08:22,261 : INFO : iGEM_URL : ./assets/img/Home--Modelling.svg was changed to https://2020.igem.org/wiki/images/4/4c/T--BITSPilani-Goa_India--img--Home--Modelling.svg in index.html.
2020-12-16 17:08:22,262 : INFO : iGEM_URL : ./assets/img/Home--WikiSync.svg was changed to https://2020.igem.org/wiki/images/4/4f/T--BITSPilani-Goa_India--img--Home--WikiSync.svg in index.html.
2020-12-16 17:08:22,262 : INFO : iGEM_URL : ./assets/img/Home--WikiSync.svg was changed to https://2020.igem.org/wiki/images/4/4f/T--BITSPilani-Goa_India--img--Home--WikiSync.svg in index.html.
2020-12-16 17:08:22,283 : INFO : iGEM_URL : /assets/video/homepage.mp4 was changed to https://2020.igem.org/wiki/images/d/db/T--BITSPilani-Goa_India--video--homepage.mp4 in index.html.
2020-12-16 17:08:22,944 : INFO : iGEM_upload_page : Uploaded to https://2020.igem.org/wiki/index.php?title=Team:BITSPilani-Goa_India&action=edit.
2020-12-16 17:08:22,985 : INFO : iGEM_URL : ../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Appendix/index.html.
2020-12-16 17:08:22,986 : INFO : iGEM_URL : ../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Appendix/index.html.
2020-12-16 17:08:22,988 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Appendix/index.html.
2020-12-16 17:08:22,988 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Appendix/index.html.
2020-12-16 17:08:22,989 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Appendix/index.html.
2020-12-16 17:08:22,989 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Appendix/index.html.
2020-12-16 17:08:22,989 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Appendix/index.html.
2020-12-16 17:08:22,989 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Appendix/index.html.
2020-12-16 17:08:22,989 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Appendix/index.html.
2020-12-16 17:08:22,989 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Appendix/index.html.
2020-12-16 17:08:22,990 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Appendix/index.html.
2020-12-16 17:08:22,990 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Appendix/index.html.
2020-12-16 17:08:22,990 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Appendix/index.html.
2020-12-16 17:08:22,990 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Appendix/index.html.
2020-12-16 17:08:22,990 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Appendix/index.html.
2020-12-16 17:08:22,991 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Appendix/index.html.
2020-12-16 17:08:22,991 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Appendix/index.html.
2020-12-16 17:08:22,991 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Appendix/index.html.
2020-12-16 17:08:22,991 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Appendix/index.html.
2020-12-16 17:08:22,991 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Appendix/index.html.
2020-12-16 17:08:22,991 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Appendix/index.html.
2020-12-16 17:08:22,992 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Appendix/index.html.
2020-12-16 17:08:22,992 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Appendix/index.html but was not found.
2020-12-16 17:08:22,992 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Appendix/index.html.
2020-12-16 17:08:22,992 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Appendix/index.html.
2020-12-16 17:08:22,992 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Appendix/index.html.
2020-12-16 17:08:22,993 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Appendix/index.html.
2020-12-16 17:08:22,993 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Appendix/index.html.
2020-12-16 17:08:22,993 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Appendix/index.html.
2020-12-16 17:08:22,993 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Appendix/index.html.
2020-12-16 17:08:22,993 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Appendix/index.html.
2020-12-16 17:08:22,993 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Appendix/index.html.
2020-12-16 17:08:22,994 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Appendix/index.html.
2020-12-16 17:08:22,994 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Appendix/index.html.
2020-12-16 17:08:22,994 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Appendix/index.html.
2020-12-16 17:08:22,994 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Appendix/index.html.
2020-12-16 17:08:22,994 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Appendix/index.html.
2020-12-16 17:08:22,994 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Appendix/index.html.
2020-12-16 17:08:22,995 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Appendix/index.html.
2020-12-16 17:08:22,995 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Appendix/index.html.
2020-12-16 17:08:22,995 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Appendix/index.html.
2020-12-16 17:08:22,995 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Appendix/index.html.
2020-12-16 17:08:22,995 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Appendix/index.html.
2020-12-16 17:08:22,995 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Appendix/index.html.
2020-12-16 17:08:22,996 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Appendix/index.html.
2020-12-16 17:08:22,996 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Appendix/index.html.
2020-12-16 17:08:22,996 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Appendix/index.html.
2020-12-16 17:08:22,996 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Appendix/index.html.
2020-12-16 17:08:22,996 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Appendix/index.html.
2020-12-16 17:08:22,997 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Appendix/index.html.
2020-12-16 17:08:22,997 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Appendix/index.html.
2020-12-16 17:08:22,997 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Appendix/index.html.
2020-12-16 17:08:22,997 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Appendix/index.html.
2020-12-16 17:08:22,997 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Appendix/index.html.
2020-12-16 17:08:22,997 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Appendix/index.html.
2020-12-16 17:08:22,997 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Appendix/index.html.
2020-12-16 17:08:22,998 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Appendix/index.html.
2020-12-16 17:08:22,998 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Appendix/index.html.
2020-12-16 17:08:22,998 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Appendix/index.html.
2020-12-16 17:08:22,998 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Appendix/index.html.
2020-12-16 17:08:22,998 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Appendix/index.html.
2020-12-16 17:08:22,998 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Appendix/index.html.
2020-12-16 17:08:22,999 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Appendix/index.html.
2020-12-16 17:08:22,999 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Appendix/index.html.
2020-12-16 17:08:22,999 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Appendix/index.html.
2020-12-16 17:08:22,999 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Appendix/index.html.
2020-12-16 17:08:22,999 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Appendix/index.html.
2020-12-16 17:08:23,000 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Appendix/index.html but was not found.
2020-12-16 17:08:23,000 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Appendix/index.html.
2020-12-16 17:08:23,011 : INFO : iGEM_URL : ../assets/img/Appendix--Inversion.png was changed to https://2020.igem.org/wiki/images/c/ce/T--BITSPilani-Goa_India--img--Appendix--Inversion.png in Appendix/index.html.
2020-12-16 17:08:23,011 : INFO : iGEM_URL : ../assets/img/Appendix--Time-Cycle.png was changed to https://2020.igem.org/wiki/images/c/c0/T--BITSPilani-Goa_India--img--Appendix--Time-Cycle.png in Appendix/index.html.
2020-12-16 17:08:23,012 : INFO : iGEM_URL : ../assets/img/Appendix--Loss-in-Recovery.png was changed to https://2020.igem.org/wiki/images/e/ed/T--BITSPilani-Goa_India--img--Appendix--Loss-in-Recovery.png in Appendix/index.html.
2020-12-16 17:08:23,012 : INFO : iGEM_URL : ../assets/img/Appendix--Business-Impact.png was changed to https://2020.igem.org/wiki/images/5/53/T--BITSPilani-Goa_India--img--Appendix--Business-Impact.png in Appendix/index.html.
2020-12-16 17:08:23,012 : INFO : iGEM_URL : ../assets/img/Appendix--Loss-of-Sugar.png was changed to https://2020.igem.org/wiki/images/4/45/T--BITSPilani-Goa_India--img--Appendix--Loss-of-Sugar.png in Appendix/index.html.
2020-12-16 17:08:23,029 : INFO : iGEM_URL : ../assets/img/Sample--haifsa-rafique.jpg was changed to https://2020.igem.org/wiki/images/a/ad/T--BITSPilani-Goa_India--img--Sample--haifsa-rafique.jpg in Appendix/index.html.
2020-12-16 17:08:23,529 : INFO : iGEM_upload_page : Uploaded to https://2020.igem.org/wiki/index.php?title=Team:BITSPilani-Goa_India/Appendix&action=edit.
2020-12-16 17:08:23,585 : INFO : iGEM_URL : ../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Education/index.html.
2020-12-16 17:08:23,587 : INFO : iGEM_URL : ../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Education/index.html.
2020-12-16 17:08:23,589 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Education/index.html.
2020-12-16 17:08:23,590 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Education/index.html.
2020-12-16 17:08:23,590 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Education/index.html.
2020-12-16 17:08:23,590 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Education/index.html.
2020-12-16 17:08:23,590 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Education/index.html.
2020-12-16 17:08:23,590 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Education/index.html.
2020-12-16 17:08:23,590 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Education/index.html.
2020-12-16 17:08:23,591 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Education/index.html.
2020-12-16 17:08:23,591 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Education/index.html.
2020-12-16 17:08:23,591 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Education/index.html.
2020-12-16 17:08:23,591 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Education/index.html.
2020-12-16 17:08:23,591 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Education/index.html.
2020-12-16 17:08:23,592 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Education/index.html.
2020-12-16 17:08:23,592 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Education/index.html.
2020-12-16 17:08:23,592 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Education/index.html.
2020-12-16 17:08:23,592 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Education/index.html.
2020-12-16 17:08:23,592 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Education/index.html.
2020-12-16 17:08:23,592 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Education/index.html.
2020-12-16 17:08:23,593 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Education/index.html.
2020-12-16 17:08:23,593 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Education/index.html.
2020-12-16 17:08:23,593 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Education/index.html but was not found.
2020-12-16 17:08:23,593 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Education/index.html.
2020-12-16 17:08:23,593 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Education/index.html.
2020-12-16 17:08:23,593 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Education/index.html.
2020-12-16 17:08:23,594 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Education/index.html.
2020-12-16 17:08:23,594 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Education/index.html.
2020-12-16 17:08:23,594 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Education/index.html.
2020-12-16 17:08:23,594 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Education/index.html.
2020-12-16 17:08:23,594 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Education/index.html.
2020-12-16 17:08:23,594 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Education/index.html.
2020-12-16 17:08:23,595 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Education/index.html.
2020-12-16 17:08:23,595 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Education/index.html.
2020-12-16 17:08:23,595 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Education/index.html.
2020-12-16 17:08:23,595 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Education/index.html.
2020-12-16 17:08:23,595 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Education/index.html.
2020-12-16 17:08:23,595 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Education/index.html.
2020-12-16 17:08:23,596 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Education/index.html.
2020-12-16 17:08:23,596 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Education/index.html.
2020-12-16 17:08:23,596 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Education/index.html.
2020-12-16 17:08:23,596 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Education/index.html.
2020-12-16 17:08:23,596 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Education/index.html.
2020-12-16 17:08:23,597 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Education/index.html.
2020-12-16 17:08:23,597 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Education/index.html.
2020-12-16 17:08:23,597 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Education/index.html.
2020-12-16 17:08:23,597 : INFO : iGEM_URL : ../assets/docs/Education--Country Policy Collaboration.pdf was changed to https://2020.igem.org/wiki/images/9/9d/T--BITSPilani-Goa_India--docs--Education--Country_Policy_Collaboration.pdf in Education/index.html.
2020-12-16 17:08:23,597 : WARNING : iGEM_URL : dist/Collaborations#TheAllIndiaiGEMMeet2020/index.html is referenced in dist/Education/index.html but was not found.
2020-12-16 17:08:23,597 : INFO : iGEM_URL : /Collaborations#TheAllIndiaiGEMMeet2020 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations#TheAllIndiaiGEMMeet2020 in Education/index.html.
2020-12-16 17:08:23,598 : INFO : iGEM_URL : ../assets/docs/Education--CTEHandout.pdf was changed to https://2020.igem.org/wiki/images/d/d1/T--BITSPilani-Goa_India--docs--Education--CTEHandout.pdf in Education/index.html.
2020-12-16 17:08:23,598 : INFO : iGEM_URL : ../assets/docs/Accessibility--Start A Team.pdf was changed to https://2020.igem.org/wiki/images/8/86/T--BITSPilani-Goa_India--docs--Accessibility--Start_A_Team.pdf in Education/index.html.
2020-12-16 17:08:23,598 : INFO : iGEM_URL : ../assets/docs/Accessibility--Navigating iGEM.pdf was changed to https://2020.igem.org/wiki/images/9/90/T--BITSPilani-Goa_India--docs--Accessibility--Navigating_iGEM.pdf in Education/index.html.
2020-12-16 17:08:23,598 : INFO : iGEM_URL : ../assets/docs/Accessibility--Funding.pdf was changed to https://2020.igem.org/wiki/images/0/09/T--BITSPilani-Goa_India--docs--Accessibility--Funding.pdf in Education/index.html.
2020-12-16 17:08:23,598 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Education/index.html.
2020-12-16 17:08:23,599 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Education/index.html.
2020-12-16 17:08:23,599 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Education/index.html.
2020-12-16 17:08:23,599 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Education/index.html.
2020-12-16 17:08:23,599 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Education/index.html.
2020-12-16 17:08:23,599 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Education/index.html.
2020-12-16 17:08:23,599 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Education/index.html.
2020-12-16 17:08:23,600 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Education/index.html.
2020-12-16 17:08:23,600 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Education/index.html.
2020-12-16 17:08:23,600 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Education/index.html.
2020-12-16 17:08:23,600 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Education/index.html.
2020-12-16 17:08:23,600 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Education/index.html.
2020-12-16 17:08:23,600 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Education/index.html.
2020-12-16 17:08:23,601 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Education/index.html.
2020-12-16 17:08:23,601 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Education/index.html.
2020-12-16 17:08:23,601 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Education/index.html.
2020-12-16 17:08:23,601 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Education/index.html.
2020-12-16 17:08:23,601 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Education/index.html.
2020-12-16 17:08:23,601 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Education/index.html.
2020-12-16 17:08:23,602 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Education/index.html.
2020-12-16 17:08:23,602 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Education/index.html.
2020-12-16 17:08:23,602 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Education/index.html but was not found.
2020-12-16 17:08:23,602 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Education/index.html.
2020-12-16 17:08:23,620 : INFO : iGEM_URL : ../assets/img/Education--survey11.png was changed to https://2020.igem.org/wiki/images/f/f7/T--BITSPilani-Goa_India--img--Education--survey11.png in Education/index.html.
2020-12-16 17:08:23,620 : INFO : iGEM_URL : ../assets/img/Education--survey10.png was changed to https://2020.igem.org/wiki/images/3/3f/T--BITSPilani-Goa_India--img--Education--survey10.png in Education/index.html.
2020-12-16 17:08:23,620 : INFO : iGEM_URL : ../assets/img/Education--survey9.png was changed to https://2020.igem.org/wiki/images/5/5a/T--BITSPilani-Goa_India--img--Education--survey9.png in Education/index.html.
2020-12-16 17:08:23,621 : INFO : iGEM_URL : ../assets/img/Education--survey8.png was changed to https://2020.igem.org/wiki/images/1/1e/T--BITSPilani-Goa_India--img--Education--survey8.png in Education/index.html.
2020-12-16 17:08:23,621 : INFO : iGEM_URL : ../assets/img/Education--survey7.png was changed to https://2020.igem.org/wiki/images/e/eb/T--BITSPilani-Goa_India--img--Education--survey7.png in Education/index.html.
2020-12-16 17:08:23,621 : INFO : iGEM_URL : ../assets/img/Education--survey6.png was changed to https://2020.igem.org/wiki/images/d/de/T--BITSPilani-Goa_India--img--Education--survey6.png in Education/index.html.
2020-12-16 17:08:23,621 : INFO : iGEM_URL : ../assets/img/Education--survey5.png was changed to https://2020.igem.org/wiki/images/9/9c/T--BITSPilani-Goa_India--img--Education--survey5.png in Education/index.html.
2020-12-16 17:08:23,621 : INFO : iGEM_URL : ../assets/img/Education--survey4.png was changed to https://2020.igem.org/wiki/images/9/9c/T--BITSPilani-Goa_India--img--Education--survey4.png in Education/index.html.
2020-12-16 17:08:23,622 : INFO : iGEM_URL : ../assets/img/Education--survey3.png was changed to https://2020.igem.org/wiki/images/2/2c/T--BITSPilani-Goa_India--img--Education--survey3.png in Education/index.html.
2020-12-16 17:08:23,622 : INFO : iGEM_URL : ../assets/img/Education--survey2.png was changed to https://2020.igem.org/wiki/images/4/47/T--BITSPilani-Goa_India--img--Education--survey2.png in Education/index.html.
2020-12-16 17:08:23,622 : INFO : iGEM_URL : ../assets/img/Education--survey1.png was changed to https://2020.igem.org/wiki/images/e/ed/T--BITSPilani-Goa_India--img--Education--survey1.png in Education/index.html.
2020-12-16 17:08:23,622 : INFO : iGEM_URL : ../assets/img/Education--Abhigyaan-1.png was changed to https://2020.igem.org/wiki/images/9/92/T--BITSPilani-Goa_India--img--Education--Abhigyaan-1.png in Education/index.html.
2020-12-16 17:08:23,622 : INFO : iGEM_URL : ../assets/img/Education--Abhigyaan-2.png was changed to https://2020.igem.org/wiki/images/7/75/T--BITSPilani-Goa_India--img--Education--Abhigyaan-2.png in Education/index.html.
2020-12-16 17:08:23,623 : INFO : iGEM_URL : ../assets/img/Education--pittsburgh.png was changed to https://2020.igem.org/wiki/images/a/a8/T--BITSPilani-Goa_India--img--Education--pittsburgh.png in Education/index.html.
2020-12-16 17:08:23,623 : INFO : iGEM_URL : ../assets/img/Education--HumansOfiGEM.png was changed to https://2020.igem.org/wiki/images/b/b5/T--BITSPilani-Goa_India--img--Education--HumansOfiGEM.png in Education/index.html.
2020-12-16 17:08:23,623 : INFO : iGEM_URL : ../assets/img/Education--HoICalgary.png was changed to https://2020.igem.org/wiki/images/c/ce/T--BITSPilani-Goa_India--img--Education--HoICalgary.png in Education/index.html.
2020-12-16 17:08:23,623 : INFO : iGEM_URL : ../assets/img/Education--HoIMSP.jpeg was changed to https://2020.igem.org/wiki/images/e/e3/T--BITSPilani-Goa_India--img--Education--HoIMSP.jpeg in Education/index.html.
2020-12-16 17:08:23,623 : INFO : iGEM_URL : ../assets/img/Education--English_Prob.png was changed to https://2020.igem.org/wiki/images/b/bc/T--BITSPilani-Goa_India--img--Education--English_Prob.png in Education/index.html.
2020-12-16 17:08:23,623 : INFO : iGEM_URL : ../assets/img/Education--English_Sol.png was changed to https://2020.igem.org/wiki/images/8/86/T--BITSPilani-Goa_India--img--Education--English_Sol.png in Education/index.html.
2020-12-16 17:08:23,624 : INFO : iGEM_URL : ../assets/img/Education--Hindi_Prob.png was changed to https://2020.igem.org/wiki/images/2/29/T--BITSPilani-Goa_India--img--Education--Hindi_Prob.png in Education/index.html.
2020-12-16 17:08:23,624 : INFO : iGEM_URL : ../assets/img/Education--Hindi_Sol.png was changed to https://2020.igem.org/wiki/images/a/aa/T--BITSPilani-Goa_India--img--Education--Hindi_Sol.png in Education/index.html.
2020-12-16 17:08:23,624 : INFO : iGEM_URL : ../assets/img/Education--Marathi_Prob.png was changed to https://2020.igem.org/wiki/images/b/b0/T--BITSPilani-Goa_India--img--Education--Marathi_Prob.png in Education/index.html.
2020-12-16 17:08:23,624 : INFO : iGEM_URL : ../assets/img/Education--Marathi_Sol.png was changed to https://2020.igem.org/wiki/images/d/d5/T--BITSPilani-Goa_India--img--Education--Marathi_Sol.png in Education/index.html.
2020-12-16 17:08:23,624 : INFO : iGEM_URL : ../assets/img/Education--Tamil_Prob.png was changed to https://2020.igem.org/wiki/images/e/ea/T--BITSPilani-Goa_India--img--Education--Tamil_Prob.png in Education/index.html.
2020-12-16 17:08:23,625 : INFO : iGEM_URL : ../assets/img/Education--Tamil_Sol.png was changed to https://2020.igem.org/wiki/images/e/e0/T--BITSPilani-Goa_India--img--Education--Tamil_Sol.png in Education/index.html.
2020-12-16 17:08:23,625 : INFO : iGEM_URL : ../assets/img/Education--Bengali_Prob.png was changed to https://2020.igem.org/wiki/images/5/5f/T--BITSPilani-Goa_India--img--Education--Bengali_Prob.png in Education/index.html.
2020-12-16 17:08:23,625 : INFO : iGEM_URL : ../assets/img/Education--Bengali_Sol.png was changed to https://2020.igem.org/wiki/images/c/c2/T--BITSPilani-Goa_India--img--Education--Bengali_Sol.png in Education/index.html.
2020-12-16 17:08:23,625 : INFO : iGEM_URL : ../assets/img/Education--Kannada_Prob.png was changed to https://2020.igem.org/wiki/images/3/38/T--BITSPilani-Goa_India--img--Education--Kannada_Prob.png in Education/index.html.
2020-12-16 17:08:23,625 : INFO : iGEM_URL : ../assets/img/Education--Kannada_Sol.png was changed to https://2020.igem.org/wiki/images/9/96/T--BITSPilani-Goa_India--img--Education--Kannada_Sol.png in Education/index.html.
2020-12-16 17:08:23,625 : INFO : iGEM_URL : ../assets/img/Education--French_Prob.png was changed to https://2020.igem.org/wiki/images/8/85/T--BITSPilani-Goa_India--img--Education--French_Prob.png in Education/index.html.
2020-12-16 17:08:23,626 : INFO : iGEM_URL : ../assets/img/Education--French_Sol.png was changed to https://2020.igem.org/wiki/images/d/d1/T--BITSPilani-Goa_India--img--Education--French_Sol.png in Education/index.html.
2020-12-16 17:08:23,626 : INFO : iGEM_URL : ../assets/img/Education--German_Prob.png was changed to https://2020.igem.org/wiki/images/f/f4/T--BITSPilani-Goa_India--img--Education--German_Prob.png in Education/index.html.
2020-12-16 17:08:23,626 : INFO : iGEM_URL : ../assets/img/Education--German_Sol.png was changed to https://2020.igem.org/wiki/images/4/4d/T--BITSPilani-Goa_India--img--Education--German_Sol.png in Education/index.html.
2020-12-16 17:08:23,626 : INFO : iGEM_URL : ../assets/img/Education--InnerWheel.png was changed to https://2020.igem.org/wiki/images/d/de/T--BITSPilani-Goa_India--img--Education--InnerWheel.png in Education/index.html.
2020-12-16 17:08:23,626 : INFO : iGEM_URL : ../assets/img/Dance--PassTheMask.png was changed to https://2020.igem.org/wiki/images/7/7a/T--BITSPilani-Goa_India--img--Dance--PassTheMask.png in Education/index.html.
2020-12-16 17:08:23,643 : INFO : iGEM_URL : ../assets/docs/Education--Country Policy Collaboration.pdf was changed to https://2020.igem.org/wiki/images/9/9d/T--BITSPilani-Goa_India--docs--Education--Country_Policy_Collaboration.pdf in Education/index.html.
2020-12-16 17:08:23,643 : INFO : iGEM_URL : ../assets/docs/Education--CTEHandout.pdf was changed to https://2020.igem.org/wiki/images/d/d1/T--BITSPilani-Goa_India--docs--Education--CTEHandout.pdf in Education/index.html.
2020-12-16 17:08:23,643 : INFO : iGEM_URL : ../assets/docs/Accessibility--Start A Team.pdf was changed to https://2020.igem.org/wiki/images/8/86/T--BITSPilani-Goa_India--docs--Accessibility--Start_A_Team.pdf in Education/index.html.
2020-12-16 17:08:23,644 : INFO : iGEM_URL : ../assets/docs/Accessibility--Navigating iGEM.pdf was changed to https://2020.igem.org/wiki/images/9/90/T--BITSPilani-Goa_India--docs--Accessibility--Navigating_iGEM.pdf in Education/index.html.
2020-12-16 17:08:23,644 : INFO : iGEM_URL : ../assets/docs/Accessibility--Funding.pdf was changed to https://2020.igem.org/wiki/images/0/09/T--BITSPilani-Goa_India--docs--Accessibility--Funding.pdf in Education/index.html.
2020-12-16 17:08:23,648 : INFO : iGEM_URL : ../assets/video/Accessibility--ASL.mp4 was changed to https://2020.igem.org/wiki/images/9/98/T--BITSPilani-Goa_India--video--Accessibility--ASL.mp4 in Education/index.html.
2020-12-16 17:08:23,655 : INFO : iGEM_URL : ../assets/img/Education--header.svg was changed to https://2020.igem.org/wiki/images/a/a3/T--BITSPilani-Goa_India--img--Education--header.svg in Education/index.html.
2020-12-16 17:08:24,264 : INFO : iGEM_upload_page : Uploaded to https://2020.igem.org/wiki/index.php?title=Team:BITSPilani-Goa_India/Education&action=edit.
2020-12-16 17:08:24,294 : INFO : iGEM_URL : ../css/landing.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/landingCSS?action=raw&ctype=text/css in Model/index.html.
2020-12-16 17:08:24,295 : INFO : iGEM_URL : ../landing.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/landing-bundleJS?action=raw&ctype=text/javascript in Model/index.html.
2020-12-16 17:08:24,297 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/index.html.
2020-12-16 17:08:24,297 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/index.html.
2020-12-16 17:08:24,297 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/index.html.
2020-12-16 17:08:24,297 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/index.html.
2020-12-16 17:08:24,298 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/index.html.
2020-12-16 17:08:24,298 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/index.html.
2020-12-16 17:08:24,298 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/index.html.
2020-12-16 17:08:24,298 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/index.html.
2020-12-16 17:08:24,298 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/index.html.
2020-12-16 17:08:24,298 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/index.html.
2020-12-16 17:08:24,299 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/index.html.
2020-12-16 17:08:24,299 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/index.html.
2020-12-16 17:08:24,299 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/index.html.
2020-12-16 17:08:24,299 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/index.html.
2020-12-16 17:08:24,299 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/index.html.
2020-12-16 17:08:24,300 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/index.html.
2020-12-16 17:08:24,300 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/index.html.
2020-12-16 17:08:24,300 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/index.html.
2020-12-16 17:08:24,300 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/index.html.
2020-12-16 17:08:24,300 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/index.html.
2020-12-16 17:08:24,300 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Model/index.html but was not found.
2020-12-16 17:08:24,301 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Model/index.html.
2020-12-16 17:08:24,301 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/index.html.
2020-12-16 17:08:24,301 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/index.html.
2020-12-16 17:08:24,302 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/index.html.
2020-12-16 17:08:24,302 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/index.html.
2020-12-16 17:08:24,302 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/index.html.
2020-12-16 17:08:24,302 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/index.html.
2020-12-16 17:08:24,302 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/index.html.
2020-12-16 17:08:24,302 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/index.html.
2020-12-16 17:08:24,303 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/index.html.
2020-12-16 17:08:24,303 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/index.html.
2020-12-16 17:08:24,303 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/index.html.
2020-12-16 17:08:24,303 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/index.html.
2020-12-16 17:08:24,303 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/index.html.
2020-12-16 17:08:24,304 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/index.html.
2020-12-16 17:08:24,304 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/index.html.
2020-12-16 17:08:24,304 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/index.html.
2020-12-16 17:08:24,304 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/index.html.
2020-12-16 17:08:24,304 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/index.html.
2020-12-16 17:08:24,304 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/index.html.
2020-12-16 17:08:24,305 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/index.html.
2020-12-16 17:08:24,305 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Model/index.html.
2020-12-16 17:08:24,305 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Model/index.html.
2020-12-16 17:08:24,305 : INFO : iGEM_URL : /Model/pFruB-Cra_System was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model/pFruB-Cra_System in Model/index.html.
2020-12-16 17:08:24,305 : INFO : iGEM_URL : /Model/Kill_Switch was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model/Kill_Switch in Model/index.html.
2020-12-16 17:08:24,305 : INFO : iGEM_URL : /Model/Virtual_Screening was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model/Virtual_Screening in Model/index.html.
2020-12-16 17:08:24,306 : INFO : iGEM_URL : /Model/Growth_Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model/Growth_Model in Model/index.html.
2020-12-16 17:08:24,306 : INFO : iGEM_URL : /Model/Inoculant was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model/Inoculant in Model/index.html.
2020-12-16 17:08:24,306 : INFO : iGEM_URL : /Model/Auxotroph was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model/Auxotroph in Model/index.html.
2020-12-16 17:08:24,306 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/index.html.
2020-12-16 17:08:24,306 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/index.html.
2020-12-16 17:08:24,306 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/index.html.
2020-12-16 17:08:24,307 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/index.html.
2020-12-16 17:08:24,307 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/index.html.
2020-12-16 17:08:24,307 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/index.html.
2020-12-16 17:08:24,307 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/index.html.
2020-12-16 17:08:24,307 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/index.html.
2020-12-16 17:08:24,308 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/index.html.
2020-12-16 17:08:24,308 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/index.html.
2020-12-16 17:08:24,308 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/index.html.
2020-12-16 17:08:24,308 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/index.html.
2020-12-16 17:08:24,308 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/index.html.
2020-12-16 17:08:24,308 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/index.html.
2020-12-16 17:08:24,309 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/index.html.
2020-12-16 17:08:24,309 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/index.html.
2020-12-16 17:08:24,309 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/index.html.
2020-12-16 17:08:24,309 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/index.html.
2020-12-16 17:08:24,309 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/index.html.
2020-12-16 17:08:24,309 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/index.html.
2020-12-16 17:08:24,310 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/index.html.
2020-12-16 17:08:24,310 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/index.html.
2020-12-16 17:08:24,310 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Model/index.html but was not found.
2020-12-16 17:08:24,310 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Model/index.html.
2020-12-16 17:08:24,321 : INFO : iGEM_URL : ../assets/img/Biosensor--FruR_patch.gif was changed to https://2020.igem.org/wiki/images/f/f9/T--BITSPilani-Goa_India--img--Biosensor--FruR_patch.gif in Model/index.html.
2020-12-16 17:08:24,321 : INFO : iGEM_URL : ../assets/img/Landing--Kill_Switch.gif was changed to https://2020.igem.org/wiki/images/0/05/T--BITSPilani-Goa_India--img--Landing--Kill_Switch.gif in Model/index.html.
2020-12-16 17:08:24,321 : INFO : iGEM_URL : ../assets/img/Design--AI.gif was changed to https://2020.igem.org/wiki/images/d/db/T--BITSPilani-Goa_India--img--Design--AI.gif in Model/index.html.
2020-12-16 17:08:24,322 : INFO : iGEM_URL : ../assets/img/Landing--Kill_Switch.jpeg was changed to https://2020.igem.org/wiki/images/d/d2/T--BITSPilani-Goa_India--img--Landing--Kill_Switch.jpeg in Model/index.html.
2020-12-16 17:08:24,322 : INFO : iGEM_URL : ../assets/img/Landing--Inoculant.jpg was changed to https://2020.igem.org/wiki/images/7/79/T--BITSPilani-Goa_India--img--Landing--Inoculant.jpg in Model/index.html.
2020-12-16 17:08:24,322 : INFO : iGEM_URL : ../assets/img/Landing--Auxotroph.png was changed to https://2020.igem.org/wiki/images/1/13/T--BITSPilani-Goa_India--img--Landing--Auxotroph.png in Model/index.html.
2020-12-16 17:08:24,338 : INFO : iGEM_URL : ../assets/img/Model--header.svg was changed to https://2020.igem.org/wiki/images/c/c3/T--BITSPilani-Goa_India--img--Model--header.svg in Model/index.html.
2020-12-16 17:08:24,804 : INFO : iGEM_upload_page : Uploaded to https://2020.igem.org/wiki/index.php?title=Team:BITSPilani-Goa_India/Model&action=edit.
2020-12-16 17:08:24,837 : INFO : iGEM_URL : ../../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Model/Growth_Model/index.html.
2020-12-16 17:08:24,838 : INFO : iGEM_URL : ../../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Model/Growth_Model/index.html.
2020-12-16 17:08:24,839 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/Growth_Model/index.html.
2020-12-16 17:08:24,840 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/Growth_Model/index.html.
2020-12-16 17:08:24,840 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/Growth_Model/index.html.
2020-12-16 17:08:24,840 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/Growth_Model/index.html.
2020-12-16 17:08:24,840 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/Growth_Model/index.html.
2020-12-16 17:08:24,840 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/Growth_Model/index.html.
2020-12-16 17:08:24,841 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/Growth_Model/index.html.
2020-12-16 17:08:24,841 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/Growth_Model/index.html.
2020-12-16 17:08:24,841 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/Growth_Model/index.html.
2020-12-16 17:08:24,841 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/Growth_Model/index.html.
2020-12-16 17:08:24,841 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/Growth_Model/index.html.
2020-12-16 17:08:24,841 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/Growth_Model/index.html.
2020-12-16 17:08:24,842 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/Growth_Model/index.html.
2020-12-16 17:08:24,842 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/Growth_Model/index.html.
2020-12-16 17:08:24,842 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/Growth_Model/index.html.
2020-12-16 17:08:24,842 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/Growth_Model/index.html.
2020-12-16 17:08:24,842 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/Growth_Model/index.html.
2020-12-16 17:08:24,842 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/Growth_Model/index.html.
2020-12-16 17:08:24,843 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/Growth_Model/index.html.
2020-12-16 17:08:24,843 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/Growth_Model/index.html.
2020-12-16 17:08:24,843 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Model/Growth_Model/index.html but was not found.
2020-12-16 17:08:24,843 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Model/Growth_Model/index.html.
2020-12-16 17:08:24,843 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/Growth_Model/index.html.
2020-12-16 17:08:24,843 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/Growth_Model/index.html.
2020-12-16 17:08:24,844 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/Growth_Model/index.html.
2020-12-16 17:08:24,844 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/Growth_Model/index.html.
2020-12-16 17:08:24,844 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/Growth_Model/index.html.
2020-12-16 17:08:24,844 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/Growth_Model/index.html.
2020-12-16 17:08:24,844 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/Growth_Model/index.html.
2020-12-16 17:08:24,845 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/Growth_Model/index.html.
2020-12-16 17:08:24,845 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/Growth_Model/index.html.
2020-12-16 17:08:24,845 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/Growth_Model/index.html.
2020-12-16 17:08:24,845 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/Growth_Model/index.html.
2020-12-16 17:08:24,845 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/Growth_Model/index.html.
2020-12-16 17:08:24,845 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/Growth_Model/index.html.
2020-12-16 17:08:24,846 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/Growth_Model/index.html.
2020-12-16 17:08:24,846 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/Growth_Model/index.html.
2020-12-16 17:08:24,846 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/Growth_Model/index.html.
2020-12-16 17:08:24,846 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/Growth_Model/index.html.
2020-12-16 17:08:24,846 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/Growth_Model/index.html.
2020-12-16 17:08:24,846 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/Growth_Model/index.html.
2020-12-16 17:08:24,847 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/Growth_Model/index.html.
2020-12-16 17:08:24,847 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Model/Growth_Model/index.html.
2020-12-16 17:08:24,847 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Model/Growth_Model/index.html.
2020-12-16 17:08:24,847 : INFO : iGEM_URL : /Model/Virtual_Screening was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model/Virtual_Screening in Model/Growth_Model/index.html.
2020-12-16 17:08:24,847 : INFO : iGEM_URL : /Model/Inoculant was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model/Inoculant in Model/Growth_Model/index.html.
2020-12-16 17:08:24,848 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/Growth_Model/index.html.
2020-12-16 17:08:24,848 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/Growth_Model/index.html.
2020-12-16 17:08:24,848 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/Growth_Model/index.html.
2020-12-16 17:08:24,848 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/Growth_Model/index.html.
2020-12-16 17:08:24,848 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/Growth_Model/index.html.
2020-12-16 17:08:24,848 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/Growth_Model/index.html.
2020-12-16 17:08:24,849 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/Growth_Model/index.html.
2020-12-16 17:08:24,849 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/Growth_Model/index.html.
2020-12-16 17:08:24,849 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/Growth_Model/index.html.
2020-12-16 17:08:24,849 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/Growth_Model/index.html.
2020-12-16 17:08:24,849 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/Growth_Model/index.html.
2020-12-16 17:08:24,849 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/Growth_Model/index.html.
2020-12-16 17:08:24,850 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/Growth_Model/index.html.
2020-12-16 17:08:24,850 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/Growth_Model/index.html.
2020-12-16 17:08:24,850 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/Growth_Model/index.html.
2020-12-16 17:08:24,850 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/Growth_Model/index.html.
2020-12-16 17:08:24,850 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/Growth_Model/index.html.
2020-12-16 17:08:24,850 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/Growth_Model/index.html.
2020-12-16 17:08:24,851 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/Growth_Model/index.html.
2020-12-16 17:08:24,851 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/Growth_Model/index.html.
2020-12-16 17:08:24,851 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Model/Growth_Model/index.html but was not found.
2020-12-16 17:08:24,851 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Model/Growth_Model/index.html.
2020-12-16 17:08:24,862 : INFO : iGEM_URL : ../../assets/img/Growth_Model--ODScatterPlot.png was changed to https://2020.igem.org/wiki/images/4/45/T--BITSPilani-Goa_India--img--Growth_Model--ODScatterPlot.png in Model/Growth_Model/index.html.
2020-12-16 17:08:24,862 : INFO : iGEM_URL : ../../assets/img/Growth_Model--GrowthPrediction.png was changed to https://2020.igem.org/wiki/images/7/7c/T--BITSPilani-Goa_India--img--Growth_Model--GrowthPrediction.png in Model/Growth_Model/index.html.
2020-12-16 17:08:24,879 : INFO : iGEM_URL : ../../assets/img/Model--header.svg was changed to https://2020.igem.org/wiki/images/c/c3/T--BITSPilani-Goa_India--img--Model--header.svg in Model/Growth_Model/index.html.
2020-12-16 17:08:25,382 : INFO : iGEM_upload_page : Uploaded to https://2020.igem.org/wiki/index.php?title=Team:BITSPilani-Goa_India/Model/Growth_Model&action=edit.
2020-12-16 17:08:25,418 : INFO : iGEM_URL : ../../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Model/Auxotroph/index.html.
2020-12-16 17:08:25,419 : INFO : iGEM_URL : ../../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Model/Auxotroph/index.html.
2020-12-16 17:08:25,421 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/Auxotroph/index.html.
2020-12-16 17:08:25,421 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/Auxotroph/index.html.
2020-12-16 17:08:25,421 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/Auxotroph/index.html.
2020-12-16 17:08:25,421 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/Auxotroph/index.html.
2020-12-16 17:08:25,421 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/Auxotroph/index.html.
2020-12-16 17:08:25,422 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/Auxotroph/index.html.
2020-12-16 17:08:25,422 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/Auxotroph/index.html.
2020-12-16 17:08:25,422 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/Auxotroph/index.html.
2020-12-16 17:08:25,422 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/Auxotroph/index.html.
2020-12-16 17:08:25,422 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/Auxotroph/index.html.
2020-12-16 17:08:25,422 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/Auxotroph/index.html.
2020-12-16 17:08:25,423 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/Auxotroph/index.html.
2020-12-16 17:08:25,423 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/Auxotroph/index.html.
2020-12-16 17:08:25,423 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/Auxotroph/index.html.
2020-12-16 17:08:25,423 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/Auxotroph/index.html.
2020-12-16 17:08:25,423 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/Auxotroph/index.html.
2020-12-16 17:08:25,423 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/Auxotroph/index.html.
2020-12-16 17:08:25,424 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/Auxotroph/index.html.
2020-12-16 17:08:25,424 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/Auxotroph/index.html.
2020-12-16 17:08:25,424 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/Auxotroph/index.html.
2020-12-16 17:08:25,424 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Model/Auxotroph/index.html but was not found.
2020-12-16 17:08:25,425 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Model/Auxotroph/index.html.
2020-12-16 17:08:25,425 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/Auxotroph/index.html.
2020-12-16 17:08:25,425 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/Auxotroph/index.html.
2020-12-16 17:08:25,425 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/Auxotroph/index.html.
2020-12-16 17:08:25,426 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/Auxotroph/index.html.
2020-12-16 17:08:25,426 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/Auxotroph/index.html.
2020-12-16 17:08:25,426 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/Auxotroph/index.html.
2020-12-16 17:08:25,426 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/Auxotroph/index.html.
2020-12-16 17:08:25,426 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/Auxotroph/index.html.
2020-12-16 17:08:25,426 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/Auxotroph/index.html.
2020-12-16 17:08:25,427 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/Auxotroph/index.html.
2020-12-16 17:08:25,427 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/Auxotroph/index.html.
2020-12-16 17:08:25,427 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/Auxotroph/index.html.
2020-12-16 17:08:25,427 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/Auxotroph/index.html.
2020-12-16 17:08:25,427 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/Auxotroph/index.html.
2020-12-16 17:08:25,427 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/Auxotroph/index.html.
2020-12-16 17:08:25,428 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/Auxotroph/index.html.
2020-12-16 17:08:25,428 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/Auxotroph/index.html.
2020-12-16 17:08:25,428 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/Auxotroph/index.html.
2020-12-16 17:08:25,428 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/Auxotroph/index.html.
2020-12-16 17:08:25,428 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/Auxotroph/index.html.
2020-12-16 17:08:25,428 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Model/Auxotroph/index.html.
2020-12-16 17:08:25,429 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Model/Auxotroph/index.html.
2020-12-16 17:08:25,429 : INFO : iGEM_URL : /Model/Inoculant was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model/Inoculant in Model/Auxotroph/index.html.
2020-12-16 17:08:25,429 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/Auxotroph/index.html.
2020-12-16 17:08:25,429 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/Auxotroph/index.html.
2020-12-16 17:08:25,429 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/Auxotroph/index.html.
2020-12-16 17:08:25,430 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/Auxotroph/index.html.
2020-12-16 17:08:25,430 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/Auxotroph/index.html.
2020-12-16 17:08:25,430 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/Auxotroph/index.html.
2020-12-16 17:08:25,430 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/Auxotroph/index.html.
2020-12-16 17:08:25,430 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/Auxotroph/index.html.
2020-12-16 17:08:25,430 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/Auxotroph/index.html.
2020-12-16 17:08:25,431 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/Auxotroph/index.html.
2020-12-16 17:08:25,431 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/Auxotroph/index.html.
2020-12-16 17:08:25,431 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/Auxotroph/index.html.
2020-12-16 17:08:25,431 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/Auxotroph/index.html.
2020-12-16 17:08:25,431 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/Auxotroph/index.html.
2020-12-16 17:08:25,431 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/Auxotroph/index.html.
2020-12-16 17:08:25,432 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/Auxotroph/index.html.
2020-12-16 17:08:25,432 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/Auxotroph/index.html.
2020-12-16 17:08:25,432 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/Auxotroph/index.html.
2020-12-16 17:08:25,432 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/Auxotroph/index.html.
2020-12-16 17:08:25,432 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/Auxotroph/index.html.
2020-12-16 17:08:25,432 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Model/Auxotroph/index.html but was not found.
2020-12-16 17:08:25,433 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Model/Auxotroph/index.html.
2020-12-16 17:08:25,444 : INFO : iGEM_URL : ../../assets/img/Auxotroph--Bertels.jpg was changed to https://2020.igem.org/wiki/images/4/4c/T--BITSPilani-Goa_India--img--Auxotroph--Bertels.jpg in Model/Auxotroph/index.html.
2020-12-16 17:08:25,461 : INFO : iGEM_URL : ../../assets/img/Model--header.svg was changed to https://2020.igem.org/wiki/images/c/c3/T--BITSPilani-Goa_India--img--Model--header.svg in Model/Auxotroph/index.html.
2020-12-16 17:08:26,018 : INFO : iGEM_upload_page : Uploaded to https://2020.igem.org/wiki/index.php?title=Team:BITSPilani-Goa_India/Model/Auxotroph&action=edit.
2020-12-16 17:08:26,062 : INFO : iGEM_URL : ../../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,063 : INFO : iGEM_URL : ../../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,066 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,066 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,066 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,066 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,066 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,067 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,067 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,067 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,067 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,067 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,067 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,068 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,068 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,068 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,068 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,068 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,069 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,069 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,069 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,069 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,069 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Model/Kill_Switch/index.html but was not found.
2020-12-16 17:08:26,069 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,070 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,070 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,070 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,070 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,070 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,070 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,071 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,071 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,071 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,071 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,071 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,071 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,072 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,072 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,072 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,072 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,072 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,072 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,073 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,073 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,073 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,073 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,074 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,074 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,074 : INFO : iGEM_URL : /Model/pFruB-Cra_System was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model/pFruB-Cra_System in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,074 : INFO : iGEM_URL : /Model/Virtual_Screening was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model/Virtual_Screening in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,074 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,074 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,075 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,075 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,075 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,075 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,075 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,075 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,076 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,076 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,076 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,076 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,076 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,076 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,077 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,077 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,077 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,077 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,077 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,077 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,078 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Model/Kill_Switch/index.html but was not found.
2020-12-16 17:08:26,078 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,093 : INFO : iGEM_URL : ../../assets/img/Kill_Switch--KillSwitchDynamics.png was changed to https://2020.igem.org/wiki/images/8/80/T--BITSPilani-Goa_India--img--Kill_Switch--KillSwitchDynamics.png in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,093 : INFO : iGEM_URL : ../../assets/img/Kill_Switch--KillSwitchGraph.png was changed to https://2020.igem.org/wiki/images/8/85/T--BITSPilani-Goa_India--img--Kill_Switch--KillSwitchGraph.png in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,093 : INFO : iGEM_URL : ../../assets/img/Kill_Switch--Sensitivity.png was changed to https://2020.igem.org/wiki/images/c/c5/T--BITSPilani-Goa_India--img--Kill_Switch--Sensitivity.png in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,094 : INFO : iGEM_URL : ../../assets/img/Kill_Switch--ccdBvsKd.png was changed to https://2020.igem.org/wiki/images/2/28/T--BITSPilani-Goa_India--img--Kill_Switch--ccdBvsKd.png in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,116 : INFO : iGEM_URL : ../../assets/img/Model--header.svg was changed to https://2020.igem.org/wiki/images/c/c3/T--BITSPilani-Goa_India--img--Model--header.svg in Model/Kill_Switch/index.html.
2020-12-16 17:08:26,638 : INFO : iGEM_upload_page : Uploaded to https://2020.igem.org/wiki/index.php?title=Team:BITSPilani-Goa_India/Model/Kill_Switch&action=edit.
2020-12-16 17:08:26,676 : INFO : iGEM_URL : ../../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Model/Inoculant/index.html.
2020-12-16 17:08:26,677 : INFO : iGEM_URL : ../../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Model/Inoculant/index.html.
2020-12-16 17:08:26,679 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/Inoculant/index.html.
2020-12-16 17:08:26,680 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/Inoculant/index.html.
2020-12-16 17:08:26,680 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/Inoculant/index.html.
2020-12-16 17:08:26,680 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/Inoculant/index.html.
2020-12-16 17:08:26,680 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/Inoculant/index.html.
2020-12-16 17:08:26,680 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/Inoculant/index.html.
2020-12-16 17:08:26,681 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/Inoculant/index.html.
2020-12-16 17:08:26,681 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/Inoculant/index.html.
2020-12-16 17:08:26,681 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/Inoculant/index.html.
2020-12-16 17:08:26,681 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/Inoculant/index.html.
2020-12-16 17:08:26,681 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/Inoculant/index.html.
2020-12-16 17:08:26,681 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/Inoculant/index.html.
2020-12-16 17:08:26,682 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/Inoculant/index.html.
2020-12-16 17:08:26,682 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/Inoculant/index.html.
2020-12-16 17:08:26,682 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/Inoculant/index.html.
2020-12-16 17:08:26,682 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/Inoculant/index.html.
2020-12-16 17:08:26,682 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/Inoculant/index.html.
2020-12-16 17:08:26,682 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/Inoculant/index.html.
2020-12-16 17:08:26,683 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/Inoculant/index.html.
2020-12-16 17:08:26,683 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/Inoculant/index.html.
2020-12-16 17:08:26,683 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Model/Inoculant/index.html but was not found.
2020-12-16 17:08:26,683 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Model/Inoculant/index.html.
2020-12-16 17:08:26,683 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/Inoculant/index.html.
2020-12-16 17:08:26,684 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/Inoculant/index.html.
2020-12-16 17:08:26,684 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/Inoculant/index.html.
2020-12-16 17:08:26,684 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/Inoculant/index.html.
2020-12-16 17:08:26,684 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/Inoculant/index.html.
2020-12-16 17:08:26,684 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/Inoculant/index.html.
2020-12-16 17:08:26,684 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/Inoculant/index.html.
2020-12-16 17:08:26,685 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/Inoculant/index.html.
2020-12-16 17:08:26,685 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/Inoculant/index.html.
2020-12-16 17:08:26,685 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/Inoculant/index.html.
2020-12-16 17:08:26,685 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/Inoculant/index.html.
2020-12-16 17:08:26,685 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/Inoculant/index.html.
2020-12-16 17:08:26,685 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/Inoculant/index.html.
2020-12-16 17:08:26,686 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/Inoculant/index.html.
2020-12-16 17:08:26,686 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/Inoculant/index.html.
2020-12-16 17:08:26,686 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/Inoculant/index.html.
2020-12-16 17:08:26,686 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/Inoculant/index.html.
2020-12-16 17:08:26,686 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/Inoculant/index.html.
2020-12-16 17:08:26,686 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/Inoculant/index.html.
2020-12-16 17:08:26,687 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/Inoculant/index.html.
2020-12-16 17:08:26,687 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Model/Inoculant/index.html.
2020-12-16 17:08:26,687 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Model/Inoculant/index.html.
2020-12-16 17:08:26,687 : INFO : iGEM_URL : /Experiments/Inoculant was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments/Inoculant in Model/Inoculant/index.html.
2020-12-16 17:08:26,687 : INFO : iGEM_URL : /Model/Growth_Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model/Growth_Model in Model/Inoculant/index.html.
2020-12-16 17:08:26,688 : INFO : iGEM_URL : /Model/Auxotroph was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model/Auxotroph in Model/Inoculant/index.html.
2020-12-16 17:08:26,688 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/Inoculant/index.html.
2020-12-16 17:08:26,688 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/Inoculant/index.html.
2020-12-16 17:08:26,688 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/Inoculant/index.html.
2020-12-16 17:08:26,688 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/Inoculant/index.html.
2020-12-16 17:08:26,688 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/Inoculant/index.html.
2020-12-16 17:08:26,689 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/Inoculant/index.html.
2020-12-16 17:08:26,689 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/Inoculant/index.html.
2020-12-16 17:08:26,689 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/Inoculant/index.html.
2020-12-16 17:08:26,689 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/Inoculant/index.html.
2020-12-16 17:08:26,689 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/Inoculant/index.html.
2020-12-16 17:08:26,690 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/Inoculant/index.html.
2020-12-16 17:08:26,690 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/Inoculant/index.html.
2020-12-16 17:08:26,690 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/Inoculant/index.html.
2020-12-16 17:08:26,690 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/Inoculant/index.html.
2020-12-16 17:08:26,690 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/Inoculant/index.html.
2020-12-16 17:08:26,690 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/Inoculant/index.html.
2020-12-16 17:08:26,691 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/Inoculant/index.html.
2020-12-16 17:08:26,691 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/Inoculant/index.html.
2020-12-16 17:08:26,691 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/Inoculant/index.html.
2020-12-16 17:08:26,691 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/Inoculant/index.html.
2020-12-16 17:08:26,691 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Model/Inoculant/index.html but was not found.
2020-12-16 17:08:26,691 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Model/Inoculant/index.html.
2020-12-16 17:08:26,723 : INFO : iGEM_URL : ../../assets/img/Model--header.svg was changed to https://2020.igem.org/wiki/images/c/c3/T--BITSPilani-Goa_India--img--Model--header.svg in Model/Inoculant/index.html.
2020-12-16 17:08:27,275 : INFO : iGEM_upload_page : Uploaded to https://2020.igem.org/wiki/index.php?title=Team:BITSPilani-Goa_India/Model/Inoculant&action=edit.
2020-12-16 17:08:27,332 : INFO : iGEM_URL : ../../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,334 : INFO : iGEM_URL : ../../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,336 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,337 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,337 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,337 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,337 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,337 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,337 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,338 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,338 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,338 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,338 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,338 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,338 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,339 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,339 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,339 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,339 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,339 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,340 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,340 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,340 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Model/pFruB-Cra_System/index.html but was not found.
2020-12-16 17:08:27,340 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,340 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,341 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,341 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,341 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,341 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,341 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,341 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,342 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,342 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,342 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,342 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,342 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,342 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,343 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,343 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,343 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,343 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,343 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,343 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,344 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,344 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,344 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,344 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,344 : INFO : iGEM_URL : /Model/Virtual_Screening was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model/Virtual_Screening in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,345 : INFO : iGEM_URL : /Experiments/pFruB-Cra_System was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments/pFruB-Cra_System in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,345 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,345 : INFO : iGEM_URL : /Model/Kill_Switch was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model/Kill_Switch in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,345 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,346 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,346 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,346 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,346 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,346 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,346 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,347 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,347 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,347 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,347 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,347 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,347 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,348 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,348 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,348 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,348 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,348 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,348 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,349 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,349 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Model/pFruB-Cra_System/index.html but was not found.
2020-12-16 17:08:27,349 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,368 : INFO : iGEM_URL : ../../assets/img/Biosensor--Dynamics.png was changed to https://2020.igem.org/wiki/images/c/c1/T--BITSPilani-Goa_India--img--Biosensor--Dynamics.png in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,368 : INFO : iGEM_URL : ../../assets/img/Biosensor--RamachandranFruR.png was changed to https://2020.igem.org/wiki/images/e/e1/T--BITSPilani-Goa_India--img--Biosensor--RamachandranFruR.png in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,369 : INFO : iGEM_URL : ../../assets/img/Biosensor--FruRQuality.png was changed to https://2020.igem.org/wiki/images/3/30/T--BITSPilani-Goa_India--img--Biosensor--FruRQuality.png in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,369 : INFO : iGEM_URL : ../../assets/img/Biosensor--FruR-F1P-pymol.png was changed to https://2020.igem.org/wiki/images/6/65/T--BITSPilani-Goa_India--img--Biosensor--FruR-F1P-pymol.png in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,369 : INFO : iGEM_URL : ../../assets/img/Biosensor--FruR_patch.gif was changed to https://2020.igem.org/wiki/images/f/f9/T--BITSPilani-Goa_India--img--Biosensor--FruR_patch.gif in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,369 : INFO : iGEM_URL : ../../assets/img/Biosensor--GlucoseFlowchart.png was changed to https://2020.igem.org/wiki/images/a/a3/T--BITSPilani-Goa_India--img--Biosensor--GlucoseFlowchart.png in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,398 : INFO : iGEM_URL : ../../assets/img/Model--header.svg was changed to https://2020.igem.org/wiki/images/c/c3/T--BITSPilani-Goa_India--img--Model--header.svg in Model/pFruB-Cra_System/index.html.
2020-12-16 17:08:27,998 : INFO : iGEM_upload_page : Uploaded to https://2020.igem.org/wiki/index.php?title=Team:BITSPilani-Goa_India/Model/pFruB-Cra_System&action=edit.
2020-12-16 17:08:28,042 : INFO : iGEM_URL : ../../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,043 : INFO : iGEM_URL : ../../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,046 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,046 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,046 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,046 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,046 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,046 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,047 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,047 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,047 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,047 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,047 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,047 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,048 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,048 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,048 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,048 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,048 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,049 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,049 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,049 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,049 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Model/Virtual_Screening/index.html but was not found.
2020-12-16 17:08:28,049 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,049 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,050 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,050 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,050 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,050 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,050 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,050 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,051 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,051 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,051 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,051 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,051 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,051 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,052 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,052 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,052 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,052 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,052 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,053 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,053 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,053 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,053 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,053 : INFO : iGEM_URL : /Model/Kill_Switch was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model/Kill_Switch in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,054 : INFO : iGEM_URL : /Model/Growth_Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model/Growth_Model in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,054 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,054 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,054 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,055 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,055 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,055 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,055 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,055 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,055 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,056 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,056 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,056 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,056 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,056 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,056 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,057 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,057 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,057 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,057 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,057 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,057 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Model/Virtual_Screening/index.html but was not found.
2020-12-16 17:08:28,058 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,072 : INFO : iGEM_URL : ../../assets/img/Biosensor--ClusProAlg.png was changed to https://2020.igem.org/wiki/images/d/d0/T--BITSPilani-Goa_India--img--Biosensor--ClusProAlg.png in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,073 : INFO : iGEM_URL : ../../assets/img/VS--SugarcaneInvertase.png was changed to https://2020.igem.org/wiki/images/6/6c/T--BITSPilani-Goa_India--img--VS--SugarcaneInvertase.png in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,073 : INFO : iGEM_URL : ../../assets/img/VS--Ramachandran Plot.png was changed to https://2020.igem.org/wiki/images/0/0f/T--BITSPilani-Goa_India--img--VS--Ramachandran_Plot.png in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,073 : INFO : iGEM_URL : ../../assets/img/VS--QualityComparison.png was changed to https://2020.igem.org/wiki/images/8/85/T--BITSPilani-Goa_India--img--VS--QualityComparison.png in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,073 : INFO : iGEM_URL : ../../assets/img/VS--Sugarcane inhibitor.png was changed to https://2020.igem.org/wiki/images/6/63/T--BITSPilani-Goa_India--img--VS--Sugarcane_inhibitor.png in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,073 : INFO : iGEM_URL : ../../assets/img/VS--Arabidopsis inhibitor.png was changed to https://2020.igem.org/wiki/images/3/34/T--BITSPilani-Goa_India--img--VS--Arabidopsis_inhibitor.png in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,074 : INFO : iGEM_URL : ../../assets/img/VS--Tobacco inhibitor.png was changed to https://2020.igem.org/wiki/images/a/a3/T--BITSPilani-Goa_India--img--VS--Tobacco_inhibitor.png in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,074 : INFO : iGEM_URL : ../../assets/img/VS--Potato inhibitor.png was changed to https://2020.igem.org/wiki/images/2/26/T--BITSPilani-Goa_India--img--VS--Potato_inhibitor.png in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,096 : INFO : iGEM_URL : ../../assets/img/Model--header.svg was changed to https://2020.igem.org/wiki/images/c/c3/T--BITSPilani-Goa_India--img--Model--header.svg in Model/Virtual_Screening/index.html.
2020-12-16 17:08:28,644 : INFO : iGEM_upload_page : Uploaded to https://2020.igem.org/wiki/index.php?title=Team:BITSPilani-Goa_India/Model/Virtual_Screening&action=edit.
2020-12-16 17:08:28,689 : INFO : iGEM_URL : ../css/notebook.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/notebookCSS?action=raw&ctype=text/css in Notebook/index.html.
2020-12-16 17:08:28,690 : INFO : iGEM_URL : ../notebook.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/notebook-bundleJS?action=raw&ctype=text/javascript in Notebook/index.html.
2020-12-16 17:08:28,692 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Notebook/index.html.
2020-12-16 17:08:28,692 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Notebook/index.html.
2020-12-16 17:08:28,692 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Notebook/index.html.
2020-12-16 17:08:28,693 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Notebook/index.html.
2020-12-16 17:08:28,693 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Notebook/index.html.
2020-12-16 17:08:28,693 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Notebook/index.html.
2020-12-16 17:08:28,693 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Notebook/index.html.
2020-12-16 17:08:28,693 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Notebook/index.html.
2020-12-16 17:08:28,694 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Notebook/index.html.
2020-12-16 17:08:28,694 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Notebook/index.html.
2020-12-16 17:08:28,694 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Notebook/index.html.
2020-12-16 17:08:28,694 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Notebook/index.html.
2020-12-16 17:08:28,694 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Notebook/index.html.
2020-12-16 17:08:28,694 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Notebook/index.html.
2020-12-16 17:08:28,695 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Notebook/index.html.
2020-12-16 17:08:28,695 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Notebook/index.html.
2020-12-16 17:08:28,695 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Notebook/index.html.
2020-12-16 17:08:28,695 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Notebook/index.html.
2020-12-16 17:08:28,695 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Notebook/index.html.
2020-12-16 17:08:28,695 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Notebook/index.html.
2020-12-16 17:08:28,696 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Notebook/index.html but was not found.
2020-12-16 17:08:28,696 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Notebook/index.html.
2020-12-16 17:08:28,696 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Notebook/index.html.
2020-12-16 17:08:28,696 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Notebook/index.html.
2020-12-16 17:08:28,696 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Notebook/index.html.
2020-12-16 17:08:28,697 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Notebook/index.html.
2020-12-16 17:08:28,697 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Notebook/index.html.
2020-12-16 17:08:28,697 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Notebook/index.html.
2020-12-16 17:08:28,697 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Notebook/index.html.
2020-12-16 17:08:28,697 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Notebook/index.html.
2020-12-16 17:08:28,697 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Notebook/index.html.
2020-12-16 17:08:28,698 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Notebook/index.html.
2020-12-16 17:08:28,698 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Notebook/index.html.
2020-12-16 17:08:28,698 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Notebook/index.html.
2020-12-16 17:08:28,698 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Notebook/index.html.
2020-12-16 17:08:28,698 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Notebook/index.html.
2020-12-16 17:08:28,698 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Notebook/index.html.
2020-12-16 17:08:28,699 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Notebook/index.html.
2020-12-16 17:08:28,699 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Notebook/index.html.
2020-12-16 17:08:28,699 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Notebook/index.html.
2020-12-16 17:08:28,699 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Notebook/index.html.
2020-12-16 17:08:28,699 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Notebook/index.html.
2020-12-16 17:08:28,699 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Notebook/index.html.
2020-12-16 17:08:28,700 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Notebook/index.html.
2020-12-16 17:08:28,700 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Notebook/index.html.
2020-12-16 17:08:28,700 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Notebook/index.html.
2020-12-16 17:08:28,700 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Notebook/index.html.
2020-12-16 17:08:28,700 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Notebook/index.html.
2020-12-16 17:08:28,700 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Notebook/index.html.
2020-12-16 17:08:28,701 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Notebook/index.html.
2020-12-16 17:08:28,701 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Notebook/index.html.
2020-12-16 17:08:28,701 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Notebook/index.html.
2020-12-16 17:08:28,701 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Notebook/index.html.
2020-12-16 17:08:28,701 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Notebook/index.html.
2020-12-16 17:08:28,701 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Notebook/index.html.
2020-12-16 17:08:28,702 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Notebook/index.html.
2020-12-16 17:08:28,702 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Notebook/index.html.
2020-12-16 17:08:28,702 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Notebook/index.html.
2020-12-16 17:08:28,702 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Notebook/index.html.
2020-12-16 17:08:28,702 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Notebook/index.html.
2020-12-16 17:08:28,702 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Notebook/index.html.
2020-12-16 17:08:28,703 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Notebook/index.html.
2020-12-16 17:08:28,703 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Notebook/index.html.
2020-12-16 17:08:28,703 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Notebook/index.html.
2020-12-16 17:08:28,703 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Notebook/index.html.
2020-12-16 17:08:28,703 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Notebook/index.html but was not found.
2020-12-16 17:08:28,703 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Notebook/index.html.
2020-12-16 17:08:28,743 : INFO : iGEM_URL : ../assets/img/Notebook--header.svg was changed to https://2020.igem.org/wiki/images/5/5d/T--BITSPilani-Goa_India--img--Notebook--header.svg in Notebook/index.html.
2020-12-16 17:08:29,304 : INFO : iGEM_upload_page : Uploaded to https://2020.igem.org/wiki/index.php?title=Team:BITSPilani-Goa_India/Notebook&action=edit.
2020-12-16 17:08:29,340 : INFO : iGEM_URL : ../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Software/index.html.
2020-12-16 17:08:29,341 : INFO : iGEM_URL : ../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Software/index.html.
2020-12-16 17:08:29,343 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Software/index.html.
2020-12-16 17:08:29,343 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Software/index.html.
2020-12-16 17:08:29,343 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Software/index.html.
2020-12-16 17:08:29,344 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Software/index.html.
2020-12-16 17:08:29,344 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Software/index.html.
2020-12-16 17:08:29,344 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Software/index.html.
2020-12-16 17:08:29,344 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Software/index.html.
2020-12-16 17:08:29,344 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Software/index.html.
2020-12-16 17:08:29,344 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Software/index.html.
2020-12-16 17:08:29,345 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Software/index.html.
2020-12-16 17:08:29,345 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Software/index.html.
2020-12-16 17:08:29,345 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Software/index.html.
2020-12-16 17:08:29,345 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Software/index.html.
2020-12-16 17:08:29,345 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Software/index.html.
2020-12-16 17:08:29,345 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Software/index.html.
2020-12-16 17:08:29,346 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Software/index.html.
2020-12-16 17:08:29,346 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Software/index.html.
2020-12-16 17:08:29,346 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Software/index.html.
2020-12-16 17:08:29,346 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Software/index.html.
2020-12-16 17:08:29,346 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Software/index.html.
2020-12-16 17:08:29,346 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Software/index.html but was not found.
2020-12-16 17:08:29,347 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Software/index.html.
2020-12-16 17:08:29,347 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Software/index.html.
2020-12-16 17:08:29,347 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Software/index.html.
2020-12-16 17:08:29,347 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Software/index.html.
2020-12-16 17:08:29,347 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Software/index.html.
2020-12-16 17:08:29,347 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Software/index.html.
2020-12-16 17:08:29,348 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Software/index.html.
2020-12-16 17:08:29,348 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Software/index.html.
2020-12-16 17:08:29,348 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Software/index.html.
2020-12-16 17:08:29,348 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Software/index.html.
2020-12-16 17:08:29,348 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Software/index.html.
2020-12-16 17:08:29,349 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Software/index.html.
2020-12-16 17:08:29,349 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Software/index.html.
2020-12-16 17:08:29,349 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Software/index.html.
2020-12-16 17:08:29,349 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Software/index.html.
2020-12-16 17:08:29,349 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Software/index.html.
2020-12-16 17:08:29,349 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Software/index.html.
2020-12-16 17:08:29,350 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Software/index.html.
2020-12-16 17:08:29,350 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Software/index.html.
2020-12-16 17:08:29,350 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Software/index.html.
2020-12-16 17:08:29,350 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Software/index.html.
2020-12-16 17:08:29,350 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Software/index.html.
2020-12-16 17:08:29,350 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Software/index.html.
2020-12-16 17:08:29,351 : INFO : iGEM_URL : ../assets/docs/igem-wikisync-1.0.0.zip was changed to https://2020.igem.org/wiki/images/0/0c/T--BITSPilani-Goa_India--docs--igem-wikisync-1.0.0.zip in Software/index.html.
2020-12-16 17:08:29,351 : INFO : iGEM_URL : ../assets/docs/wikisync-action-1.0.zip was changed to https://2020.igem.org/wiki/images/a/a1/T--BITSPilani-Goa_India--docs--wikisync-action-1.0.zip in Software/index.html.
2020-12-16 17:08:29,351 : INFO : iGEM_URL : ../assets/docs/igem-wiki-starter-1.0.zip was changed to https://2020.igem.org/wiki/images/b/bd/T--BITSPilani-Goa_India--docs--igem-wiki-starter-1.0.zip in Software/index.html.
2020-12-16 17:08:29,351 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Software/index.html.
2020-12-16 17:08:29,351 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Software/index.html.
2020-12-16 17:08:29,352 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Software/index.html.
2020-12-16 17:08:29,352 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Software/index.html.
2020-12-16 17:08:29,352 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Software/index.html.
2020-12-16 17:08:29,352 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Software/index.html.
2020-12-16 17:08:29,352 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Software/index.html.
2020-12-16 17:08:29,352 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Software/index.html.
2020-12-16 17:08:29,353 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Software/index.html.
2020-12-16 17:08:29,353 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Software/index.html.
2020-12-16 17:08:29,353 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Software/index.html.
2020-12-16 17:08:29,353 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Software/index.html.
2020-12-16 17:08:29,353 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Software/index.html.
2020-12-16 17:08:29,353 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Software/index.html.
2020-12-16 17:08:29,354 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Software/index.html.
2020-12-16 17:08:29,354 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Software/index.html.
2020-12-16 17:08:29,354 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Software/index.html.
2020-12-16 17:08:29,354 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Software/index.html.
2020-12-16 17:08:29,354 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Software/index.html.
2020-12-16 17:08:29,354 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Software/index.html.
2020-12-16 17:08:29,354 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Software/index.html.
2020-12-16 17:08:29,355 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Software/index.html but was not found.
2020-12-16 17:08:29,355 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Software/index.html.
2020-12-16 17:08:29,367 : INFO : iGEM_URL : ../assets/img/Software--WikiSync.svg was changed to https://2020.igem.org/wiki/images/a/a4/T--BITSPilani-Goa_India--img--Software--WikiSync.svg in Software/index.html.
2020-12-16 17:08:29,367 : INFO : iGEM_URL : ../assets/img/Software--WikiStarter.svg was changed to https://2020.igem.org/wiki/images/a/a0/T--BITSPilani-Goa_India--img--Software--WikiStarter.svg in Software/index.html.
2020-12-16 17:08:29,385 : INFO : iGEM_URL : ../assets/img/Software--header.svg was changed to https://2020.igem.org/wiki/images/5/54/T--BITSPilani-Goa_India--img--Software--header.svg in Software/index.html.
2020-12-16 17:08:29,889 : INFO : iGEM_upload_page : Uploaded to https://2020.igem.org/wiki/index.php?title=Team:BITSPilani-Goa_India/Software&action=edit.
2020-12-16 17:08:29,942 : INFO : iGEM_URL : ../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Design/index.html.
2020-12-16 17:08:29,944 : INFO : iGEM_URL : ../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Design/index.html.
2020-12-16 17:08:29,946 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Design/index.html.
2020-12-16 17:08:29,947 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Design/index.html.
2020-12-16 17:08:29,947 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Design/index.html.
2020-12-16 17:08:29,947 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Design/index.html.
2020-12-16 17:08:29,947 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Design/index.html.
2020-12-16 17:08:29,947 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Design/index.html.
2020-12-16 17:08:29,947 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Design/index.html.
2020-12-16 17:08:29,948 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Design/index.html.
2020-12-16 17:08:29,948 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Design/index.html.
2020-12-16 17:08:29,948 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Design/index.html.
2020-12-16 17:08:29,948 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Design/index.html.
2020-12-16 17:08:29,948 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Design/index.html.
2020-12-16 17:08:29,948 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Design/index.html.
2020-12-16 17:08:29,949 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Design/index.html.
2020-12-16 17:08:29,949 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Design/index.html.
2020-12-16 17:08:29,949 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Design/index.html.
2020-12-16 17:08:29,949 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Design/index.html.
2020-12-16 17:08:29,949 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Design/index.html.
2020-12-16 17:08:29,949 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Design/index.html.
2020-12-16 17:08:29,950 : INFO : iGEM_URL : /Awards was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Awards in Design/index.html.
2020-12-16 17:08:29,950 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Design/index.html but was not found.
2020-12-16 17:08:29,950 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Design/index.html.
2020-12-16 17:08:29,950 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Design/index.html.