ff9mapkit 1.0.0b3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (193) hide show
  1. ff9mapkit/__init__.py +18 -0
  2. ff9mapkit/__main__.py +36 -0
  3. ff9mapkit/_animdb.py +2994 -0
  4. ff9mapkit/_animdb_all.py +14125 -0
  5. ff9mapkit/_fieldtable.py +1516 -0
  6. ff9mapkit/_fieldtext.py +845 -0
  7. ff9mapkit/_held_poses.py +44 -0
  8. ff9mapkit/_itemdb.py +65 -0
  9. ff9mapkit/_modeldb.py +725 -0
  10. ff9mapkit/_narrowmap_data.py +10 -0
  11. ff9mapkit/_npcparams.py +634 -0
  12. ff9mapkit/_regen_animdb.py +72 -0
  13. ff9mapkit/_regen_animdb_all.py +66 -0
  14. ff9mapkit/_regen_fieldtable.py +95 -0
  15. ff9mapkit/_regen_fieldtext.py +66 -0
  16. ff9mapkit/_regen_modeldb.py +67 -0
  17. ff9mapkit/_regen_npcparams.py +123 -0
  18. ff9mapkit/_regen_scenedb.py +57 -0
  19. ff9mapkit/_scenedb.py +869 -0
  20. ff9mapkit/abilities.py +225 -0
  21. ff9mapkit/animations.py +120 -0
  22. ff9mapkit/archetypes.py +218 -0
  23. ff9mapkit/areatitle.py +76 -0
  24. ff9mapkit/battle/__init__.py +21 -0
  25. ff9mapkit/battle/abilityfeatures.py +294 -0
  26. ff9mapkit/battle/actiondelta.py +441 -0
  27. ff9mapkit/battle/aiauthor.py +305 -0
  28. ff9mapkit/battle/ailint.py +140 -0
  29. ff9mapkit/battle/aipatch.py +175 -0
  30. ff9mapkit/battle/battleai.py +148 -0
  31. ff9mapkit/battle/battlecsv.py +390 -0
  32. ff9mapkit/battle/battlepatch.py +395 -0
  33. ff9mapkit/battle/build.py +558 -0
  34. ff9mapkit/battle/camera_codec.py +332 -0
  35. ff9mapkit/battle/camera_data.py +128 -0
  36. ff9mapkit/battle/characterdelta.py +789 -0
  37. ff9mapkit/battle/event_data.py +72 -0
  38. ff9mapkit/battle/extract.py +540 -0
  39. ff9mapkit/battle/fbx.py +223 -0
  40. ff9mapkit/battle/reskin.py +149 -0
  41. ff9mapkit/battle/scene_codec.py +314 -0
  42. ff9mapkit/battle/scene_data.py +369 -0
  43. ff9mapkit/battle/scenelint.py +125 -0
  44. ff9mapkit/battle/seqasm.py +131 -0
  45. ff9mapkit/battle/seqauthor.py +220 -0
  46. ff9mapkit/battle/seqcodec.py +300 -0
  47. ff9mapkit/battle/seqdis.py +106 -0
  48. ff9mapkit/battle/seqpatch.py +137 -0
  49. ff9mapkit/battle_bgm.py +133 -0
  50. ff9mapkit/binutils.py +60 -0
  51. ff9mapkit/build.py +5445 -0
  52. ff9mapkit/campaign.py +1276 -0
  53. ff9mapkit/catalog.py +316 -0
  54. ff9mapkit/chain.py +358 -0
  55. ff9mapkit/cli.py +3114 -0
  56. ff9mapkit/config.py +360 -0
  57. ff9mapkit/content/__init__.py +13 -0
  58. ff9mapkit/content/areatitle.py +36 -0
  59. ff9mapkit/content/ate.py +118 -0
  60. ff9mapkit/content/camera.py +123 -0
  61. ff9mapkit/content/chest.py +186 -0
  62. ff9mapkit/content/choice.py +163 -0
  63. ff9mapkit/content/conductor.py +217 -0
  64. ff9mapkit/content/cutscene.py +290 -0
  65. ff9mapkit/content/encounter.py +41 -0
  66. ff9mapkit/content/entry_settle.py +50 -0
  67. ff9mapkit/content/equipment.py +93 -0
  68. ff9mapkit/content/event.py +191 -0
  69. ff9mapkit/content/gateway.py +101 -0
  70. ff9mapkit/content/inventory.py +59 -0
  71. ff9mapkit/content/itemdata.py +644 -0
  72. ff9mapkit/content/itemtext.py +168 -0
  73. ff9mapkit/content/jump.py +114 -0
  74. ff9mapkit/content/ladder.py +633 -0
  75. ff9mapkit/content/movement.py +53 -0
  76. ff9mapkit/content/music.py +97 -0
  77. ff9mapkit/content/npc.py +348 -0
  78. ff9mapkit/content/object.py +340 -0
  79. ff9mapkit/content/onentry.py +135 -0
  80. ff9mapkit/content/party.py +111 -0
  81. ff9mapkit/content/pathfind.py +138 -0
  82. ff9mapkit/content/platform.py +314 -0
  83. ff9mapkit/content/player.py +168 -0
  84. ff9mapkit/content/prop.py +75 -0
  85. ff9mapkit/content/region.py +340 -0
  86. ff9mapkit/content/reinit.py +59 -0
  87. ff9mapkit/content/savepoint.py +90 -0
  88. ff9mapkit/content/shop.py +178 -0
  89. ff9mapkit/content/sps_trigger.py +66 -0
  90. ff9mapkit/content/startup.py +71 -0
  91. ff9mapkit/content/synthesis.py +106 -0
  92. ff9mapkit/content/text.py +183 -0
  93. ff9mapkit/content/textcarry.py +290 -0
  94. ff9mapkit/content/verbatim.py +86 -0
  95. ff9mapkit/content/walkmesh_hotfix.py +38 -0
  96. ff9mapkit/data/__init__.py +48 -0
  97. ff9mapkit/data/_regen_provenance.py +142 -0
  98. ff9mapkit/data/provenance/blank.es.patch +1 -0
  99. ff9mapkit/data/provenance/blank.fr.patch +1 -0
  100. ff9mapkit/data/provenance/blank.gr.patch +1 -0
  101. ff9mapkit/data/provenance/blank.it.patch +1 -0
  102. ff9mapkit/data/provenance/blank.jp.patch +1 -0
  103. ff9mapkit/data/provenance/blank.uk.patch +1 -0
  104. ff9mapkit/data/provenance/blank.us.patch +1 -0
  105. ff9mapkit/data/provenance/manifest.json +65 -0
  106. ff9mapkit/data/provenance/region_template.patch +1 -0
  107. ff9mapkit/data/reference_arcs.toml +89 -0
  108. ff9mapkit/data/region_catalog.toml +593 -0
  109. ff9mapkit/deploystack.py +358 -0
  110. ff9mapkit/dialogue.py +803 -0
  111. ff9mapkit/eb/__init__.py +12 -0
  112. ff9mapkit/eb/_exprtable.py +59 -0
  113. ff9mapkit/eb/_membertable.py +38 -0
  114. ff9mapkit/eb/_optables.py +537 -0
  115. ff9mapkit/eb/_regen_optables.py +76 -0
  116. ff9mapkit/eb/cmdasm.py +323 -0
  117. ff9mapkit/eb/disasm.py +332 -0
  118. ff9mapkit/eb/edit.py +439 -0
  119. ff9mapkit/eb/exprasm.py +158 -0
  120. ff9mapkit/eb/model.py +178 -0
  121. ff9mapkit/eb/opcodes.py +463 -0
  122. ff9mapkit/eblint.py +177 -0
  123. ff9mapkit/editor/__init__.py +20 -0
  124. ff9mapkit/editor/app.py +950 -0
  125. ff9mapkit/editor/battle_forms.py +240 -0
  126. ff9mapkit/editor/breadcrumb.py +89 -0
  127. ff9mapkit/editor/dialogs.py +116 -0
  128. ff9mapkit/editor/feedback.py +208 -0
  129. ff9mapkit/editor/forms.py +632 -0
  130. ff9mapkit/editor/graphview.py +350 -0
  131. ff9mapkit/editor/jobs.py +342 -0
  132. ff9mapkit/editor/model.py +243 -0
  133. ff9mapkit/editor/picker.py +120 -0
  134. ff9mapkit/editor/theme.py +212 -0
  135. ff9mapkit/eventscan.py +1441 -0
  136. ff9mapkit/extract.py +2279 -0
  137. ff9mapkit/flags.py +693 -0
  138. ff9mapkit/forkreport.py +1383 -0
  139. ff9mapkit/hub.py +477 -0
  140. ff9mapkit/idgated.py +101 -0
  141. ff9mapkit/infohub.py +580 -0
  142. ff9mapkit/items.py +63 -0
  143. ff9mapkit/itemstats.py +346 -0
  144. ff9mapkit/journey.py +1902 -0
  145. ff9mapkit/keyitems.py +93 -0
  146. ff9mapkit/logic_add.py +632 -0
  147. ff9mapkit/logic_edit.py +728 -0
  148. ff9mapkit/logic_map.py +526 -0
  149. ff9mapkit/pack.py +175 -0
  150. ff9mapkit/playerswap.py +231 -0
  151. ff9mapkit/prop_archetypes.py +228 -0
  152. ff9mapkit/provision.py +282 -0
  153. ff9mapkit/refarc.py +825 -0
  154. ff9mapkit/save.py +337 -0
  155. ff9mapkit/save_items.py +1673 -0
  156. ff9mapkit/scene/__init__.py +11 -0
  157. ff9mapkit/scene/arena.py +63 -0
  158. ff9mapkit/scene/bgart.py +140 -0
  159. ff9mapkit/scene/bgi.py +732 -0
  160. ff9mapkit/scene/bgs.py +174 -0
  161. ff9mapkit/scene/bgx.py +185 -0
  162. ff9mapkit/scene/cam.py +345 -0
  163. ff9mapkit/scene/guide.py +311 -0
  164. ff9mapkit/scene/paint.py +506 -0
  165. ff9mapkit/scene/placeholder.py +107 -0
  166. ff9mapkit/sjbinary.py +285 -0
  167. ff9mapkit/sps/__init__.py +17 -0
  168. ff9mapkit/sps/author.py +294 -0
  169. ff9mapkit/sps/catalog.py +88 -0
  170. ff9mapkit/sps/codec.py +264 -0
  171. ff9mapkit/sps/edit.py +184 -0
  172. ff9mapkit/sps/lint.py +58 -0
  173. ff9mapkit/sps/render.py +116 -0
  174. ff9mapkit/sps/templates.py +47 -0
  175. ff9mapkit/sps/texture.py +131 -0
  176. ff9mapkit/walkmesh_hotfixes.py +163 -0
  177. ff9mapkit/workspace/__init__.py +18 -0
  178. ff9mapkit/workspace/battledoc.py +985 -0
  179. ff9mapkit/workspace/builddoc.py +607 -0
  180. ff9mapkit/workspace/forms_qt.py +586 -0
  181. ff9mapkit/workspace/importdoc.py +665 -0
  182. ff9mapkit/workspace/mapview.py +131 -0
  183. ff9mapkit/workspace/palette.py +85 -0
  184. ff9mapkit/workspace/savedoc.py +664 -0
  185. ff9mapkit/workspace/shell.py +6907 -0
  186. ff9mapkit/workspace/style.py +105 -0
  187. ff9mapkit/workspace/tuningdialog.py +223 -0
  188. ff9mapkit-1.0.0b3.dist-info/METADATA +155 -0
  189. ff9mapkit-1.0.0b3.dist-info/RECORD +193 -0
  190. ff9mapkit-1.0.0b3.dist-info/WHEEL +5 -0
  191. ff9mapkit-1.0.0b3.dist-info/entry_points.txt +5 -0
  192. ff9mapkit-1.0.0b3.dist-info/licenses/LICENSE +31 -0
  193. ff9mapkit-1.0.0b3.dist-info/top_level.txt +1 -0
@@ -0,0 +1,10 @@
1
+ """Field PSX screen-WIDTHS, baked from Memoria NarrowMapList.MapWidthList (provenance-clean: Memoria
2
+ open modding data, like the opcode tables -- ships zero Square-Enix bytes). A field whose real width is
3
+ narrower than widescreen is letterboxed in-game; a forked custom id defaults to width 500 (widescreen),
4
+ so it LOSES that letterbox masking -- the 'narrow-map' lost-on-mint behavior (engine NarrowMapList is
5
+ fldMapNo-keyed; see docs/FORK_FIDELITY.md + project-ff9-narrow-map-fork-letterbox). Regenerate with
6
+ tools/bake_narrowmap.py."""
7
+
8
+ FORK_DEFAULT_WIDTH = 500 # MapWidth() returns this for an unlisted (custom) id
9
+
10
+ WIDTHS = {50: 480, 51: 480, 52: 320, 53: 320, 54: 432, 55: 398, 56: 320, 57: 448, 58: 320, 59: 320, 60: 366, 61: 320, 62: 320, 63: 320, 64: 480, 65: 320, 66: 320, 67: 320, 68: 320, 69: 320, 100: 320, 101: 640, 102: 382, 103: 624, 104: 320, 105: 320, 106: 528, 107: 480, 108: 320, 109: 382, 110: 432, 111: 448, 112: 560, 113: 480, 114: 350, 115: 432, 116: 416, 117: 416, 150: 366, 151: 320, 152: 800, 153: 432, 154: 640, 155: 416, 156: 640, 157: 398, 158: 480, 159: 416, 160: 320, 161: 366, 162: 382, 163: 318, 164: 318, 165: 320, 166: 320, 167: 320, 200: 480, 201: 366, 202: 480, 203: 334, 204: 480, 205: 320, 206: 382, 207: 382, 208: 480, 209: 320, 250: 480, 251: 382, 252: 382, 253: 480, 254: 398, 255: 320, 256: 320, 257: 416, 258: 480, 259: 320, 261: 320, 262: 366, 300: 320, 301: 320, 302: 480, 303: 592, 304: 432, 305: 320, 306: 320, 307: 464, 308: 320, 309: 320, 310: 320, 311: 320, 312: 478, 350: 448, 351: 480, 352: 480, 353: 416, 354: 320, 355: 416, 356: 416, 357: 320, 358: 320, 359: 320, 400: 320, 401: 640, 402: 480, 403: 640, 404: 432, 405: 398, 406: 480, 407: 382, 408: 448, 450: 432, 451: 480, 452: 320, 453: 320, 454: 320, 455: 318, 456: 398, 457: 320, 500: 320, 501: 512, 502: 320, 503: 320, 504: 430, 505: 398, 506: 320, 507: 512, 550: 350, 551: 320, 552: 448, 553: 382, 554: 480, 555: 480, 556: 382, 557: 480, 558: 416, 559: 512, 560: 320, 561: 398, 562: 416, 563: 432, 564: 432, 565: 366, 566: 398, 567: 320, 568: 398, 569: 398, 570: 320, 571: 398, 572: 416, 573: 432, 574: 320, 575: 416, 576: 320, 600: 448, 601: 320, 602: 480, 603: 544, 604: 448, 605: 432, 606: 318, 607: 320, 608: 448, 609: 320, 610: 448, 611: 576, 612: 544, 613: 398, 614: 544, 615: 512, 616: 480, 617: 544, 618: 464, 619: 432, 620: 350, 650: 512, 651: 640, 652: 480, 653: 640, 654: 640, 655: 512, 656: 398, 657: 398, 658: 398, 659: 398, 660: 640, 661: 432, 662: 448, 663: 398, 701: 320, 702: 624, 703: 576, 704: 576, 705: 382, 706: 448, 707: 480, 750: 320, 751: 382, 752: 480, 753: 398, 754: 320, 755: 398, 756: 416, 757: 480, 758: 320, 759: 418, 760: 334, 761: 544, 762: 544, 763: 416, 764: 320, 765: 320, 766: 320, 767: 320, 768: 448, 800: 320, 801: 560, 802: 350, 803: 350, 804: 432, 805: 608, 806: 398, 807: 432, 808: 608, 809: 512, 810: 576, 811: 512, 812: 512, 813: 382, 814: 334, 815: 416, 816: 334, 850: 512, 851: 398, 852: 480, 853: 512, 854: 512, 855: 398, 856: 480, 900: 448, 901: 398, 902: 752, 903: 768, 904: 576, 905: 640, 906: 512, 907: 416, 908: 432, 909: 592, 910: 448, 911: 366, 912: 640, 913: 398, 914: 576, 915: 416, 916: 464, 930: 320, 931: 318, 932: 416, 950: 382, 951: 512, 952: 512, 953: 448, 954: 320, 955: 320, 956: 448, 1000: 320, 1001: 320, 1002: 320, 1003: 320, 1004: 512, 1005: 512, 1006: 320, 1007: 320, 1008: 416, 1009: 320, 1010: 640, 1011: 528, 1012: 464, 1013: 320, 1014: 640, 1015: 528, 1016: 528, 1017: 382, 1018: 382, 1050: 316, 1051: 416, 1052: 592, 1053: 608, 1054: 398, 1055: 478, 1056: 464, 1057: 560, 1058: 380, 1059: 526, 1060: 640, 1100: 320, 1101: 416, 1102: 592, 1103: 608, 1104: 398, 1105: 480, 1106: 464, 1107: 560, 1108: 380, 1109: 528, 1110: 638, 1150: 320, 1151: 334, 1152: 448, 1153: 398, 1200: 320, 1201: 382, 1202: 432, 1203: 432, 1204: 480, 1205: 416, 1206: 416, 1207: 480, 1208: 320, 1209: 640, 1210: 382, 1211: 448, 1212: 350, 1213: 366, 1214: 432, 1215: 640, 1216: 416, 1217: 640, 1218: 398, 1219: 480, 1220: 416, 1221: 320, 1222: 366, 1223: 416, 1224: 528, 1225: 416, 1226: 320, 1227: 480, 1250: 320, 1251: 366, 1252: 320, 1253: 320, 1254: 366, 1255: 432, 1256: 432, 1300: 350, 1301: 320, 1302: 448, 1303: 382, 1304: 480, 1305: 480, 1306: 416, 1307: 512, 1308: 320, 1309: 416, 1310: 432, 1311: 432, 1312: 366, 1313: 398, 1314: 320, 1315: 480, 1350: 320, 1351: 320, 1352: 480, 1353: 544, 1354: 448, 1355: 432, 1356: 320, 1357: 320, 1358: 448, 1359: 320, 1360: 448, 1361: 576, 1362: 544, 1363: 398, 1364: 544, 1365: 512, 1366: 480, 1367: 544, 1368: 464, 1369: 432, 1370: 350, 1400: 640, 1401: 320, 1402: 640, 1403: 366, 1404: 382, 1405: 528, 1406: 320, 1407: 512, 1408: 398, 1409: 512, 1410: 320, 1411: 496, 1412: 640, 1413: 512, 1414: 398, 1415: 512, 1416: 640, 1417: 528, 1418: 512, 1419: 608, 1420: 448, 1421: 512, 1422: 528, 1423: 800, 1424: 398, 1425: 480, 1450: 480, 1451: 432, 1452: 382, 1453: 382, 1454: 512, 1455: 320, 1456: 398, 1457: 320, 1458: 334, 1459: 320, 1460: 512, 1461: 320, 1462: 512, 1463: 320, 1464: 320, 1500: 334, 1501: 528, 1502: 416, 1503: 416, 1504: 512, 1505: 512, 1506: 334, 1507: 318, 1508: 350, 1509: 382, 1550: 576, 1551: 416, 1552: 416, 1553: 624, 1554: 464, 1555: 640, 1556: 320, 1557: 320, 1600: 398, 1601: 398, 1602: 398, 1603: 512, 1604: 320, 1605: 334, 1606: 334, 1607: 320, 1608: 334, 1609: 320, 1610: 320, 1650: 350, 1651: 434, 1652: 480, 1653: 512, 1654: 512, 1655: 320, 1656: 382, 1657: 346, 1658: 320, 1659: 480, 1660: 334, 1661: 334, 1662: 334, 1663: 320, 1700: 398, 1701: 398, 1702: 398, 1703: 512, 1704: 398, 1705: 334, 1706: 320, 1707: 334, 1750: 320, 1751: 334, 1752: 350, 1753: 320, 1754: 320, 1755: 320, 1756: 320, 1757: 350, 1758: 434, 1759: 480, 1800: 320, 1801: 416, 1802: 480, 1803: 366, 1805: 352, 1806: 432, 1807: 640, 1808: 416, 1809: 640, 1810: 398, 1811: 480, 1812: 416, 1813: 320, 1814: 366, 1815: 416, 1816: 416, 1817: 366, 1818: 320, 1819: 416, 1820: 382, 1821: 528, 1822: 320, 1823: 320, 1824: 480, 1850: 320, 1851: 640, 1852: 382, 1853: 624, 1854: 320, 1855: 528, 1856: 480, 1857: 320, 1858: 382, 1859: 432, 1860: 448, 1861: 560, 1862: 480, 1863: 350, 1864: 416, 1865: 432, 1866: 320, 1900: 448, 1901: 398, 1902: 752, 1903: 768, 1904: 576, 1905: 640, 1906: 512, 1907: 416, 1908: 432, 1909: 592, 1910: 448, 1911: 366, 1912: 640, 1913: 398, 1914: 576, 1915: 416, 1950: 496, 1951: 350, 1952: 350, 1953: 366, 2000: 350, 2001: 480, 2002: 366, 2003: 448, 2004: 366, 2005: 320, 2006: 366, 2007: 432, 2008: 320, 2009: 320, 2050: 320, 2051: 640, 2052: 382, 2053: 624, 2054: 480, 2055: 350, 2101: 320, 2102: 448, 2103: 382, 2104: 480, 2105: 480, 2106: 416, 2107: 512, 2108: 320, 2109: 416, 2110: 432, 2111: 432, 2112: 366, 2113: 398, 2114: 320, 2150: 448, 2151: 320, 2152: 480, 2153: 544, 2154: 448, 2155: 432, 2157: 320, 2158: 448, 2159: 320, 2160: 448, 2161: 576, 2162: 544, 2163: 398, 2165: 544, 2166: 512, 2167: 480, 2168: 544, 2169: 464, 2170: 432, 2171: 320, 2172: 512, 2173: 448, 2200: 382, 2201: 560, 2202: 334, 2203: 350, 2204: 334, 2205: 334, 2206: 560, 2207: 512, 2208: 334, 2209: 560, 2211: 928, 2212: 398, 2213: 398, 2214: 512, 2215: 480, 2216: 480, 2217: 432, 2220: 544, 2221: 512, 2222: 382, 2250: 320, 2251: 480, 2252: 480, 2253: 592, 2254: 334, 2255: 320, 2256: 672, 2257: 334, 2258: 592, 2259: 528, 2260: 320, 2261: 350, 2300: 512, 2301: 512, 2302: 512, 2303: 334, 2304: 512, 2305: 320, 2350: 656, 2351: 320, 2352: 398, 2353: 398, 2354: 320, 2355: 382, 2356: 350, 2357: 464, 2358: 544, 2359: 416, 2360: 448, 2361: 320, 2362: 350, 2363: 384, 2364: 512, 2365: 334, 2400: 366, 2401: 320, 2402: 416, 2403: 416, 2404: 416, 2405: 320, 2406: 382, 2450: 320, 2451: 382, 2452: 640, 2453: 320, 2454: 528, 2455: 448, 2456: 432, 2457: 416, 2458: 320, 2500: 350, 2501: 350, 2502: 366, 2503: 366, 2504: 512, 2505: 448, 2506: 512, 2507: 592, 2508: 432, 2509: 512, 2510: 320, 2512: 320, 2513: 334, 2550: 496, 2551: 398, 2552: 352, 2553: 416, 2554: 464, 2600: 464, 2601: 398, 2602: 382, 2603: 560, 2604: 512, 2605: 606, 2606: 512, 2607: 432, 2608: 320, 2650: 366, 2651: 520, 2652: 448, 2653: 512, 2654: 350, 2655: 416, 2656: 480, 2657: 382, 2658: 398, 2659: 464, 2660: 520, 2661: 480, 2700: 448, 2701: 320, 2702: 624, 2703: 464, 2704: 432, 2705: 320, 2706: 398, 2707: 640, 2708: 448, 2709: 480, 2710: 576, 2711: 624, 2712: 512, 2713: 592, 2714: 608, 2715: 320, 2716: 416, 2717: 528, 2718: 592, 2719: 320, 2750: 432, 2751: 432, 2752: 320, 2753: 448, 2754: 480, 2755: 496, 2756: 334, 2771: 350, 2800: 512, 2801: 480, 2802: 480, 2803: 496, 2850: 496, 2851: 382, 2852: 464, 2853: 512, 2854: 496, 2855: 382, 2856: 382, 2900: 320, 2901: 320, 2902: 320, 2903: 510, 2904: 366, 2905: 448, 2906: 398, 2907: 544, 2908: 320, 2909: 320, 2910: 320, 2911: 480, 2912: 320, 2913: 366, 2914: 320, 2915: 382, 2916: 414, 2917: 320, 2918: 320, 2919: 320, 2920: 320, 2921: 336, 2922: 384, 2923: 688, 2924: 320, 2925: 320, 2926: 320, 2927: 320, 2928: 366, 2929: 320, 2930: 320, 2931: 496, 2932: 334, 2933: 320, 2934: 320, 2950: 320, 2951: 480, 2952: 512, 2953: 320, 2954: 480, 2955: 576, 3000: 320, 3001: 320, 3002: 320, 3003: 320, 3004: 320, 3005: 320, 3006: 320, 3007: 320, 3008: 320, 3009: 320, 3010: 320, 3011: 320, 3012: 320, 3050: 480, 3051: 432, 3052: 382, 3053: 512, 3054: 320, 3055: 398, 3056: 320, 3057: 334, 3058: 320, 3059: 512, 3100: 366}