summaryrefslogtreecommitdiff
path: root/www/py-notebook/PLIST
blob: 02bbc0a55011b812186e67a472029980628cb7f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
@comment $NetBSD: PLIST,v 1.1 2017/04/23 05:23:27 markd Exp $
bin/jupyter-bundlerextension${PYVERSSUFFIX}
bin/jupyter-nbextension${PYVERSSUFFIX}
bin/jupyter-notebook${PYVERSSUFFIX}
bin/jupyter-serverextension${PYVERSSUFFIX}
bin/less-watch${PYVERSSUFFIX}
${PYSITELIB}/${EGG_FILE}
${PYSITELIB}/notebook/__init__.py
${PYSITELIB}/notebook/__init__.pyc
${PYSITELIB}/notebook/__init__.pyo
${PYSITELIB}/notebook/__main__.py
${PYSITELIB}/notebook/__main__.pyc
${PYSITELIB}/notebook/__main__.pyo
${PYSITELIB}/notebook/_sysinfo.py
${PYSITELIB}/notebook/_sysinfo.pyc
${PYSITELIB}/notebook/_sysinfo.pyo
${PYSITELIB}/notebook/_tz.py
${PYSITELIB}/notebook/_tz.pyc
${PYSITELIB}/notebook/_tz.pyo
${PYSITELIB}/notebook/_version.py
${PYSITELIB}/notebook/_version.pyc
${PYSITELIB}/notebook/_version.pyo
${PYSITELIB}/notebook/allow76.py
${PYSITELIB}/notebook/allow76.pyc
${PYSITELIB}/notebook/allow76.pyo
${PYSITELIB}/notebook/auth/__init__.py
${PYSITELIB}/notebook/auth/__init__.pyc
${PYSITELIB}/notebook/auth/__init__.pyo
${PYSITELIB}/notebook/auth/__main__.py
${PYSITELIB}/notebook/auth/__main__.pyc
${PYSITELIB}/notebook/auth/__main__.pyo
${PYSITELIB}/notebook/auth/login.py
${PYSITELIB}/notebook/auth/login.pyc
${PYSITELIB}/notebook/auth/login.pyo
${PYSITELIB}/notebook/auth/logout.py
${PYSITELIB}/notebook/auth/logout.pyc
${PYSITELIB}/notebook/auth/logout.pyo
${PYSITELIB}/notebook/auth/security.py
${PYSITELIB}/notebook/auth/security.pyc
${PYSITELIB}/notebook/auth/security.pyo
${PYSITELIB}/notebook/auth/tests/__init__.py
${PYSITELIB}/notebook/auth/tests/__init__.pyc
${PYSITELIB}/notebook/auth/tests/__init__.pyo
${PYSITELIB}/notebook/auth/tests/test_security.py
${PYSITELIB}/notebook/auth/tests/test_security.pyc
${PYSITELIB}/notebook/auth/tests/test_security.pyo
${PYSITELIB}/notebook/base/__init__.py
${PYSITELIB}/notebook/base/__init__.pyc
${PYSITELIB}/notebook/base/__init__.pyo
${PYSITELIB}/notebook/base/handlers.py
${PYSITELIB}/notebook/base/handlers.pyc
${PYSITELIB}/notebook/base/handlers.pyo
${PYSITELIB}/notebook/base/zmqhandlers.py
${PYSITELIB}/notebook/base/zmqhandlers.pyc
${PYSITELIB}/notebook/base/zmqhandlers.pyo
${PYSITELIB}/notebook/bundler/__init__.py
${PYSITELIB}/notebook/bundler/__init__.pyc
${PYSITELIB}/notebook/bundler/__init__.pyo
${PYSITELIB}/notebook/bundler/__main__.py
${PYSITELIB}/notebook/bundler/__main__.pyc
${PYSITELIB}/notebook/bundler/__main__.pyo
${PYSITELIB}/notebook/bundler/bundlerextensions.py
${PYSITELIB}/notebook/bundler/bundlerextensions.pyc
${PYSITELIB}/notebook/bundler/bundlerextensions.pyo
${PYSITELIB}/notebook/bundler/handlers.py
${PYSITELIB}/notebook/bundler/handlers.pyc
${PYSITELIB}/notebook/bundler/handlers.pyo
${PYSITELIB}/notebook/bundler/tarball_bundler.py
${PYSITELIB}/notebook/bundler/tarball_bundler.pyc
${PYSITELIB}/notebook/bundler/tarball_bundler.pyo
${PYSITELIB}/notebook/bundler/tests/__init__.py
${PYSITELIB}/notebook/bundler/tests/__init__.pyc
${PYSITELIB}/notebook/bundler/tests/__init__.pyo
${PYSITELIB}/notebook/bundler/tests/resources/another_subdir/test_file.txt
${PYSITELIB}/notebook/bundler/tests/resources/empty.ipynb
${PYSITELIB}/notebook/bundler/tests/resources/subdir/subsubdir/.gitkeep
${PYSITELIB}/notebook/bundler/tests/resources/subdir/test_file.txt
${PYSITELIB}/notebook/bundler/tests/test_bundler_api.py
${PYSITELIB}/notebook/bundler/tests/test_bundler_api.pyc
${PYSITELIB}/notebook/bundler/tests/test_bundler_api.pyo
${PYSITELIB}/notebook/bundler/tests/test_bundler_tools.py
${PYSITELIB}/notebook/bundler/tests/test_bundler_tools.pyc
${PYSITELIB}/notebook/bundler/tests/test_bundler_tools.pyo
${PYSITELIB}/notebook/bundler/tests/test_bundlerextension.py
${PYSITELIB}/notebook/bundler/tests/test_bundlerextension.pyc
${PYSITELIB}/notebook/bundler/tests/test_bundlerextension.pyo
${PYSITELIB}/notebook/bundler/tools.py
${PYSITELIB}/notebook/bundler/tools.pyc
${PYSITELIB}/notebook/bundler/tools.pyo
${PYSITELIB}/notebook/bundler/zip_bundler.py
${PYSITELIB}/notebook/bundler/zip_bundler.pyc
${PYSITELIB}/notebook/bundler/zip_bundler.pyo
${PYSITELIB}/notebook/edit/__init__.py
${PYSITELIB}/notebook/edit/__init__.pyc
${PYSITELIB}/notebook/edit/__init__.pyo
${PYSITELIB}/notebook/edit/handlers.py
${PYSITELIB}/notebook/edit/handlers.pyc
${PYSITELIB}/notebook/edit/handlers.pyo
${PYSITELIB}/notebook/extensions.py
${PYSITELIB}/notebook/extensions.pyc
${PYSITELIB}/notebook/extensions.pyo
${PYSITELIB}/notebook/files/__init__.py
${PYSITELIB}/notebook/files/__init__.pyc
${PYSITELIB}/notebook/files/__init__.pyo
${PYSITELIB}/notebook/files/handlers.py
${PYSITELIB}/notebook/files/handlers.pyc
${PYSITELIB}/notebook/files/handlers.pyo
${PYSITELIB}/notebook/jstest.py
${PYSITELIB}/notebook/jstest.pyc
${PYSITELIB}/notebook/jstest.pyo
${PYSITELIB}/notebook/kernelspecs/__init__.py
${PYSITELIB}/notebook/kernelspecs/__init__.pyc
${PYSITELIB}/notebook/kernelspecs/__init__.pyo
${PYSITELIB}/notebook/kernelspecs/handlers.py
${PYSITELIB}/notebook/kernelspecs/handlers.pyc
${PYSITELIB}/notebook/kernelspecs/handlers.pyo
${PYSITELIB}/notebook/log.py
${PYSITELIB}/notebook/log.pyc
${PYSITELIB}/notebook/log.pyo
${PYSITELIB}/notebook/nbconvert/__init__.py
${PYSITELIB}/notebook/nbconvert/__init__.pyc
${PYSITELIB}/notebook/nbconvert/__init__.pyo
${PYSITELIB}/notebook/nbconvert/handlers.py
${PYSITELIB}/notebook/nbconvert/handlers.pyc
${PYSITELIB}/notebook/nbconvert/handlers.pyo
${PYSITELIB}/notebook/nbconvert/tests/__init__.py
${PYSITELIB}/notebook/nbconvert/tests/__init__.pyc
${PYSITELIB}/notebook/nbconvert/tests/__init__.pyo
${PYSITELIB}/notebook/nbconvert/tests/test_nbconvert_handlers.py
${PYSITELIB}/notebook/nbconvert/tests/test_nbconvert_handlers.pyc
${PYSITELIB}/notebook/nbconvert/tests/test_nbconvert_handlers.pyo
${PYSITELIB}/notebook/nbextensions.py
${PYSITELIB}/notebook/nbextensions.pyc
${PYSITELIB}/notebook/nbextensions.pyo
${PYSITELIB}/notebook/notebook/__init__.py
${PYSITELIB}/notebook/notebook/__init__.pyc
${PYSITELIB}/notebook/notebook/__init__.pyo
${PYSITELIB}/notebook/notebook/handlers.py
${PYSITELIB}/notebook/notebook/handlers.pyc
${PYSITELIB}/notebook/notebook/handlers.pyo
${PYSITELIB}/notebook/notebookapp.py
${PYSITELIB}/notebook/notebookapp.pyc
${PYSITELIB}/notebook/notebookapp.pyo
${PYSITELIB}/notebook/serverextensions.py
${PYSITELIB}/notebook/serverextensions.pyc
${PYSITELIB}/notebook/serverextensions.pyo
${PYSITELIB}/notebook/services/__init__.py
${PYSITELIB}/notebook/services/__init__.pyc
${PYSITELIB}/notebook/services/__init__.pyo
${PYSITELIB}/notebook/services/api/__init__.py
${PYSITELIB}/notebook/services/api/__init__.pyc
${PYSITELIB}/notebook/services/api/__init__.pyo
${PYSITELIB}/notebook/services/api/api.yaml
${PYSITELIB}/notebook/services/api/handlers.py
${PYSITELIB}/notebook/services/api/handlers.pyc
${PYSITELIB}/notebook/services/api/handlers.pyo
${PYSITELIB}/notebook/services/api/tests/__init__.py
${PYSITELIB}/notebook/services/api/tests/__init__.pyc
${PYSITELIB}/notebook/services/api/tests/__init__.pyo
${PYSITELIB}/notebook/services/api/tests/test_api.py
${PYSITELIB}/notebook/services/api/tests/test_api.pyc
${PYSITELIB}/notebook/services/api/tests/test_api.pyo
${PYSITELIB}/notebook/services/config/__init__.py
${PYSITELIB}/notebook/services/config/__init__.pyc
${PYSITELIB}/notebook/services/config/__init__.pyo
${PYSITELIB}/notebook/services/config/handlers.py
${PYSITELIB}/notebook/services/config/handlers.pyc
${PYSITELIB}/notebook/services/config/handlers.pyo
${PYSITELIB}/notebook/services/config/manager.py
${PYSITELIB}/notebook/services/config/manager.pyc
${PYSITELIB}/notebook/services/config/manager.pyo
${PYSITELIB}/notebook/services/config/tests/__init__.py
${PYSITELIB}/notebook/services/config/tests/__init__.pyc
${PYSITELIB}/notebook/services/config/tests/__init__.pyo
${PYSITELIB}/notebook/services/config/tests/test_config_api.py
${PYSITELIB}/notebook/services/config/tests/test_config_api.pyc
${PYSITELIB}/notebook/services/config/tests/test_config_api.pyo
${PYSITELIB}/notebook/services/contents/__init__.py
${PYSITELIB}/notebook/services/contents/__init__.pyc
${PYSITELIB}/notebook/services/contents/__init__.pyo
${PYSITELIB}/notebook/services/contents/checkpoints.py
${PYSITELIB}/notebook/services/contents/checkpoints.pyc
${PYSITELIB}/notebook/services/contents/checkpoints.pyo
${PYSITELIB}/notebook/services/contents/filecheckpoints.py
${PYSITELIB}/notebook/services/contents/filecheckpoints.pyc
${PYSITELIB}/notebook/services/contents/filecheckpoints.pyo
${PYSITELIB}/notebook/services/contents/fileio.py
${PYSITELIB}/notebook/services/contents/fileio.pyc
${PYSITELIB}/notebook/services/contents/fileio.pyo
${PYSITELIB}/notebook/services/contents/filemanager.py
${PYSITELIB}/notebook/services/contents/filemanager.pyc
${PYSITELIB}/notebook/services/contents/filemanager.pyo
${PYSITELIB}/notebook/services/contents/handlers.py
${PYSITELIB}/notebook/services/contents/handlers.pyc
${PYSITELIB}/notebook/services/contents/handlers.pyo
${PYSITELIB}/notebook/services/contents/largefilemanager.py
${PYSITELIB}/notebook/services/contents/largefilemanager.pyc
${PYSITELIB}/notebook/services/contents/largefilemanager.pyo
${PYSITELIB}/notebook/services/contents/manager.py
${PYSITELIB}/notebook/services/contents/manager.pyc
${PYSITELIB}/notebook/services/contents/manager.pyo
${PYSITELIB}/notebook/services/contents/tests/__init__.py
${PYSITELIB}/notebook/services/contents/tests/__init__.pyc
${PYSITELIB}/notebook/services/contents/tests/__init__.pyo
${PYSITELIB}/notebook/services/contents/tests/test_contents_api.py
${PYSITELIB}/notebook/services/contents/tests/test_contents_api.pyc
${PYSITELIB}/notebook/services/contents/tests/test_contents_api.pyo
${PYSITELIB}/notebook/services/contents/tests/test_fileio.py
${PYSITELIB}/notebook/services/contents/tests/test_fileio.pyc
${PYSITELIB}/notebook/services/contents/tests/test_fileio.pyo
${PYSITELIB}/notebook/services/contents/tests/test_largefilemanager.py
${PYSITELIB}/notebook/services/contents/tests/test_largefilemanager.pyc
${PYSITELIB}/notebook/services/contents/tests/test_largefilemanager.pyo
${PYSITELIB}/notebook/services/contents/tests/test_manager.py
${PYSITELIB}/notebook/services/contents/tests/test_manager.pyc
${PYSITELIB}/notebook/services/contents/tests/test_manager.pyo
${PYSITELIB}/notebook/services/kernels/__init__.py
${PYSITELIB}/notebook/services/kernels/__init__.pyc
${PYSITELIB}/notebook/services/kernels/__init__.pyo
${PYSITELIB}/notebook/services/kernels/handlers.py
${PYSITELIB}/notebook/services/kernels/handlers.pyc
${PYSITELIB}/notebook/services/kernels/handlers.pyo
${PYSITELIB}/notebook/services/kernels/kernelmanager.py
${PYSITELIB}/notebook/services/kernels/kernelmanager.pyc
${PYSITELIB}/notebook/services/kernels/kernelmanager.pyo
${PYSITELIB}/notebook/services/kernels/tests/__init__.py
${PYSITELIB}/notebook/services/kernels/tests/__init__.pyc
${PYSITELIB}/notebook/services/kernels/tests/__init__.pyo
${PYSITELIB}/notebook/services/kernels/tests/test_kernels_api.py
${PYSITELIB}/notebook/services/kernels/tests/test_kernels_api.pyc
${PYSITELIB}/notebook/services/kernels/tests/test_kernels_api.pyo
${PYSITELIB}/notebook/services/kernelspecs/__init__.py
${PYSITELIB}/notebook/services/kernelspecs/__init__.pyc
${PYSITELIB}/notebook/services/kernelspecs/__init__.pyo
${PYSITELIB}/notebook/services/kernelspecs/handlers.py
${PYSITELIB}/notebook/services/kernelspecs/handlers.pyc
${PYSITELIB}/notebook/services/kernelspecs/handlers.pyo
${PYSITELIB}/notebook/services/kernelspecs/tests/__init__.py
${PYSITELIB}/notebook/services/kernelspecs/tests/__init__.pyc
${PYSITELIB}/notebook/services/kernelspecs/tests/__init__.pyo
${PYSITELIB}/notebook/services/kernelspecs/tests/test_kernelspecs_api.py
${PYSITELIB}/notebook/services/kernelspecs/tests/test_kernelspecs_api.pyc
${PYSITELIB}/notebook/services/kernelspecs/tests/test_kernelspecs_api.pyo
${PYSITELIB}/notebook/services/nbconvert/__init__.py
${PYSITELIB}/notebook/services/nbconvert/__init__.pyc
${PYSITELIB}/notebook/services/nbconvert/__init__.pyo
${PYSITELIB}/notebook/services/nbconvert/handlers.py
${PYSITELIB}/notebook/services/nbconvert/handlers.pyc
${PYSITELIB}/notebook/services/nbconvert/handlers.pyo
${PYSITELIB}/notebook/services/nbconvert/tests/__init__.py
${PYSITELIB}/notebook/services/nbconvert/tests/__init__.pyc
${PYSITELIB}/notebook/services/nbconvert/tests/__init__.pyo
${PYSITELIB}/notebook/services/nbconvert/tests/test_nbconvert_api.py
${PYSITELIB}/notebook/services/nbconvert/tests/test_nbconvert_api.pyc
${PYSITELIB}/notebook/services/nbconvert/tests/test_nbconvert_api.pyo
${PYSITELIB}/notebook/services/security/__init__.py
${PYSITELIB}/notebook/services/security/__init__.pyc
${PYSITELIB}/notebook/services/security/__init__.pyo
${PYSITELIB}/notebook/services/security/handlers.py
${PYSITELIB}/notebook/services/security/handlers.pyc
${PYSITELIB}/notebook/services/security/handlers.pyo
${PYSITELIB}/notebook/services/sessions/__init__.py
${PYSITELIB}/notebook/services/sessions/__init__.pyc
${PYSITELIB}/notebook/services/sessions/__init__.pyo
${PYSITELIB}/notebook/services/sessions/handlers.py
${PYSITELIB}/notebook/services/sessions/handlers.pyc
${PYSITELIB}/notebook/services/sessions/handlers.pyo
${PYSITELIB}/notebook/services/sessions/sessionmanager.py
${PYSITELIB}/notebook/services/sessions/sessionmanager.pyc
${PYSITELIB}/notebook/services/sessions/sessionmanager.pyo
${PYSITELIB}/notebook/services/sessions/tests/__init__.py
${PYSITELIB}/notebook/services/sessions/tests/__init__.pyc
${PYSITELIB}/notebook/services/sessions/tests/__init__.pyo
${PYSITELIB}/notebook/services/sessions/tests/test_sessionmanager.py
${PYSITELIB}/notebook/services/sessions/tests/test_sessionmanager.pyc
${PYSITELIB}/notebook/services/sessions/tests/test_sessionmanager.pyo
${PYSITELIB}/notebook/services/sessions/tests/test_sessions_api.py
${PYSITELIB}/notebook/services/sessions/tests/test_sessions_api.pyc
${PYSITELIB}/notebook/services/sessions/tests/test_sessions_api.pyo
${PYSITELIB}/notebook/static/auth/css/override.css
${PYSITELIB}/notebook/static/auth/js/loginmain.js
${PYSITELIB}/notebook/static/auth/js/loginwidget.js
${PYSITELIB}/notebook/static/auth/js/logoutmain.js
${PYSITELIB}/notebook/static/auth/js/main.js
${PYSITELIB}/notebook/static/auth/js/main.min.js
${PYSITELIB}/notebook/static/auth/js/main.min.js.map
${PYSITELIB}/notebook/static/base/images/favicon-busy.ico
${PYSITELIB}/notebook/static/base/images/favicon.ico
${PYSITELIB}/notebook/static/base/images/logo.png
${PYSITELIB}/notebook/static/base/js/dialog.js
${PYSITELIB}/notebook/static/base/js/events.js
${PYSITELIB}/notebook/static/base/js/keyboard.js
${PYSITELIB}/notebook/static/base/js/namespace.js
${PYSITELIB}/notebook/static/base/js/notificationarea.js
${PYSITELIB}/notebook/static/base/js/notificationwidget.js
${PYSITELIB}/notebook/static/base/js/page.js
${PYSITELIB}/notebook/static/base/js/security.js
${PYSITELIB}/notebook/static/base/js/utils.js
${PYSITELIB}/notebook/static/components/MathJax/MathJax.js
${PYSITELIB}/notebook/static/components/MathJax/config/Safe.js
${PYSITELIB}/notebook/static/components/MathJax/config/TeX-AMS-MML_HTMLorMML-full.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/AssistiveMML.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/CHTML-preview.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/HTML-CSS/handle-floats.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/MatchWebFonts.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/MathEvents.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/MathML/content-mathml.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/MathML/mml3.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/MathZoom.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/Safe.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/AMScd.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/AMSmath.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/AMSsymbols.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/HTML.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/action.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/autobold.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/autoload-all.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/bbox.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/begingroup.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/boldsymbol.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/cancel.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/color.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/enclose.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/extpfeil.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/mathchoice.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/mediawiki-texvc.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/mhchem.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/newcommand.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/noErrors.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/noUndefined.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/unicode.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/TeX/verb.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/asciimath2jax.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/fast-preview.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/jsMath2jax.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/mml2jax.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/tex2jax.js
${PYSITELIB}/notebook/static/components/MathJax/extensions/toMathML.js
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Alphabets-Bold.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Alphabets-BoldItalic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Alphabets-Italic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Alphabets-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Arrows-Bold.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Arrows-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_DoubleStruck-Bold.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_DoubleStruck-BoldItalic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_DoubleStruck-Italic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_DoubleStruck-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Fraktur-Bold.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Fraktur-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Latin-Bold.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Latin-BoldItalic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Latin-Italic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Latin-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Main-Bold.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Main-BoldItalic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Main-Italic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Main-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Marks-Bold.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Marks-BoldItalic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Marks-Italic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Marks-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Misc-Bold.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Misc-BoldItalic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Misc-Italic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Misc-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Monospace-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Normal-Bold.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Normal-BoldItalic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Normal-Italic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Operators-Bold.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Operators-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_SansSerif-Bold.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_SansSerif-BoldItalic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_SansSerif-Italic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_SansSerif-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Script-BoldItalic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Script-Italic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Script-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Shapes-Bold.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Shapes-BoldItalic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Shapes-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Size1-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Size2-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Size3-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Size4-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Size5-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Symbols-Bold.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Symbols-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Variants-Bold.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Variants-BoldItalic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Variants-Italic.woff
${PYSITELIB}/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Variants-Regular.woff
${PYSITELIB}/notebook/static/components/MathJax/jax/input/TeX/config.js
${PYSITELIB}/notebook/static/components/MathJax/jax/input/TeX/jax.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/CommonHTML/autoload/annotation-xml.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/CommonHTML/autoload/maction.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/CommonHTML/autoload/menclose.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/CommonHTML/autoload/mglyph.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/CommonHTML/autoload/mmultiscripts.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/CommonHTML/autoload/ms.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/CommonHTML/autoload/mtable.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/CommonHTML/autoload/multiline.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/CommonHTML/config.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/CommonHTML/jax.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/autoload/annotation-xml.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/autoload/maction.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/autoload/menclose.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/autoload/mglyph.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/autoload/mmultiscripts.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/autoload/ms.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/autoload/mtable.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/autoload/multiline.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/config.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Main/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Main/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Main/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Main/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Monospace/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Normal/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Script/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Script/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Script/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Size1/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Size2/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Size3/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Size4/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Size5/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/fontdata-extra.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/fontdata.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/imageFonts.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/HTML-CSS/jax.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/NativeMML/config.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/NativeMML/jax.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/PlainSource/config.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/PlainSource/jax.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/PreviewHTML/config.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/PreviewHTML/jax.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/autoload/annotation-xml.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/autoload/maction.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/autoload/menclose.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/autoload/mglyph.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/autoload/mmultiscripts.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/autoload/ms.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/autoload/mtable.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/autoload/multiline.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/config.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Alphabets/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Alphabets/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Alphabets/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Alphabets/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Arrows/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Arrows/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Fraktur/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Fraktur/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Latin/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Latin/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Latin/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Latin/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Main/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Main/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Main/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Main/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Marks/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Marks/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Marks/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Marks/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Misc/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Misc/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Misc/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Misc/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Monospace/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Normal/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Normal/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Normal/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Operators/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Operators/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/SansSerif/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/SansSerif/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/SansSerif/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/SansSerif/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Script/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Script/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Script/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Shapes/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Shapes/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Shapes/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Size1/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Size2/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Size3/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Size4/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Size5/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Symbols/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Symbols/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Variants/Bold/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Variants/BoldItalic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Variants/Italic/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Variants/Regular/Main.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/fontdata-extra.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/fontdata.js
${PYSITELIB}/notebook/static/components/MathJax/jax/output/SVG/jax.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ast/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ast/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ast/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ast/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ast/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ast/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ast/ast.js
${PYSITELIB}/notebook/static/components/MathJax/localization/bcc/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/bcc/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/bcc/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/bcc/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/bcc/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/bcc/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/bcc/bcc.js
${PYSITELIB}/notebook/static/components/MathJax/localization/bg/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/bg/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/bg/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/bg/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/bg/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/bg/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/bg/bg.js
${PYSITELIB}/notebook/static/components/MathJax/localization/br/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/br/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/br/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/br/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/br/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/br/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/br/br.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ca/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ca/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ca/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ca/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ca/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ca/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ca/ca.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cdo/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cdo/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cdo/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cdo/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cdo/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cdo/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cdo/cdo.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ce/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ce/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ce/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ce/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ce/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ce/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ce/ce.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cs/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cs/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cs/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cs/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cs/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cs/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cs/cs.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cy/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cy/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cy/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cy/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cy/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cy/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/cy/cy.js
${PYSITELIB}/notebook/static/components/MathJax/localization/da/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/da/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/da/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/da/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/da/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/da/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/da/da.js
${PYSITELIB}/notebook/static/components/MathJax/localization/de/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/de/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/de/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/de/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/de/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/de/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/de/de.js
${PYSITELIB}/notebook/static/components/MathJax/localization/en/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/en/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/en/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/en/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/en/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/en/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/en/en.js
${PYSITELIB}/notebook/static/components/MathJax/localization/eo/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/eo/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/eo/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/eo/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/eo/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/eo/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/eo/eo.js
${PYSITELIB}/notebook/static/components/MathJax/localization/es/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/es/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/es/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/es/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/es/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/es/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/es/es.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fa/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fa/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fa/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fa/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fa/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fa/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fa/fa.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fi/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fi/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fi/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fi/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fi/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fi/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fi/fi.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fr/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fr/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fr/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fr/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fr/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fr/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/fr/fr.js
${PYSITELIB}/notebook/static/components/MathJax/localization/gl/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/gl/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/gl/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/gl/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/gl/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/gl/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/gl/gl.js
${PYSITELIB}/notebook/static/components/MathJax/localization/he/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/he/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/he/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/he/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/he/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/he/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/he/he.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ia/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ia/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ia/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ia/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ia/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ia/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ia/ia.js
${PYSITELIB}/notebook/static/components/MathJax/localization/it/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/it/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/it/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/it/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/it/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/it/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/it/it.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ja/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ja/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ja/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ja/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ja/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ja/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ja/ja.js
${PYSITELIB}/notebook/static/components/MathJax/localization/kn/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/kn/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/kn/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/kn/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/kn/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/kn/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/kn/kn.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ko/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ko/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ko/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ko/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ko/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ko/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ko/ko.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lb/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lb/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lb/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lb/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lb/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lb/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lb/lb.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lki/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lki/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lki/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lki/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lki/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lki/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lki/lki.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lt/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lt/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lt/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lt/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lt/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lt/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/lt/lt.js
${PYSITELIB}/notebook/static/components/MathJax/localization/mk/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/mk/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/mk/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/mk/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/mk/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/mk/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/mk/mk.js
${PYSITELIB}/notebook/static/components/MathJax/localization/nl/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/nl/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/nl/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/nl/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/nl/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/nl/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/nl/nl.js
${PYSITELIB}/notebook/static/components/MathJax/localization/oc/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/oc/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/oc/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/oc/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/oc/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/oc/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/oc/oc.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pl/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pl/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pl/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pl/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pl/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pl/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pl/pl.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pt-br/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pt-br/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pt-br/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pt-br/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pt-br/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pt-br/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pt-br/pt-br.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pt/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pt/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pt/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pt/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pt/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pt/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/pt/pt.js
${PYSITELIB}/notebook/static/components/MathJax/localization/qqq/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/qqq/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/qqq/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/qqq/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/qqq/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/qqq/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/qqq/qqq.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ru/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ru/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ru/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ru/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ru/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ru/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/ru/ru.js
${PYSITELIB}/notebook/static/components/MathJax/localization/scn/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/scn/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/scn/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/scn/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/scn/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/scn/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/scn/scn.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sco/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sco/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sco/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sco/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sco/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sco/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sco/sco.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sl/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sl/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sl/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sl/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sl/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sl/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sl/sl.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sv/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sv/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sv/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sv/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sv/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sv/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/sv/sv.js
${PYSITELIB}/notebook/static/components/MathJax/localization/tr/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/tr/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/tr/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/tr/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/tr/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/tr/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/tr/tr.js
${PYSITELIB}/notebook/static/components/MathJax/localization/uk/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/uk/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/uk/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/uk/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/uk/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/uk/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/uk/uk.js
${PYSITELIB}/notebook/static/components/MathJax/localization/vi/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/vi/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/vi/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/vi/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/vi/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/vi/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/vi/vi.js
${PYSITELIB}/notebook/static/components/MathJax/localization/zh-hans/FontWarnings.js
${PYSITELIB}/notebook/static/components/MathJax/localization/zh-hans/HTML-CSS.js
${PYSITELIB}/notebook/static/components/MathJax/localization/zh-hans/HelpDialog.js
${PYSITELIB}/notebook/static/components/MathJax/localization/zh-hans/MathML.js
${PYSITELIB}/notebook/static/components/MathJax/localization/zh-hans/MathMenu.js
${PYSITELIB}/notebook/static/components/MathJax/localization/zh-hans/TeX.js
${PYSITELIB}/notebook/static/components/MathJax/localization/zh-hans/zh-hans.js
${PYSITELIB}/notebook/static/components/backbone/backbone-min.js
${PYSITELIB}/notebook/static/components/bootstrap-tour/build/css/bootstrap-tour.min.css
${PYSITELIB}/notebook/static/components/bootstrap-tour/build/js/bootstrap-tour.min.js
${PYSITELIB}/notebook/static/components/bootstrap/js/bootstrap.min.js
${PYSITELIB}/notebook/static/components/codemirror/addon/comment/comment.js
${PYSITELIB}/notebook/static/components/codemirror/addon/comment/continuecomment.js
${PYSITELIB}/notebook/static/components/codemirror/addon/dialog/dialog.css
${PYSITELIB}/notebook/static/components/codemirror/addon/dialog/dialog.js
${PYSITELIB}/notebook/static/components/codemirror/addon/display/autorefresh.js
${PYSITELIB}/notebook/static/components/codemirror/addon/display/fullscreen.css
${PYSITELIB}/notebook/static/components/codemirror/addon/display/fullscreen.js
${PYSITELIB}/notebook/static/components/codemirror/addon/display/panel.js
${PYSITELIB}/notebook/static/components/codemirror/addon/display/placeholder.js
${PYSITELIB}/notebook/static/components/codemirror/addon/display/rulers.js
${PYSITELIB}/notebook/static/components/codemirror/addon/edit/closebrackets.js
${PYSITELIB}/notebook/static/components/codemirror/addon/edit/closetag.js
${PYSITELIB}/notebook/static/components/codemirror/addon/edit/continuelist.js
${PYSITELIB}/notebook/static/components/codemirror/addon/edit/matchbrackets.js
${PYSITELIB}/notebook/static/components/codemirror/addon/edit/matchtags.js
${PYSITELIB}/notebook/static/components/codemirror/addon/edit/trailingspace.js
${PYSITELIB}/notebook/static/components/codemirror/addon/fold/brace-fold.js
${PYSITELIB}/notebook/static/components/codemirror/addon/fold/comment-fold.js
${PYSITELIB}/notebook/static/components/codemirror/addon/fold/foldcode.js
${PYSITELIB}/notebook/static/components/codemirror/addon/fold/foldgutter.css
${PYSITELIB}/notebook/static/components/codemirror/addon/fold/foldgutter.js
${PYSITELIB}/notebook/static/components/codemirror/addon/fold/indent-fold.js
${PYSITELIB}/notebook/static/components/codemirror/addon/fold/markdown-fold.js
${PYSITELIB}/notebook/static/components/codemirror/addon/fold/xml-fold.js
${PYSITELIB}/notebook/static/components/codemirror/addon/hint/anyword-hint.js
${PYSITELIB}/notebook/static/components/codemirror/addon/hint/css-hint.js
${PYSITELIB}/notebook/static/components/codemirror/addon/hint/html-hint.js
${PYSITELIB}/notebook/static/components/codemirror/addon/hint/javascript-hint.js
${PYSITELIB}/notebook/static/components/codemirror/addon/hint/show-hint.css
${PYSITELIB}/notebook/static/components/codemirror/addon/hint/show-hint.js
${PYSITELIB}/notebook/static/components/codemirror/addon/hint/sql-hint.js
${PYSITELIB}/notebook/static/components/codemirror/addon/hint/xml-hint.js
${PYSITELIB}/notebook/static/components/codemirror/addon/lint/coffeescript-lint.js
${PYSITELIB}/notebook/static/components/codemirror/addon/lint/css-lint.js
${PYSITELIB}/notebook/static/components/codemirror/addon/lint/html-lint.js
${PYSITELIB}/notebook/static/components/codemirror/addon/lint/javascript-lint.js
${PYSITELIB}/notebook/static/components/codemirror/addon/lint/json-lint.js
${PYSITELIB}/notebook/static/components/codemirror/addon/lint/lint.css
${PYSITELIB}/notebook/static/components/codemirror/addon/lint/lint.js
${PYSITELIB}/notebook/static/components/codemirror/addon/lint/yaml-lint.js
${PYSITELIB}/notebook/static/components/codemirror/addon/merge/merge.css
${PYSITELIB}/notebook/static/components/codemirror/addon/merge/merge.js
${PYSITELIB}/notebook/static/components/codemirror/addon/mode/loadmode.js
${PYSITELIB}/notebook/static/components/codemirror/addon/mode/multiplex.js
${PYSITELIB}/notebook/static/components/codemirror/addon/mode/multiplex_test.js
${PYSITELIB}/notebook/static/components/codemirror/addon/mode/overlay.js
${PYSITELIB}/notebook/static/components/codemirror/addon/mode/simple.js
${PYSITELIB}/notebook/static/components/codemirror/addon/runmode/colorize.js
${PYSITELIB}/notebook/static/components/codemirror/addon/runmode/runmode-standalone.js
${PYSITELIB}/notebook/static/components/codemirror/addon/runmode/runmode.js
${PYSITELIB}/notebook/static/components/codemirror/addon/runmode/runmode.node.js
${PYSITELIB}/notebook/static/components/codemirror/addon/scroll/annotatescrollbar.js
${PYSITELIB}/notebook/static/components/codemirror/addon/scroll/scrollpastend.js
${PYSITELIB}/notebook/static/components/codemirror/addon/scroll/simplescrollbars.css
${PYSITELIB}/notebook/static/components/codemirror/addon/scroll/simplescrollbars.js
${PYSITELIB}/notebook/static/components/codemirror/addon/search/jump-to-line.js
${PYSITELIB}/notebook/static/components/codemirror/addon/search/match-highlighter.js
${PYSITELIB}/notebook/static/components/codemirror/addon/search/matchesonscrollbar.css
${PYSITELIB}/notebook/static/components/codemirror/addon/search/matchesonscrollbar.js
${PYSITELIB}/notebook/static/components/codemirror/addon/search/search.js
${PYSITELIB}/notebook/static/components/codemirror/addon/search/searchcursor.js
${PYSITELIB}/notebook/static/components/codemirror/addon/selection/active-line.js
${PYSITELIB}/notebook/static/components/codemirror/addon/selection/mark-selection.js
${PYSITELIB}/notebook/static/components/codemirror/addon/selection/selection-pointer.js
${PYSITELIB}/notebook/static/components/codemirror/addon/tern/tern.css
${PYSITELIB}/notebook/static/components/codemirror/addon/tern/tern.js
${PYSITELIB}/notebook/static/components/codemirror/addon/tern/worker.js
${PYSITELIB}/notebook/static/components/codemirror/addon/wrap/hardwrap.js
${PYSITELIB}/notebook/static/components/codemirror/keymap/emacs.js
${PYSITELIB}/notebook/static/components/codemirror/keymap/sublime.js
${PYSITELIB}/notebook/static/components/codemirror/keymap/vim.js
${PYSITELIB}/notebook/static/components/codemirror/lib/codemirror.css
${PYSITELIB}/notebook/static/components/codemirror/lib/codemirror.js
${PYSITELIB}/notebook/static/components/codemirror/mode/apl/apl.js
${PYSITELIB}/notebook/static/components/codemirror/mode/asciiarmor/asciiarmor.js
${PYSITELIB}/notebook/static/components/codemirror/mode/asn.1/asn.1.js
${PYSITELIB}/notebook/static/components/codemirror/mode/asterisk/asterisk.js
${PYSITELIB}/notebook/static/components/codemirror/mode/brainfuck/brainfuck.js
${PYSITELIB}/notebook/static/components/codemirror/mode/clike/clike.js
${PYSITELIB}/notebook/static/components/codemirror/mode/clojure/clojure.js
${PYSITELIB}/notebook/static/components/codemirror/mode/cmake/cmake.js
${PYSITELIB}/notebook/static/components/codemirror/mode/cobol/cobol.js
${PYSITELIB}/notebook/static/components/codemirror/mode/coffeescript/coffeescript.js
${PYSITELIB}/notebook/static/components/codemirror/mode/commonlisp/commonlisp.js
${PYSITELIB}/notebook/static/components/codemirror/mode/crystal/crystal.js
${PYSITELIB}/notebook/static/components/codemirror/mode/css/css.js
${PYSITELIB}/notebook/static/components/codemirror/mode/cypher/cypher.js
${PYSITELIB}/notebook/static/components/codemirror/mode/d/d.js
${PYSITELIB}/notebook/static/components/codemirror/mode/dart/dart.js
${PYSITELIB}/notebook/static/components/codemirror/mode/diff/diff.js
${PYSITELIB}/notebook/static/components/codemirror/mode/django/django.js
${PYSITELIB}/notebook/static/components/codemirror/mode/dockerfile/dockerfile.js
${PYSITELIB}/notebook/static/components/codemirror/mode/dtd/dtd.js
${PYSITELIB}/notebook/static/components/codemirror/mode/dylan/dylan.js
${PYSITELIB}/notebook/static/components/codemirror/mode/ebnf/ebnf.js
${PYSITELIB}/notebook/static/components/codemirror/mode/ecl/ecl.js
${PYSITELIB}/notebook/static/components/codemirror/mode/eiffel/eiffel.js
${PYSITELIB}/notebook/static/components/codemirror/mode/elm/elm.js
${PYSITELIB}/notebook/static/components/codemirror/mode/erlang/erlang.js
${PYSITELIB}/notebook/static/components/codemirror/mode/factor/factor.js
${PYSITELIB}/notebook/static/components/codemirror/mode/fcl/fcl.js
${PYSITELIB}/notebook/static/components/codemirror/mode/forth/forth.js
${PYSITELIB}/notebook/static/components/codemirror/mode/fortran/fortran.js
${PYSITELIB}/notebook/static/components/codemirror/mode/gas/gas.js
${PYSITELIB}/notebook/static/components/codemirror/mode/gfm/gfm.js
${PYSITELIB}/notebook/static/components/codemirror/mode/gherkin/gherkin.js
${PYSITELIB}/notebook/static/components/codemirror/mode/go/go.js
${PYSITELIB}/notebook/static/components/codemirror/mode/groovy/groovy.js
${PYSITELIB}/notebook/static/components/codemirror/mode/haml/haml.js
${PYSITELIB}/notebook/static/components/codemirror/mode/handlebars/handlebars.js
${PYSITELIB}/notebook/static/components/codemirror/mode/haskell-literate/haskell-literate.js
${PYSITELIB}/notebook/static/components/codemirror/mode/haskell/haskell.js
${PYSITELIB}/notebook/static/components/codemirror/mode/haxe/haxe.js
${PYSITELIB}/notebook/static/components/codemirror/mode/htmlembedded/htmlembedded.js
${PYSITELIB}/notebook/static/components/codemirror/mode/htmlmixed/htmlmixed.js
${PYSITELIB}/notebook/static/components/codemirror/mode/http/http.js
${PYSITELIB}/notebook/static/components/codemirror/mode/idl/idl.js
${PYSITELIB}/notebook/static/components/codemirror/mode/javascript/javascript.js
${PYSITELIB}/notebook/static/components/codemirror/mode/jinja2/jinja2.js
${PYSITELIB}/notebook/static/components/codemirror/mode/jsx/jsx.js
${PYSITELIB}/notebook/static/components/codemirror/mode/julia/julia.js
${PYSITELIB}/notebook/static/components/codemirror/mode/livescript/livescript.js
${PYSITELIB}/notebook/static/components/codemirror/mode/lua/lua.js
${PYSITELIB}/notebook/static/components/codemirror/mode/markdown/markdown.js
${PYSITELIB}/notebook/static/components/codemirror/mode/mathematica/mathematica.js
${PYSITELIB}/notebook/static/components/codemirror/mode/mbox/mbox.js
${PYSITELIB}/notebook/static/components/codemirror/mode/meta.js
${PYSITELIB}/notebook/static/components/codemirror/mode/mirc/mirc.js
${PYSITELIB}/notebook/static/components/codemirror/mode/mllike/mllike.js
${PYSITELIB}/notebook/static/components/codemirror/mode/modelica/modelica.js
${PYSITELIB}/notebook/static/components/codemirror/mode/mscgen/mscgen.js
${PYSITELIB}/notebook/static/components/codemirror/mode/mumps/mumps.js
${PYSITELIB}/notebook/static/components/codemirror/mode/nginx/nginx.js
${PYSITELIB}/notebook/static/components/codemirror/mode/nsis/nsis.js
${PYSITELIB}/notebook/static/components/codemirror/mode/ntriples/ntriples.js
${PYSITELIB}/notebook/static/components/codemirror/mode/octave/octave.js
${PYSITELIB}/notebook/static/components/codemirror/mode/oz/oz.js
${PYSITELIB}/notebook/static/components/codemirror/mode/pascal/pascal.js
${PYSITELIB}/notebook/static/components/codemirror/mode/pegjs/pegjs.js
${PYSITELIB}/notebook/static/components/codemirror/mode/perl/perl.js
${PYSITELIB}/notebook/static/components/codemirror/mode/php/php.js
${PYSITELIB}/notebook/static/components/codemirror/mode/pig/pig.js
${PYSITELIB}/notebook/static/components/codemirror/mode/powershell/powershell.js
${PYSITELIB}/notebook/static/components/codemirror/mode/properties/properties.js
${PYSITELIB}/notebook/static/components/codemirror/mode/protobuf/protobuf.js
${PYSITELIB}/notebook/static/components/codemirror/mode/pug/pug.js
${PYSITELIB}/notebook/static/components/codemirror/mode/puppet/puppet.js
${PYSITELIB}/notebook/static/components/codemirror/mode/python/python.js
${PYSITELIB}/notebook/static/components/codemirror/mode/q/q.js
${PYSITELIB}/notebook/static/components/codemirror/mode/r/r.js
${PYSITELIB}/notebook/static/components/codemirror/mode/rpm/rpm.js
${PYSITELIB}/notebook/static/components/codemirror/mode/rst/rst.js
${PYSITELIB}/notebook/static/components/codemirror/mode/ruby/ruby.js
${PYSITELIB}/notebook/static/components/codemirror/mode/rust/rust.js
${PYSITELIB}/notebook/static/components/codemirror/mode/sas/sas.js
${PYSITELIB}/notebook/static/components/codemirror/mode/sass/sass.js
${PYSITELIB}/notebook/static/components/codemirror/mode/scheme/scheme.js
${PYSITELIB}/notebook/static/components/codemirror/mode/shell/shell.js
${PYSITELIB}/notebook/static/components/codemirror/mode/sieve/sieve.js
${PYSITELIB}/notebook/static/components/codemirror/mode/slim/slim.js
${PYSITELIB}/notebook/static/components/codemirror/mode/smalltalk/smalltalk.js
${PYSITELIB}/notebook/static/components/codemirror/mode/smarty/smarty.js
${PYSITELIB}/notebook/static/components/codemirror/mode/solr/solr.js
${PYSITELIB}/notebook/static/components/codemirror/mode/soy/soy.js
${PYSITELIB}/notebook/static/components/codemirror/mode/sparql/sparql.js
${PYSITELIB}/notebook/static/components/codemirror/mode/spreadsheet/spreadsheet.js
${PYSITELIB}/notebook/static/components/codemirror/mode/sql/sql.js
${PYSITELIB}/notebook/static/components/codemirror/mode/stex/stex.js
${PYSITELIB}/notebook/static/components/codemirror/mode/stylus/stylus.js
${PYSITELIB}/notebook/static/components/codemirror/mode/swift/swift.js
${PYSITELIB}/notebook/static/components/codemirror/mode/tcl/tcl.js
${PYSITELIB}/notebook/static/components/codemirror/mode/textile/textile.js
${PYSITELIB}/notebook/static/components/codemirror/mode/tiddlywiki/tiddlywiki.css
${PYSITELIB}/notebook/static/components/codemirror/mode/tiddlywiki/tiddlywiki.js
${PYSITELIB}/notebook/static/components/codemirror/mode/tiki/tiki.css
${PYSITELIB}/notebook/static/components/codemirror/mode/tiki/tiki.js
${PYSITELIB}/notebook/static/components/codemirror/mode/toml/toml.js
${PYSITELIB}/notebook/static/components/codemirror/mode/tornado/tornado.js
${PYSITELIB}/notebook/static/components/codemirror/mode/troff/troff.js
${PYSITELIB}/notebook/static/components/codemirror/mode/ttcn-cfg/ttcn-cfg.js
${PYSITELIB}/notebook/static/components/codemirror/mode/ttcn/ttcn.js
${PYSITELIB}/notebook/static/components/codemirror/mode/turtle/turtle.js
${PYSITELIB}/notebook/static/components/codemirror/mode/twig/twig.js
${PYSITELIB}/notebook/static/components/codemirror/mode/vb/vb.js
${PYSITELIB}/notebook/static/components/codemirror/mode/vbscript/vbscript.js
${PYSITELIB}/notebook/static/components/codemirror/mode/velocity/velocity.js
${PYSITELIB}/notebook/static/components/codemirror/mode/verilog/verilog.js
${PYSITELIB}/notebook/static/components/codemirror/mode/vhdl/vhdl.js
${PYSITELIB}/notebook/static/components/codemirror/mode/vue/vue.js
${PYSITELIB}/notebook/static/components/codemirror/mode/webidl/webidl.js
${PYSITELIB}/notebook/static/components/codemirror/mode/xml/xml.js
${PYSITELIB}/notebook/static/components/codemirror/mode/xquery/xquery.js
${PYSITELIB}/notebook/static/components/codemirror/mode/yacas/yacas.js
${PYSITELIB}/notebook/static/components/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js
${PYSITELIB}/notebook/static/components/codemirror/mode/yaml/yaml.js
${PYSITELIB}/notebook/static/components/codemirror/mode/z80/z80.js
${PYSITELIB}/notebook/static/components/codemirror/rollup.config.js
${PYSITELIB}/notebook/static/components/codemirror/src/codemirror.js
${PYSITELIB}/notebook/static/components/codemirror/src/display/Display.js
${PYSITELIB}/notebook/static/components/codemirror/src/display/focus.js
${PYSITELIB}/notebook/static/components/codemirror/src/display/gutters.js
${PYSITELIB}/notebook/static/components/codemirror/src/display/highlight_worker.js
${PYSITELIB}/notebook/static/components/codemirror/src/display/line_numbers.js
${PYSITELIB}/notebook/static/components/codemirror/src/display/mode_state.js
${PYSITELIB}/notebook/static/components/codemirror/src/display/operations.js
${PYSITELIB}/notebook/static/components/codemirror/src/display/scroll_events.js
${PYSITELIB}/notebook/static/components/codemirror/src/display/scrollbars.js
${PYSITELIB}/notebook/static/components/codemirror/src/display/scrolling.js
${PYSITELIB}/notebook/static/components/codemirror/src/display/selection.js
${PYSITELIB}/notebook/static/components/codemirror/src/display/update_display.js
${PYSITELIB}/notebook/static/components/codemirror/src/display/update_line.js
${PYSITELIB}/notebook/static/components/codemirror/src/display/update_lines.js
${PYSITELIB}/notebook/static/components/codemirror/src/display/view_tracking.js
${PYSITELIB}/notebook/static/components/codemirror/src/edit/CodeMirror.js
${PYSITELIB}/notebook/static/components/codemirror/src/edit/commands.js
${PYSITELIB}/notebook/static/components/codemirror/src/edit/deleteNearSelection.js
${PYSITELIB}/notebook/static/components/codemirror/src/edit/drop_events.js
${PYSITELIB}/notebook/static/components/codemirror/src/edit/fromTextArea.js
${PYSITELIB}/notebook/static/components/codemirror/src/edit/global_events.js
${PYSITELIB}/notebook/static/components/codemirror/src/edit/key_events.js
${PYSITELIB}/notebook/static/components/codemirror/src/edit/legacy.js
${PYSITELIB}/notebook/static/components/codemirror/src/edit/main.js
${PYSITELIB}/notebook/static/components/codemirror/src/edit/methods.js
${PYSITELIB}/notebook/static/components/codemirror/src/edit/mouse_events.js
${PYSITELIB}/notebook/static/components/codemirror/src/edit/options.js
${PYSITELIB}/notebook/static/components/codemirror/src/edit/utils.js
${PYSITELIB}/notebook/static/components/codemirror/src/input/ContentEditableInput.js
${PYSITELIB}/notebook/static/components/codemirror/src/input/TextareaInput.js
${PYSITELIB}/notebook/static/components/codemirror/src/input/indent.js
${PYSITELIB}/notebook/static/components/codemirror/src/input/input.js
${PYSITELIB}/notebook/static/components/codemirror/src/input/keymap.js
${PYSITELIB}/notebook/static/components/codemirror/src/input/keynames.js
${PYSITELIB}/notebook/static/components/codemirror/src/line/highlight.js
${PYSITELIB}/notebook/static/components/codemirror/src/line/line_data.js
${PYSITELIB}/notebook/static/components/codemirror/src/line/pos.js
${PYSITELIB}/notebook/static/components/codemirror/src/line/saw_special_spans.js
${PYSITELIB}/notebook/static/components/codemirror/src/line/spans.js
${PYSITELIB}/notebook/static/components/codemirror/src/line/utils_line.js
${PYSITELIB}/notebook/static/components/codemirror/src/measurement/position_measurement.js
${PYSITELIB}/notebook/static/components/codemirror/src/measurement/widgets.js
${PYSITELIB}/notebook/static/components/codemirror/src/model/Doc.js
${PYSITELIB}/notebook/static/components/codemirror/src/model/change_measurement.js
${PYSITELIB}/notebook/static/components/codemirror/src/model/changes.js
${PYSITELIB}/notebook/static/components/codemirror/src/model/chunk.js
${PYSITELIB}/notebook/static/components/codemirror/src/model/document_data.js
${PYSITELIB}/notebook/static/components/codemirror/src/model/history.js
${PYSITELIB}/notebook/static/components/codemirror/src/model/line_widget.js
${PYSITELIB}/notebook/static/components/codemirror/src/model/mark_text.js
${PYSITELIB}/notebook/static/components/codemirror/src/model/selection.js
${PYSITELIB}/notebook/static/components/codemirror/src/model/selection_updates.js
${PYSITELIB}/notebook/static/components/codemirror/src/modes.js
${PYSITELIB}/notebook/static/components/codemirror/src/util/StringStream.js
${PYSITELIB}/notebook/static/components/codemirror/src/util/bidi.js
${PYSITELIB}/notebook/static/components/codemirror/src/util/browser.js
${PYSITELIB}/notebook/static/components/codemirror/src/util/dom.js
${PYSITELIB}/notebook/static/components/codemirror/src/util/event.js
${PYSITELIB}/notebook/static/components/codemirror/src/util/feature_detection.js
${PYSITELIB}/notebook/static/components/codemirror/src/util/misc.js
${PYSITELIB}/notebook/static/components/codemirror/src/util/operation_group.js
${PYSITELIB}/notebook/static/components/codemirror/theme/3024-day.css
${PYSITELIB}/notebook/static/components/codemirror/theme/3024-night.css
${PYSITELIB}/notebook/static/components/codemirror/theme/abcdef.css
${PYSITELIB}/notebook/static/components/codemirror/theme/ambiance-mobile.css
${PYSITELIB}/notebook/static/components/codemirror/theme/ambiance.css
${PYSITELIB}/notebook/static/components/codemirror/theme/base16-dark.css
${PYSITELIB}/notebook/static/components/codemirror/theme/base16-light.css
${PYSITELIB}/notebook/static/components/codemirror/theme/bespin.css
${PYSITELIB}/notebook/static/components/codemirror/theme/blackboard.css
${PYSITELIB}/notebook/static/components/codemirror/theme/cobalt.css
${PYSITELIB}/notebook/static/components/codemirror/theme/colorforth.css
${PYSITELIB}/notebook/static/components/codemirror/theme/dracula.css
${PYSITELIB}/notebook/static/components/codemirror/theme/duotone-dark.css
${PYSITELIB}/notebook/static/components/codemirror/theme/duotone-light.css
${PYSITELIB}/notebook/static/components/codemirror/theme/eclipse.css
${PYSITELIB}/notebook/static/components/codemirror/theme/elegant.css
${PYSITELIB}/notebook/static/components/codemirror/theme/erlang-dark.css
${PYSITELIB}/notebook/static/components/codemirror/theme/hopscotch.css
${PYSITELIB}/notebook/static/components/codemirror/theme/icecoder.css
${PYSITELIB}/notebook/static/components/codemirror/theme/isotope.css
${PYSITELIB}/notebook/static/components/codemirror/theme/lesser-dark.css
${PYSITELIB}/notebook/static/components/codemirror/theme/liquibyte.css
${PYSITELIB}/notebook/static/components/codemirror/theme/material.css
${PYSITELIB}/notebook/static/components/codemirror/theme/mbo.css
${PYSITELIB}/notebook/static/components/codemirror/theme/mdn-like.css
${PYSITELIB}/notebook/static/components/codemirror/theme/midnight.css
${PYSITELIB}/notebook/static/components/codemirror/theme/monokai.css
${PYSITELIB}/notebook/static/components/codemirror/theme/neat.css
${PYSITELIB}/notebook/static/components/codemirror/theme/neo.css
${PYSITELIB}/notebook/static/components/codemirror/theme/night.css
${PYSITELIB}/notebook/static/components/codemirror/theme/panda-syntax.css
${PYSITELIB}/notebook/static/components/codemirror/theme/paraiso-dark.css
${PYSITELIB}/notebook/static/components/codemirror/theme/paraiso-light.css
${PYSITELIB}/notebook/static/components/codemirror/theme/pastel-on-dark.css
${PYSITELIB}/notebook/static/components/codemirror/theme/railscasts.css
${PYSITELIB}/notebook/static/components/codemirror/theme/rubyblue.css
${PYSITELIB}/notebook/static/components/codemirror/theme/seti.css
${PYSITELIB}/notebook/static/components/codemirror/theme/solarized.css
${PYSITELIB}/notebook/static/components/codemirror/theme/the-matrix.css
${PYSITELIB}/notebook/static/components/codemirror/theme/tomorrow-night-bright.css
${PYSITELIB}/notebook/static/components/codemirror/theme/tomorrow-night-eighties.css
${PYSITELIB}/notebook/static/components/codemirror/theme/ttcn.css
${PYSITELIB}/notebook/static/components/codemirror/theme/twilight.css
${PYSITELIB}/notebook/static/components/codemirror/theme/vibrant-ink.css
${PYSITELIB}/notebook/static/components/codemirror/theme/xq-dark.css
${PYSITELIB}/notebook/static/components/codemirror/theme/xq-light.css
${PYSITELIB}/notebook/static/components/codemirror/theme/yeti.css
${PYSITELIB}/notebook/static/components/codemirror/theme/zenburn.css
${PYSITELIB}/notebook/static/components/es6-promise/promise.js
${PYSITELIB}/notebook/static/components/es6-promise/promise.min.js
${PYSITELIB}/notebook/static/components/font-awesome/css/font-awesome.css
${PYSITELIB}/notebook/static/components/font-awesome/css/font-awesome.min.css
${PYSITELIB}/notebook/static/components/font-awesome/fonts/FontAwesome.otf
${PYSITELIB}/notebook/static/components/font-awesome/fonts/fontawesome-webfont.eot
${PYSITELIB}/notebook/static/components/font-awesome/fonts/fontawesome-webfont.svg
${PYSITELIB}/notebook/static/components/font-awesome/fonts/fontawesome-webfont.ttf
${PYSITELIB}/notebook/static/components/font-awesome/fonts/fontawesome-webfont.woff
${PYSITELIB}/notebook/static/components/google-caja/html-css-sanitizer-minified.js
${PYSITELIB}/notebook/static/components/jquery-typeahead/dist/jquery.typeahead.min.css
${PYSITELIB}/notebook/static/components/jquery-typeahead/dist/jquery.typeahead.min.js
${PYSITELIB}/notebook/static/components/jquery-ui/themes/smoothness/images/animated-overlay.gif
${PYSITELIB}/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
${PYSITELIB}/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
${PYSITELIB}/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
${PYSITELIB}/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
${PYSITELIB}/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png
${PYSITELIB}/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
${PYSITELIB}/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
${PYSITELIB}/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
${PYSITELIB}/notebook/static/components/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png
${PYSITELIB}/notebook/static/components/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png
${PYSITELIB}/notebook/static/components/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png
${PYSITELIB}/notebook/static/components/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png
${PYSITELIB}/notebook/static/components/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png
${PYSITELIB}/notebook/static/components/jquery-ui/themes/smoothness/jquery-ui.min.css
${PYSITELIB}/notebook/static/components/jquery-ui/ui/minified/jquery-ui.min.js
${PYSITELIB}/notebook/static/components/jquery/jquery.min.js
${PYSITELIB}/notebook/static/components/marked/lib/marked.js
${PYSITELIB}/notebook/static/components/moment/min/moment.min.js
${PYSITELIB}/notebook/static/components/moment/moment.js
${PYSITELIB}/notebook/static/components/preact-compat/index.js
${PYSITELIB}/notebook/static/components/preact/index.js
${PYSITELIB}/notebook/static/components/proptypes/index.js
${PYSITELIB}/notebook/static/components/requirejs/require.js
${PYSITELIB}/notebook/static/components/text-encoding/lib/encoding.js
${PYSITELIB}/notebook/static/components/underscore/underscore-min.js
${PYSITELIB}/notebook/static/components/xterm.js/dist/xterm.css
${PYSITELIB}/notebook/static/components/xterm.js/dist/xterm.js
${PYSITELIB}/notebook/static/custom/custom.css
${PYSITELIB}/notebook/static/custom/custom.js
${PYSITELIB}/notebook/static/edit/js/editor.js
${PYSITELIB}/notebook/static/edit/js/main.js
${PYSITELIB}/notebook/static/edit/js/main.min.js
${PYSITELIB}/notebook/static/edit/js/main.min.js.map
${PYSITELIB}/notebook/static/edit/js/menubar.js
${PYSITELIB}/notebook/static/edit/js/notificationarea.js
${PYSITELIB}/notebook/static/edit/js/savewidget.js
${PYSITELIB}/notebook/static/notebook/css/override.css
${PYSITELIB}/notebook/static/notebook/js/about.js
${PYSITELIB}/notebook/static/notebook/js/actions.js
${PYSITELIB}/notebook/static/notebook/js/cell.js
${PYSITELIB}/notebook/static/notebook/js/celltoolbar.js
${PYSITELIB}/notebook/static/notebook/js/celltoolbarpresets/attachments.js
${PYSITELIB}/notebook/static/notebook/js/celltoolbarpresets/default.js
${PYSITELIB}/notebook/static/notebook/js/celltoolbarpresets/example.js
${PYSITELIB}/notebook/static/notebook/js/celltoolbarpresets/rawcell.js
${PYSITELIB}/notebook/static/notebook/js/celltoolbarpresets/slideshow.js
${PYSITELIB}/notebook/static/notebook/js/celltoolbarpresets/tags.js
${PYSITELIB}/notebook/static/notebook/js/clipboard.js
${PYSITELIB}/notebook/static/notebook/js/codecell.js
${PYSITELIB}/notebook/static/notebook/js/codemirror-ipython.js
${PYSITELIB}/notebook/static/notebook/js/codemirror-ipythongfm.js
${PYSITELIB}/notebook/static/notebook/js/commandpalette.js
${PYSITELIB}/notebook/static/notebook/js/completer.js
${PYSITELIB}/notebook/static/notebook/js/contexthint.js
${PYSITELIB}/notebook/static/notebook/js/kernelselector.js
${PYSITELIB}/notebook/static/notebook/js/keyboardmanager.js
${PYSITELIB}/notebook/static/notebook/js/main.js
${PYSITELIB}/notebook/static/notebook/js/main.min.js
${PYSITELIB}/notebook/static/notebook/js/main.min.js.map
${PYSITELIB}/notebook/static/notebook/js/maintoolbar.js
${PYSITELIB}/notebook/static/notebook/js/mathjaxutils.js
${PYSITELIB}/notebook/static/notebook/js/menubar.js
${PYSITELIB}/notebook/static/notebook/js/notebook.js
${PYSITELIB}/notebook/static/notebook/js/notificationarea.js
${PYSITELIB}/notebook/static/notebook/js/outputarea.js
${PYSITELIB}/notebook/static/notebook/js/pager.js
${PYSITELIB}/notebook/static/notebook/js/quickhelp.js
${PYSITELIB}/notebook/static/notebook/js/savewidget.js
${PYSITELIB}/notebook/static/notebook/js/scrollmanager.js
${PYSITELIB}/notebook/static/notebook/js/searchandreplace.js
${PYSITELIB}/notebook/static/notebook/js/shortcuteditor.js
${PYSITELIB}/notebook/static/notebook/js/textcell.js
${PYSITELIB}/notebook/static/notebook/js/toolbar.js
${PYSITELIB}/notebook/static/notebook/js/tooltip.js
${PYSITELIB}/notebook/static/notebook/js/tour.js
${PYSITELIB}/notebook/static/services/config.js
${PYSITELIB}/notebook/static/services/contents.js
${PYSITELIB}/notebook/static/services/kernels/comm.js
${PYSITELIB}/notebook/static/services/kernels/kernel.js
${PYSITELIB}/notebook/static/services/kernels/serialize.js
${PYSITELIB}/notebook/static/services/sessions/session.js
${PYSITELIB}/notebook/static/style/ipython.less
${PYSITELIB}/notebook/static/style/ipython.min.css
${PYSITELIB}/notebook/static/style/ipython.min.css.map
${PYSITELIB}/notebook/static/style/style.less
${PYSITELIB}/notebook/static/style/style.min.css
${PYSITELIB}/notebook/static/style/style.min.css.map
${PYSITELIB}/notebook/static/terminal/css/override.css
${PYSITELIB}/notebook/static/terminal/js/main.js
${PYSITELIB}/notebook/static/terminal/js/main.min.js
${PYSITELIB}/notebook/static/terminal/js/main.min.js.map
${PYSITELIB}/notebook/static/terminal/js/terminado.js
${PYSITELIB}/notebook/static/tree/js/kernellist.js
${PYSITELIB}/notebook/static/tree/js/main.js
${PYSITELIB}/notebook/static/tree/js/main.min.js
${PYSITELIB}/notebook/static/tree/js/main.min.js.map
${PYSITELIB}/notebook/static/tree/js/newnotebook.js
${PYSITELIB}/notebook/static/tree/js/notebooklist.js
${PYSITELIB}/notebook/static/tree/js/sessionlist.js
${PYSITELIB}/notebook/static/tree/js/terminallist.js
${PYSITELIB}/notebook/templates/404.html
${PYSITELIB}/notebook/templates/edit.html
${PYSITELIB}/notebook/templates/error.html
${PYSITELIB}/notebook/templates/login.html
${PYSITELIB}/notebook/templates/logout.html
${PYSITELIB}/notebook/templates/notebook.html
${PYSITELIB}/notebook/templates/page.html
${PYSITELIB}/notebook/templates/terminal.html
${PYSITELIB}/notebook/templates/tree.html
${PYSITELIB}/notebook/templates/view.html
${PYSITELIB}/notebook/terminal/__init__.py
${PYSITELIB}/notebook/terminal/__init__.pyc
${PYSITELIB}/notebook/terminal/__init__.pyo
${PYSITELIB}/notebook/terminal/api_handlers.py
${PYSITELIB}/notebook/terminal/api_handlers.pyc
${PYSITELIB}/notebook/terminal/api_handlers.pyo
${PYSITELIB}/notebook/terminal/handlers.py
${PYSITELIB}/notebook/terminal/handlers.pyc
${PYSITELIB}/notebook/terminal/handlers.pyo
${PYSITELIB}/notebook/tests/__init__.py
${PYSITELIB}/notebook/tests/__init__.pyc
${PYSITELIB}/notebook/tests/__init__.pyo
${PYSITELIB}/notebook/tests/base/highlight.js
${PYSITELIB}/notebook/tests/base/keyboard.js
${PYSITELIB}/notebook/tests/base/misc.js
${PYSITELIB}/notebook/tests/base/security.js
${PYSITELIB}/notebook/tests/base/utils.js
${PYSITELIB}/notebook/tests/launchnotebook.py
${PYSITELIB}/notebook/tests/launchnotebook.pyc
${PYSITELIB}/notebook/tests/launchnotebook.pyo
${PYSITELIB}/notebook/tests/mockextension/index.js
${PYSITELIB}/notebook/tests/notebook/attachments.js
${PYSITELIB}/notebook/tests/notebook/buffering.js
${PYSITELIB}/notebook/tests/notebook/clipboard_multiselect.js
${PYSITELIB}/notebook/tests/notebook/deletecell.js
${PYSITELIB}/notebook/tests/notebook/display_id.js
${PYSITELIB}/notebook/tests/notebook/display_image.js
${PYSITELIB}/notebook/tests/notebook/dualmode.js
${PYSITELIB}/notebook/tests/notebook/dualmode_arrows.js
${PYSITELIB}/notebook/tests/notebook/dualmode_cellinsert.js
${PYSITELIB}/notebook/tests/notebook/dualmode_cellmode.js
${PYSITELIB}/notebook/tests/notebook/dualmode_clipboard.js
${PYSITELIB}/notebook/tests/notebook/dualmode_execute.js
${PYSITELIB}/notebook/tests/notebook/dualmode_markdown.js
${PYSITELIB}/notebook/tests/notebook/dualmode_merge.js
${PYSITELIB}/notebook/tests/notebook/empty_arrow_keys.js
${PYSITELIB}/notebook/tests/notebook/execute_code.js
${PYSITELIB}/notebook/tests/notebook/execute_selected_cells.js
${PYSITELIB}/notebook/tests/notebook/inject_js.js
${PYSITELIB}/notebook/tests/notebook/interrupt.js
${PYSITELIB}/notebook/tests/notebook/isolated_svg.js
${PYSITELIB}/notebook/tests/notebook/kernel_menu.js
${PYSITELIB}/notebook/tests/notebook/markdown.js
${PYSITELIB}/notebook/tests/notebook/merge_cells_api.js
${PYSITELIB}/notebook/tests/notebook/move_multiselection.js
${PYSITELIB}/notebook/tests/notebook/multiselect.js
${PYSITELIB}/notebook/tests/notebook/multiselect_toggle.js
${PYSITELIB}/notebook/tests/notebook/notifications.js
${PYSITELIB}/notebook/tests/notebook/output.js
${PYSITELIB}/notebook/tests/notebook/prompt_numbers.js
${PYSITELIB}/notebook/tests/notebook/roundtrip.js
${PYSITELIB}/notebook/tests/notebook/safe_append_output.js
${PYSITELIB}/notebook/tests/notebook/save.js
${PYSITELIB}/notebook/tests/notebook/shutdown.js
${PYSITELIB}/notebook/tests/notebook/tags.js
${PYSITELIB}/notebook/tests/notebook/undelete.js
${PYSITELIB}/notebook/tests/services/kernel.js
${PYSITELIB}/notebook/tests/services/serialize.js
${PYSITELIB}/notebook/tests/services/session.js
${PYSITELIB}/notebook/tests/test_files.py
${PYSITELIB}/notebook/tests/test_files.pyc
${PYSITELIB}/notebook/tests/test_files.pyo
${PYSITELIB}/notebook/tests/test_nbextensions.py
${PYSITELIB}/notebook/tests/test_nbextensions.pyc
${PYSITELIB}/notebook/tests/test_nbextensions.pyo
${PYSITELIB}/notebook/tests/test_notebookapp.py
${PYSITELIB}/notebook/tests/test_notebookapp.pyc
${PYSITELIB}/notebook/tests/test_notebookapp.pyo
${PYSITELIB}/notebook/tests/test_paths.py
${PYSITELIB}/notebook/tests/test_paths.pyc
${PYSITELIB}/notebook/tests/test_paths.pyo
${PYSITELIB}/notebook/tests/test_serialize.py
${PYSITELIB}/notebook/tests/test_serialize.pyc
${PYSITELIB}/notebook/tests/test_serialize.pyo
${PYSITELIB}/notebook/tests/test_serverextensions.py
${PYSITELIB}/notebook/tests/test_serverextensions.pyc
${PYSITELIB}/notebook/tests/test_serverextensions.pyo
${PYSITELIB}/notebook/tests/test_utils.py
${PYSITELIB}/notebook/tests/test_utils.pyc
${PYSITELIB}/notebook/tests/test_utils.pyo
${PYSITELIB}/notebook/tests/tree/dashboard_nav.js
${PYSITELIB}/notebook/tests/util.js
${PYSITELIB}/notebook/tree/__init__.py
${PYSITELIB}/notebook/tree/__init__.pyc
${PYSITELIB}/notebook/tree/__init__.pyo
${PYSITELIB}/notebook/tree/handlers.py
${PYSITELIB}/notebook/tree/handlers.pyc
${PYSITELIB}/notebook/tree/handlers.pyo
${PYSITELIB}/notebook/tree/tests/__init__.py
${PYSITELIB}/notebook/tree/tests/__init__.pyc
${PYSITELIB}/notebook/tree/tests/__init__.pyo
${PYSITELIB}/notebook/tree/tests/test_tree_handler.py
${PYSITELIB}/notebook/tree/tests/test_tree_handler.pyc
${PYSITELIB}/notebook/tree/tests/test_tree_handler.pyo
${PYSITELIB}/notebook/utils.py
${PYSITELIB}/notebook/utils.pyc
${PYSITELIB}/notebook/utils.pyo
${PYSITELIB}/notebook/view/__init__.py
${PYSITELIB}/notebook/view/__init__.pyc
${PYSITELIB}/notebook/view/__init__.pyo
${PYSITELIB}/notebook/view/handlers.py
${PYSITELIB}/notebook/view/handlers.pyc
${PYSITELIB}/notebook/view/handlers.pyo