diff --git a/README.md b/README.md index 0a6d14ba..4d27fa49 100644 --- a/README.md +++ b/README.md @@ -22,25 +22,25 @@ This is the full portfolio of protocolize dependencies: de.exceptionflug protocolize-api - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT provided de.exceptionflug protocolize-items - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT provided de.exceptionflug protocolize-inventory - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT provided de.exceptionflug protocolize-world - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT provided ``` diff --git a/pom.xml b/pom.xml index 1c936da2..f8fcc7f6 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ de.exceptionflug protocolize - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT pom diff --git a/protocolize-api/pom.xml b/protocolize-api/pom.xml index d8785303..e57be68c 100644 --- a/protocolize-api/pom.xml +++ b/protocolize-api/pom.xml @@ -48,7 +48,7 @@ de.exceptionflug protocolize - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT de.exceptionflug diff --git a/protocolize-api/src/main/java/de/exceptionflug/protocolize/api/util/ProtocolVersions.java b/protocolize-api/src/main/java/de/exceptionflug/protocolize/api/util/ProtocolVersions.java index 512e9026..47aeb287 100644 --- a/protocolize-api/src/main/java/de/exceptionflug/protocolize/api/util/ProtocolVersions.java +++ b/protocolize-api/src/main/java/de/exceptionflug/protocolize/api/util/ProtocolVersions.java @@ -28,9 +28,10 @@ public final class ProtocolVersions { public final static int MINECRAFT_1_14_4 = 498; public final static int MINECRAFT_1_15 = 573; public final static int MINECRAFT_1_15_1 = 575; + public final static int MINECRAFT_1_15_2 = 578; - public final static int MINECRAFT_LATEST = MINECRAFT_1_15_1; + public final static int MINECRAFT_LATEST = MINECRAFT_1_15_2; private ProtocolVersions() {} diff --git a/protocolize-examples/pom.xml b/protocolize-examples/pom.xml index 3b771312..4acb0c75 100644 --- a/protocolize-examples/pom.xml +++ b/protocolize-examples/pom.xml @@ -7,7 +7,7 @@ de.exceptionflug protocolize - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT de.exceptionflug @@ -18,19 +18,19 @@ de.exceptionflug protocolize-api - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT provided de.exceptionflug protocolize-items - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT provided de.exceptionflug protocolize-inventory - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT provided diff --git a/protocolize-inventory/pom.xml b/protocolize-inventory/pom.xml index bedcbb77..eb2b2357 100644 --- a/protocolize-inventory/pom.xml +++ b/protocolize-inventory/pom.xml @@ -20,18 +20,18 @@ de.exceptionflug protocolize - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT de.exceptionflug protocolize-inventory - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT de.exceptionflug protocolize-api - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT provided diff --git a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/ClickWindow.java b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/ClickWindow.java index 094ef128..692e35e6 100644 --- a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/ClickWindow.java +++ b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/ClickWindow.java @@ -38,6 +38,7 @@ public class ClickWindow extends AbstractPacket { MAPPING.put(MINECRAFT_1_14_4, 0x09); MAPPING.put(MINECRAFT_1_15, 0x09); MAPPING.put(MINECRAFT_1_15_1, 0x09); + MAPPING.put(MINECRAFT_1_15_2, 0x09); } private int windowId, actionNumber; diff --git a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/CloseWindow.java b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/CloseWindow.java index 9b53043f..1d5a1a5d 100644 --- a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/CloseWindow.java +++ b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/CloseWindow.java @@ -37,6 +37,7 @@ public class CloseWindow extends AbstractPacket { MAPPING_CLIENTBOUND.put(MINECRAFT_1_14_4, 0x13); MAPPING_CLIENTBOUND.put(MINECRAFT_1_15, 0x14); MAPPING_CLIENTBOUND.put(MINECRAFT_1_15_1, 0x14); + MAPPING_CLIENTBOUND.put(MINECRAFT_1_15_2, 0x14); MAPPING_SERVERBOUND.put(MINECRAFT_1_8, 0x0D); MAPPING_SERVERBOUND.put(MINECRAFT_1_9, 0x08); @@ -59,6 +60,7 @@ public class CloseWindow extends AbstractPacket { MAPPING_SERVERBOUND.put(MINECRAFT_1_14_4, 0x0A); MAPPING_SERVERBOUND.put(MINECRAFT_1_15, 0x0A); MAPPING_SERVERBOUND.put(MINECRAFT_1_15_1, 0x0A); + MAPPING_SERVERBOUND.put(MINECRAFT_1_15_2, 0x0A); } private int windowId; diff --git a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/ConfirmTransaction.java b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/ConfirmTransaction.java index ee787ab4..cda535c6 100644 --- a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/ConfirmTransaction.java +++ b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/ConfirmTransaction.java @@ -38,6 +38,7 @@ public class ConfirmTransaction extends AbstractPacket { MAPPING_CLIENTBOUND.put(MINECRAFT_1_14_4, 0x12); MAPPING_CLIENTBOUND.put(MINECRAFT_1_15, 0x13); MAPPING_CLIENTBOUND.put(MINECRAFT_1_15_1, 0x13); + MAPPING_CLIENTBOUND.put(MINECRAFT_1_15_2, 0x13); MAPPING_SERVERBOUND.put(MINECRAFT_1_9, 0x05); MAPPING_SERVERBOUND.put(MINECRAFT_1_9_1, 0x05); @@ -59,6 +60,7 @@ public class ConfirmTransaction extends AbstractPacket { MAPPING_SERVERBOUND.put(MINECRAFT_1_14_4, 0x07); MAPPING_SERVERBOUND.put(MINECRAFT_1_15, 0x07); MAPPING_SERVERBOUND.put(MINECRAFT_1_15_1, 0x07); + MAPPING_SERVERBOUND.put(MINECRAFT_1_15_2, 0x07); } private int windowId; diff --git a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/OpenWindow.java b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/OpenWindow.java index 200e0d49..d1908b31 100644 --- a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/OpenWindow.java +++ b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/OpenWindow.java @@ -40,6 +40,7 @@ public class OpenWindow extends AbstractPacket { MAPPING.put(MINECRAFT_1_14_4, 0x2E); MAPPING.put(MINECRAFT_1_15, 0x2F); MAPPING.put(MINECRAFT_1_15_1, 0x2F); + MAPPING.put(MINECRAFT_1_15_2, 0x2F); } private int windowId; diff --git a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/WindowProperty.java b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/WindowProperty.java index db51067f..575fa695 100644 --- a/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/WindowProperty.java +++ b/protocolize-inventory/src/main/java/de/exceptionflug/protocolize/inventory/packet/WindowProperty.java @@ -37,6 +37,7 @@ public class WindowProperty extends AbstractPacket { MAPPING.put(MINECRAFT_1_14_4, 0x15); MAPPING.put(MINECRAFT_1_15, 0x16); MAPPING.put(MINECRAFT_1_15_1, 0x16); + MAPPING.put(MINECRAFT_1_15_2, 0x16); } private int windowId; diff --git a/protocolize-items/pom.xml b/protocolize-items/pom.xml index 304d4ef4..d0df3626 100644 --- a/protocolize-items/pom.xml +++ b/protocolize-items/pom.xml @@ -8,7 +8,7 @@ de.exceptionflug protocolize-protogen-plugin - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT generate-sources @@ -33,12 +33,12 @@ de.exceptionflug protocolize - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT de.exceptionflug protocolize-items - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT diff --git a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/BlockPlacement.java b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/BlockPlacement.java index b7260c00..639544e5 100644 --- a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/BlockPlacement.java +++ b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/BlockPlacement.java @@ -39,6 +39,7 @@ public class BlockPlacement extends AbstractPacket { MAPPING.put(MINECRAFT_1_14_4, 0x2C); MAPPING.put(MINECRAFT_1_15, 0x2C); MAPPING.put(MINECRAFT_1_15_1, 0x2C); + MAPPING.put(MINECRAFT_1_15_2, 0x2C); } private BlockPosition position; diff --git a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/HeldItemChange.java b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/HeldItemChange.java index 65271bbf..e465c953 100644 --- a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/HeldItemChange.java +++ b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/HeldItemChange.java @@ -37,6 +37,7 @@ public class HeldItemChange extends AbstractPacket { MAPPING_CLIENTBOUND.put(MINECRAFT_1_14_4, 0x3F); MAPPING_CLIENTBOUND.put(MINECRAFT_1_15, 0x40); MAPPING_CLIENTBOUND.put(MINECRAFT_1_15_1, 0x40); + MAPPING_CLIENTBOUND.put(MINECRAFT_1_15_2, 0x40); MAPPING_SERVERBOUND.put(MINECRAFT_1_8, 0x09); MAPPING_SERVERBOUND.put(MINECRAFT_1_9, 0x17); @@ -59,6 +60,7 @@ public class HeldItemChange extends AbstractPacket { MAPPING_SERVERBOUND.put(MINECRAFT_1_14_4, 0x23); MAPPING_SERVERBOUND.put(MINECRAFT_1_15, 0x23); MAPPING_SERVERBOUND.put(MINECRAFT_1_15_1, 0x23); + MAPPING_SERVERBOUND.put(MINECRAFT_1_15_2, 0x23); } private short newSlot; diff --git a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/SetSlot.java b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/SetSlot.java index d43185f2..eb6de02c 100644 --- a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/SetSlot.java +++ b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/SetSlot.java @@ -38,6 +38,7 @@ public class SetSlot extends AbstractPacket { MAPPING.put(MINECRAFT_1_14_4, 0x16); MAPPING.put(MINECRAFT_1_15, 0x17); MAPPING.put(MINECRAFT_1_15_1, 0x17); + MAPPING.put(MINECRAFT_1_15_2, 0x17); } private byte windowId; diff --git a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/UseItem.java b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/UseItem.java index 7c130a87..3ba5eec8 100644 --- a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/UseItem.java +++ b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/UseItem.java @@ -36,6 +36,7 @@ public class UseItem extends AbstractPacket { MAPPING.put(MINECRAFT_1_14_4, 0x2D); MAPPING.put(MINECRAFT_1_15, 0x2D); MAPPING.put(MINECRAFT_1_15_1, 0x2D); + MAPPING.put(MINECRAFT_1_15_2, 0x2D); } private Hand hand; diff --git a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/WindowItems.java b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/WindowItems.java index 5ca5b4d1..539947fa 100644 --- a/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/WindowItems.java +++ b/protocolize-items/src/main/java/de/exceptionflug/protocolize/items/packet/WindowItems.java @@ -43,6 +43,7 @@ public class WindowItems extends AbstractPacket { MAPPING.put(MINECRAFT_1_14_4, 0x14); MAPPING.put(MINECRAFT_1_15, 0x15); MAPPING.put(MINECRAFT_1_15_1, 0x15); + MAPPING.put(MINECRAFT_1_15_2, 0x15); } public WindowItems(final short windowId, final List items) { diff --git a/protocolize-items/src/main/json/ItemType.json b/protocolize-items/src/main/json/ItemType.json index 4384f08f..387a5eb7 100644 --- a/protocolize-items/src/main/json/ItemType.json +++ b/protocolize-items/src/main/json/ItemType.json @@ -24,7 +24,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 442 } ] @@ -36,7 +36,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 713 } ] @@ -61,7 +61,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 310 } ] @@ -85,7 +85,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 550 } ] @@ -103,7 +103,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 465 } ] @@ -134,7 +134,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 751 } ] @@ -158,7 +158,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 410 } ] @@ -176,7 +176,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 169 } ] @@ -200,7 +200,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 268 } ] @@ -212,7 +212,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 698 } ] @@ -236,7 +236,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 223 } ] @@ -248,7 +248,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 256 } ] @@ -278,7 +278,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 789 } ] @@ -296,7 +296,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 50 } ] @@ -321,7 +321,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 336 } ] @@ -340,7 +340,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 105 } ] @@ -359,7 +359,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 100 } ] @@ -389,7 +389,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 508 } ] @@ -401,7 +401,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 40 } ] @@ -426,7 +426,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 284 } ] @@ -457,7 +457,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 772 } ] @@ -476,7 +476,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 94 } ] @@ -506,7 +506,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 757 } ] @@ -518,7 +518,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 251 } ] @@ -542,7 +542,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 382 } ] @@ -566,7 +566,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 523 } ] @@ -591,7 +591,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 207 } ] @@ -616,7 +616,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 127 } ] @@ -634,7 +634,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 66 } ] @@ -659,7 +659,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 118 } ] @@ -684,7 +684,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 664 } ] @@ -696,7 +696,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 483 } ] @@ -720,7 +720,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 623 } ] @@ -750,7 +750,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 849 } ] @@ -769,7 +769,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 16 } ] @@ -799,7 +799,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 795 } ] @@ -823,7 +823,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 618 } ] @@ -841,7 +841,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 445 } ] @@ -865,7 +865,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 529 } ] @@ -889,7 +889,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 534 } ] @@ -907,7 +907,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 12 } ] @@ -925,7 +925,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 456 } ] @@ -950,7 +950,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 354 } ] @@ -962,7 +962,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 493 } ] @@ -986,7 +986,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 526 } ] @@ -998,7 +998,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 69 } ] @@ -1016,7 +1016,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 836 } ] @@ -1040,7 +1040,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 384 } ] @@ -1052,7 +1052,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 253 } ] @@ -1071,7 +1071,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 96 } ] @@ -1095,7 +1095,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 243 } ] @@ -1113,7 +1113,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 364 } ] @@ -1132,7 +1132,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 7 } ] @@ -1156,7 +1156,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 158 } ] @@ -1168,7 +1168,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 863 } ] @@ -1180,7 +1180,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 108 } ] @@ -1205,7 +1205,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 200 } ] @@ -1224,7 +1224,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 4 } ] @@ -1254,7 +1254,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 818 } ] @@ -1272,7 +1272,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 416 } ] @@ -1284,7 +1284,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 503 } ] @@ -1296,7 +1296,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 250 } ] @@ -1327,7 +1327,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 716 } ] @@ -1345,7 +1345,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 737 } ] @@ -1357,7 +1357,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 252 } ] @@ -1376,7 +1376,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 55 } ] @@ -1400,7 +1400,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 180 } ] @@ -1418,7 +1418,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 264 } ] @@ -1442,7 +1442,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 524 } ] @@ -1466,7 +1466,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 832 } ] @@ -1490,7 +1490,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 595 } ] @@ -1508,7 +1508,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 444 } ] @@ -1532,7 +1532,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 598 } ] @@ -1550,7 +1550,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 171 } ] @@ -1574,7 +1574,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 687 } ] @@ -1586,7 +1586,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 45 } ] @@ -1610,7 +1610,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 259 } ] @@ -1628,7 +1628,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 26 } ] @@ -1647,7 +1647,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 2 } ] @@ -1671,7 +1671,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 671 } ] @@ -1695,7 +1695,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 536 } ] @@ -1720,7 +1720,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 346 } ] @@ -1745,7 +1745,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 293 } ] @@ -1769,7 +1769,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 686 } ] @@ -1793,7 +1793,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 631 } ] @@ -1818,7 +1818,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 304 } ] @@ -1848,7 +1848,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 821 } ] @@ -1860,7 +1860,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 109 } ] @@ -1884,7 +1884,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 670 } ] @@ -1908,7 +1908,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 299 } ] @@ -1932,7 +1932,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 573 } ] @@ -1957,7 +1957,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 645 } ] @@ -1969,7 +1969,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 871 } ] @@ -1994,7 +1994,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 360 } ] @@ -2013,7 +2013,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 101 } ] @@ -2037,7 +2037,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 163 } ] @@ -2049,7 +2049,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 857 } ] @@ -2079,7 +2079,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 777 } ] @@ -2097,7 +2097,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 73 } ] @@ -2109,7 +2109,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 124 } ] @@ -2134,7 +2134,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 339 } ] @@ -2152,7 +2152,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 441 } ] @@ -2176,7 +2176,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 316 } ] @@ -2194,7 +2194,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 232 } ] @@ -2212,7 +2212,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 708 } ] @@ -2224,7 +2224,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 10 } ] @@ -2242,7 +2242,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 405 } ] @@ -2266,7 +2266,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 191 } ] @@ -2278,7 +2278,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 504 } ] @@ -2290,7 +2290,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 858 } ] @@ -2314,7 +2314,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 387 } ] @@ -2338,7 +2338,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 584 } ] @@ -2362,7 +2362,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 213 } ] @@ -2393,7 +2393,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 754 } ] @@ -2417,7 +2417,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 156 } ] @@ -2442,7 +2442,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 266 } ] @@ -2460,7 +2460,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 56 } ] @@ -2479,12 +2479,12 @@ "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, "protocolRangeEnd": 404, - "id": 575 + "id": 578 }, { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 629 } ] @@ -2515,7 +2515,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 811 } ] @@ -2540,7 +2540,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 656 } ] @@ -2571,7 +2571,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 668 } ] @@ -2589,7 +2589,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 62 } ] @@ -2619,7 +2619,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 827 } ] @@ -2649,7 +2649,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 838 } ] @@ -2661,7 +2661,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 39 } ] @@ -2685,7 +2685,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 533 } ] @@ -2709,7 +2709,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 148 } ] @@ -2739,7 +2739,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 781 } ] @@ -2751,7 +2751,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 488 } ] @@ -2775,7 +2775,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 556 } ] @@ -2799,7 +2799,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 141 } ] @@ -2811,7 +2811,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 700 } ] @@ -2823,7 +2823,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 255 } ] @@ -2847,7 +2847,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 515 } ] @@ -2878,7 +2878,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 739 } ] @@ -2897,7 +2897,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 63 } ] @@ -2922,7 +2922,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 314 } ] @@ -2946,7 +2946,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 229 } ] @@ -2964,7 +2964,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 725 } ] @@ -2989,7 +2989,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 333 } ] @@ -3014,7 +3014,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 697 } ] @@ -3045,7 +3045,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 816 } ] @@ -3069,7 +3069,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 322 } ] @@ -3094,7 +3094,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 356 } ] @@ -3120,7 +3120,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 33 } ] @@ -3144,7 +3144,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 183 } ] @@ -3180,7 +3180,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 767 } ] @@ -3204,7 +3204,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 345 } ] @@ -3229,7 +3229,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 334 } ] @@ -3241,7 +3241,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 258 } ] @@ -3265,7 +3265,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 374 } ] @@ -3289,7 +3289,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 624 } ] @@ -3301,7 +3301,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 594 } ] @@ -3325,7 +3325,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 549 } ] @@ -3356,7 +3356,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 730 } ] @@ -3374,7 +3374,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 440 } ] @@ -3398,7 +3398,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 149 } ] @@ -3422,7 +3422,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 412 } ] @@ -3452,7 +3452,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 759 } ] @@ -3476,7 +3476,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 543 } ] @@ -3501,7 +3501,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 343 } ] @@ -3531,7 +3531,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 780 } ] @@ -3555,7 +3555,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 297 } ] @@ -3579,7 +3579,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 610 } ] @@ -3591,7 +3591,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 748 } ] @@ -3615,7 +3615,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 566 } ] @@ -3639,7 +3639,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 604 } ] @@ -3663,7 +3663,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 678 } ] @@ -3687,7 +3687,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 159 } ] @@ -3718,7 +3718,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 736 } ] @@ -3743,7 +3743,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 362 } ] @@ -3769,7 +3769,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 37 } ] @@ -3787,7 +3787,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 467 } ] @@ -3811,7 +3811,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 565 } ] @@ -3835,7 +3835,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 622 } ] @@ -3853,7 +3853,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 519 } ] @@ -3877,7 +3877,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 383 } ] @@ -3901,7 +3901,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 682 } ] @@ -3926,7 +3926,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 277 } ] @@ -3950,7 +3950,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 272 } ] @@ -3975,7 +3975,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 117 } ] @@ -3999,7 +3999,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 386 } ] @@ -4024,7 +4024,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 130 } ] @@ -4055,7 +4055,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 733 } ] @@ -4079,7 +4079,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 276 } ] @@ -4103,7 +4103,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 175 } ] @@ -4133,7 +4133,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 783 } ] @@ -4164,7 +4164,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 749 } ] @@ -4188,7 +4188,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 611 } ] @@ -4218,7 +4218,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 792 } ] @@ -4242,7 +4242,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 185 } ] @@ -4266,7 +4266,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 186 } ] @@ -4290,7 +4290,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 525 } ] @@ -4308,7 +4308,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 460 } ] @@ -4326,7 +4326,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 466 } ] @@ -4350,7 +4350,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 652 } ] @@ -4374,7 +4374,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 144 } ] @@ -4398,7 +4398,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 271 } ] @@ -4428,7 +4428,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 791 } ] @@ -4446,7 +4446,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 458 } ] @@ -4470,7 +4470,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 242 } ] @@ -4495,7 +4495,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 309 } ] @@ -4519,7 +4519,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 379 } ] @@ -4537,7 +4537,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 194 } ] @@ -4561,7 +4561,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 833 } ] @@ -4573,7 +4573,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 867 } ] @@ -4597,7 +4597,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 131 } ] @@ -4621,7 +4621,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 145 } ] @@ -4639,7 +4639,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 469 } ] @@ -4658,7 +4658,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 102 } ] @@ -4676,7 +4676,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 840 } ] @@ -4701,7 +4701,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 355 } ] @@ -4725,7 +4725,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 402 } ] @@ -4743,7 +4743,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 717 } ] @@ -4755,7 +4755,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 868 } ] @@ -4786,7 +4786,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 752 } ] @@ -4811,7 +4811,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 528 } ] @@ -4841,7 +4841,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 823 } ] @@ -4853,7 +4853,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 110 } ] @@ -4871,7 +4871,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 81 } ] @@ -4889,7 +4889,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 472 } ] @@ -4920,7 +4920,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 806 } ] @@ -4938,7 +4938,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 370 } ] @@ -4957,7 +4957,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 21 } ] @@ -4981,7 +4981,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 569 } ] @@ -4999,7 +4999,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 418 } ] @@ -5023,7 +5023,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 133 } ] @@ -5047,7 +5047,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 601 } ] @@ -5078,7 +5078,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 812 } ] @@ -5096,7 +5096,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 439 } ] @@ -5122,7 +5122,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 34 } ] @@ -5140,7 +5140,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 136 } ] @@ -5159,7 +5159,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 17 } ] @@ -5183,7 +5183,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 224 } ] @@ -5207,7 +5207,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 368 } ] @@ -5231,7 +5231,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 564 } ] @@ -5249,7 +5249,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 425 } ] @@ -5267,7 +5267,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 365 } ] @@ -5291,7 +5291,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 121 } ] @@ -5303,7 +5303,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 796 } ] @@ -5322,7 +5322,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 58 } ] @@ -5352,7 +5352,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 778 } ] @@ -5376,7 +5376,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 227 } ] @@ -5400,7 +5400,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 111 } ] @@ -5424,7 +5424,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 390 } ] @@ -5455,7 +5455,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 722 } ] @@ -5473,7 +5473,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 170 } ] @@ -5497,7 +5497,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 672 } ] @@ -5516,7 +5516,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 27 } ] @@ -5528,7 +5528,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 478 } ] @@ -5559,7 +5559,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 804 } ] @@ -5583,7 +5583,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 278 } ] @@ -5601,7 +5601,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 613 } ] @@ -5631,7 +5631,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 693 } ] @@ -5655,7 +5655,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 178 } ] @@ -5679,7 +5679,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 653 } ] @@ -5691,7 +5691,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 499 } ] @@ -5715,7 +5715,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 570 } ] @@ -5727,7 +5727,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 48 } ] @@ -5757,7 +5757,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 779 } ] @@ -5782,7 +5782,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 636 } ] @@ -5813,7 +5813,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 704 } ] @@ -5831,7 +5831,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 709 } ] @@ -5862,7 +5862,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 810 } ] @@ -5893,7 +5893,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 815 } ] @@ -5905,7 +5905,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 590 } ] @@ -5930,7 +5930,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 340 } ] @@ -5948,7 +5948,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 755 } ] @@ -5960,7 +5960,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 46 } ] @@ -5984,7 +5984,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 321 } ] @@ -6008,7 +6008,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 112 } ] @@ -6026,7 +6026,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 674 } ] @@ -6056,7 +6056,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 800 } ] @@ -6081,7 +6081,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 332 } ] @@ -6100,7 +6100,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 20 } ] @@ -6118,7 +6118,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 855 } ] @@ -6130,7 +6130,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 864 } ] @@ -6142,7 +6142,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 492 } ] @@ -6154,7 +6154,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 479 } ] @@ -6172,7 +6172,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 457 } ] @@ -6190,7 +6190,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 518 } ] @@ -6208,7 +6208,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 605 } ] @@ -6232,7 +6232,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 514 } ] @@ -6263,7 +6263,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 726 } ] @@ -6287,7 +6287,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 172 } ] @@ -6311,7 +6311,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 689 } ] @@ -6329,7 +6329,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 449 } ] @@ -6360,7 +6360,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 770 } ] @@ -6372,7 +6372,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 249 } ] @@ -6397,7 +6397,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 289 } ] @@ -6422,7 +6422,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 348 } ] @@ -6440,7 +6440,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 8 } ] @@ -6470,7 +6470,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 839 } ] @@ -6495,7 +6495,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 331 } ] @@ -6519,7 +6519,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 619 } ] @@ -6537,7 +6537,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 31 } ] @@ -6567,7 +6567,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 786 } ] @@ -6591,7 +6591,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 176 } ] @@ -6615,7 +6615,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 391 } ] @@ -6633,7 +6633,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 437 } ] @@ -6645,7 +6645,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 44 } ] @@ -6663,7 +6663,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 29 } ] @@ -6688,7 +6688,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 313 } ] @@ -6712,7 +6712,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 691 } ] @@ -6730,7 +6730,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 451 } ] @@ -6754,7 +6754,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 179 } ] @@ -6779,7 +6779,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 324 } ] @@ -6809,7 +6809,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 790 } ] @@ -6833,7 +6833,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 371 } ] @@ -6857,7 +6857,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 600 } ] @@ -6882,7 +6882,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 363 } ] @@ -6912,7 +6912,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 852 } ] @@ -6942,7 +6942,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 828 } ] @@ -6960,7 +6960,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 453 } ] @@ -6984,7 +6984,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 408 } ] @@ -6996,7 +6996,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 650 } ] @@ -7020,7 +7020,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 617 } ] @@ -7044,7 +7044,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 220 } ] @@ -7056,7 +7056,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 247 } ] @@ -7080,7 +7080,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 218 } ] @@ -7104,7 +7104,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 577 } ] @@ -7122,7 +7122,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 421 } ] @@ -7140,7 +7140,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 824 } ] @@ -7152,7 +7152,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 482 } ] @@ -7170,7 +7170,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 198 } ] @@ -7195,7 +7195,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 285 } ] @@ -7220,7 +7220,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 369 } ] @@ -7239,7 +7239,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 53 } ] @@ -7263,7 +7263,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 675 } ] @@ -7294,7 +7294,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 802 } ] @@ -7324,7 +7324,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 511 } ] @@ -7348,7 +7348,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 361 } ] @@ -7373,7 +7373,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 206 } ] @@ -7397,7 +7397,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 579 } ] @@ -7415,7 +7415,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 446 } ] @@ -7440,7 +7440,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 139 } ] @@ -7464,7 +7464,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 157 } ] @@ -7482,7 +7482,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 19 } ] @@ -7500,7 +7500,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 724 } ] @@ -7525,7 +7525,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 128 } ] @@ -7543,7 +7543,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 420 } ] @@ -7562,7 +7562,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 61 } ] @@ -7586,7 +7586,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 522 } ] @@ -7610,7 +7610,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 367 } ] @@ -7640,7 +7640,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 214 } ] @@ -7658,7 +7658,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 426 } ] @@ -7670,7 +7670,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 875 } ] @@ -7700,7 +7700,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 829 } ] @@ -7712,7 +7712,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 122 } ] @@ -7730,7 +7730,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 140 } ] @@ -7748,7 +7748,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 703 } ] @@ -7773,7 +7773,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 358 } ] @@ -7791,7 +7791,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 414 } ] @@ -7815,7 +7815,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 651 } ] @@ -7845,7 +7845,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 766 } ] @@ -7863,7 +7863,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 376 } ] @@ -7893,7 +7893,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 845 } ] @@ -7911,7 +7911,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 438 } ] @@ -7923,7 +7923,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 866 } ] @@ -7947,7 +7947,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 535 } ] @@ -7966,7 +7966,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 15 } ] @@ -7984,7 +7984,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 372 } ] @@ -8002,7 +8002,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 744 } ] @@ -8020,7 +8020,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 443 } ] @@ -8050,7 +8050,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 509 } ] @@ -8074,7 +8074,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 683 } ] @@ -8098,7 +8098,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 835 } ] @@ -8122,7 +8122,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 616 } ] @@ -8141,7 +8141,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 642 } ] @@ -8166,7 +8166,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 311 } ] @@ -8196,7 +8196,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 794 } ] @@ -8220,7 +8220,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 233 } ] @@ -8238,7 +8238,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 68 } ] @@ -8268,7 +8268,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 847 } ] @@ -8292,7 +8292,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 562 } ] @@ -8316,7 +8316,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 265 } ] @@ -8340,7 +8340,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 513 } ] @@ -8358,7 +8358,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 461 } ] @@ -8382,7 +8382,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 143 } ] @@ -8394,7 +8394,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 486 } ] @@ -8418,7 +8418,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 680 } ] @@ -8437,7 +8437,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 51 } ] @@ -8462,7 +8462,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 296 } ] @@ -8474,7 +8474,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 484 } ] @@ -8504,7 +8504,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 756 } ] @@ -8534,7 +8534,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 799 } ] @@ -8552,7 +8552,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 854 } ] @@ -8576,7 +8576,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 182 } ] @@ -8595,7 +8595,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 87 } ] @@ -8620,7 +8620,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 626 } ] @@ -8644,7 +8644,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 166 } ] @@ -8656,7 +8656,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 882 } ] @@ -8668,7 +8668,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 49 } ] @@ -8692,7 +8692,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 241 } ] @@ -8710,7 +8710,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 195 } ] @@ -8722,7 +8722,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 517 } ] @@ -8747,7 +8747,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 330 } ] @@ -8771,7 +8771,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 531 } ] @@ -8789,7 +8789,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 64 } ] @@ -8819,7 +8819,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 761 } ] @@ -8843,7 +8843,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 190 } ] @@ -8873,7 +8873,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 760 } ] @@ -8897,8 +8897,8 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, - "id": 575 + "protocolRangeEnd": 578, + "id": 578 } ] }, @@ -8922,7 +8922,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 342 } ] @@ -8947,7 +8947,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 352 } ] @@ -8977,7 +8977,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 837 } ] @@ -8996,7 +8996,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 93 } ] @@ -9015,7 +9015,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 84 } ] @@ -9039,7 +9039,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 571 } ] @@ -9057,7 +9057,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 464 } ] @@ -9082,7 +9082,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 634 } ] @@ -9107,7 +9107,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 660 } ] @@ -9125,7 +9125,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 99 } ] @@ -9150,7 +9150,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 290 } ] @@ -9174,7 +9174,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 238 } ] @@ -9198,7 +9198,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 318 } ] @@ -9216,7 +9216,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 417 } ] @@ -9240,7 +9240,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 319 } ] @@ -9264,7 +9264,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 621 } ] @@ -9288,7 +9288,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 215 } ] @@ -9312,7 +9312,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 580 } ] @@ -9337,7 +9337,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 201 } ] @@ -9373,7 +9373,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 763 } ] @@ -9404,7 +9404,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 719 } ] @@ -9434,7 +9434,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 841 } ] @@ -9464,7 +9464,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 850 } ] @@ -9494,7 +9494,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 851 } ] @@ -9513,7 +9513,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 11 } ] @@ -9538,7 +9538,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 665 } ] @@ -9556,7 +9556,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 463 } ] @@ -9581,7 +9581,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 315 } ] @@ -9606,7 +9606,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 287 } ] @@ -9630,7 +9630,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 542 } ] @@ -9648,7 +9648,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 454 } ] @@ -9672,7 +9672,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 404 } ] @@ -9702,7 +9702,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 798 } ] @@ -9726,7 +9726,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 184 } ] @@ -9750,7 +9750,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 153 } ] @@ -9768,7 +9768,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 429 } ] @@ -9792,7 +9792,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 162 } ] @@ -9817,7 +9817,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 288 } ] @@ -9829,7 +9829,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 876 } ] @@ -9859,7 +9859,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 758 } ] @@ -9883,7 +9883,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 578 } ] @@ -9901,7 +9901,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 25 } ] @@ -9931,7 +9931,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 787 } ] @@ -9955,7 +9955,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 406 } ] @@ -9973,7 +9973,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 373 } ] @@ -9992,7 +9992,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 89 } ] @@ -10004,7 +10004,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 43 } ] @@ -10029,7 +10029,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 120 } ] @@ -10041,7 +10041,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 589 } ] @@ -10059,7 +10059,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 427 } ] @@ -10083,7 +10083,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 560 } ] @@ -10095,7 +10095,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 880 } ] @@ -10119,7 +10119,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 388 } ] @@ -10137,7 +10137,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 608 } ] @@ -10161,7 +10161,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 226 } ] @@ -10185,7 +10185,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 181 } ] @@ -10197,7 +10197,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 869 } ] @@ -10209,7 +10209,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 860 } ] @@ -10233,7 +10233,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 620 } ] @@ -10263,7 +10263,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 609 } ] @@ -10294,7 +10294,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 809 } ] @@ -10325,7 +10325,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 710 } ] @@ -10355,7 +10355,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 822 } ] @@ -10379,7 +10379,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 219 } ] @@ -10397,7 +10397,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 415 } ] @@ -10421,7 +10421,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 396 } ] @@ -10439,7 +10439,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 196 } ] @@ -10463,7 +10463,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 279 } ] @@ -10487,7 +10487,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 546 } ] @@ -10518,7 +10518,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 735 } ] @@ -10542,7 +10542,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 587 } ] @@ -10560,7 +10560,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 753 } ] @@ -10584,7 +10584,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 574 } ] @@ -10609,7 +10609,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 588 } ] @@ -10627,7 +10627,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 734 } ] @@ -10657,7 +10657,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 784 } ] @@ -10682,7 +10682,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 301 } ] @@ -10707,7 +10707,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 306 } ] @@ -10731,7 +10731,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 378 } ] @@ -10755,7 +10755,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 599 } ] @@ -10767,7 +10767,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 873 } ] @@ -10785,7 +10785,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 434 } ] @@ -10816,7 +10816,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 808 } ] @@ -10835,7 +10835,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 95 } ] @@ -10853,7 +10853,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 470 } ] @@ -10865,7 +10865,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 648 } ] @@ -10883,7 +10883,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 820 } ] @@ -10907,7 +10907,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 557 } ] @@ -10919,7 +10919,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 496 } ] @@ -10937,7 +10937,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 366 } ] @@ -10961,7 +10961,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 554 } ] @@ -10992,7 +10992,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 807 } ] @@ -11010,7 +11010,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 419 } ] @@ -11034,7 +11034,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 547 } ] @@ -11058,7 +11058,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 572 } ] @@ -11088,7 +11088,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 785 } ] @@ -11112,7 +11112,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 677 } ] @@ -11130,7 +11130,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 262 } ] @@ -11155,7 +11155,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 211 } ] @@ -11180,7 +11180,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 292 } ] @@ -11204,7 +11204,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 209 } ] @@ -11222,7 +11222,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 471 } ] @@ -11246,7 +11246,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 399 } ] @@ -11264,7 +11264,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 462 } ] @@ -11288,7 +11288,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 397 } ] @@ -11312,7 +11312,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 559 } ] @@ -11337,7 +11337,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 667 } ] @@ -11367,7 +11367,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 694 } ] @@ -11379,7 +11379,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 490 } ] @@ -11397,7 +11397,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 750 } ] @@ -11421,7 +11421,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 239 } ] @@ -11445,7 +11445,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 520 } ] @@ -11470,7 +11470,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 350 } ] @@ -11501,7 +11501,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 803 } ] @@ -11531,7 +11531,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 843 } ] @@ -11543,7 +11543,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 649 } ] @@ -11567,7 +11567,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 582 } ] @@ -11591,7 +11591,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 400 } ] @@ -11616,7 +11616,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 335 } ] @@ -11640,7 +11640,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 240 } ] @@ -11671,7 +11671,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 701 } ] @@ -11689,7 +11689,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 476 } ] @@ -11714,7 +11714,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 637 } ] @@ -11726,7 +11726,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 505 } ] @@ -11750,7 +11750,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 392 } ] @@ -11768,7 +11768,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 455 } ] @@ -11786,7 +11786,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 612 } ] @@ -11798,7 +11798,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 41 } ] @@ -11810,7 +11810,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 501 } ] @@ -11834,7 +11834,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 113 } ] @@ -11858,7 +11858,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 221 } ] @@ -11876,7 +11876,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 167 } ] @@ -11894,7 +11894,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 60 } ] @@ -11919,7 +11919,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 126 } ] @@ -11943,7 +11943,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 270 } ] @@ -11961,7 +11961,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 435 } ] @@ -11985,7 +11985,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 673 } ] @@ -12003,7 +12003,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 432 } ] @@ -12028,7 +12028,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 643 } ] @@ -12053,7 +12053,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 635 } ] @@ -12077,7 +12077,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 654 } ] @@ -12095,7 +12095,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 468 } ] @@ -12121,7 +12121,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 35 } ] @@ -12139,7 +12139,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 71 } ] @@ -12170,7 +12170,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 738 } ] @@ -12194,7 +12194,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 597 } ] @@ -12219,7 +12219,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 116 } ] @@ -12243,7 +12243,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 544 } ] @@ -12268,7 +12268,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 326 } ] @@ -12292,7 +12292,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 545 } ] @@ -12311,7 +12311,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 107 } ] @@ -12335,7 +12335,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 596 } ] @@ -12347,7 +12347,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 593 } ] @@ -12371,7 +12371,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 244 } ] @@ -12383,7 +12383,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 883 } ] @@ -12407,7 +12407,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 228 } ] @@ -12425,7 +12425,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 75 } ] @@ -12449,7 +12449,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 32 } ] @@ -12461,7 +12461,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 47 } ] @@ -12479,7 +12479,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 447 } ] @@ -12504,7 +12504,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 628 } ] @@ -12529,7 +12529,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 658 } ] @@ -12565,7 +12565,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 825 } ] @@ -12596,7 +12596,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 702 } ] @@ -12621,7 +12621,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 305 } ] @@ -12645,7 +12645,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 553 } ] @@ -12670,7 +12670,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 275 } ] @@ -12694,7 +12694,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 407 } ] @@ -12718,7 +12718,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 212 } ] @@ -12736,7 +12736,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 413 } ] @@ -12760,7 +12760,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 576 } ] @@ -12772,7 +12772,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 47, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 1 } ] @@ -12791,7 +12791,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 86 } ] @@ -12816,7 +12816,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 325 } ] @@ -12841,7 +12841,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 312 } ] @@ -12865,7 +12865,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 685 } ] @@ -12889,7 +12889,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 551 } ] @@ -12913,7 +12913,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 36 } ] @@ -12944,7 +12944,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 705 } ] @@ -12969,7 +12969,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 202 } ] @@ -12993,7 +12993,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 398 } ] @@ -13011,7 +13011,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 431 } ] @@ -13035,7 +13035,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 142 } ] @@ -13047,7 +13047,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 874 } ] @@ -13059,7 +13059,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 42 } ] @@ -13095,7 +13095,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 764 } ] @@ -13119,7 +13119,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 684 } ] @@ -13150,7 +13150,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 814 } ] @@ -13162,7 +13162,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 47, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 0 } ] @@ -13174,7 +13174,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 487 } ] @@ -13186,7 +13186,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 879 } ] @@ -13210,7 +13210,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 155 } ] @@ -13228,7 +13228,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 706 } ] @@ -13253,7 +13253,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 646 } ] @@ -13278,7 +13278,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 641 } ] @@ -13302,7 +13302,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 507 } ] @@ -13326,7 +13326,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 225 } ] @@ -13356,7 +13356,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 765 } ] @@ -13380,7 +13380,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 152 } ] @@ -13404,7 +13404,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 161 } ] @@ -13428,7 +13428,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 210 } ] @@ -13452,7 +13452,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 327 } ] @@ -13470,7 +13470,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 78 } ] @@ -13494,7 +13494,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 625 } ] @@ -13512,7 +13512,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 125 } ] @@ -13537,7 +13537,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 303 } ] @@ -13562,7 +13562,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 640 } ] @@ -13580,7 +13580,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 459 } ] @@ -13605,7 +13605,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 353 } ] @@ -13623,7 +13623,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 856 } ] @@ -13647,7 +13647,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 317 } ] @@ -13671,7 +13671,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 329 } ] @@ -13695,7 +13695,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 151 } ] @@ -13725,7 +13725,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 844 } ] @@ -13737,7 +13737,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 647 } ] @@ -13755,7 +13755,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 197 } ] @@ -13779,7 +13779,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 300 } ] @@ -13797,7 +13797,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 747 } ] @@ -13821,7 +13821,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 527 } ] @@ -13846,7 +13846,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 208 } ] @@ -13858,7 +13858,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 516 } ] @@ -13882,7 +13882,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 150 } ] @@ -13900,7 +13900,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 853 } ] @@ -13924,7 +13924,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 160 } ] @@ -13942,7 +13942,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 712 } ] @@ -13966,7 +13966,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 192 } ] @@ -13991,7 +13991,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 669 } ] @@ -14009,7 +14009,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 168 } ] @@ -14040,7 +14040,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 746 } ] @@ -14059,7 +14059,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 76 } ] @@ -14102,7 +14102,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 328 } ] @@ -14132,7 +14132,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 782 } ] @@ -14157,7 +14157,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 291 } ] @@ -14169,7 +14169,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 132 } ] @@ -14193,7 +14193,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 692 } ] @@ -14223,7 +14223,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 830 } ] @@ -14241,7 +14241,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 9 } ] @@ -14266,7 +14266,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 661 } ] @@ -14284,7 +14284,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 721 } ] @@ -14308,7 +14308,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 377 } ] @@ -14327,7 +14327,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 5 } ] @@ -14351,7 +14351,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 696 } ] @@ -14363,7 +14363,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 70 } ] @@ -14387,7 +14387,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 281 } ] @@ -14405,7 +14405,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 607 } ] @@ -14430,7 +14430,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 246 } ] @@ -14442,7 +14442,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 862 } ] @@ -14454,7 +14454,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 870 } ] @@ -14472,7 +14472,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 72 } ] @@ -14484,7 +14484,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 592 } ] @@ -14503,7 +14503,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 18 } ] @@ -14534,7 +14534,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 715 } ] @@ -14553,7 +14553,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 54 } ] @@ -14565,7 +14565,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 497 } ] @@ -14589,7 +14589,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 831 } ] @@ -14614,7 +14614,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 337 } ] @@ -14639,7 +14639,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 627 } ] @@ -14651,7 +14651,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 79 } ] @@ -14669,7 +14669,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 13 } ] @@ -14693,7 +14693,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 230 } ] @@ -14717,7 +14717,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 603 } ] @@ -14741,7 +14741,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 538 } ] @@ -14777,7 +14777,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 762 } ] @@ -14801,7 +14801,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 521 } ] @@ -14826,7 +14826,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 638 } ] @@ -14844,7 +14844,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 741 } ] @@ -14869,7 +14869,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 295 } ] @@ -14900,7 +14900,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 720 } ] @@ -14924,7 +14924,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 615 } ] @@ -14948,7 +14948,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 532 } ] @@ -14966,7 +14966,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 606 } ] @@ -14990,7 +14990,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 177 } ] @@ -15002,7 +15002,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 495 } ] @@ -15014,7 +15014,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 727 } ] @@ -15032,7 +15032,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 452 } ] @@ -15044,7 +15044,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 731 } ] @@ -15056,7 +15056,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 494 } ] @@ -15080,7 +15080,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 205 } ] @@ -15104,7 +15104,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 235 } ] @@ -15128,7 +15128,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 581 } ] @@ -15153,7 +15153,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 666 } ] @@ -15183,7 +15183,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 775 } ] @@ -15195,7 +15195,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 498 } ] @@ -15220,7 +15220,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 283 } ] @@ -15232,7 +15232,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 485 } ] @@ -15251,7 +15251,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 14 } ] @@ -15282,7 +15282,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 774 } ] @@ -15294,7 +15294,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 254 } ] @@ -15313,7 +15313,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 97 } ] @@ -15338,7 +15338,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 308 } ] @@ -15356,7 +15356,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 423 } ] @@ -15381,7 +15381,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 663 } ] @@ -15405,7 +15405,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 395 } ] @@ -15429,7 +15429,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 539 } ] @@ -15454,7 +15454,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 302 } ] @@ -15478,7 +15478,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 173 } ] @@ -15496,7 +15496,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 74 } ] @@ -15520,7 +15520,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 187 } ] @@ -15538,7 +15538,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 137 } ] @@ -15562,7 +15562,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 375 } ] @@ -15586,7 +15586,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 245 } ] @@ -15610,7 +15610,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 561 } ] @@ -15628,7 +15628,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 474 } ] @@ -15653,7 +15653,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 119 } ] @@ -15678,7 +15678,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 282 } ] @@ -15690,7 +15690,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 878 } ] @@ -15708,7 +15708,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 428 } ] @@ -15732,7 +15732,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 280 } ] @@ -15744,7 +15744,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 480 } ] @@ -15762,7 +15762,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 707 } ] @@ -15786,7 +15786,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 154 } ] @@ -15810,7 +15810,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 298 } ] @@ -15835,7 +15835,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 344 } ] @@ -15860,7 +15860,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 204 } ] @@ -15891,7 +15891,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 813 } ] @@ -15903,7 +15903,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 481 } ] @@ -15927,7 +15927,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 115 } ] @@ -15939,7 +15939,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 861 } ] @@ -15958,7 +15958,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 24 } ] @@ -15982,7 +15982,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 568 } ] @@ -16000,7 +16000,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 263 } ] @@ -16030,7 +16030,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 846 } ] @@ -16054,7 +16054,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 236 } ] @@ -16084,7 +16084,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 848 } ] @@ -16096,7 +16096,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 881 } ] @@ -16120,7 +16120,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 216 } ] @@ -16144,7 +16144,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 323 } ] @@ -16156,7 +16156,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 877 } ] @@ -16181,7 +16181,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 123 } ] @@ -16199,7 +16199,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 260 } ] @@ -16218,7 +16218,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 91 } ] @@ -16249,7 +16249,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 714 } ] @@ -16273,7 +16273,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 552 } ] @@ -16304,7 +16304,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 740 } ] @@ -16322,7 +16322,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 729 } ] @@ -16340,7 +16340,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 135 } ] @@ -16352,7 +16352,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 859 } ] @@ -16383,7 +16383,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 773 } ] @@ -16401,7 +16401,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 732 } ] @@ -16413,7 +16413,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 723 } ] @@ -16437,7 +16437,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 273 } ] @@ -16455,7 +16455,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 473 } ] @@ -16485,7 +16485,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 817 } ] @@ -16510,7 +16510,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 657 } ] @@ -16522,7 +16522,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 248 } ] @@ -16547,7 +16547,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 351 } ] @@ -16559,7 +16559,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 491 } ] @@ -16583,7 +16583,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 222 } ] @@ -16608,7 +16608,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 267 } ] @@ -16620,7 +16620,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 614 } ] @@ -16638,7 +16638,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 477 } ] @@ -16662,7 +16662,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 563 } ] @@ -16680,7 +16680,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 718 } ] @@ -16704,7 +16704,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 548 } ] @@ -16723,7 +16723,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 59 } ] @@ -16742,7 +16742,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 103 } ] @@ -16766,7 +16766,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 320 } ] @@ -16790,7 +16790,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 385 } ] @@ -16814,7 +16814,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 403 } ] @@ -16838,7 +16838,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 583 } ] @@ -16856,7 +16856,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 98 } ] @@ -16880,7 +16880,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 411 } ] @@ -16904,7 +16904,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 193 } ] @@ -16922,7 +16922,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 433 } ] @@ -16947,7 +16947,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 644 } ] @@ -16966,7 +16966,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 92 } ] @@ -16997,7 +16997,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 805 } ] @@ -17021,7 +17021,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 217 } ] @@ -17045,7 +17045,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 231 } ] @@ -17063,7 +17063,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 28 } ] @@ -17093,7 +17093,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 793 } ] @@ -17118,7 +17118,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 338 } ] @@ -17136,7 +17136,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 65 } ] @@ -17160,7 +17160,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 679 } ] @@ -17185,7 +17185,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 655 } ] @@ -17210,7 +17210,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 632 } ] @@ -17228,7 +17228,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 67 } ] @@ -17253,7 +17253,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 129 } ] @@ -17271,7 +17271,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 422 } ] @@ -17283,7 +17283,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 872 } ] @@ -17301,7 +17301,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 30 } ] @@ -17325,7 +17325,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 189 } ] @@ -17350,7 +17350,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 359 } ] @@ -17380,7 +17380,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 788 } ] @@ -17398,7 +17398,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 743 } ] @@ -17428,7 +17428,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 819 } ] @@ -17453,7 +17453,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 630 } ] @@ -17477,7 +17477,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 393 } ] @@ -17501,7 +17501,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 676 } ] @@ -17519,7 +17519,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 134 } ] @@ -17544,7 +17544,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 138 } ] @@ -17569,7 +17569,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 341 } ] @@ -17593,7 +17593,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 567 } ] @@ -17623,7 +17623,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 769 } ] @@ -17635,7 +17635,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 257 } ] @@ -17659,7 +17659,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 586 } ] @@ -17683,7 +17683,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 146 } ] @@ -17707,7 +17707,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 237 } ] @@ -17726,7 +17726,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 77 } ] @@ -17738,7 +17738,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 591 } ] @@ -17757,7 +17757,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 3 } ] @@ -17776,7 +17776,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 106 } ] @@ -17801,7 +17801,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 203 } ] @@ -17820,7 +17820,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 22 } ] @@ -17844,7 +17844,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 164 } ] @@ -17862,7 +17862,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 448 } ] @@ -17886,7 +17886,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 165 } ] @@ -17911,7 +17911,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 659 } ] @@ -17923,7 +17923,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 38 } ] @@ -17947,7 +17947,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 147 } ] @@ -17971,7 +17971,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 530 } ] @@ -17989,7 +17989,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 430 } ] @@ -18008,7 +18008,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 83 } ] @@ -18039,7 +18039,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 771 } ] @@ -18064,7 +18064,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 286 } ] @@ -18082,7 +18082,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 82 } ] @@ -18107,7 +18107,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 307 } ] @@ -18132,7 +18132,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 294 } ] @@ -18156,7 +18156,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 602 } ] @@ -18180,7 +18180,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 541 } ] @@ -18204,7 +18204,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 394 } ] @@ -18234,7 +18234,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 512 } ] @@ -18258,7 +18258,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 834 } ] @@ -18276,7 +18276,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 436 } ] @@ -18300,7 +18300,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 558 } ] @@ -18331,7 +18331,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 699 } ] @@ -18355,7 +18355,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 381 } ] @@ -18379,7 +18379,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 114 } ] @@ -18403,7 +18403,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 695 } ] @@ -18421,7 +18421,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 424 } ] @@ -18446,7 +18446,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 639 } ] @@ -18470,7 +18470,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 234 } ] @@ -18500,7 +18500,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 768 } ] @@ -18518,7 +18518,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 261 } ] @@ -18542,7 +18542,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 274 } ] @@ -18566,7 +18566,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 269 } ] @@ -18596,7 +18596,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 776 } ] @@ -18615,7 +18615,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 85 } ] @@ -18645,7 +18645,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 797 } ] @@ -18675,7 +18675,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 801 } ] @@ -18693,7 +18693,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 745 } ] @@ -18717,7 +18717,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 389 } ] @@ -18741,7 +18741,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 688 } ] @@ -18766,7 +18766,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 349 } ] @@ -18790,7 +18790,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 555 } ] @@ -18820,7 +18820,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 842 } ] @@ -18832,7 +18832,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 742 } ] @@ -18844,7 +18844,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 502 } ] @@ -18868,7 +18868,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 585 } ] @@ -18893,7 +18893,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 633 } ] @@ -18918,7 +18918,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 347 } ] @@ -18936,7 +18936,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 475 } ] @@ -18966,7 +18966,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 826 } ] @@ -18984,7 +18984,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 380 } ] @@ -19002,7 +19002,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 450 } ] @@ -19026,7 +19026,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 537 } ] @@ -19057,7 +19057,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 711 } ] @@ -19075,7 +19075,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 728 } ] @@ -19093,7 +19093,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 188 } ] @@ -19117,7 +19117,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 681 } ] @@ -19136,7 +19136,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 88 } ] @@ -19155,7 +19155,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 90 } ] @@ -19179,7 +19179,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 540 } ] @@ -19209,7 +19209,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 510 } ] @@ -19233,7 +19233,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 174 } ] @@ -19245,7 +19245,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 500 } ] @@ -19270,7 +19270,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 662 } ] @@ -19289,7 +19289,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 23 } ] @@ -19313,7 +19313,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 506 } ] @@ -19338,7 +19338,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 357 } ] @@ -19357,7 +19357,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 52 } ] @@ -19381,7 +19381,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 690 } ] @@ -19393,7 +19393,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 80 } ] @@ -19412,7 +19412,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 57 } ] @@ -19431,7 +19431,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 104 } ] @@ -19450,7 +19450,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 393, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 6 } ] @@ -19462,7 +19462,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 489 } ] @@ -19486,7 +19486,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 409 } ] @@ -19498,7 +19498,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 573, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 865 } ] @@ -19522,7 +19522,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 199 } ] @@ -19546,7 +19546,7 @@ { "type": "de.exceptionflug.protocolize.items.ItemIDMapping", "protocolRangeStart": 477, - "protocolRangeEnd": 575, + "protocolRangeEnd": 578, "id": 401 } ] diff --git a/protocolize-plugin/pom.xml b/protocolize-plugin/pom.xml index cabb3e56..36050cdf 100644 --- a/protocolize-plugin/pom.xml +++ b/protocolize-plugin/pom.xml @@ -7,12 +7,12 @@ de.exceptionflug protocolize - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT de.exceptionflug protocolize-plugin - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT de.exceptionflug.protocolize.ProtocolizePlugin @@ -23,22 +23,22 @@ de.exceptionflug protocolize-api - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT de.exceptionflug protocolize-items - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT de.exceptionflug protocolize-world - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT de.exceptionflug protocolize-inventory - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT diff --git a/protocolize-protogen/pom.xml b/protocolize-protogen/pom.xml index 54e53b35..2dab09ec 100644 --- a/protocolize-protogen/pom.xml +++ b/protocolize-protogen/pom.xml @@ -7,12 +7,12 @@ de.exceptionflug protocolize - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT de.exceptionflug protocolize-protogen - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT pom diff --git a/protocolize-protogen/protocolize-protogen-compiler/pom.xml b/protocolize-protogen/protocolize-protogen-compiler/pom.xml index 56f792b2..7aa26a35 100644 --- a/protocolize-protogen/protocolize-protogen-compiler/pom.xml +++ b/protocolize-protogen/protocolize-protogen-compiler/pom.xml @@ -7,12 +7,12 @@ de.exceptionflug protocolize-protogen - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT de.exceptionflug protocolize-protogen-compiler - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT @@ -45,7 +45,7 @@ de.exceptionflug protocolize-api - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT compile diff --git a/protocolize-protogen/protocolize-protogen-plugin/pom.xml b/protocolize-protogen/protocolize-protogen-plugin/pom.xml index 7a92b6cb..1a2531e8 100644 --- a/protocolize-protogen/protocolize-protogen-plugin/pom.xml +++ b/protocolize-protogen/protocolize-protogen-plugin/pom.xml @@ -7,12 +7,12 @@ de.exceptionflug protocolize-protogen - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT de.exceptionflug protocolize-protogen-plugin - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT maven-plugin @@ -52,7 +52,7 @@ de.exceptionflug protocolize-protogen-compiler - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT diff --git a/protocolize-util/pom.xml b/protocolize-util/pom.xml index 1d841aac..2c1bb6d4 100644 --- a/protocolize-util/pom.xml +++ b/protocolize-util/pom.xml @@ -33,12 +33,12 @@ de.exceptionflug protocolize - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT de.exceptionflug protocolize-util - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT @@ -49,17 +49,17 @@ de.exceptionflug protocolize-api - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT de.exceptionflug protocolize-world - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT de.exceptionflug protocolize-items - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT diff --git a/protocolize-world/pom.xml b/protocolize-world/pom.xml index b8acd695..2d27931a 100644 --- a/protocolize-world/pom.xml +++ b/protocolize-world/pom.xml @@ -20,12 +20,12 @@ de.exceptionflug protocolize - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT de.exceptionflug protocolize-world - 1.5.2-SNAPSHOT + 1.5.3-SNAPSHOT diff --git a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/ChangeGameState.java b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/ChangeGameState.java index 385f5d9d..1ad6a32c 100644 --- a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/ChangeGameState.java +++ b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/ChangeGameState.java @@ -36,6 +36,7 @@ public class ChangeGameState extends AbstractPacket { MAPPING.put(MINECRAFT_1_14_4, 0x1E); MAPPING.put(MINECRAFT_1_15, 0x1F); MAPPING.put(MINECRAFT_1_15_1, 0x1F); + MAPPING.put(MINECRAFT_1_15_2, 0x1F); } private Reason reason; diff --git a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/NamedSoundEffect.java b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/NamedSoundEffect.java index c493c408..f608ed9d 100644 --- a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/NamedSoundEffect.java +++ b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/NamedSoundEffect.java @@ -40,6 +40,7 @@ public class NamedSoundEffect extends AbstractPacket { MAPPING.put(MINECRAFT_1_14_4, 0x19); MAPPING.put(MINECRAFT_1_15, 0x1A); MAPPING.put(MINECRAFT_1_15_1, 0x1A); + MAPPING.put(MINECRAFT_1_15_2, 0x1A); } private String sound; diff --git a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerLook.java b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerLook.java index 8ee9c337..a7b6b7a5 100644 --- a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerLook.java +++ b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerLook.java @@ -36,6 +36,7 @@ public class PlayerLook extends AbstractPacket { MAPPING.put(MINECRAFT_1_14_4, 0x13); MAPPING.put(MINECRAFT_1_15, 0x13); MAPPING.put(MINECRAFT_1_15_1, 0x13); + MAPPING.put(MINECRAFT_1_15_2, 0x13); } private float yaw, pitch; diff --git a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerPosition.java b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerPosition.java index efafe5d7..00ee488b 100644 --- a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerPosition.java +++ b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerPosition.java @@ -37,6 +37,7 @@ public class PlayerPosition extends AbstractPacket { MAPPING.put(MINECRAFT_1_14_4, 0x11); MAPPING.put(MINECRAFT_1_15, 0x11); MAPPING.put(MINECRAFT_1_15_1, 0x11); + MAPPING.put(MINECRAFT_1_15_2, 0x11); } private Location location; diff --git a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerPositionLook.java b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerPositionLook.java index ede34887..e72d9633 100644 --- a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerPositionLook.java +++ b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/PlayerPositionLook.java @@ -37,6 +37,7 @@ public class PlayerPositionLook extends AbstractPacket { MAPPING.put(MINECRAFT_1_14_4, 0x12); MAPPING.put(MINECRAFT_1_15, 0x12); MAPPING.put(MINECRAFT_1_15_1, 0x12); + MAPPING.put(MINECRAFT_1_15_2, 0x12); } private Location location; diff --git a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/SignUpdate.java b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/SignUpdate.java index dfc86a73..1b1dd520 100644 --- a/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/SignUpdate.java +++ b/protocolize-world/src/main/java/de/exceptionflug/protocolize/world/packet/SignUpdate.java @@ -41,6 +41,7 @@ public class SignUpdate extends AbstractPacket { MAPPING_SERVERBOUND.put(MINECRAFT_1_14_4, 0x29); MAPPING_SERVERBOUND.put(MINECRAFT_1_15, 0x29); MAPPING_SERVERBOUND.put(MINECRAFT_1_15_1, 0x29); + MAPPING_SERVERBOUND.put(MINECRAFT_1_15_2, 0x29); MAPPING_CLIENTBOUND.put(MINECRAFT_1_8, 0x33); MAPPING_CLIENTBOUND.put(MINECRAFT_1_9, 0x46);