Sets the search key to a generated string instead of using one of the record's active search keys.
34 | *
Tries to create a search key based on information from the work record; if unable to do that,
35 | * makes one that includes information from the parent work.
36 | *
For a non-work record, just sets it to the record name.
37 | */
38 | String makeKeyWorkSearchKey();
39 |
40 | //---------------------------------------------------------------------------
41 | //---------------------------------------------------------------------------
42 |
43 | default String getShortAuthorsStr(boolean fnis) { return Authors.getShortAuthorsStr(getAuthors().stream(), false, fnis, true); }
44 | default String getLongAuthorsStr (boolean fnis) { return Authors.getLongAuthorsStr (getAuthors().stream(), fnis, true); }
45 |
46 | //---------------------------------------------------------------------------
47 | //---------------------------------------------------------------------------
48 |
49 | }
50 |
--------------------------------------------------------------------------------
/src/main/java/org/hypernomicon/model/records/HDT_RecordWithPath.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2015-2025 Jason Winning
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | *
16 | */
17 |
18 | package org.hypernomicon.model.records;
19 |
20 | import static org.hypernomicon.util.Util.*;
21 |
22 | import org.hypernomicon.model.items.HyperPath;
23 | import org.hypernomicon.util.filePath.FilePath;
24 |
25 | //---------------------------------------------------------------------------
26 |
27 | public interface HDT_RecordWithPath extends HDT_Record
28 | {
29 |
30 | //---------------------------------------------------------------------------
31 | //---------------------------------------------------------------------------
32 |
33 | HyperPath getPath();
34 |
35 | //---------------------------------------------------------------------------
36 |
37 | default boolean pathNotEmpty() { return nullSwitch(getPath(), false, HyperPath::isNotEmpty); }
38 | default FilePath filePath() { return nullSwitch(getPath(), null , HyperPath::filePath); }
39 | default HDT_Folder parentFolder() { return nullSwitch(getPath(), null , HyperPath::parentFolder); }
40 |
41 | //---------------------------------------------------------------------------
42 | //---------------------------------------------------------------------------
43 |
44 | }
45 |
--------------------------------------------------------------------------------
/src/main/java/org/hypernomicon/model/records/HDT_Subfield.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2015-2025 Jason Winning
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | *
16 | */
17 |
18 | package org.hypernomicon.model.records;
19 |
20 | import static org.hypernomicon.model.relations.RelationSet.RelationType.*;
21 |
22 | import java.util.List;
23 |
24 | import org.hypernomicon.model.DatasetAccessor;
25 | import org.hypernomicon.model.records.SimpleRecordTypes.HDT_Field;
26 | import org.hypernomicon.model.relations.HyperObjPointer;
27 |
28 | //---------------------------------------------------------------------------
29 |
30 | public class HDT_Subfield extends HDT_RecordBase
31 | {
32 |
33 | //---------------------------------------------------------------------------
34 | //---------------------------------------------------------------------------
35 |
36 | public final List persons;
37 |
38 | public final HyperObjPointer field;
39 |
40 | //---------------------------------------------------------------------------
41 |
42 | public HDT_Subfield(RecordState xmlState, DatasetAccessor dataset)
43 | {
44 | super(xmlState, dataset);
45 |
46 | persons = getSubjList(rtSubfieldOfPerson);
47 | field = getObjPointer(rtFieldOfSubfield);
48 | }
49 |
50 | //---------------------------------------------------------------------------
51 |
52 | @Override public String listName() { return name(); }
53 |
54 | //---------------------------------------------------------------------------
55 | //---------------------------------------------------------------------------
56 |
57 | }
58 |
--------------------------------------------------------------------------------
/src/main/java/org/hypernomicon/query/sources/AllQuerySource.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2015-2025 Jason Winning
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | *
16 | */
17 |
18 | package org.hypernomicon.query.sources;
19 |
20 | import static org.hypernomicon.model.records.RecordType.*;
21 |
22 | import java.util.EnumSet;
23 |
24 | import org.hypernomicon.model.records.RecordType;
25 |
26 | //---------------------------------------------------------------------------
27 |
28 | public class AllQuerySource extends CombinedUnfilteredQuerySource
29 | {
30 |
31 | //---------------------------------------------------------------------------
32 | //---------------------------------------------------------------------------
33 |
34 | public AllQuerySource() { super(types()); }
35 |
36 | //---------------------------------------------------------------------------
37 |
38 | @Override public QuerySourceType sourceType() { return QuerySourceType.QST_allRecords; }
39 |
40 | //---------------------------------------------------------------------------
41 | //---------------------------------------------------------------------------
42 |
43 | private static EnumSet types()
44 | {
45 | EnumSet types = EnumSet.allOf(RecordType.class);
46 | types.removeAll(EnumSet.of(hdtNone, hdtAuxiliary, hdtHub));
47 | return types;
48 | }
49 |
50 | //---------------------------------------------------------------------------
51 | //---------------------------------------------------------------------------
52 |
53 | }
54 |
--------------------------------------------------------------------------------
/src/main/java/org/hypernomicon/query/sources/DatasetQuerySource.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2015-2025 Jason Winning
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | *
16 | */
17 |
18 | package org.hypernomicon.query.sources;
19 |
20 | import java.util.EnumSet;
21 |
22 | import org.hypernomicon.model.records.RecordType;
23 |
24 | //---------------------------------------------------------------------------
25 |
26 | public class DatasetQuerySource extends CombinedUnfilteredQuerySource
27 | {
28 |
29 | //---------------------------------------------------------------------------
30 | //---------------------------------------------------------------------------
31 |
32 | private final RecordType type;
33 |
34 | //---------------------------------------------------------------------------
35 |
36 | public DatasetQuerySource(RecordType type)
37 | {
38 | super(EnumSet.of(type));
39 | this.type = type;
40 | }
41 |
42 | //---------------------------------------------------------------------------
43 |
44 | @Override public RecordType recordType() { return type; }
45 | @Override public QuerySourceType sourceType() { return QuerySourceType.QST_recordsByType; }
46 |
47 | //---------------------------------------------------------------------------
48 | //---------------------------------------------------------------------------
49 |
50 | }
51 |
--------------------------------------------------------------------------------
/src/main/java/org/hypernomicon/query/ui/AbstractColumnGroup.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2015-2025 Jason Winning
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | *
16 | */
17 |
18 | package org.hypernomicon.query.ui;
19 |
20 | import org.hypernomicon.query.ui.SelectColumnsDlgCtrlr.TypeCheckBox;
21 |
22 | import com.google.common.collect.ForwardingCollection;
23 |
24 | //---------------------------------------------------------------------------
25 |
26 | /**
27 | *
A column group is a collection of result columns that can be made visible or invisible all
28 | * at once using the column display options popup window.
29 | *
30 | *
A column group has one or more column group items; there is one column group item to a
31 | * check box in the column display options popup window. Each ResultColumn is associated with
32 | * one or more column group items. It is associated with more than one column group item when
33 | * multiple record types have items with the same tag.
34 | *
35 | */
36 | abstract class AbstractColumnGroup extends ForwardingCollection
37 | {
38 | final ResultsTable resultsTable;
39 | final String caption;
40 |
41 | TypeCheckBox checkBox;
42 |
43 | //---------------------------------------------------------------------------
44 | //---------------------------------------------------------------------------
45 |
46 | AbstractColumnGroup(String caption, ResultsTable resultsTable)
47 | {
48 | this.caption = caption;
49 | this.resultsTable = resultsTable;
50 | }
51 |
52 | //---------------------------------------------------------------------------
53 | //---------------------------------------------------------------------------
54 |
55 | }
56 |
--------------------------------------------------------------------------------
/src/main/java/org/hypernomicon/tree/AbstractTreeRow.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2015-2025 Jason Winning
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | *
16 | */
17 |
18 | package org.hypernomicon.tree;
19 |
20 | import org.hypernomicon.model.records.HDT_Record;
21 | import org.hypernomicon.view.wrappers.AbstractRow;
22 |
23 | import javafx.scene.control.TreeItem;
24 | import javafx.scene.image.ImageView;
25 |
26 | //---------------------------------------------------------------------------
27 |
28 | public abstract class AbstractTreeRow>
29 | extends AbstractRow
30 | implements Comparable
31 | {
32 |
33 | //---------------------------------------------------------------------------
34 | //---------------------------------------------------------------------------
35 |
36 | protected TreeItem treeItem = null;
37 | protected ImageView graphic = null;
38 | private final TreeModel treeModel;
39 |
40 | //---------------------------------------------------------------------------
41 |
42 | protected AbstractTreeRow(TreeModel treeModel) { this.treeModel = treeModel; }
43 |
44 | //---------------------------------------------------------------------------
45 |
46 | final AbstractTreeWrapper getTreeWrapper() { return treeModel.getTreeWrapper(); }
47 | @Override public final TreeItem getTreeItem() { return treeItem; }
48 |
49 | //---------------------------------------------------------------------------
50 | //---------------------------------------------------------------------------
51 |
52 | }
53 |
--------------------------------------------------------------------------------
/src/main/java/org/hypernomicon/tree/TreeCtrlr.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2015-2025 Jason Winning
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | *
16 | */
17 |
18 | package org.hypernomicon.tree;
19 |
20 | import javafx.fxml.FXML;
21 | import javafx.scene.control.TreeTableColumn;
22 | import javafx.scene.control.TreeTableView;
23 |
24 | //---------------------------------------------------------------------------
25 |
26 | public class TreeCtrlr
27 | {
28 |
29 | //---------------------------------------------------------------------------
30 | //---------------------------------------------------------------------------
31 |
32 | @FXML TreeTableView ttv;
33 | @FXML TreeTableColumn tcName;
34 | @FXML TreeTableColumn tcLinked;
35 | @FXML TreeTableColumn tcDesc;
36 |
37 | //---------------------------------------------------------------------------
38 | //---------------------------------------------------------------------------
39 |
40 | }
41 |
--------------------------------------------------------------------------------
/src/main/java/org/hypernomicon/view/controls/HiddenSidesPane.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2015-2025 Jason Winning
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | *
16 | */
17 |
18 | package org.hypernomicon.view.controls;
19 |
20 | import javafx.geometry.Side;
21 |
22 | //---------------------------------------------------------------------------
23 |
24 | /**
25 | * Custom version of the ControlsFX HiddenSidesPane class that exposes
26 | * the hide and show methods
27 | *
28 | * @author Jason Winning
29 | * @since 1.0
30 | */
31 | public class HiddenSidesPane extends org.controlsfx.control.HiddenSidesPane
32 | {
33 |
34 | //---------------------------------------------------------------------------
35 | //---------------------------------------------------------------------------
36 |
37 | public HiddenSidesPane() { setSkin(new HiddenSidesPaneSkin(this)); }
38 |
39 | @Override public void hide() { ((HiddenSidesPaneSkin) getSkin()).hide(); }
40 | public void show(Side side, boolean noInterrupt) { ((HiddenSidesPaneSkin) getSkin()).show(side, noInterrupt); }
41 |
42 | //---------------------------------------------------------------------------
43 | //---------------------------------------------------------------------------
44 |
45 | }
46 |
--------------------------------------------------------------------------------
/src/main/java/org/hypernomicon/view/tabs/ArgumentLowerPaneCtrlr.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2015-2025 Jason Winning
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | *
16 | */
17 |
18 | package org.hypernomicon.view.tabs;
19 |
20 | import org.hypernomicon.view.wrappers.HyperTableRow;
21 |
22 | import javafx.fxml.FXML;
23 | import javafx.scene.control.*;
24 |
25 | //---------------------------------------------------------------------------
26 |
27 | public class ArgumentLowerPaneCtrlr
28 | {
29 |
30 | //---------------------------------------------------------------------------
31 | //---------------------------------------------------------------------------
32 |
33 | @FXML TableView tvWhereMade, tvResponses;
34 | @FXML TabPane tabPane;
35 | @FXML Tab tabWhereMade, tabResponses;
36 |
37 | //---------------------------------------------------------------------------
38 | //---------------------------------------------------------------------------
39 |
40 | }
41 |
--------------------------------------------------------------------------------
/src/main/java/org/hypernomicon/view/wrappers/CommitableWrapper.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2015-2025 Jason Winning
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | *
16 | */
17 |
18 | package org.hypernomicon.view.wrappers;
19 |
20 | import javafx.scene.Node;
21 | import javafx.scene.control.ComboBox;
22 |
23 | import static org.hypernomicon.util.Util.*;
24 | import static org.hypernomicon.util.UIUtil.*;
25 |
26 | //---------------------------------------------------------------------------
27 |
28 | @FunctionalInterface public interface CommitableWrapper
29 | {
30 |
31 | //---------------------------------------------------------------------------
32 | //---------------------------------------------------------------------------
33 |
34 | void commit();
35 |
36 | //---------------------------------------------------------------------------
37 | //---------------------------------------------------------------------------
38 |
39 | static void commitWrapper(Node node)
40 | {
41 | if (node == null) return;
42 |
43 | if (node instanceof CommitableWrapper commitableWrapper)
44 | {
45 | commitableWrapper.commit();
46 | return;
47 | }
48 |
49 | if (node instanceof ComboBox)
50 | {
51 | HyperCB hcb = (HyperCB) getNodeUserObj(node, NodeUserDataType.HypercCB);
52 |
53 | if ((hcb != null) && hcb.autoCommitBeforeRecordSave)
54 | {
55 | hcb.commit();
56 | return;
57 | }
58 | }
59 |
60 | nullSwitch(node.getParent(), CommitableWrapper::commitWrapper);
61 | }
62 |
63 | //---------------------------------------------------------------------------
64 | //---------------------------------------------------------------------------
65 |
66 | }
67 |
--------------------------------------------------------------------------------
/src/main/resources/META-INF/teamdev.licenses:
--------------------------------------------------------------------------------
1 | Product: JxBrowser
2 | Version: 6.x
3 | Licensed to:
4 | License type: Development
5 | License info: Open Source Project
6 | Product binding: the specific project
7 | Product binding info: 6ts43l5etmnrh6uuswoj0e977iarals
8 | Expiration date: NEVER
9 | Support expiration date: NO SUPPORT
10 | Generation date: 15-05-2019
11 | Platforms: win32/x86;mac/x86;linux/x64;linux/x86;mac/x64;mac/ppc;win32/x64
12 | Company name: Hypernomicon
13 | SigB: kh6545118d35fck3f68hqc02bxo2z8k86xrkzme6lgmi7h49au7ky6dqss0ltlna6c333ch7eqc0jmrw
14 | SigA: zdvradqg4f5qxvk7ug0exg9eiwzbsjomx6ygfki0h79vc5i453suq6phlrhnq6g5vyb1kk1ttmxc9o8w
15 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/dialogs/HelpDlg.fxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/dialogs/about.css:
--------------------------------------------------------------------------------
1 | .anchor-pane
2 | {
3 | -fx-background-color: #241f24;
4 | }
5 |
6 | .text-area
7 | {
8 | -fx-background-color: transparent;
9 | -fx-text-fill: #906f6f;
10 | }
11 |
12 | .tab-pane .tab-header-area .tab-header-background
13 | {
14 | -fx-background-color: #584343;
15 | }
16 |
17 | .tab
18 | {
19 | -fx-background-color: #241f24;
20 | -fx-text-base-color: #906f6f;
21 | }
22 |
23 | .tab:selected
24 | {
25 | -fx-text-base-color: #b88d8d;
26 | -fx-font-weight: bold;
27 | }
28 |
29 | .label
30 | {
31 | -fx-text-fill: #906f6f;
32 | -fx-font-size: 13px;
33 | }
34 |
35 | .text-area .scroll-pane
36 | {
37 | -fx-background-color: transparent;
38 | }
39 |
40 | .text-area .scroll-pane .viewport
41 | {
42 | -fx-background-color: transparent;
43 | }
44 |
45 |
46 | .text-area .scroll-pane .content
47 | {
48 | -fx-background-color: transparent;
49 | }
50 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/dialogs/welcome.css:
--------------------------------------------------------------------------------
1 | .anchor-pane
2 | {
3 | -fx-background-color: #241f24;
4 | }
5 |
6 | .titled-pane > .title
7 | {
8 | -fx-alignment: center;
9 | }
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/dialogs/workMerge/DateCtrl.fxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
27 |
29 |
32 |
34 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/dialogs/workMerge/EntryTypeCtrl.fxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
26 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/dialogs/workMerge/SingleLineCtrl.fxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
26 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/dialogs/workMerge/WorkTypeCtrl.fxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
26 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/blank_db.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/blank_db.zip
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/css.css:
--------------------------------------------------------------------------------
1 | .tooltip
2 | {
3 | -fx-font-size: 14;
4 | -fx-show-duration: indefinite;
5 | -fx-wrap-text: true;
6 | -fx-max-width: 1600;
7 | -fx-font-weight: normal;
8 | }
9 |
10 | .tab-pane .tab
11 | {
12 | -fx-background-color: #e4e4e4;
13 | }
14 |
15 | #selectorTabPane .tab-header-area .tab-header-background
16 | {
17 | -fx-opacity: 0;
18 | }
19 |
20 | #selectorTabPane .tab
21 | {
22 | -fx-background-color: #e4e4e4;
23 | }
24 |
25 | .tab-pane .tab:selected
26 | {
27 | -fx-background-color: #ffffff;
28 | }
29 |
30 | #selectorTabPane .tab:selected
31 | {
32 | -fx-background-color: #9cd5e8;
33 | }
34 |
35 | .tab-pane:bottom > .tab-header-area
36 | {
37 | -fx-padding: 0 0 0 -0.083333em;
38 | }
39 |
40 | .tab-pane .tab-header-area .tab-header-background
41 | {
42 | -fx-background-color: #d4d4d4;
43 | }
44 |
45 | .wizard .tab-header-area
46 | {
47 | visibility: hidden;
48 | }
49 |
50 | .nonwizard .tab-header-area
51 | {
52 | visibility: visible;
53 | }
54 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/empty.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/empty.pdf
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/argument.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/argument.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/arrow-090.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/arrow-090.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/arrow-180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/arrow-180.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/arrow-270.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/arrow-270.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/arrow.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/book.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/book.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/bookshelf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/bookshelf.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/broom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/broom.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/building-hedge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/building-hedge.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/calendar-month.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/calendar-month.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/cancel.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/card-catalog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/card-catalog.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/card-catalog_tr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/card-catalog_tr.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/chapter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/chapter.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/chart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/chart.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/control-stop-180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/control-stop-180.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/control-stop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/control-stop.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/cut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/cut.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/debate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/debate.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/deletered.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/deletered.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/details.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/details.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/document-code.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/document-code.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/document-pdf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/document-pdf.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/document-tex.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/document-tex.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/document-text.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/document-text.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/document.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/document.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/document_insert.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/document_insert.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/documents-stack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/documents-stack.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/download.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/download.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/drawer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/drawer.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/edit-rename.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/edit-rename.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/edit_mathematics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/edit_mathematics.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/file.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/folder.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/folder_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/folder_add.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/folder_closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/folder_closed.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/folders_explorer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/folders_explorer.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/form-pencil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/form-pencil.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/from_current_slide.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/from_current_slide.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/gear-wrench.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/gear-wrench.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/glasses-db.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/glasses-db.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/globe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/globe.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/highlighter-left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/highlighter-left.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/highlighter-right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/highlighter-right.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/image.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/inbox-document-text.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/inbox-document-text.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/information-italic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/information-italic.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/json.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/json.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/key-work-details.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/key-work-details.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/keyword-link-add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/keyword-link-add.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/lock.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/lock_open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/lock_open.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/logo-128x128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/logo-128x128.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/logo-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/logo-16x16.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/logo-256x256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/logo-256x256.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/logo-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/logo-32x32.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/logo-48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/logo-48x48.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/logo-64x64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/logo-64x64.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/logo.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/logo.ico
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/logobig.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/logobig.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/magnifier.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/magnifier.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/magnifier_zoom_in.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/magnifier_zoom_in.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/magnifier_zoom_out.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/magnifier_zoom_out.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/nodes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/nodes.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/notebook-pencil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/notebook-pencil.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/page_copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/page_copy.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/page_paste.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/page_paste.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/page_white_vector.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/page_white_vector.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/paper-add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/paper-add.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/paper-minus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/paper-minus.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/paper.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/paper.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/pencil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/pencil.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/people.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/people.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/picture_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/picture_add.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/pointer-preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/pointer-preview.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/pointer-rocket.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/pointer-rocket.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/position.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/position.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/question.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/question.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/recording.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/recording.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/refresh.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/rocket-fly.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/rocket-fly.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/sort_19.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/sort_19.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/sort_az.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/sort_az.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/sound_wave.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/sound_wave.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/star-empty.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/star-empty.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/star.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/star.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/switch_window.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/switch_window.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/table-sheet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/table-sheet.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/tag.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/tag.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/term.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/term.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/text-html.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/text-html.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/text-search2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/text-search2.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/text_letter_omega.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/text_letter_omega.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/text_subscript.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/text_subscript.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/text_superscript.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/text_superscript.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/thesis.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/thesis.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/treeview-small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/treeview-small.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/treeview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/treeview.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/triangle-down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/triangle-down.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/triangle-up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/triangle-up.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/unknown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/unknown.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/view-document.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/view-document.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/view-form.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/view-form.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/vise-drawer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/vise-drawer.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/wand-magic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/wand-magic.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/world_go.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/world_go.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/images/world_link.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/images/world_link.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/mainTextEdit.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2023-2025 Jason Winning
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | *
16 | */
17 |
18 | function insertHtmlAtCursor(html)
19 | {
20 | document.execCommand('insertHtml', false, html);
21 | }
22 |
23 | function getAnchorAtCursor()
24 | {
25 | var node = window.getSelection().anchorNode;
26 |
27 | while (node)
28 | {
29 | if (node.nodeName === 'A')
30 | {
31 | return node;
32 | }
33 |
34 | node = node.parentElement;
35 | }
36 |
37 | return node;
38 | }
39 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/match-jump.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2023-2025 Jason Winning
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | *
16 | */
17 |
18 | function jumpTo()
19 | {
20 | clearCurrent();
21 |
22 | if (results.length)
23 | {
24 | var current = results[currentNdx];
25 | if (typeof current === "undefined") return;
26 | current.classList.add("hypernomiconHiliteCurrent");
27 | current.scrollIntoView();
28 | lastNdx = currentNdx;
29 | }
30 | }
31 |
32 | function clearAll()
33 | {
34 | clearCurrent();
35 |
36 | Array.from(document.getElementsByClassName('hypernomiconHilite')).forEach(element =>
37 | {
38 | if (element.tagName === 'A')
39 | element.classList.remove("hypernomiconHilite");
40 | });
41 | }
42 |
43 | function clearCurrent()
44 | {
45 | if (lastNdx > -1)
46 | {
47 | var current = results[lastNdx];
48 | if (typeof current === "undefined") return;
49 | current.classList.remove("hypernomiconHiliteCurrent");
50 | lastNdx = 0;
51 | }
52 | }
53 |
54 | function nextResult()
55 | {
56 | if (results.length)
57 | {
58 | currentNdx = currentNdx + 1;
59 | if (currentNdx >= results.length)
60 | {
61 | currentNdx = 0;
62 | }
63 | jumpTo();
64 | }
65 | }
66 |
67 | function previousResult()
68 | {
69 | if (results.length)
70 | {
71 | currentNdx = currentNdx - 1;
72 | if (currentNdx < 0)
73 | {
74 | currentNdx = results.length - 1;
75 | }
76 | jumpTo();
77 | }
78 | }
79 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/78-EUC-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/78-EUC-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/78-EUC-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/78-EUC-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/78-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/78-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/78-RKSJ-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/78-RKSJ-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/78-RKSJ-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/78-RKSJ-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/78-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/78-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Add-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Add-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Add-RKSJ-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Add-RKSJ-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Add-RKSJ-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Add-RKSJ-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Add-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Add-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-GB1-0.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-GB1-0.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-GB1-1.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-GB1-1.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-GB1-2.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-GB1-2.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-GB1-3.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-GB1-3.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-GB1-4.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-GB1-4.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-GB1-5.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-GB1-5.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/B5-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/B5-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/B5-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/B5-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/B5pc-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/B5pc-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/B5pc-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/B5pc-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/CNS-EUC-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/CNS-EUC-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/CNS-EUC-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/CNS-EUC-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/CNS1-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/CNS1-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/CNS1-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/CNS1-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/CNS2-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/CNS2-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/CNS2-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/CNS2-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/ETHK-B5-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/ETHK-B5-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/ETHK-B5-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/ETHK-B5-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/ETen-B5-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/ETen-B5-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/ETen-B5-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/ETen-B5-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/ETenms-B5-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/ETenms-B5-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/ETenms-B5-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/ETenms-B5-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/EUC-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/EUC-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/EUC-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/EUC-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Ext-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Ext-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Ext-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Ext-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GB-EUC-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GB-EUC-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GB-EUC-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GB-EUC-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GB-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GB-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GB-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GB-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBK-EUC-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBK-EUC-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBK-EUC-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBK-EUC-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBK2K-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBK2K-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBK2K-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBK2K-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBKp-EUC-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBKp-EUC-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBKp-EUC-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBKp-EUC-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBT-EUC-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBT-EUC-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBT-EUC-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBT-EUC-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBT-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBT-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBT-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBT-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBpc-EUC-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBpc-EUC-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBpc-EUC-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/GBpc-EUC-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKdla-B5-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKdla-B5-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKdla-B5-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKdla-B5-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKdlb-B5-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKdlb-B5-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKdlb-B5-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKdlb-B5-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKgccs-B5-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKgccs-B5-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKgccs-B5-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKgccs-B5-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKm314-B5-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKm314-B5-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKm314-B5-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKm314-B5-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKm471-B5-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKm471-B5-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKm471-B5-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKm471-B5-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKscs-B5-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKscs-B5-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKscs-B5-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/HKscs-B5-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Hankaku.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Hankaku.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Hiragana.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Hiragana.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSC-EUC-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSC-EUC-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSC-EUC-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSC-EUC-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSC-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSC-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSC-Johab-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSC-Johab-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSC-Johab-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSC-Johab-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSC-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSC-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSCms-UHC-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSCms-UHC-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSCms-UHC-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSCms-UHC-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Katakana.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Katakana.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/LICENSE:
--------------------------------------------------------------------------------
1 | %%Copyright: -----------------------------------------------------------
2 | %%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
3 | %%Copyright: All rights reserved.
4 | %%Copyright:
5 | %%Copyright: Redistribution and use in source and binary forms, with or
6 | %%Copyright: without modification, are permitted provided that the
7 | %%Copyright: following conditions are met:
8 | %%Copyright:
9 | %%Copyright: Redistributions of source code must retain the above
10 | %%Copyright: copyright notice, this list of conditions and the following
11 | %%Copyright: disclaimer.
12 | %%Copyright:
13 | %%Copyright: Redistributions in binary form must reproduce the above
14 | %%Copyright: copyright notice, this list of conditions and the following
15 | %%Copyright: disclaimer in the documentation and/or other materials
16 | %%Copyright: provided with the distribution.
17 | %%Copyright:
18 | %%Copyright: Neither the name of Adobe Systems Incorporated nor the names
19 | %%Copyright: of its contributors may be used to endorse or promote
20 | %%Copyright: products derived from this software without specific prior
21 | %%Copyright: written permission.
22 | %%Copyright:
23 | %%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
24 | %%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
25 | %%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 | %%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27 | %%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
28 | %%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29 | %%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 | %%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31 | %%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 | %%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 | %%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
34 | %%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 | %%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 | %%Copyright: -----------------------------------------------------------
37 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/NWP-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/NWP-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/NWP-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/NWP-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/RKSJ-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/RKSJ-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/RKSJ-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/RKSJ-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Roman.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/Roman.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/V.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/V.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/WP-Symbol.bcmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/cmaps/WP-Symbol.bcmap
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/annotation-check.svg:
--------------------------------------------------------------------------------
1 |
2 |
12 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/annotation-comment.svg:
--------------------------------------------------------------------------------
1 |
2 |
17 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/annotation-insert.svg:
--------------------------------------------------------------------------------
1 |
2 |
11 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/annotation-key.svg:
--------------------------------------------------------------------------------
1 |
2 |
12 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/annotation-newparagraph.svg:
--------------------------------------------------------------------------------
1 |
2 |
12 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/annotation-noicon.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/annotation-note.svg:
--------------------------------------------------------------------------------
1 |
2 |
43 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/annotation-paragraph.svg:
--------------------------------------------------------------------------------
1 |
2 |
17 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/findbarButton-next-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/findbarButton-next-rtl.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/findbarButton-next-rtl@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/findbarButton-next-rtl@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/findbarButton-next.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/findbarButton-next.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/findbarButton-next@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/findbarButton-next@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/findbarButton-previous-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/findbarButton-previous-rtl.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/findbarButton-previous-rtl@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/findbarButton-previous-rtl@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/findbarButton-previous.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/findbarButton-previous.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/findbarButton-previous@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/findbarButton-previous@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/grab.cur:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/grab.cur
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/grabbing.cur:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/grabbing.cur
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/loading-icon.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/loading-icon.gif
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/loading-small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/loading-small.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/loading-small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/loading-small@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-documentProperties.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-documentProperties.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-documentProperties@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-documentProperties@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-firstPage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-firstPage.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-firstPage@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-firstPage@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-handTool.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-handTool.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-handTool@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-handTool@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-lastPage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-lastPage.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-lastPage@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-lastPage@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-rotateCcw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-rotateCcw.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-rotateCcw@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-rotateCcw@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-rotateCw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-rotateCw.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-rotateCw@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-rotateCw@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-scrollHorizontal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-scrollHorizontal.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-scrollHorizontal@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-scrollHorizontal@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-scrollVertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-scrollVertical.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-scrollVertical@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-scrollVertical@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-scrollWrapped.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-scrollWrapped.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-scrollWrapped@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-scrollWrapped@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-selectTool.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-selectTool.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-selectTool@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-selectTool@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-spreadEven.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-spreadEven.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-spreadEven@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-spreadEven@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-spreadNone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-spreadNone.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-spreadNone@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-spreadNone@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-spreadOdd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-spreadOdd.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-spreadOdd@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/secondaryToolbarButton-spreadOdd@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/shadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/shadow.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/texture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/texture.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-bookmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-bookmark.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-bookmark@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-bookmark@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-download.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-download.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-download@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-download@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-menuArrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-menuArrows.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-menuArrows@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-menuArrows@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-openFile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-openFile.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-openFile@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-openFile@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-pageDown-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-pageDown-rtl.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-pageDown-rtl@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-pageDown-rtl@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-pageDown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-pageDown.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-pageDown@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-pageDown@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-pageUp-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-pageUp-rtl.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-pageUp-rtl@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-pageUp-rtl@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-pageUp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-pageUp.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-pageUp@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-pageUp@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-presentationMode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-presentationMode.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-presentationMode@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-presentationMode@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-print.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-print.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-print@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-print@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-search.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-search@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-search@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-secondaryToolbarToggle@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-secondaryToolbarToggle@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-sidebarToggle-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-sidebarToggle-rtl.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-sidebarToggle-rtl@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-sidebarToggle-rtl@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-sidebarToggle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-sidebarToggle.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-sidebarToggle@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-sidebarToggle@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-viewAttachments.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-viewAttachments.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-viewAttachments@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-viewAttachments@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-viewOutline-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-viewOutline-rtl.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-viewOutline-rtl@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-viewOutline-rtl@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-viewOutline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-viewOutline.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-viewOutline@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-viewOutline@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-viewThumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-viewThumbnail.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-viewThumbnail@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-viewThumbnail@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-zoomIn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-zoomIn.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-zoomIn@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-zoomIn@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-zoomOut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-zoomOut.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-zoomOut@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/toolbarButton-zoomOut@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/treeitem-collapsed-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/treeitem-collapsed-rtl.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/treeitem-collapsed-rtl@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/treeitem-collapsed-rtl@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/treeitem-collapsed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/treeitem-collapsed.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/treeitem-collapsed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/treeitem-collapsed@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/treeitem-expanded.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/treeitem-expanded.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/treeitem-expanded@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonwinning/hypernomicon/9aeaba963e93f1b59f916d2e7352439bb9f264a9/src/main/resources/org/hypernomicon/resources/pdfjs/web/images/treeitem-expanded@2x.png
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/settings/ExclWorkTypesDlg.fxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
19 |
20 |
21 |
22 |
23 |
25 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/settings/WorkSearchKeys.fxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
19 |
20 |
21 |
22 |
23 |
25 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/src/main/resources/org/hypernomicon/tree/Tree.fxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/src/main/resources/simplelogger.properties:
--------------------------------------------------------------------------------
1 | # SLF4J's SimpleLogger configuration file
2 | # Simple implementation of Logger that sends all enabled log messages, for all defined loggers, to System.err.
3 |
4 | # Default logging detail level for all instances of SimpleLogger.
5 | # Must be one of ("trace", "debug", "info", "warn", or "error").
6 | # If not specified, defaults to "info".
7 | org.slf4j.simpleLogger.defaultLogLevel=error
8 |
9 | # Logging detail level for a SimpleLogger instance named "xxxxx".
10 | # Must be one of ("trace", "debug", "info", "warn", or "error").
11 | # If not specified, the default logging detail level is used.
12 | #org.slf4j.simpleLogger.log.xxxxx=
13 |
14 | # Set to true if you want the current date and time to be included in output messages.
15 | # Default is false, and will output the number of milliseconds elapsed since startup.
16 | #org.slf4j.simpleLogger.showDateTime=false
17 |
18 | # The date and time format to be used in the output messages.
19 | # The pattern describing the date and time format is the same that is used in java.text.SimpleDateFormat.
20 | # If the format is not specified or is invalid, the default format is used.
21 | # The default format is yyyy-MM-dd HH:mm:ss:SSS Z.
22 | #org.slf4j.simpleLogger.dateTimeFormat=yyyy-MM-dd HH:mm:ss:SSS Z
23 |
24 | # Set to true if you want to output the current thread name.
25 | # Defaults to true.
26 | #org.slf4j.simpleLogger.showThreadName=true
27 |
28 | # Set to true if you want the Logger instance name to be included in output messages.
29 | # Defaults to true.
30 | #org.slf4j.simpleLogger.showLogName=true
31 |
32 | # Set to true if you want the last component of the name to be included in output messages.
33 | # Defaults to false.
34 | #org.slf4j.simpleLogger.showShortLogName=false
--------------------------------------------------------------------------------
/src/test/java/org/hypernomicon/MendeleyMetadataTest.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2015-2025 Jason Winning
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | *
16 | */
17 |
18 | package org.hypernomicon;
19 |
20 | import static org.junit.jupiter.api.Assertions.*;
21 |
22 | import java.util.prefs.Preferences;
23 |
24 | import static org.hypernomicon.util.Util.*;
25 |
26 | import org.hypernomicon.Const.PrefKey;
27 | import org.hypernomicon.bib.mendeley.MendeleyWrapper;
28 |
29 | import org.junit.jupiter.api.Assumptions;
30 | import org.junit.jupiter.api.Test;
31 |
32 | //---------------------------------------------------------------------------
33 |
34 | class MendeleyMetadataTest
35 | {
36 |
37 | //---------------------------------------------------------------------------
38 | //---------------------------------------------------------------------------
39 |
40 | @Test
41 | void documentTypesTest()
42 | {
43 | Preferences appPrefs = Preferences.userNodeForPackage(App.class);
44 |
45 | // userID is needed to load the AuthKeys from secure storage because
46 | // the Mendeley server call requires an access token
47 |
48 | String userID = appPrefs.get(PrefKey.BIB_UNIT_TEST_USER_ID, "");
49 |
50 | Assumptions.assumeTrue(strNotNullOrBlank(userID));
51 |
52 | MendeleyWrapper mendeleyWrapper = assertDoesNotThrow(() -> MendeleyWrapper.createForTesting(userID));
53 |
54 | String errorMsg = mendeleyWrapper.checkDocumentTypesFromServer();
55 |
56 | assertTrue(strNullOrBlank(errorMsg), errorMsg);
57 | }
58 |
59 | //---------------------------------------------------------------------------
60 | //---------------------------------------------------------------------------
61 |
62 | }
63 |
--------------------------------------------------------------------------------
/versions-rules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | (?i).*Alpha(?:-?\d+)?
6 | (?i).*a(?:-?\d+)?
7 | (?i).*Beta(?:-?\d+)?
8 | (?i).*-B(?:-?\d+)?
9 | (?i).*RC(?:-?\d+)?
10 | (?i).*CR(?:-?\d+)?
11 | (?i).*M(?:-?\d+)?
12 | (?i).*-ea+.*?
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------