From deea03b32fd6ddd922522c74c3f6827db48e962b Mon Sep 17 00:00:00 2001 From: Motschen Date: Mon, 8 Feb 2021 11:50:15 +0100 Subject: [PATCH] Included example packs into the mod --- build.gradle | 2 + gradle.properties | 2 +- .../betterbeds/BetterBedsClient.java | 17 ++++ src/main/resources/fabric.mod.json | 6 ++ .../minecraft/models/block/bed_foot.json | 46 +++++++++++ .../minecraft/models/block/bed_head.json | 47 +++++++++++ .../resourcepacks/connectedbeds/license.txt | 10 +++ .../resourcepacks/connectedbeds/pack.mcmeta | 6 ++ .../resourcepacks/connectedbeds/pack.png | Bin 0 -> 1049 bytes .../minecraft/models/block/bed_head.json | 73 ++++++++++++++++++ .../resourcepacks/fancybeds/license.txt | 10 +++ .../resourcepacks/fancybeds/pack.mcmeta | 6 ++ .../resourcepacks/fancybeds/pack.png | Bin 0 -> 2689 bytes 13 files changed, 224 insertions(+), 1 deletion(-) create mode 100644 src/main/java/eu/midnightdust/betterbeds/BetterBedsClient.java create mode 100644 src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_foot.json create mode 100644 src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_head.json create mode 100644 src/main/resources/resourcepacks/connectedbeds/license.txt create mode 100644 src/main/resources/resourcepacks/connectedbeds/pack.mcmeta create mode 100644 src/main/resources/resourcepacks/connectedbeds/pack.png create mode 100644 src/main/resources/resourcepacks/fancybeds/assets/minecraft/models/block/bed_head.json create mode 100644 src/main/resources/resourcepacks/fancybeds/license.txt create mode 100644 src/main/resources/resourcepacks/fancybeds/pack.mcmeta create mode 100644 src/main/resources/resourcepacks/fancybeds/pack.png diff --git a/build.gradle b/build.gradle index 91afedd..9f612fa 100644 --- a/build.gradle +++ b/build.gradle @@ -18,6 +18,8 @@ dependencies { minecraft "com.mojang:minecraft:${project.minecraft_version}" mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" modCompile "net.fabricmc:fabric-loader:${project.loader_version}" + + modCompile "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" } processResources { diff --git a/gradle.properties b/gradle.properties index babd954..46307a1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx2G loader_version=0.10.8 # Mod Properties - mod_version = 1.0.0 + mod_version = 1.1.0 maven_group = eu.midnightdust.motschen archives_base_name = betterbeds diff --git a/src/main/java/eu/midnightdust/betterbeds/BetterBedsClient.java b/src/main/java/eu/midnightdust/betterbeds/BetterBedsClient.java new file mode 100644 index 0000000..646282e --- /dev/null +++ b/src/main/java/eu/midnightdust/betterbeds/BetterBedsClient.java @@ -0,0 +1,17 @@ +package eu.midnightdust.betterbeds; + +import net.fabricmc.api.ClientModInitializer; +import net.fabricmc.fabric.api.resource.ResourceManagerHelper; +import net.fabricmc.loader.api.FabricLoader; +import net.minecraft.util.Identifier; + +public class BetterBedsClient implements ClientModInitializer { + + public void onInitializeClient() { + + FabricLoader.getInstance().getModContainer("betterbeds").ifPresent(modContainer -> { + ResourceManagerHelper.registerBuiltinResourcePack(new Identifier("betterbeds:fancybeds"), "resourcepacks/fancybeds", modContainer, false); + ResourceManagerHelper.registerBuiltinResourcePack(new Identifier("betterbeds:connectedbeds"), "resourcepacks/connectedbeds", modContainer, false); + }); + } +} diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 56c68f5..735a01f 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -20,6 +20,12 @@ "environment": "*", + "entrypoints": { + "client": [ + "eu.midnightdust.betterbeds.BetterBedsClient" + ] + }, + "mixins": [ "betterbeds.mixins.json" ], diff --git a/src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_foot.json b/src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_foot.json new file mode 100644 index 0000000..6aab9d1 --- /dev/null +++ b/src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_foot.json @@ -0,0 +1,46 @@ +{ + "credit": "made by Motschen", + "texture_size": [64, 64], + "ambientocclusion": false, + "textures": { + "0": "entity/bed/lime", + "particle": "block/oak_planks" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [3, 3, 3], + "faces": { + "north": {"uv": [12.5, 3.75, 13.25, 4.5], "texture": "#0", "cullface": "west"}, + "east": {"uv": [14.75, 3.75, 15.5, 4.5], "texture": "#0", "cullface": "west"}, + "south": {"uv": [14, 3.75, 14.75, 4.5], "texture": "#0", "cullface": "west"}, + "west": {"uv": [13.25, 3.75, 14, 4.5], "texture": "#0", "cullface": "west"}, + "down": {"uv": [14, 3, 14.75, 3.75], "texture": "#0", "cullface": "west"} + } + }, + { + "from": [13, 0, 0], + "to": [16, 3, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [21, 8, 8]}, + "faces": { + "north": {"uv": [12.5, 0.75, 13.25, 1.5], "texture": "#0", "cullface": "east"}, + "east": {"uv": [14.75, 0.75, 15.5, 1.5], "texture": "#0", "cullface": "east"}, + "south": {"uv": [14, 0.75, 14.75, 1.5], "texture": "#0", "cullface": "east"}, + "west": {"uv": [13.25, 0.75, 14, 1.5], "texture": "#0", "cullface": "east"}, + "down": {"uv": [14, 0, 14.75, 0.75], "texture": "#0", "cullface": "east"} + } + }, + { + "from": [0, 3, 0], + "to": [16, 9, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [5.5, 5.5, 9.5, 7], "rotation": 180, "texture": "#0"}, + "east": {"uv": [0, 7, 1.5, 11], "rotation": 270, "texture": "#0"}, + "west": {"uv": [5.5, 7, 7, 11], "rotation": 90, "texture": "#0"}, + "up": {"uv": [1.5, 7, 5.5, 11], "rotation": 180, "texture": "#0"}, + "down": {"uv": [7, 7, 11, 11], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_head.json b/src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_head.json new file mode 100644 index 0000000..5ecede9 --- /dev/null +++ b/src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_head.json @@ -0,0 +1,47 @@ +{ + "credit": "made by Motschen", + "texture_size": [64, 64], + "ambientocclusion": false, + "textures": { + "0": "entity/bed/lime", + "particle": "block/oak_planks" + }, + "elements": [ + { + "from": [0, 0, 13], + "to": [3, 3, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 21]}, + "faces": { + "north": {"uv": [12.5, 5.25, 13.25, 6], "texture": "#0", "cullface": "west"}, + "east": {"uv": [14.75, 5.25, 15.5, 6], "texture": "#0", "cullface": "west"}, + "south": {"uv": [14, 5.25, 14.75, 6], "texture": "#0", "cullface": "west"}, + "west": {"uv": [13.25, 5.25, 14, 6], "texture": "#0", "cullface": "west"}, + "down": {"uv": [14, 4.5, 14.75, 5.25], "texture": "#0", "cullface": "west"} + } + }, + { + "from": [13, 0, 13], + "to": [16, 3, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [21, 8, 21]}, + "faces": { + "north": {"uv": [12.5, 2.25, 13.25, 3], "texture": "#0", "cullface": "east"}, + "east": {"uv": [14.75, 2.25, 15.5, 3], "texture": "#0", "cullface": "east"}, + "south": {"uv": [14, 2.25, 14.75, 3], "texture": "#0", "cullface": "east"}, + "west": {"uv": [13.25, 2.25, 14, 3], "texture": "#0", "cullface": "east"}, + "down": {"uv": [14, 1.5, 14.75, 2.25], "texture": "#0", "cullface": "east"} + } + }, + { + "from": [0, 3, 0], + "to": [16, 9, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "east": {"uv": [0, 1.5, 1.5, 5.5], "rotation": 270, "texture": "#0"}, + "south": {"uv": [1.5, 0, 5.5, 1.5], "rotation": 180, "texture": "#0"}, + "west": {"uv": [5.5, 1.5, 7, 5.5], "rotation": 90, "texture": "#0"}, + "up": {"uv": [1.5, 1.5, 5.5, 5.5], "rotation": 180, "texture": "#0"}, + "down": {"uv": [7, 7, 11, 11], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbeds/license.txt b/src/main/resources/resourcepacks/connectedbeds/license.txt new file mode 100644 index 0000000..6968976 --- /dev/null +++ b/src/main/resources/resourcepacks/connectedbeds/license.txt @@ -0,0 +1,10 @@ +The MIT License +Copyright © 2019 Motschen + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, +and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbeds/pack.mcmeta b/src/main/resources/resourcepacks/connectedbeds/pack.mcmeta new file mode 100644 index 0000000..9252491 --- /dev/null +++ b/src/main/resources/resourcepacks/connectedbeds/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "pack_format": 6, + "description": "§2Allows beds to connect <3" + } +} diff --git a/src/main/resources/resourcepacks/connectedbeds/pack.png b/src/main/resources/resourcepacks/connectedbeds/pack.png new file mode 100644 index 0000000000000000000000000000000000000000..cdd926c96b24a649b096170cde65abd8537e7dc6 GIT binary patch literal 1049 zcmV+!1m^pRP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D1FlI#K~#8N?U%n# z6hRcn=a3(Qhh8}4LIDjJ1sY3YY2zP2fiY^OjfE6;T5FGmjaHf%E%+CVu`pD|Mq+U! zhG6hc?{eWz;P`RtzPWjuxnXu@_J{n4?^7@{yYqg1-|XJP2!bF8f*=TjAP9o^@5qQT zHAUq^n|>+ILs8k?M)6j#i9YmEk*7#ZQ~LZOg)zNtF=S}b~y zFrX_4fMR!RHP(~M@jb8~*I1|w3WocqCni$OIW=dwr%!n20dI9x%sR=8jj`VGaX#N! zS>dCM%?@p9j~=I%cVb7`JGXh^rv?W28rk366f--rEfm}3cN%Gl6NSk4st@K9=by;I z(6a@PLGn!k1kv0k8n6+xTKj%U^l! zMx>gYH}fO!6RBf}pD4b}&=wQMW31k{B8pe@0l!g1aN0Qh?ya|1Dv6bXs}R^NpYB3I z%-W>oTlVWJf^`!wUVdp|Qc^)2Te6ZZb{|R8f5*x4souS3tkHNAiWk%NPZk_Cz?O`R zREXRmOi&ghQVdlfAO1MN&nhDJm|l?D8$&N&@WLTEOjP|n4kaWpK$o1ZYY;1{5Eugp zY$d`(IB*ePcItC#BRIx@CMiId7!WlUV2c+POBJGH;q()y>2LtrsC#5zCUFiaru_97 zOoERaAWkAO4h7pV3WAu51`M%LgpB-OoQzcrBta4;)c9MkUh^>^KO`m&RH}Sv?d>BUgkg-ILTo4=#`pp_;##ndBstjP1_HpJFcFY{naELq z#RI{_Cc<%}wXq>)(b!#H4r&I1MbFgKi4wqtxzT+wW9)3UpO4QMzvu-3?$2J~B5X9a z_!>Y%6?qQ;`|z5Jjk?DcQx^|_>$d%PUo9T63IKqE@9Te9W4kG?L?e5;Pt5!;&A~1{ z=JRxoN7?pPojqLma3saKfCBuiG&;Jk>parlr2!uU7<>9G zUxUYl#rNMb(0x3q(7fHI@};T}stlY0F|{5ef*=TjAP9mW2!bF8f*^>K0b_pwCI{c) TGU1^<00000NkvXXu0mjf70%Ig literal 0 HcmV?d00001 diff --git a/src/main/resources/resourcepacks/fancybeds/assets/minecraft/models/block/bed_head.json b/src/main/resources/resourcepacks/fancybeds/assets/minecraft/models/block/bed_head.json new file mode 100644 index 0000000..c10781b --- /dev/null +++ b/src/main/resources/resourcepacks/fancybeds/assets/minecraft/models/block/bed_head.json @@ -0,0 +1,73 @@ +{ + "credit": "made by Motschen", + "ambientocclusion": false, + "texture_size": [64, 64], + "textures": { + "0": "entity/bed/lime", + "particle": "block/oak_planks" + }, + "elements": [ + { + "from": [0, 0, 13], + "to": [3, 3, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 21]}, + "faces": { + "north": {"uv": [12.5, 5.25, 13.25, 6], "texture": "#0"}, + "east": {"uv": [14.75, 5.25, 15.5, 6], "texture": "#0"}, + "south": {"uv": [14, 5.25, 14.75, 6], "texture": "#0"}, + "west": {"uv": [13.25, 5.25, 14, 6], "texture": "#0"}, + "down": {"uv": [14, 4.5, 14.75, 5.25], "texture": "#0"} + } + }, + { + "from": [13, 0, 13], + "to": [16, 3, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [21, 8, 21]}, + "faces": { + "north": {"uv": [12.5, 2.25, 13.25, 3], "texture": "#0"}, + "east": {"uv": [14.75, 2.25, 15.5, 3], "texture": "#0"}, + "south": {"uv": [14, 2.25, 14.75, 3], "texture": "#0"}, + "west": {"uv": [13.25, 2.25, 14, 3], "texture": "#0"}, + "down": {"uv": [14, 1.5, 14.75, 2.25], "texture": "#0"} + } + }, + { + "from": [0, 3, 0], + "to": [16, 9, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "east": {"uv": [0, 1.5, 1.5, 5.5], "rotation": 270, "texture": "#0"}, + "south": {"uv": [1.5, 0, 5.5, 1.5], "rotation": 180, "texture": "#0"}, + "west": {"uv": [5.5, 1.5, 7, 5.5], "rotation": 90, "texture": "#0"}, + "up": {"uv": [1.5, 1.5, 5.5, 5.5], "rotation": 180, "texture": "#0"}, + "down": {"uv": [7, 7, 11, 11], "texture": "#0"} + } + }, + { + "from": [0, 9, 8], + "to": [16, 10, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 17, 16]}, + "faces": { + "north": {"uv": [1.5, 3.25, 5.5, 3.5], "texture": "#0"}, + "east": {"uv": [1.5, 1.5, 1.75, 3.5], "rotation": 270, "texture": "#0"}, + "south": {"uv": [1.5, 1.5, 5.5, 1.75], "texture": "#0"}, + "west": {"uv": [5.25, 1.5, 5.5, 3.5], "rotation": 90, "texture": "#0"}, + "up": {"uv": [1.5, 1.5, 5.5, 3.5], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 2], "texture": "#missing"} + } + }, + { + "from": [1, 10, 9], + "to": [15, 11, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 16]}, + "faces": { + "north": {"uv": [1.75, 3.25, 5.25, 3.5], "texture": "#0"}, + "east": {"uv": [1.75, 1.75, 2, 3.25], "rotation": 90, "texture": "#0"}, + "south": {"uv": [1.75, 0.5, 5.25, 0.75], "texture": "#0"}, + "west": {"uv": [5, 1.75, 5.25, 3.25], "rotation": 90, "texture": "#0"}, + "up": {"uv": [1.75, 1.75, 5.25, 3.25], "texture": "#0"}, + "down": {"uv": [0, 0, 3.5, 1.5], "texture": "#missing"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybeds/license.txt b/src/main/resources/resourcepacks/fancybeds/license.txt new file mode 100644 index 0000000..6968976 --- /dev/null +++ b/src/main/resources/resourcepacks/fancybeds/license.txt @@ -0,0 +1,10 @@ +The MIT License +Copyright © 2019 Motschen + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, +and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybeds/pack.mcmeta b/src/main/resources/resourcepacks/fancybeds/pack.mcmeta new file mode 100644 index 0000000..3a8d1b1 --- /dev/null +++ b/src/main/resources/resourcepacks/fancybeds/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "pack_format": 6, + "description": "§2Makes beds look more fancy" + } +} diff --git a/src/main/resources/resourcepacks/fancybeds/pack.png b/src/main/resources/resourcepacks/fancybeds/pack.png new file mode 100644 index 0000000000000000000000000000000000000000..ddb8653a7e4ec4209fc86effebeee81c7c909a69 GIT binary patch literal 2689 zcmV-{3V!v8P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!TJ(ApB+b$gdz{!FkH?;UJahT}=ibjgb3NlaUPtQu(yMc~ znS1{K?>pZ)cU-DcrAn15RX)DdSZzge=E4O7?Zn84IzD{(@T&K>;taTS>5@@XQ$ts- zTv5lnckfm$2!%p)?e=YI_WRXwS6A1H`(H5zeD8-pGM;*(kEXI&qGXbsEEa5QYf~+N z0d}I%sA`vMMnxF#*VCtsKfL-XMI)0`S6@dypP%+U(5(dfd_L;#?zZkMZGsLAiNxdd zXiv|Qv~9Qn$G-V3gP}H#^z7^`%}h_z=;$bAITIX?dh+=L)Y#ZaJ^LP_Kp;SS_Us`H z5wMsUFyhADyOf)nQpe@$$A%kl^x1D1k;nwG2jp_OSg@a3T3aZa$A-_~si~=HL1qYuzSIb*BQ2XZQ-qE9Qh)yfy&Go0k2|**Sr&F}I!>uVf#SS* z`uZrxkw=7`E+cPN$0k!61d2Le%q+nHe2hw^EGF0upr; z&~eVFf4u!Rmz5+va`2$KxBt+gIo<1Sz==IOjXW6?NoJ|Q2F&sn$rUKaB5%YK%8V3? z^!N5riaU*LcY8dlE_B>?pUQ@GI!&YD5jHEwW;n^q+0fM7Og*3bEQPp5CT(wTSNENG zgwv~rvn2@`??wM{q}Y>r}und0(|Cu7_iG-(-; zvy6cu2{y#{g+r7{XZUUm1-Hr!m{C_(OX*ZvWkxQSrTRM53_lN*2C8>D$iadO{P{0F z`J@^)=gys@1ZUV!o_~J*GT`N%_baIYJK;=0wTNVQdr0j=JpV_DREloIQk3U&FaTSe zql}?)hid{d!}Hiz;LLD)$R7;QW**}Xhf@{NF)n=he4bn$H}&`Tt6K5i#f#L; zLk2@@hCjP528eLC+sUcOb320*$%5KdL^SnZ0_tN4PIJ=5#V7XteFA7+J3(QA%YkH>?R1xDGS_#sN<|ML+uf@dtEF(PeDhm zIz~p|zD=QkGGSzLTD92z8%wAbS+eWvU&A<~t{pq@r3#1#t7-s*qZRSGK%^mvM$HG~ z8lo;Vd7X16EEp!%g^`3c-nppBy@C1~bNKN7uGR)sL;7L6ifVal zsIR4e&2Sdv3v5P?KJ(mj>KcG>kiPzRI`P)!K+mA9D9deJbAH5^O6jJ zaJf;^S&tG@`ChSShM*gxleA32wMnZF;5yffL0&L5vJt*I9vYch75$w@k17Ko-XHt7 zx_4qCQWSll#cv^hV&T~E33N=46rv&9a**%SH&D(PFQ1od9?lNg?i#a2QFQXmAV55# z4z7GSM*kb1@4ry8`xxWD-@DV0P64E&q$E;ZPj`JhuLRwQQb1^!*9lSX$I08{bZX4} zEdU_;33GWl2gEyFUV3+Em_FHIz988tN{3%^MaKz5H56)4=kyNgLScaY_+GG^rhmRv z7N8#zfKzNj$W^Zd$9PT9!09iH@zNM{KH8}wp67!2@a|Ss7%$z7(&@olMVi%t2nUkV z=#bu#5q>DpuL~0@CTmSMbk4WB|gLJhwg1{DYl5=@FNkhB=6gMewdP;6?ZcrOC!`@LG%eE9`I6;^_6Lj?JZ$;yC;`MP3MEt{t z_o)`*(_9QYLcGq%XQ-*ct5$_}@j#vUc57?V;5pFfwf5$tf{w_r5EdJ+c&7k!1M;h06pD<0goE*gFN1Kq2E37h!KgU>9=pbzd$@FX@JLJj;a04^Dhy4hgM=l zDFbxj`mlTBR#>%2^>X6%ln14vyclyg>n4Z+KsN#CM%Yu{eoa3vM=9|l9AI7-%0>SD z8=?!)nJ3s;wp})-GrdSynTxk zKQfuvBdxCxb+B42Ct48k9~E`58sb5b0ci2M(du%kb3ivi3=m+1MAV)YGG}9)>sbO| zgwze}FBWyMTI0PGb6@a_@AMjzTy3wsX8x31%kxIFbH3x{jMx#JpD{{NYPiTb9RJN) z%`F!7wGb}MebI|Qc*YnFk6K4WAN={MdeyAqfBMiUXM{d1Fbw1csa#z+Gj0Ba4HkR_$KgQ73|$`f72r?&WMG@7S9+vewbF#&v3HcaPCQCmIp*L40FGZ!_b(8VL|Wnlx> zLOdvI0Df?oPNwPL-gb2@!cn{W+Euk*s!*o*9bEQ-9CukY0xvKUWr?`HxDoMEyf;kAY=L}khx(-z#t0~ss13kAG)fV+%qRzbzyPZ~#Vv)R z)p#snKG^LIkjw3%e4&P>VhPG*XX)~ATy5a<#}3f0FYi+OnR=- z8DRa)Mw#Rcb#LE99+!i1{2m==V@{qLQXPT`Xa93Y-6tl1do@9#E^ly1_w^PJNq55}%YLAk0Hja? znKAGS{U)nWiUIbhgN+mqR{T)A5tuE&Wm!@3BeJzzODysB=?!d@c(7^@h7k=u^JND! ziGZndEN`y#q|n_QjZ-3(-B97es&?Sm)BAZfY3_>&s1buh=IRo2JJ$4(c%J@p_Ja)< z4~k}im2&)z!J3y}A6y`8e^-ZUAs!(5mBOkTAjo