From b51b4fd7039016bead7c291c23232724848ab365 Mon Sep 17 00:00:00 2001 From: Yann Kervran Date: Mon, 25 Nov 2024 18:16:38 +0100 Subject: [PATCH] Initial commit --- .gitattributes | 2 + .gitignore | 368 ++++++++++++++++++ LICENSE | 661 +++++++++++++++++++++++++++++++++ README.md | 4 + icon.svg | 120 ++++++ icon.svg.import | 37 ++ main.gd | 61 +++ main.tscn | 229 ++++++++++++ project.godot | 30 ++ psychotype/creator.tres | 15 + psychotype/explorer.tres | 15 + psychotype/guardian_angel.tres | 15 + psychotype/heros.tres | 15 + psychotype/innocent.tres | 15 + psychotype/leader.tres | 15 + psychotype/lover.tres | 15 + psychotype/mad.tres | 15 + psychotype/magician.tres | 15 + psychotype/ordinary.tres | 15 + psychotype/psychotype.gd | 12 + psychotype/rebel.tres | 15 + psychotype/wise.tres | 15 + psyline.gd | 69 ++++ psyline.tscn | 133 +++++++ sounds/dieShuffle1.ogg | Bin 0 -> 19388 bytes sounds/dieShuffle1.ogg.import | 19 + textures/dices.png | Bin 0 -> 34521 bytes textures/dices.png.import | 34 ++ themes/base.tres | 10 + traits.gd | 68 ++++ traits.tscn | 19 + 31 files changed, 2056 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 icon.svg create mode 100644 icon.svg.import create mode 100644 main.gd create mode 100644 main.tscn create mode 100644 project.godot create mode 100644 psychotype/creator.tres create mode 100644 psychotype/explorer.tres create mode 100644 psychotype/guardian_angel.tres create mode 100644 psychotype/heros.tres create mode 100644 psychotype/innocent.tres create mode 100644 psychotype/leader.tres create mode 100644 psychotype/lover.tres create mode 100644 psychotype/mad.tres create mode 100644 psychotype/magician.tres create mode 100644 psychotype/ordinary.tres create mode 100644 psychotype/psychotype.gd create mode 100644 psychotype/rebel.tres create mode 100644 psychotype/wise.tres create mode 100644 psyline.gd create mode 100644 psyline.tscn create mode 100644 sounds/dieShuffle1.ogg create mode 100644 sounds/dieShuffle1.ogg.import create mode 100644 textures/dices.png create mode 100644 textures/dices.png.import create mode 100644 themes/base.tres create mode 100644 traits.gd create mode 100644 traits.tscn diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..8ad74f7 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Normalize EOL for all files that Git considers text files. +* text=auto eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..be7273c --- /dev/null +++ b/.gitignore @@ -0,0 +1,368 @@ + +# Godot .gitignore config +# +# Aims to encompass the most commonly found files that we don't want committed +# to Git, such as compilation output, IDE specific files, etc. +# +# It doesn't cover *all* thirdparty IDE extensions under the sun so if you have +# specific needs covered here, you can add them to: +# .git/info/exclude +# +# Or contribute them to this file if they're common enough that a good number of +# users would benefit from the shared rules. +# +# This file is organized by sections, with subsections ordered alphabetically. +# - Build configuration +# - Godot generated files +# - General build output +# - IDE and tool specific +# - Visual Studio specific +# - OS specific + +########################### +### Build configuration ### +########################### + +/custom.py +misc/hooks/pre-commit-custom-* + +############################# +### Godot generated files ### +############################# + +# Buildsystem +bin +*.gen.* +compile_commands.json +platform/windows/godot_res.res + +# Generated by Godot binary +.import/ +.godot/ +/gdextension_interface.h +extension_api.json +logs/ + +# Generated by unit tests +tests/data/*.translation + +############################ +### General build output ### +############################ + +# C/C++ generated +*.a +*.ax +*.d +*.dll +*.lib +*.lo +*.o +*.os +*.ox +*.Plo +*.so +# Binutils tmp linker output of the form "stXXXXXX" where "X" is alphanumeric +st[A-Za-z0-9][A-Za-z0-9][A-Za-z0-9][A-Za-z0-9][A-Za-z0-9][A-Za-z0-9] + +# Python development +.venv +venv + +# Python generated +__pycache__/ +*.pyc + +# Documentation +doc/_build/ + +# Android +.gradle/ +local.properties +*.iml +.gradletasknamecache +project.properties +platform/android/java/*/.cxx/ +platform/android/java/*/build/ +platform/android/java/*/libs/ + +# iOS +*.dSYM + +# Web platform +*.bc +platform/web/node_modules/ + +# Misc +*.debug + +############################# +### IDE and tool specific ### +############################# + +# Automake +.deps/* +.dirstamp + +# ccls +.ccls-cache/ + +# clangd +.clangd/ +.cache/ + +# CLion +cmake-build-debug + +# Code::Blocks +*.cbp +*.layout +*.depend + +# CodeLite +*.project +*.workspace +.codelite/ + +# Cppcheck +*.cppcheck +cppcheck-cppcheck-build-dir/ + +# Eclipse CDT +.cproject +.settings/ +*.pydevproject +*.launch + +# GCOV code coverage +*.gcda +*.gcno + +# Geany +*.geany +.geanyprj + +# Gprof +gmon.out + +# Jetbrains IDEs +.idea/ +.fleet/ + +# Kate +*.kate-swp + +# Kdevelop +*.kdev4 + +# Qt Creator +*.config +*.creator +*.creator.* +*.files +*.includes +*.cflags +*.cxxflags + +# SCons +.sconf_temp +.sconsign*.dblite +.scons_env.json +.scons_node_count + +# Sourcetrail +*.srctrl* + +# Tags +# https://github.com/github/gitignore/blob/master/Global/Tags.gitignore +# Ignore tags created by etags, ctags, gtags (GNU global) and cscope +TAGS +!TAGS/ +tags +*.tags +!tags/ +gtags.files +GTAGS +GRTAGS +GPATH +cscope.files +cscope.out +cscope.in.out +cscope.po.out + +# Vim +*.swo +*.swp + +# Visual Studio Code +.vscode/ +*.code-workspace +.history/ + +# Xcode +xcuserdata/ +*.xcscmblueprint +*.xccheckout +*.xcodeproj/* + +############################## +### Visual Studio specific ### +############################## + +# https://github.com/github/gitignore/blob/master/VisualStudio.gitignore +# Ignore Visual Studio temporary files, build results, and +# files generated by popular Visual Studio add-ons. + +# Actual VS project files we don't use +*.sln +*.vcxproj* + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ + +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# Do not ignore arch-specific folders anywhere under thirdparty libraries +!thirdparty/**/x64/ +!thirdparty/**/x86/ +!thirdparty/**/arm/ +!thirdparty/**/arm64/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.tlog +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache + +# Others +ClientBin/ +enc_temp_folder/ +~$* +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# Hint file for IntelliSense +cpp.hint + +################### +### OS specific ### +################### + +# Linux +*~ +.directory + +# macOS +.DS_Store +__MACOSX + +# Windows +# https://github.com/github/gitignore/blob/main/Global/Windows.gitignore +[Tt]humbs.db +[Tt]humbs.db:encryptable +ehthumbs.db +ehthumbs_vista.db +*.stackdump +[Dd]esktop.ini +$RECYCLE.BIN/ +*.cab +*.msi +*.msix +*.msm +*.msp +*.lnk \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..be3f7b2 --- /dev/null +++ b/LICENSE @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/README.md b/README.md new file mode 100644 index 0000000..5822239 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Storytelling assistant + +Somme tolls to help writer and creators to spark some ideas for their story… + diff --git a/icon.svg b/icon.svg new file mode 100644 index 0000000..38aa10f --- /dev/null +++ b/icon.svg @@ -0,0 +1,120 @@ + + + + diff --git a/icon.svg.import b/icon.svg.import new file mode 100644 index 0000000..fb6ebac --- /dev/null +++ b/icon.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jwkbxvtr8xvd" +path="res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://icon.svg" +dest_files=["res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/main.gd b/main.gd new file mode 100644 index 0000000..525414a --- /dev/null +++ b/main.gd @@ -0,0 +1,61 @@ +extends Control + +@export var seed: int = 0 + +@onready var otherview: int = 0 +@onready var selfview: int = 0 +@onready var trueview: int = 0 + +# variables for nodes +@onready var roll_dice: TextureButton = $Roll/Roll_dice +@onready var psyline_other: Control = $Psy_line_other +@onready var psyline_self: Control = $Psy_line_self +@onready var psyline_true: Control = $Psy_line_true +@onready var traits: Control = $Traits +@onready var keep_psy: CheckBox = $Roll/Keep_psy +@onready var keep_traits: CheckBox = $Roll/Keep_traits + +# Called when the node enters the scene tree for the first time. +func _ready() -> void: + lets_roll(seed) + roll_dice.pressed.connect(_on_roll_dice_pressed) + +func _process(delta: float) -> void: + # Roll new result" + if Input.is_action_just_pressed("roll"): + lets_roll(seed) + + # Exit the app + if Input.is_action_just_pressed("ui_cancel"): + get_tree().quit() + +func _on_roll_dice_pressed() -> void: + lets_roll(seed) + +func lets_roll(chosen_seed: int) -> void: + # Random psy profiles + var possible_psy: int = $Psy_line_other.resources.size() + + var random = RandomNumberGenerator.new() + random.seed = chosen_seed + + # Randomize psychology + if not keep_psy.button_pressed: + random.randomize() + var result_other: int = random.randi_range(0, possible_psy - 1) + psyline_other.choice.select(result_other) + psyline_other.on_item_selected(result_other) + + random.randomize() + var result_self: int = random.randi_range(0, possible_psy - 1) + psyline_self.choice.select(result_self) + psyline_self.on_item_selected(result_self) + + random.randomize() + var result_true: int = random.randi_range(0, possible_psy - 1) + psyline_true.choice.select(result_true) + psyline_true.on_item_selected(result_true) + + # Randomize trait + if not keep_traits.button_pressed: + traits.populate() diff --git a/main.tscn b/main.tscn new file mode 100644 index 0000000..3c17ec7 --- /dev/null +++ b/main.tscn @@ -0,0 +1,229 @@ +[gd_scene load_steps=6 format=3 uid="uid://d14wihi8i46og"] + +[ext_resource type="PackedScene" uid="uid://bff864odl7vlj" path="res://psyline.tscn" id="1_03r8p"] +[ext_resource type="Script" path="res://main.gd" id="1_gqole"] +[ext_resource type="Theme" uid="uid://qsom67gcgupx" path="res://themes/base.tres" id="2_vc4v2"] +[ext_resource type="PackedScene" uid="uid://cl5wswke7jxpi" path="res://traits.tscn" id="3_t3gol"] +[ext_resource type="Texture2D" uid="uid://b7fg7g42642p" path="res://textures/dices.png" id="5_rsth0"] + +[node name="Main" type="Control"] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_gqole") + +[node name="Others_panel" type="ColorRect" parent="."] +layout_mode = 0 +offset_left = 40.0 +offset_top = 64.0 +offset_right = 1136.0 +offset_bottom = 168.0 +color = Color(0, 1, 0.203922, 0.478431) + +[node name="Self_panel" type="ColorRect" parent="."] +layout_mode = 0 +offset_left = 40.0 +offset_top = 184.0 +offset_right = 1136.0 +offset_bottom = 288.0 +color = Color(1, 0.815852, 0, 0.478431) + +[node name="True_panel" type="ColorRect" parent="."] +layout_mode = 0 +offset_left = 40.0 +offset_top = 304.0 +offset_right = 1136.0 +offset_bottom = 408.0 +color = Color(0.159107, 0.480726, 1, 0.478431) + +[node name="People think" type="Label" parent="."] +layout_mode = 0 +offset_left = 64.0 +offset_top = 88.0 +offset_right = 209.0 +offset_bottom = 104.0 +theme = ExtResource("2_vc4v2") +text = "Who people think character is" + +[node name="Character think" type="Label" parent="."] +layout_mode = 0 +offset_left = 64.0 +offset_top = 208.0 +offset_right = 209.0 +offset_bottom = 224.0 +theme = ExtResource("2_vc4v2") +text = "Who character think he is" + +[node name="Character is actually" type="Label" parent="."] +layout_mode = 0 +offset_left = 64.0 +offset_top = 336.0 +offset_right = 209.0 +offset_bottom = 352.0 +theme = ExtResource("2_vc4v2") +text = "Character is actually +" + +[node name="Slogan_label" type="Label" parent="."] +layout_mode = 0 +offset_left = 264.0 +offset_top = 48.0 +offset_right = 344.0 +offset_bottom = 64.0 +theme = ExtResource("2_vc4v2") +text = "Slogan" +horizontal_alignment = 1 + +[node name="Motivation_label" type="Label" parent="."] +layout_mode = 0 +offset_left = 384.0 +offset_top = 48.0 +offset_right = 468.0 +offset_bottom = 64.0 +theme = ExtResource("2_vc4v2") +text = "Motivation" +horizontal_alignment = 1 + +[node name="Goal_label" type="Label" parent="."] +layout_mode = 0 +offset_left = 512.0 +offset_top = 48.0 +offset_right = 596.0 +offset_bottom = 64.0 +theme = ExtResource("2_vc4v2") +text = "Goal" +horizontal_alignment = 1 + +[node name="Fear_label" type="Label" parent="."] +layout_mode = 0 +offset_left = 640.0 +offset_top = 48.0 +offset_right = 724.0 +offset_bottom = 64.0 +theme = ExtResource("2_vc4v2") +text = "Fear" +horizontal_alignment = 1 + +[node name="Strategy_label" type="Label" parent="."] +layout_mode = 0 +offset_left = 768.0 +offset_top = 48.0 +offset_right = 852.0 +offset_bottom = 64.0 +theme = ExtResource("2_vc4v2") +text = "Strategy" +horizontal_alignment = 1 + +[node name="Weakness_label" type="Label" parent="."] +layout_mode = 0 +offset_left = 896.0 +offset_top = 48.0 +offset_right = 980.0 +offset_bottom = 64.0 +theme = ExtResource("2_vc4v2") +text = "Weakness" +horizontal_alignment = 1 + +[node name="Problem_handling_label" type="Label" parent="."] +layout_mode = 0 +offset_left = 1016.0 +offset_top = 48.0 +offset_right = 1112.0 +offset_bottom = 64.0 +theme = ExtResource("2_vc4v2") +text = "Problem handling" +horizontal_alignment = 1 + +[node name="Psy_line_other" parent="." instance=ExtResource("1_03r8p")] +layout_mode = 1 +anchor_top = 0.086 +anchor_bottom = 0.197 +offset_left = 56.0 +offset_top = 16.272 +offset_right = 56.0 +offset_bottom = 16.272 +theme = ExtResource("2_vc4v2") + +[node name="Psy_line_self" parent="." instance=ExtResource("1_03r8p")] +layout_mode = 1 +anchor_top = 0.198 +anchor_bottom = 0.309 +offset_left = 56.0 +offset_top = 63.696 +offset_right = 56.0 +offset_bottom = 63.696 +selected = 3 + +[node name="Psy_line_true" parent="." instance=ExtResource("1_03r8p")] +layout_mode = 1 +anchor_top = 0.309 +anchor_bottom = 0.42 +offset_left = 56.0 +offset_top = 111.768 +offset_right = 56.0 +offset_bottom = 111.768 +selected = 9 + +[node name="Top_labels" type="Control" parent="."] +anchors_preset = 0 +offset_right = 40.0 +offset_bottom = 40.0 + +[node name="Traits" parent="." instance=ExtResource("3_t3gol")] +layout_mode = 1 +anchors_preset = -1 +anchor_left = 0.056 +anchor_top = 0.469 +anchor_right = 0.333 +anchor_bottom = 0.691 +offset_left = -16.512 +offset_top = 128.088 +offset_right = -15.616 +offset_bottom = 112.232 + +[node name="Traits_label" type="Label" parent="Traits"] +layout_mode = 1 +anchors_preset = -1 +anchor_top = -0.125 +anchor_right = 0.25 +theme = ExtResource("2_vc4v2") +text = "Traits" +horizontal_alignment = 1 + +[node name="Roll" type="Control" parent="."] +anchors_preset = 0 +offset_left = 448.0 +offset_top = 440.0 +offset_right = 808.0 +offset_bottom = 632.0 + +[node name="Roll_dice" type="TextureButton" parent="Roll"] +layout_mode = 0 +offset_left = 16.0 +offset_top = 16.0 +offset_right = 141.0 +offset_bottom = 141.0 +texture_normal = ExtResource("5_rsth0") +ignore_texture_size = true +stretch_mode = 0 + +[node name="Keep_psy" type="CheckBox" parent="Roll"] +layout_mode = 0 +offset_left = 168.0 +offset_top = 40.0 +offset_right = 325.0 +offset_bottom = 71.0 +theme = ExtResource("2_vc4v2") +text = "Keep psychology" + +[node name="Keep_traits" type="CheckBox" parent="Roll"] +layout_mode = 0 +offset_left = 168.0 +offset_top = 72.0 +offset_right = 280.0 +offset_bottom = 103.0 +theme = ExtResource("2_vc4v2") +text = "Keep traits" diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..2b2e414 --- /dev/null +++ b/project.godot @@ -0,0 +1,30 @@ +; Engine configuration file. +; It's best edited using the editor UI and not directly, +; since the parameters that go here are not all obvious. +; +; Format: +; [section] ; section goes between [] +; param=value ; assign values to parameters + +config_version=5 + +[application] + +config/name="Storytelling Assistant" +run/main_scene="res://main.tscn" +config/features=PackedStringArray("4.3", "Forward Plus") +config/icon="res://icon.svg" + +[input] + +ui_accept={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194310,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +] +} +roll={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194309,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +] +} diff --git a/psychotype/creator.tres b/psychotype/creator.tres new file mode 100644 index 0000000..8cfcbb4 --- /dev/null +++ b/psychotype/creator.tres @@ -0,0 +1,15 @@ +[gd_resource type="Resource" script_class="psychotype" load_steps=2 format=3 uid="uid://mfdqg6v6pvti"] + +[ext_resource type="Script" path="res://psychotype/psychotype.gd" id="1_iunv2"] + +[resource] +script = ExtResource("1_iunv2") +name = "Créateur" +slogan = "Rendons cela possible" +motivation = "Créer des choses importantes et durables" +goal = "Accomplir un grand projet" +fear = "Une vision ou une réalisation médiocre" +strategy = "Développer ses capacités artistiques et de contrôle" +weakness = "Perfectionnisme, mauvais choix" +problem_handling = "Tenter de l'intégrer comme partie de la solution" +other_names = Array[String](["Artiste", "Inventeur", "Architecte"]) diff --git a/psychotype/explorer.tres b/psychotype/explorer.tres new file mode 100644 index 0000000..05aad6f --- /dev/null +++ b/psychotype/explorer.tres @@ -0,0 +1,15 @@ +[gd_resource type="Resource" script_class="psychotype" load_steps=2 format=3 uid="uid://ch1fdk1kdhr77"] + +[ext_resource type="Script" path="res://psychotype/psychotype.gd" id="1_j3na6"] + +[resource] +script = ExtResource("1_j3na6") +name = "Explorateur" +slogan = "Ne m'enferme pas" +motivation = "La liberté de découvrir qui on est en parcourant le monde" +goal = "Avoir une vie meilleure, plus authentique, plus remplie" +fear = "L'enfermement, la conformité et le vide intérieur" +strategy = "Voyager, chercher et expérimenter de nouvelles choses, éviter l'ennui et le conformisme" +weakness = "Déambuler sans but, devenir un paria" +problem_handling = "Fuir" +other_names = Array[String](["Chercheur", "Iconoclaste", "Errant", "Individualiste", "Pèlerin"]) diff --git a/psychotype/guardian_angel.tres b/psychotype/guardian_angel.tres new file mode 100644 index 0000000..44f2c76 --- /dev/null +++ b/psychotype/guardian_angel.tres @@ -0,0 +1,15 @@ +[gd_resource type="Resource" script_class="psychotype" load_steps=2 format=3 uid="uid://sncpo1xtn0tu"] + +[ext_resource type="Script" path="res://psychotype/psychotype.gd" id="1_82a72"] + +[resource] +script = ExtResource("1_82a72") +name = "Ange-Gardien" +slogan = "Aime ton prochain" +motivation = "Protéger et soigner les autres" +goal = "Aider les autres" +fear = "L'égoïsme et l'ingratitude" +strategy = "Faire des choses pour son prochain" +weakness = "Tendance au martyr, à se faire exploiter" +problem_handling = "Prendre soin de ceux que cela blesse" +other_names = Array[String](["Saint", "Altruiste", "Parent", "Soutien"]) diff --git a/psychotype/heros.tres b/psychotype/heros.tres new file mode 100644 index 0000000..ed33719 --- /dev/null +++ b/psychotype/heros.tres @@ -0,0 +1,15 @@ +[gd_resource type="Resource" script_class="psychotype" load_steps=2 format=3 uid="uid://dj675bd6mo0o8"] + +[ext_resource type="Script" path="res://psychotype/psychotype.gd" id="1_6nbty"] + +[resource] +script = ExtResource("1_6nbty") +name = "Héros" +slogan = "Quand on veut, on peut" +motivation = "Prouver sa valeur par des actes courageux" +goal = "Démontrer sa capacité à améliorer le monde" +fear = "La faiblesse, la vulnérabilité, être froussard" +strategy = "Être aussi fort et compétent que possible" +weakness = "Arrogance, perpétuellement en recherche d'un combat à mener" +problem_handling = "Ne pas bouger, l'affronter" +other_names = Array[String](["Guerrier", "Croisé", "Sauveteur", "Superhéros", "Soldat", "Winner"]) diff --git a/psychotype/innocent.tres b/psychotype/innocent.tres new file mode 100644 index 0000000..db7f3ee --- /dev/null +++ b/psychotype/innocent.tres @@ -0,0 +1,15 @@ +[gd_resource type="Resource" script_class="psychotype" load_steps=2 format=3 uid="uid://cjaxn68tialev"] + +[ext_resource type="Script" path="res://psychotype/psychotype.gd" id="1_pside"] + +[resource] +script = ExtResource("1_pside") +name = "Innocent" +slogan = "En quête du bonheur" +motivation = "Accéder au paradis" +goal = "Être heureux" +fear = "Être abandonné pour avoir causé du mal" +strategy = "Faire les choses bien, conformes" +weakness = "Prêter aux autres cette même naïveté" +problem_handling = "Le refuser, chercher de l'aide" +other_names = Array[String](["Utopiste", "Traditionnaliste", "Naif", "Mystique", "Enfant", "Rêveur"]) diff --git a/psychotype/leader.tres b/psychotype/leader.tres new file mode 100644 index 0000000..59b613b --- /dev/null +++ b/psychotype/leader.tres @@ -0,0 +1,15 @@ +[gd_resource type="Resource" script_class="psychotype" load_steps=2 format=3 uid="uid://cp8ilfnea3a1s"] + +[ext_resource type="Script" path="res://psychotype/psychotype.gd" id="1_cl2dr"] + +[resource] +script = ExtResource("1_cl2dr") +name = "Meneur" +slogan = "Le pouvoir n'est pas la chose importante, c'est la seule chose" +motivation = "Le contrôle, l'ordre, l'harmonie" +goal = "Créer une famille, une communauté prospère et couronnée de succès" +fear = "Le chaos, se faire renverser" +strategy = "Exercer le pouvoir" +weakness = "Autoritarisme, impossibilité de déléguer" +problem_handling = "Chercher ses aspects constructeurs" +other_names = Array[String](["Dirigeant", "Aristocrate", "Administrateur"]) diff --git a/psychotype/lover.tres b/psychotype/lover.tres new file mode 100644 index 0000000..b3c438d --- /dev/null +++ b/psychotype/lover.tres @@ -0,0 +1,15 @@ +[gd_resource type="Resource" script_class="psychotype" load_steps=2 format=3 uid="uid://unsfhulin0xy"] + +[ext_resource type="Script" path="res://psychotype/psychotype.gd" id="1_ft86x"] + +[resource] +script = ExtResource("1_ft86x") +name = "Amoureux" +slogan = "Tu es l'unique" +motivation = "L'intimité et la sensualité" +goal = "Être relié avec les gens, le travail, l'environnement qu'ils aiment" +fear = "Être seul, une potiche, non désiré, pas aimé" +strategy = "Se rendre le plus attractif possible, physiquement et émotionnellement" +weakness = "Perdre son identité en cherchant à plaire" +problem_handling = "Aimer le souci" +other_names = Array[String](["Partenaire", "Ami", "Intime", "Sensuel"]) diff --git a/psychotype/mad.tres b/psychotype/mad.tres new file mode 100644 index 0000000..b313dca --- /dev/null +++ b/psychotype/mad.tres @@ -0,0 +1,15 @@ +[gd_resource type="Resource" script_class="psychotype" load_steps=2 format=3 uid="uid://y6gfhvhjfuod"] + +[ext_resource type="Script" path="res://psychotype/psychotype.gd" id="1_4cc85"] + +[resource] +script = ExtResource("1_4cc85") +name = "Fou" +slogan = "On ne vit qu'une fois" +motivation = "Vivre l'instant avec intensité" +goal = "Prendre du bon temps, sans se prendre trop au sérieux" +fear = "S'ennuyer, ennuyer les autres" +strategy = "Jouer, plaisanter, être drôle" +weakness = "Frivolité, perdre son temps" +problem_handling = "Jouer avec" +other_names = Array[String](["Joker", "Comédien", "Idiot", "Clown"]) diff --git a/psychotype/magician.tres b/psychotype/magician.tres new file mode 100644 index 0000000..4154da1 --- /dev/null +++ b/psychotype/magician.tres @@ -0,0 +1,15 @@ +[gd_resource type="Resource" script_class="psychotype" load_steps=2 format=3 uid="uid://cjbw34gvp85ih"] + +[ext_resource type="Script" path="res://psychotype/psychotype.gd" id="1_10nn4"] + +[resource] +script = ExtResource("1_10nn4") +name = "Magicien" +slogan = "Je fais advenir les choses" +motivation = "Maîtriser les lois fondamentales de l'univers" +goal = "Rendre les rêves réels" +fear = "Des conséquences négatives imprévues" +strategy = "Développer un projet novateur et s'y tenir" +weakness = "Devenir manipulateur" +problem_handling = "Le transformer" +other_names = Array[String](["Visionnaire", "Prophète", "Shaman"]) diff --git a/psychotype/ordinary.tres b/psychotype/ordinary.tres new file mode 100644 index 0000000..92b44ba --- /dev/null +++ b/psychotype/ordinary.tres @@ -0,0 +1,15 @@ +[gd_resource type="Resource" script_class="psychotype" load_steps=2 format=3 uid="uid://bhqgxdk0xtt23"] + +[ext_resource type="Script" path="res://psychotype/psychotype.gd" id="1_xrv31"] + +[resource] +script = ExtResource("1_xrv31") +name = "Ordinaire" +slogan = "Tous les êtres humains se valent" +motivation = "Se connecter aux autres" +goal = "Appartenir" +fear = "Être mis à l'écart" +strategy = "Développer des qualités ordinaires, être pragmatique, réaliste" +weakness = "Prêt à se perdre pour se confondre ou établir des liens, même superficiels" +problem_handling = "En devient la victime" +other_names = Array[String](["Mr tout le monde", "Réaliste", "Voisin", "Majorité silencieuse"]) diff --git a/psychotype/psychotype.gd b/psychotype/psychotype.gd new file mode 100644 index 0000000..154fed9 --- /dev/null +++ b/psychotype/psychotype.gd @@ -0,0 +1,12 @@ +extends Resource +class_name psychotype + +@export var name: String +@export var slogan: String +@export var motivation: String +@export var goal: String +@export var fear: String +@export var strategy: String +@export var weakness: String +@export var problem_handling: String +@export var other_names: Array[String] diff --git a/psychotype/rebel.tres b/psychotype/rebel.tres new file mode 100644 index 0000000..4dd7989 --- /dev/null +++ b/psychotype/rebel.tres @@ -0,0 +1,15 @@ +[gd_resource type="Resource" script_class="psychotype" load_steps=2 format=3 uid="uid://c84hgxmbfum0"] + +[ext_resource type="Script" path="res://psychotype/psychotype.gd" id="1_wyytt"] + +[resource] +script = ExtResource("1_wyytt") +name = "Rebelle" +slogan = "Les règles sont faites pour être brisées" +motivation = "La vengeance ou la révolution" +goal = "Renverser ce qui ne nous convient pas" +fear = "Être impuissant ou inutile" +strategy = "Déconstruire, détruire ou choquer" +weakness = "Passer du mauvais côté, se criminaliser" +problem_handling = "Accepter de se voir détruit par le problème, en espérant la métamorphose" +other_names = Array[String](["Bandit", "Sauvage", "Iconoclaste", "Révolutionnaire", "Désaxé"]) diff --git a/psychotype/wise.tres b/psychotype/wise.tres new file mode 100644 index 0000000..126774b --- /dev/null +++ b/psychotype/wise.tres @@ -0,0 +1,15 @@ +[gd_resource type="Resource" script_class="psychotype" load_steps=2 format=3 uid="uid://dx2kvo1baw2uj"] + +[ext_resource type="Script" path="res://psychotype/psychotype.gd" id="1_u8rni"] + +[resource] +script = ExtResource("1_u8rni") +name = "Sage" +slogan = "La vérité te libérera" +motivation = "Découvrir la vérité" +goal = "Utiliser son intelligence, l'analyse, pour comprendre le monde" +fear = "Se faire berner, être mal renseigné ou ignorer" +strategy = "Chercher l'information et le savoir, la réflexion et comprendre les processus" +weakness = "Passer son temps à étudier sans jamais agir" +problem_handling = "Transcender le problème" +other_names = Array[String](["Expert", "Savant", "Penseur", "Philosophe", "Érudit", "Professeur"]) diff --git a/psyline.gd b/psyline.gd new file mode 100644 index 0000000..bd40bc4 --- /dev/null +++ b/psyline.gd @@ -0,0 +1,69 @@ +extends Control + +@export var selected: int = 3 + +# variables for nodes +@onready var choice: OptionButton = $Choice +@onready var slogan_text: RichTextLabel = $Slogan_border/Slogan_text +@onready var motivation_text: RichTextLabel = $Motivation_border/Motivation_text +@onready var goal_text: RichTextLabel = $Goal_border/Goal_text +@onready var fear_text: RichTextLabel = $Fear_border/Fear_text +@onready var strategy_text: RichTextLabel = $Strategy_border/Strategy_text +@onready var weakness_text: RichTextLabel = $Weakness_border/Weakness_text +@onready var problem_handling_text: RichTextLabel = $Problem_handling_border/Problem_handling_text + +# A dict to connect names and content +var resources: Dictionary = {} + +# Called when the node enters the scene tree for the first time. +func _ready() -> void: + load_resources() + + # Build the Choice + for resource_idx in resources: + # Build the Choice OptionButton text display and connect the proper resource as metadata + choice.add_item(resources[resource_idx].name) + choice.set_item_metadata(choice.item_count - 1, resource_idx) + + # Select the chosen one + choice.select(selected) + on_item_selected(selected) + + # Connect the "item_selected" signal of Choice + choice.item_selected.connect(on_item_selected) + +func load_resources() -> void: + # Add resources in the dict (key = name, value = path) + resources["creator"] = load("res://psychotype/creator.tres") + resources["explorer"] = load("res://psychotype/explorer.tres") + resources["guardian_angel"] = load("res://psychotype/guardian_angel.tres") + resources["heros"] = load("res://psychotype/heros.tres") + resources["innocent"] = load("res://psychotype/innocent.tres") + resources["leader"] = load("res://psychotype/leader.tres") + resources["lover"]= load("res://psychotype/lover.tres") + resources["mad"] = load("res://psychotype/mad.tres") + resources["magician"] = load("res://psychotype/magician.tres") + resources["ordinary"] = load("res://psychotype/ordinary.tres") + resources["rebel"] = load("res://psychotype/rebel.tres") + resources["wise"] = load("res://psychotype/wise.tres") + +func on_item_selected(index: int) -> void: + # When a Choice is made, get the associate resource saved in metadata and display corresponding text + var resource:String = choice.get_item_metadata(index) + if resource: + # Show desired element(s) of the resource in labels + slogan_text.text = resources[resource].get("slogan") if "slogan" in resources[resource] else "Aucune description." + motivation_text.text = resources[resource].get("motivation") if "motivation" in resources[resource] else "Aucune description." + goal_text.text = resources[resource].get("goal") if "goal" in resources[resource] else "Aucune description." + fear_text.text = resources[resource].get("fear") if "fear" in resources[resource] else "Aucune description." + strategy_text.text = resources[resource].get("strategy") if "strategy" in resources[resource] else "Aucune description." + weakness_text.text = resources[resource].get("weakness") if "weakness" in resources[resource] else "Aucune description." + problem_handling_text.text = resources[resource].get("problem_handling") if "problem_handling" in resources[resource] else "Aucune description." + else: + slogan_text.text = "Ressource introuvable" + motivation_text.tex = "Ressource introuvable" + goal_text.text = "Ressource introuvable" + fear_text.text = "Ressource introuvable" + strategy_text.text = "Ressource introuvable" + weakness_text.text = "Ressource introuvable" + problem_handling_text.text = "Ressource introuvable" diff --git a/psyline.tscn b/psyline.tscn new file mode 100644 index 0000000..ced7430 --- /dev/null +++ b/psyline.tscn @@ -0,0 +1,133 @@ +[gd_scene load_steps=3 format=3 uid="uid://bff864odl7vlj"] + +[ext_resource type="Script" path="res://psyline.gd" id="1_4gdxk"] +[ext_resource type="Theme" uid="uid://qsom67gcgupx" path="res://themes/base.tres" id="2_qdoma"] + +[node name="Psy_line" type="Control"] +layout_mode = 3 +anchor_right = 0.931 +anchor_bottom = 0.136 +offset_right = -0.512085 +offset_bottom = -0.128006 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_4gdxk") +selected = 5 + +[node name="Choice" type="OptionButton" parent="."] +layout_mode = 0 +offset_top = 48.0 +offset_right = 176.0 +offset_bottom = 80.0 + +[node name="Slogan_border" type="ColorRect" parent="."] +layout_mode = 0 +offset_left = 184.0 +offset_right = 304.0 +offset_bottom = 88.0 +theme = ExtResource("2_qdoma") +color = Color(0.471111, 0.471111, 0.471111, 1) + +[node name="Slogan_text" type="RichTextLabel" parent="Slogan_border"] +layout_mode = 1 +anchors_preset = -1 +offset_left = 8.0 +offset_top = 8.0 +offset_right = 112.0 +offset_bottom = 80.0 + +[node name="Motivation_border" type="ColorRect" parent="."] +layout_mode = 0 +offset_left = 312.0 +offset_right = 432.0 +offset_bottom = 88.0 +theme = ExtResource("2_qdoma") +color = Color(0.471111, 0.471111, 0.471111, 1) + +[node name="Motivation_text" type="RichTextLabel" parent="Motivation_border"] +layout_mode = 1 +anchors_preset = -1 +offset_left = 8.0 +offset_top = 8.0 +offset_right = 112.0 +offset_bottom = 80.0 + +[node name="Goal_border" type="ColorRect" parent="."] +layout_mode = 0 +offset_left = 440.0 +offset_right = 560.0 +offset_bottom = 88.0 +theme = ExtResource("2_qdoma") +color = Color(0.471111, 0.471111, 0.471111, 1) + +[node name="Goal_text" type="RichTextLabel" parent="Goal_border"] +layout_mode = 1 +anchors_preset = -1 +offset_left = 8.0 +offset_top = 8.0 +offset_right = 112.0 +offset_bottom = 80.0 + +[node name="Fear_border" type="ColorRect" parent="."] +layout_mode = 0 +offset_left = 568.0 +offset_right = 688.0 +offset_bottom = 88.0 +theme = ExtResource("2_qdoma") +color = Color(0.471111, 0.471111, 0.471111, 1) + +[node name="Fear_text" type="RichTextLabel" parent="Fear_border"] +layout_mode = 1 +anchors_preset = -1 +offset_left = 8.0 +offset_top = 8.0 +offset_right = 112.0 +offset_bottom = 80.0 + +[node name="Strategy_border" type="ColorRect" parent="."] +layout_mode = 0 +offset_left = 696.0 +offset_right = 816.0 +offset_bottom = 88.0 +theme = ExtResource("2_qdoma") +color = Color(0.471111, 0.471111, 0.471111, 1) + +[node name="Strategy_text" type="RichTextLabel" parent="Strategy_border"] +layout_mode = 1 +anchors_preset = -1 +offset_left = 8.0 +offset_top = 8.0 +offset_right = 112.0 +offset_bottom = 80.0 + +[node name="Weakness_border" type="ColorRect" parent="."] +layout_mode = 0 +offset_left = 824.0 +offset_right = 944.0 +offset_bottom = 88.0 +theme = ExtResource("2_qdoma") +color = Color(0.471111, 0.471111, 0.471111, 1) + +[node name="Weakness_text" type="RichTextLabel" parent="Weakness_border"] +layout_mode = 1 +anchors_preset = -1 +offset_left = 8.0 +offset_top = 8.0 +offset_right = 112.0 +offset_bottom = 80.0 + +[node name="Problem_handling_border" type="ColorRect" parent="."] +layout_mode = 0 +offset_left = 952.0 +offset_right = 1072.0 +offset_bottom = 88.0 +theme = ExtResource("2_qdoma") +color = Color(0.471111, 0.471111, 0.471111, 1) + +[node name="Problem_handling_text" type="RichTextLabel" parent="Problem_handling_border"] +layout_mode = 1 +anchors_preset = -1 +offset_left = 8.0 +offset_top = 8.0 +offset_right = 112.0 +offset_bottom = 80.0 diff --git a/sounds/dieShuffle1.ogg b/sounds/dieShuffle1.ogg new file mode 100644 index 0000000000000000000000000000000000000000..903d4e2534cd43937745117f13739f3de4ec3250 GIT binary patch literal 19388 zcmeEtWmr_-*XRHup@a$o(#_B)NDG2=cSuM#LnDpS-AW@ZjnX-EGc<_Apu~{U%`o@i z@BhaAa^L4Z?|Z-9^XxgZ&)Ms&b@tkO<=#id%1Q%-4*J(o;{Q*jyhcV4jS9^J;$mv! zdUp%`P5Hk-uKxLNL{qtY^52iUC((c_13xTh!cf%zc64I=gNO}i*R^r7=2UU9qOrFz z)&7f~Mvmq=H_vnK=iD!7SX3MwZJb;zTrC{kz!(5HDezNLeIfH&PT5#X`HhMw8#gx} z``?rDBcM%FPE%1z)ZE5G!`j`_(%ypS>3@1aNlsbmwXP`73jubXmoL#U|9J~q2}y0> zP0>K4W}0B>H1$dO2r}1X9_cjGMEQuq;HMI@S*}DHC4zIAcI8cVG{J<=G*rQuY3i}+ zHe_b;cQrxUe{9uOOrkiz;zTlt(a_D@w?MLlWh&3N@4^WcfbLs)H$A)zxiZZvrGG z>S==UK90w0-MwdrIN`JJxFA&!h%hpjG!i{Hv>YAu90a=eg(dbkODw%$qM6*&zaYRs z5`sV-PDFAEM1$WL6eigfrrxM&`OUo4(mHcDoVzPDyynDrSjA$L99cIuGF@SU%o(nI0*Fl4 zNEb^UYXC0O^>L6T_@7#K&&F%J(z|-B6V5Xkbj-RX+ud( z2f)RdA8}br3i2YK53$#bJRiP0?Nrymgm$@m2qhm@)IL^Fs+-X@t7t-G+Tl;?+f>xe z%7Y7mQ3n6zUm!3%*ktDMuchxWhtn2ix(tE8enJ1sPN4Bl#zY2P-^jTAN9lJJkx70d z2b5aH;b}z`Vy&4J!?&{*OJ@!yBpyrW?(lQ>)wvK8y-ybZTluH!Ku-b*C9wbLNFk}& z2oK^*lB&eNb(01l*r7(z>&zhI!Z4V~E|fV5O=_uDYCc(M z&P{3FO-rxNP_N!$e%8VGlLP$R?>`lH%D-Kd1%WnYV+&*>3uI$g1riz1a%syzAhNsJ z#1fe=5W6ay$RPKrKrVY-FVE7p$jZC)EBap$@jH;agC+epxac=H@3&wcy?ma9eqNDn zB}>Nlo#x8_s&M|D;PD{Pcml;>0tGO^<$wy>U+x03fDUqc*dGr}dSJ%?tB)!t07DHY zF#q!afI!>~-RkTzuDo)|nhJHAN_CnF#9As^|JA{#G{vg~FqRQShzSA-DR9jGWD89G zs2yZYXin(5AFrWoN|R#{CV&u4DbxQ1t^beX|8wB~%z;2aGlH;y z--F!ocw#j1Oi*B_Gy4M&h(d0X9RzY>P?!RA<0P-zJrD@6kav#6f9ntjumxg(!~=0G zzKqAGfW(PFfv)o^|>iRA>&a57bTl0O0dxKM#^D>gB9iFOHwpn%Q6ap0yAJs>Z+qes|*xu$>BU2Ex^&dHOPw)xmw4uFCQyL}q}e zQfMB{gUC!$f8Lks3X=o;EWnE>NRGa9In?Fd6ksD1B?dlC?z4hvRNYY0M6ev z{N-^a8!!@gj560Fl9~W`>2C6ux7*F!N@|)~Gwy~1-|zT8^xS@d7r3+_`&wE$1h8=K zFGtZpD>(Qdam<(Hu}e zuA+|Ahm|rvQC)%OY*_)!Sop(qx2-r{B9^1?htC*K;nTNe-_DK9Qb5aoxYM$a+!EC+9=%L=`h^C}^?!UaGAzpE zPvn8|F4Ov96v0GqA0$XV)Q`?`iGD2)Hjn4&D@aL{=qD|hHdV+CBJvq)N|^@SA{uNE zHaFV6``Ebcgy^OZLE?mTFWyL)5VLc$1la()>Gk+?a}eIWcu z7)J(CFyWn{cBZL_dtdi^Y#40ER>S&M*MdD-J?O|HoasyGBRa}p@qk5f#vH!p$jC)Rb?01@R&MHH>8~1u3=_q`WV)E(|GXiuwKOH_dti&OJt+gaQD=DopH|P z(c6a1-fOd((S8EBs)LUDmn`1dK`no`uKu;@bG{0b&Bo@@iEEc@A?ZvZxd|B#ypNf~ z{lk%*{j5p77m`=+>`m5ZIXtGN%R2GIGJd-+j`gh%#tUeEk>WUKPs~(tO+s_dzn0`0YGk$M5T=+%k{3a1*|WW3mjg=n-u3x$*fa)D2`J*qV)tRBs|!7 z0OADM>B9uhvN#5J;DT>wuy^d;MzS>oefU7-Ff9zPG_(>?k-(^XPdz7c@24dcWhB(F z1}o|_<`?qR!UESx^s(vzGQOZH&uD8apT4*DGWPoL4NY#3LLNJV5S@06R-T$zRVl2l&g&TDql}7Rin9z`&hT?lW>ebwhOfHD)tC{3? zdbnsf)EaxM0*zaOM=mUbcBfm#+pbKk9)}VzA#zxnj zzWZ{0jfWFOqAdY^tmNSHEJHe_K9{3EJ5zRFWIW!_!-VFWRzT_@ut^@YguO+1el1WS zg<$1a=EyRHmV_yP;4)n}dy%vsapQh!TmK_jzX(U+$x@|?+bSE$@qzwtQ4uGME>2i7 z*$`PCt9Dr_Hz+$*6mlFk@){jKVsU3appPj20hKfO;Ip!aQOOl*O8#uY=Az{~L0VGi z80E|)di#@~>1;K3X=!(1=M{dLN}YsLE38F`rn^^s6D`0?qd`zZOxl;!8oSRNHP)LWCTP_V~q(lvh2X9ayqZCl=`ipK|q_3R>lLRUae zC%?8q>tzSN9&%yYk!%&W{R|6m&r{bp0-urVlC6RH(_g0T1@GDpt4Z6o!wA|v^$ac) zD10YI#|YYwMt0h_IcX8D9&-96(Q@DM2{K0>$Sq8~a#qnddBW{efMQ&n*Ti}E!0p3$ zy^j+Px^ExZx~C;g=G>L`o@KGHh0wItv*07yq_a{J_gH-{dF_^#65ap>wtHEdk1h0t zR%tc6q*n9|(C1mc&;W{~nY*H3Y^7h#H*OWZ$9+(h) zMNMotlGl;i+!#dFp*1DS>ybFTMYXCLXS?1NLstMx?Iryw+q38-u%k;Y?yES7{h2ng z%C7uZfY3^M7;dd9>KBQAKu@;fUT`3WZiZezB*61D!MaxoE1j+6nJH$is@OEw^!}Uq z&ch?npO#VTZF4Q-y&|j0Yugz&)h2%S@^R8xuG&Y|ds9`$?>>lreU81%hf**)msRJ> zahSgOez+zjv>#K24#;_NBDpY>GQJoi9>*8&ORI5!qQ?4ITQPq>ze0XVj46H9;VVBe zepbv@7$jw-eH?<>c-0|rF@Nu@?Mr=w;+v{-a=)t1A5<|(ePqM!p+Trn(kIOW7W>Hl z-ZwLT4~Z9}3@&+4Bku{_t18}T8qQKOY7&n9=1gkX((%`HUo&DAz&jCAm1XZ}&h5gw zeT6pJ{oDogbC53uA36)T8b<#*cCZlpWjD9y1f}#{6B@si!kQhd>fA2R*$dosK-b%X zWt%$HwtIxj-FWXRdil6CHWbM&gvjHjO!jivQnwE{oFmIhQqvq+U(+?f&l+k&a*fEr zm8F~c@=s&Nq-IodsNOC^ThEb)@429GJQ167NbwWuKQ|vdq3La?A7`Em2$cps^@eCA zYxOU2x}t@ih0(Uh&%kY!&+F8JrUDXbjf)k-p1tH>L6gu)dT9Snndi$*y!O$cs&jbd z<+XlS&l2gW0*ir+wE06t8rD@8gEB?22BNO?B7LxU`I<8=diy|I_Uf4V;JcETOeMN= zk1gs1X3m{SmS-^}?@4woje>7bXhx%x+iUuWOEHwE$ZhxK%{f81k%!$&%iA409;w=x)h`D0tyiBuu&K2h z_{yI)Gfz@xg@XJEa|C14SD#6A-mnRkizjXqIjZ4|$<8KJ4=G7KAP&Yf$R1cSLJ+)s zjV8Oc%!QO>1$DSf{JJ`Mwv(cU%(=axKKU6Xc3Xx-eMVj-H#qb9-%c=&dGnkFX)O*R z#u|L#NApvk+1fPLv)?-JXn*hYS2T%I#6}WY%Xb^+Dw{ z=mt{~U(dvl^*7@0?m>)7^!8-?rXwD~(>aTE`hD_4w-O@1Tag@@$TlQTRqeUWSyVsa zs7~c(FSve#SN+rgR6pRixJ{4-5~n-&t}w0zbw69oPm<7z(JgPw2@v}8$p_A<9rj8G z1(vQATm)Z0Gmtq|F5lYC=X0B?U=dzretZ7eEy6htF(Ix|{&OXhD)!~ z==1#wH>y`0FPLxsU;qVD?Hnv>sTB=Awjf;LeBc z&ba%HgVYrpUQ&hQ){Fxw#t^<{M^}i*q2sc~ZNTG^aR^G#Eiwy!>oZh-Q?Svg#CM;# zQJYQP0kv1MKi22NpR>(b^W95c77+Hn?bdNf-M|johal);M^C?d$W^fEHq-j|`~#Oo zKfzY%?bx5Ynb}Qf)6)F%%WM8oG^j+s7i%7v;J#dZr2 zr)v-yWv+Y`ze8T6(mM6ydAM+T+Nh=o^{ zXdx|Vn@*dYeP-HGEHPmdEHO;oGlNoEb(4;_uAa>0Dz`_OKjVcYpURS%4Pazc!q5Yw>i!<1B_w0@7< zaANvGx@JzTPe1=UUsvxL!oa=N57wJNC);(56kk&{WM$vl zapK=css(EgRK#7(j$&RhZ~Cq*h&JIG%7^@{3|_xNx!v1{DVumK#j@zAIrHhn$Ti<}zA*J4t$w|qFr+uJ;GZ(28OgPDLb zj7a02ZllO|%Ga!uhN50OvwPXd`Zm}fW!N*g^6trzK{K;TANuR7T4N~jwP=H{0rBmMfz zq~)kdG|7as4k};Dj-8}$bp~~Bb^E&2v|1wlytmi*n^4M20?y1B zL^DdGhjyC{sLaO>9;Z&ab0JPn%Ab@4e>!#J@h{$;e2;qKn$+u3A;@ z=lemB+nhR#7eWI2XZ7qB8mjDH<%Q>Zx3&&X-=;gKhv_q`WQ%wmtqmrnf5oKUaFmvz zbCf+cdHQPoE!R`GLkB5k0!|bjJm7jSz@T`NH9!tEoNoAYLG-%aSF4?s^QQ=}SXLzp z5fE_tvy|kw<>IQ?Ws8he%Qx2-&y1P!=Y6R|KZoY8KjByR_7BzJd}Jj*Z9ri@8PC-9 zD|0HC>?va1cb}&g-X03xtQ?4L4Q%#+Sv<%jDXW$d$&n5 zo0bYm3p-i)3zTO;#m0k3ZAO>m9uBfn*;!E7&;EN%&r_7Pq$;PHSNjZ96|7uhlZcj< z-7a=G^%2o$gaQaPk*qJrxv;7&sa|Qd)Av3%-MK2`k!6HoW{RxdT{B=lg)8gmS*?i( zoB7&OB6kuARqdxw`+(`mm0Zek@_B3wiu-8qq-!&1R9dG$B8FBj(G>$gL}d4N^K(^Q{o(QA)2Hk- zq#`Ms6-f$bwakx3*ZGnO3zud=fHB&cC%Hn>+m4PIP~2x*dv|-?yyL6CF0f=j^eX`` zkB*OptOr(AoX>VL{8^uXz~5o~V)&5ncZ8Lm)bGAyBgsG(oU3;+y*f#bw8avE*m zomZ5?zrLn;xhTu-Wi-a>^rg;|krAmmA#Kil5B;e+nZUwM^V_|6QG$|Hge49os!u~@ zABhSn@H#jY|Oqm8rT+F?8C?UgnNC4BVq zkx{QBjg5vJkj0ERmb+2yK&Fi7VAkrj@5_s`xX%G^ua_>?#Zd8giG+KN-a6}@!`Qe4tA0tvINgOBVha+{I1Dzkh>zgBsiBZP|HeZe&6K-c$Z4w+NDx(M`+ z*=%9%g(klR*7O1Q{R^IjM{Dc% z@oP57#G2bWRzvd%P{yR&Eemt30=#oaN2qW<8)zdJ-YoumUCLHc6qD!U@*F>>FC^>j zRZbJcX3!or%M2cBBWlYB4KH;dW!Ke_f5xYO{~#OSbD~21aGO+HUyIJ9Krc~sDtOWD zZ9mauJV%1lZq(oZLwCt#k(5$qGjm78bVSglm96Q$`i=c>f4tKsmt=@DyWJ_hZ*10B zLxmw_#pWlzh7T+Wdz{mJLC{Ufp3)A?`hhI!Kjb7NDW}@^A{LP*?MFY+cDylOiQpQF z2}*k<)=Ao=u$_uIj!eqKZ!fz&5iL#rzgI3$w2~m+md<-8?NFN9`-cKcObX)@DxgYC0GeRd5cv$US+%jIG04uq6a}^c=kB^r===uvXQL1 zDU$Q>^Uub@<{@J(D99vw`2eI?FE$I#nqYSuQxi@Tgl#ZACi=0lv=nu2Og`(1?03#a zcu_#+EA{u2{y;GR@n=prW`(8|_oF=)(3M;9%947NGjVBG(BdpGYbD@zwD&$H39KJx z?0Y>6%+5}vu|!WEug=&gY3IY3KW)dot)3; zV^#C&Vlh||_+}4yLEe|_tPL8i-aZ%OP5-&Mw%7j-5XzLaSzHHeUS*{Iyb|X-jb}XzZ}uPoP^`;zMg9p99S2o*Lqs9c4B!xj6~WhEkoYB*hVG} zD2;8IaglsgQ6*_w7xi27_;7P?Ms$r=I_}r+n#|h%T!L;|yOaQLMd1ZuE-9h>{-^9uvx3&2rS(BBKr@IGUJ|1L(*hiv4a!ba<7l3tIPcAYaP$;8%!0IMVR_!B;d~Bz)zS~XaJBT zXQ)4iyn#6WZQ2LpPq)cZYU|T@6@Q8b+=CeIe;8}zY=vq6t{dmF_<`|Q{6J;uHO#bX z*sslRQmZUk;hV-OU8U_<#XSH~t+%^ll)yE#)ea{fLl^G#>$A{rSqWKQy!4II7W4-_ z<5+>UE6 zVB$lb`Dibbx6N;#-=--en{wpxM|)@7C#{dQK#Q;?h^#5%Xw0hYQv2*f>c_&{Q^D!( zJrXQeE>nYE-=Drh=hxUdnox>X7y+KQ1!w++s8e*%`u%dhR>=s07ULjW(BjaNajx;_gP$K84-c%JWw`EuriUOsVV?o4Eggp|1g;p*;r=lj z$$2be-QkUHjcrh&1)DHOOF!hSAU~)TwnHpZb$p09hoL}pV}s!?MjaXX*p4~pYhmbg zglWcV_EO)z{uIQLT(}vqM#bQ3KtEAYTq+YYAIy^%#ky$8nkOtdHe4gNYBRoz{zyJl z*?)4UWz2ODPv&hco7-{Oi&xr-8rasKsJ}KkC6WH6d_#Z2))LFr8d?KbM6PK&vkiXM z5+r|rf)nx+A{WgcvRmsTE%Mq&$#07s zFZ^tGXBsr}Q7A`J2|#2aQgt=Q=a{jtXfi*Z-cvR*Bd8+#0N-*xipnhd0=E80*|5rI z<@UUo5xpG7+;tk_FB)OC(fF{#<>Shd-~ELN-?qN$%|2G=$cQF(_u_-Nx$lKQFa@_7 zs2@M~tN&T^M}~mr$%RPY*WiuMTvwMzc^@6NHtkJr5f#jPBOg?%XT%M;yY01`luQdk$YcoeoHi zgIbh>8S=xTSFE~=c{y2@(WBX7K~C^At-qX*UEQo&R)XUUZum=ci$6G2s#hMb{Ee38 z{xV0#k9-c;X3l=YoumY*;lyQ;_Yx+HNTJ2uunWDM3peMK!3B9;?vRuej( z94~xuHv7c-UCu!sF>}!eLL782*|Ub}ZO_}Ji;wskpxXVBW3=9$ zSY4`hq0k0a5d7Eflch&r&R z0|KLT&ec{3D@w1XR5Z9$>Mm~wt!xgPEw>v6Z|wJf#r^U6zU(nwd>@6J%6J8(V0+eZ zMk%H+#%$d7EWuf>WwwA#3%`kFg5Q%R1;}ugyvd}9*w_~=x1V-APmSJjB0KavKcReI zp~Y=p%HrH9h;aXNeK63e0ur@TX5Yc|K&)>}cKRlNFu%-;&a*Gy0agql$==4B z{725CDCo$G6*LTNjd+Gr4QX>lZiES;XFLxMl25&Q|(n?uWdz;Zed) zh~lu2mjIjH3)yhFqec`zcX?Vii}@bJC~o$FV(U#|hINGz#EUa*;7wPI*j=bK0Z5UKkH$QXC_Jk) zT$1ZN97I7JzgP+>IZV%Ej*P(1OJcI%LmE4vK|&Es?wkCG{HH2>KaC?NI?HbbuJ=;+ zh|*&!-22>MXyvdf=2Es3Ph3-f^8rvHDZ54W+j5-C>YTD?f6khyuf?Wk{P38j#)BV#;JP$p@yHD5bV3`laT3Hur}678Xt_G*CK`{uNnMM2@6T|U0>ve`Q;mZCjZUi`SwszqMJ~?t=i6R!1k*p_ih(oGcF(K*S~gE zfF}PVHv#Me1U0bQ3CcCn(=sy9Gjni*X@S%PBO@ngU0Ln-CZ6YP^lTg)&)JxmSUEX5 z80hI4m>5_&SQ%*9*jX95+1Xgx8yT4y=sCH0I2qZQfqccMfi{ET&t>-&X%c)|QXtLR zUtT=y2(#z)IcmMt`5>vos)34o=oz(g67PHktvwR*+q|y1M)h9_jZ_&>wvV5@HREz@ zZ);r&XlQMKRem0|OG%;%@V;)9#u&<-m;OG&pHY_0F#!YKPkb_(*A&8r8W>*fyFt_vy>aB6HWmei&J7W&?4h(9qD^h z1$*i;YWKvY;iz-tuxiTFSn=&rqx17}8lo9lv;r8KxG6$;`X%%Q7s-!Zv|6Q_e8UG2 z_f!=F{=^_7{r!6rBIrFMcof-LPX^pSh+a5$OxV0-kZ4{vq__zwIgw4 zCqp-98a)OmSH^b)9R@#=nXG>8ykCDBN%WPzh`kjC*Gc$%8Ke07LskcBr=yX&1fO`~ zw*|Od@$Ce)gJ9>m*o%^$xBV>4NVFaR*>LF{G9_B~gMA2yfGb8#Er@YPZbCq*%1_`iCG)+uIlj+6$liBA*>QR8M1NLYrALKJGTle~ROBv040+ zUL!-@GsKly-af?TTV97c{C*xI=``U+?BR7P8=SO{Wh|+er~jY=aL%ro>$F~7GM{-9 zV%*;k{L^caQ;bH!P{-1OeBpvu_3_EMtBiFkP_eBqQeiQ{cS>#Ua zLmbmBZGHB)0&Y>JIL$i+QAy|{FaoW`AD6k2GF}Yt1Rq^&xlQg)%NiJsPb(4beV@$! z+&9?#>pbK8S*DGoGg|td zKffHqoLgh|pPtY<|K9}=1M2MMeUWcG#y1W9Pa#c+t!H}sM&a%}IcJ|5s^Z|_lFoey7K+=d|#O$*8@1Uk*DImT1Lc?{HX=@?k*3ll$7gb?=n?aE+xf%Mzv zlAg)7rRfIw0r%}xX5INF(gM2o2RNg|pC?zP-I{PcpPt@R)xAfTJ-~5(vc5ezfSdzy zBxG=|vsH2?jiUm$YmbR_P&t_)LT#HH8fItKub_z5mW?q~YHv;$G&6R-Z1vcm&xbXe z@YoP*&M@U7`hj@^vj9F|&?QTjW-gtOiih)+-c4_$^%xvrHmh_tSV4KEv3$ur+l~|1Qy8%OZhoVrXGP z`zCuJ%ki|k?!L31MD&xU<3j)6r5|oX1>6O_S{J0Q^<9yuZ#+*%C^)l_C-^zqaIs3x zd?d{CZToes%%cZ!-nD(1qDPU`Vx>QI9Es`OxKhe&7DVSImQ4-2)P$ zj2BWNhHRBP0Yb#``;)`RRhAHPjM0ZGa2X8G7buz4>!RhQ3y<@Z2h=s(6n#z&VM1|2 z1UR0Ic@DPO_+}>9lZ4WuMgEklac{E5621&?9oXWRVRhhLKHBe0c=B0pm!>L$KDDAH zr-tyweY1Yi{`7fDAymDIzZn&{1g)nxM&9W-ObM|{0Bdt=!?EGY@>npt0)&9&&=#;&G&;MoH*z=Uu zB>E*6Ua2Y?X4lE&Qbw*mF#?#d&N+!nX23>a&g2}aM4L7^_Zqw!)xK8};49jhgSY(c42-?u#A?=N<{g0!3 zQ9u@MHI&@3@z*{)!1LEFIsYPI`N%cg=IwgF8HgY;hzoy3JtS%=`eH4!sODwa`V9BR zM^nSXi=($+AyB^u^J5WXguuc%7f~JCF}YMp(`~hUwJ*1&k7t>0)<;)q#)#o2qcbtF zs`=aV)!f}-z;tsFF;*RW^UZY!<(!b|R-&pog_B~96%(({QvZCp-_4peOb7(^T*kc> z#}8&6lU$(PsJxJ^-#b=)6TPtdg7wQ_l}!ZR&Mc!a9e^tbz%?vWg0%+n9}{ms4HK4B zYjXXjsOX4CvQ}T@5Le6(dztkUZF*=O;%v3vUlkrkhIaEO5Ymx;@Z7ik^Yg<1*L;)) zzldm+JA7P zOyF(8%ry^=2KKn>ueiOtyvgw>T&^(!NM+tNb#`JA?Y}q7lsjy&u9TlZffMUHI0s zaaLn--!5^LC`W>{VGk;SQrp4k$H41(57F1j2B2jmy9^xq@!f1tInSGZS zGb(*BfF`nw2CLE^e?;80TwbbFi8E2!>l&;WLDB>3r`5|fCg?4FhK_Y$dUFlWHoj;> z>R4w-%Y1(HJpU7~BUV0;SLH%4BQYQCi+hS;KKv@>8c6{;T&oW0K=K!kwN89h@sa9Sn2LZ#JgB$; zGm5ndU+XzR3#8aL=1dA{bE*td8t<#Fv|llLjk*Up!K$rT^Wt^tNGE8zBwM zE1u?$Y%2GAV0$1Tk4n61Dk@)00TI!k8d6=SjUz6F#-TH_g5YS(>2awUM@#=Q;(oM& z&M`DG>Yo#@Hl+9iAP$wTu8B`>o2YHfH=rZSgRWfnmX_pf?Y0{Ns7q#VXMgsiudQ5( zPUd@8BY%H!)v#5rhLe0;fS*(z7kTey{4>eg5b)zUP}4_Q`Zy?$wbas?^6;hdg?1jH4D z`d=&Q5$tyEU^qGE5L-u(Tf%Hyf(`hAk6MHScHW5yP0uJOqfd_zbW*TEwa`Td(mOmc znA(n->PwlmW3U|xq7bp@%!|n?uf5(HAkrVR0#UEd@QdT~6ca2OtTFP`wG~QY`$rR_ z#XAh{H~!aY-a@EatDx@vX3WKL2tuzi4Gya*_uE3!K6b`_sS&;)N_BIhVo&{w=QgRK z|675oQDy@)9po}VT;;;AL(lQeKHQaFC*V_6}p@1fDme&gyBOb@+^oK4=` ziU)|B-{(i|TZpz7)g)=hRo~jL#9oL_u9DXjBiUCEXFd7leCyUzF1>`8V0$V)OE%5^ zhg0qKS6Qe|w`jOgM0f*Jv-eg0j_O(OT*HlWL`|G_hnWI7Q&{z$U-~@ECfxLTp2uwnWw^piKVtrhqF2OvET37*ux3i(Jya{u9% z84w1ENX8?E>$FPcL`M{=B1bs(yj8Ot$T}3TojlNTHxS3TuZsS1yXDp6l)TDg8oseJ zo)b=KFf9e5%m~oO)H3>;b6jpptA0__66p82FX#08%D`U|7QPSb=9RfE-m4woardbN z5~piFuJqs?1mb>11}1Kr!XLJU{50~+=jYl1UBl;h3*09jVbz5Ub#o~k0Cz{TmXgRS(-?MHmoF`nCuDP64XgRWjJnPt|3 z$J~vWTL^k!1QiN9H>7n!G!!Br3hKv>vYO}0%5yhOjvg95t!hm-s6ow+t zgRFDf)7nCuRGU!Lok*p9BMNq751}#W%NV5`C>$lCdzU-6dab_EpRY~U6$B+4sF<*f z9<0ZLD%JPxtl9DN3B7&@|5=9)1Tm!R?*7*EtotmW-FGfIubN6fPD6!W?l*lCg3hC= zxKyI+Zr?tG+#4AJf*2s%Tudu--QyDT=9NG{`zLi|g=-j$QfMwGA<9xixP3DeNWE-I&6 z0mq1Gcf(@Ei?WUL8eTW}{`u=wcQinG@lAg_Uf^M%ipRO(eAl(Lk2m@pZ~Nih#%Oh8QmDI6&7XXW$`MZlM`EUr61JZU|-3SJ~+PUBd&kByuYO5FVqj& zpH@^ZnlP?FEs%_i?+^=A9Fyaf13ty8mj@LGmfc2L5FW5>^3D{mf`kIg@2sC3pjII5 zA8v*q8KUQWNZL_l-4UmO6l-Tt@~(0}lhfzgH62MN7P6;r1(ru-j1m0u6<$mHJ|Sp9 z`H4@Ye^|I=Nju<5CRBa_BGi78<85C$v%SnKQ%s)&aAxwy&);`+Wy$i*5Q_2N zN4b1|k+LlUgPWh70*}?PGxBr&exLAFpbgk{Be#6^Yr}PwW-HCiV3+gM2V{n_$hQZr zz$ziIez7miKt*+9flj@gr%aER+&nQ&)$V(3M|FJ*{e#T6KTrTA0*mQ~97jPN%_)Rj zE~_o=79Nk-mo((G4fi$I+nlXUT6IN{5k}?I`g^Yk4sNd|9!H#TU2PG>nz~(|qmG!% z0#IS2OS%<4*Y*o5d(jiN)MH^5kkL|@^8;K?xlk$6FW*g8S?SCk^RZ>5H!@)x9nN{5 zOp()a&dq}!lLW6z2dh@h8JDwiksB!+^;mx5yOI{-uUxVcPBwp@{VSFm56qZ0ojkl9 zi_h;xBJI5S2S@HmLiDBh38!iBHcVa`kYO&X?H`w?PCr7hjCVWg(y!&d8O6*EZrBQ9 zb2OzpS~{;5Yd-=usmKHYiU(M0L{gdQV&l^o&+;aBJEUy9Q*8+I2^}=~2IP9U5b`@W zE+Pj9E0S1eb;qWKRpn;3DW6HETwy(`Qu;r6n0jD*dM)miDa{*ZJM|wZI))F_Q7XUY zm4hLhdK~jJxSBmM2f<2re^JVpW8O{UAMQWg7^OPRoE$ZlQFAUg@;)pg4g<9gd35<@ z*)hVFZ)}W(e*~GecW-*=bbqrc#IsSl#Us^8+0VkPg;fxGW!cfSV|^l+MH7|zS;ZES zNEG6TW6c@9k(_9<&2b(l=HU)!o1W(KA2@i3{GF3bNr>0U+_7gd_&$ALtK_;}rOihr z&LPx>w7G(s+4n_LB_*)K)Lk^T5Ds&lUUX{sa1XC@C-a9)bvzUOwGG8H+U3(1%287y zyn-dI6;*l>Kx}g&ZM4zw(S$^R>V`t~%gXJMtUh1L$fHKq_j7z6-j&6^mfx{nX1FZg zCAg`XIF5(s`l+ZodeL7l>Xzqb!@eiQnj&~EpH=Lx(U&rj0huGL?-j>8R>TDC@}1O= z1^nWhe??2nZAHb)W)=JpVT0G3A#ST?+Y0BsHPBk8Av4EkDgJC@HTZ<4q`sgV!CSMD zgS3Pv#j29pt{m!dg9dA)3oe0+*3~i)fHve;=RQnFC6~7t&y6)t_ai z=A&q_XINN(Pvj&fB}9>DjsV|;t-mUQ`1{>k@}+l59$ZtiB z>h1HF6F=1BqzofoNe1<&J^A=6+kw?|T+SADlWBBsC&U-&4Wb zHV;JJ6GTz|DeB)fgjy23l)NB+>_9{tk1z7kEMbSj5t{W=O?B}VZPKykNybn!V!TgF z97t$$RH;$paHC-qL@XYqzxsWJ?%3h()BEs8N~M6T&)VeQ?FoLx!u+6hv)je`E+SF+Lu#iS<_EkA~Vz=!~00RtJpt_uj+{` zF(dU7{yp&}B8n1==JWWWG>nY2I5=|gcuT-I=ipqG%M*W5Ot_(cKfEK=2)8tf?U_V0 zw9%x4Peq-~hA@Ma=`(LaX&1-2@f*VXpjQLE=Xfn<^qk2 zy@gS$o!|3OeC*CL>GM8CgVv(wA)&!Gm<_4ApJ=CBC3HzJWwQrj_E#N4G3iZ`Qe(!D zl1A@H7xNW5%YthrBaczZzt0@bhLswq%c$TSDaSE-X1ofkTQ%38svv?MlS})v`@Jpm zZvQI{1M>Vtbf^*iG>Z9b6ahNxm1^~RY0Q?{^WE$MX&|^9;96DC$C5Z_1x3t z^50up(b@hg=Vu>2wQcw8Xnyl*T%>0G^oLp6iFvK*9>gLhf-cZ;=Ox1{;@iUViL~ zS6uyn+AhEUrt`sCbkvS?=c@^ExO4Nx`Q4bmeC)NyUv7Nh%VhqthqtOe{nvw83({-I z5jyn0R_jW!Ci0RbMw`-l{p7`tt;#f{&<$%Lay{|FIMm4Da*so)T8&1y8~ZKkZF`lM z;VNM?ZoGMwS)38v(T=O;>R7wmlMi@Z;X60&LyS4PR!zbp7UE#K5LFh4o|wH{rnk); z5fpJuph^#9|@~N6lx8LE9!EI>f@0}WQ zOyD{(LHg0Fa96nF86LO8V66D;k37A8bL{p!#CEr|?ZW8o6~|o|`(_ROw&6vDXo6xG zmj(oo2yjCJe#rgUPG8Lpo$Yv$Kq2?{KHmLOa7nY-1CjQeU(qy1LL!`7bF1BI+aJQ= z)~jE=y4Ts!t=r+|#pmlA*Pnm(<*h@stjYm7Cw_bT?c4DrjwjENcFQ@(if+ysPLq@6 z^DT$t*K^MO*5Pm#>m;BJgqs_j^!eoYwz3Y#;ENsT0J*~_v)0Mj;eG)6qadNe=xz{3s3;&Ya6l!l6npi8 z#{gUO(?rw6#H5b*6740jc;=FKGOnigi0xLce2WFjJ!dCp3PS96;LEe&NBBrpMx$ra zr1f@vK@4faNj&Y|6$;HO6if+~N>RL*Vt6n0vI>HL4>YB~FK9F_ey6YTnCuFLfNRrK z+{dYnCJQd@D-_`8!0*z($tT#BK&r4NcJf*=bD)|!6EVCKI1KC|NNItJgh_{u`j`IQ-XuJJW!xZ88d z>PsgINekh>70%QhqOX0Sjd6&fWs2ez?oqJ>EjP++p9Zy_YP8OrEq`NN* zSLOAqR)7i8URVP=NMeJ+#a8mdh3_(PA13&3+K`izk1w%|Q{2APcJ;w{IQE*<82&o= zI(QOC4}xK$R-#t&{0IBb=5QFC87>Wn=w(#Dv~yuZ6gD^p3eK5JCO3YE>g_kJE=|`x6>?Fe$Z4LM8JoOnuw$#b3$= z^K1}>=4++=0a>J+a9sj*6pyw^06nqefZ|H%7Qzu;Sgw>3^UASg{`R~Hj8S=oTWG>9 zMCSA~E;_4%?zT(ug^{m)^L@s!U2v@>%$hJrMNORy3H`!Zo0%2BZoG)D5Scvj9-F@n zBb6|{I6vdw=9Q{!xe}}NzipR|{A)lbXZ&1}nLm7pfpe+NJ=;~ae1diQX-+7Ndg1Tk z&)x&ZmPHY9Qa!o*WEyl2I3Hv#9%wKH>Ijl2>x88*KKgtYgGfHF7XCW+;zqi_h0opd z<>X=DG}ju32j!r>@0$b|QJ$`Bs1kD#*nK7?++}2q|G*4rnr7O7R4HHvm>PsA zkJCsV>?a$L!_1MdfF+li2cO~8kR23a*=D&0S9Y=fz-c7|W)oDbl?q303p1^V=`Q?t zo!-xQZ9Rqy;ZKi|QW)vGSGS$FPT$_Wdv`p2!uNh*W`In))9nZo0?j}(Pbw!;td|yP zNGT^)mn=x@%;fgp-2&bd%W>#G=8IptHNPz!KLDK7?R9ZtnMM<|gt~wI80Rg#_59gl zyLvDFK&%}5_eplZk_O=m?hDcFbL@#^GeKueCRXj@;-|ZWgdB>`9I~ty! zpYIvn^7Jr*bq&qTpVyQNMThm;??=i0HoA0mKw(3MP>Wn ztu-kdd8kKF2Nt3yk*U8a{=+)DAal5hOe#xoLcp-W16(@NyymVNgr(;jQT3|S(~?B5 zdG3|z8JsPydNFwU>GY)wkN(cT5fpwIYQyz_{6Rj1d_Fz^``osHI{Id@uu{^h^za5h z5#m6&Q5gOeuSWaG^qG#WjTxc;c|~O)@4OdGUTNiwHc!v*z~K%Zuv#}@?ArM}8+*bL z?g-ZcA${*kaE5TH0@suYSrOtiVM5r7?s@ub(+GY*)BC1c6gfcISgn*aZ$WV~f$yLh z4b-dgxwxe54=+|C=1tur*hKF~jhl0s!|W&`uWAjC3rD&;*uW4FSO@eP>?qTJlLMkY zwB}+D)3)TgCsm9>cC6$nKZnSFeJ=e2uXIW9qhT4Q1uYKo^nkB{MRVDh0)BJmPK+_D zA9~*+(%pn2zDrF_jnz`5iN0>Mg|C(SzOpHc354A`kiDZ+K7n3U zIFb<~G7dB^MCpO;HF$Q@MokWBVFoW+wq5zlS_*IXKmcq1b(2b3Xd;^e^YDf)T>2iA z>+jVR9UaY~x9Y74%OdmUUhv1@*Q+(sR_Pgc-0~%eD+A4i#&&l~#!E`_$A!zW zUWYPGUte2Lo2HjWJf-S%xxN~pw3YdhyzX+(l-3Xz7#m;w2h^)~1QjNVedj(&4ah;s zx^7edjE0{ka%Jv`u1q)K*Iy%#JG$_VDFK(aCy~e8uhRnBP^y>n>;t8=E{TFPN1B0? z1CCr^4QV~^{4xtMO%aYH$;@%=ORmdOZK*{J*_GsTt8Aev5jpc9^Zk8hE;`~YXFkTxE{Z7_znk_*@B!$ zz=JZ-9FQ3)AXG9I&1`&u9|X`$d6Po7f_d24TPpq}-TzAkLzJF3{Vs{-LvAFrOllBN zI8zI1>1(hurIilTKu*>7ONAw={oQ5rc zrA525lPpbBMM0Rfqi0EIT^ox`gRKC`oVS;6J`8JDDNONeYDL>ihwXo^uubDWbnh){ z5Z)Ir{>a}09=s(q)(l{ZA{k%K+I!O5h`b}jmMX&|nn&yH=Y2y%LpMX^?B;24Ot=CQ z=F{d^-@~P3xlXjjH%BgSodU2ZFc&2Dr(Jy#uVxy^`!qyRJb!wB)%>!DZo3z#?M}<( zD}Y^w-T)!{CF!gWexT`g#Arjnz=LRdY|aEsm}kr!5wpi-w4Vk-!T?NzC!-VFE^Oo2 z9Darz5G-rkB$E2yYP>}VsfIM6-}SFI0Oq+4J*M6N=f4(DitJLd-9~6M$Q13kv961&}g{%z0^anhvLF!pxOs7XDD*ko09P z&A%0hzopD(sWmpW8GGaoWwcNKeA{rPUAlFS50kYZyc-SIql8Y;e)_bkP)`eliOmc5 zJeWnW{X`w*|G_dUSP_T-?zA!)?s!i+b6xR!NZ$-GST(a8YaGrdomsg~EVZ?dg(LF( zy^MNAOjOFgwUO*~{g<=_NHg-#W4?a&lfScwS-hL-A$iDFaL|BkB-s^9P|P$vBV+AC zyLuw}n!T+K;qpK;G#WZm8Jdx>a2N;~r#hA;KYYThrCuT!*V;y!lf_6fPxlky2QZ{X za&h~Qa6}X;B8Gi#gQpXL_js7oK*A=XTcZRakzteg%+g;|ARtIN%02y_xFl$hv*!up zd8-zF5}Z5X-A)o>U|>*t5Gb`TjDxrby3xxO7M9N%&O^$JVN_G6fK`p>y~BHx!>{CXFT=-9`! z%|35CdmLP*KFZp2v-=imVy-gjt#B{QRucoBTNtI(W!^IT7@S*I_TJZiUXf z%{Q4a=j%6+X2Y*_{k@5kwv9a5lqnyS)%rdfS1pi#7xD0Hhd@;$g-L+z$WGHu4^~2X z3~PDBRhn%(-`}6Rd-{O$XCf8wGBg@P89)^XN?0eU?&zx&AD? zXA*FG-|qL;_XiW8LXg_9Tf^!DhTw)ok;pzNly6<$Tv-d8kUIiLp52pHbVmbbNvw3L zExKa1prA%j3=Vw}d!B&14L|rU9N!4UZvGtg!{iKx!{mHJ=YHY%RfR*zH26Oop!A6e zP5bCHc02L$%3in&fTMc&Rb3{2vJ$^jaWfB0ZX9^QgDA#Mi?CDpB=-huEV^Jx6M7pH zY5=mMU`Q%5s*O(Yi*(oLkRoqFr|2IP{=J>O=nAAb@s(*i;DK@DdP>6= zX(mNQHk5;Rn(WfD41%*O4s>jKw&+ue$|vLe;nuJz+`Ogx)whjxTaQ-`Q`=-+&0`#y z+3IDGxu@;Wnm4(Nvw#Ol`0(`<&22Hh%V;O@7%&}-)+c&s!BG>-=Jqh(p>Tvx4x}Qp z&zep4Ku!aQ+aO>)E+1w^bMLj`I#m8G;*fCsrWo*?K&5;xNW_R@(-Z(k`z^Ylw7auB z?r@&Lx7BO?>yGpEyjxQoyJaHb>RpGNE=Pa!Q0-iY!ITk3WI-8wfeuTwN0J6+X=E>G za1`TSO;%EvchR1Dn@UtkSpkPYDMBtlvSl@c)f|k8ln+*-!yE1KLtjUbhJFL5Iet{d zvLjV~PDb#xRTJpc)lW6(GyeHlpa!e5HZ9CR1|<4#npt!WS4x4iaX_JaEO3hStJMvR zVgiBJsz@I4`VqkMe zi2I>d#}s*dL^>cSld?vgQ)Ye;U!U8#v49@A!duA#g^lQ8`7vn~48<=?^_0dHgRgEg z&Rc#js1hfy(yaeh&sQhHv}J&}XE03#K!w*&e<>s}Qunr95BT7}Sp)#rT-|kOx0fm` zi?EO%4%1d%IViL1D@udRP_=ceYPd-V_UQjps1<8aQLmGM^(S}I{&qu_5j>+>W*0*< z0AqrFE6lPhTz}ArmhgsRygyo3kLayRb`P!z*us*%gOCgWq z4&Z0wN z`%}RGHG6vC2o0n7WJ7q0L+E(T;^oHhnf#%AA*zq}n}qeqyi1PO6KnyX@z+T>X`!%G z#3Uhzr_RWra*T2&7eaJIGR@2&Q4#5jIrdC@VQFt^?5NJ*a4Rw^a(U1Q2>)FyK}x+Y zniLuLF=vLLMP+T)RMy1n#fuWt!nGi0DLs%SkGD<@2b%BegFau!DGU<>EYkv%z6q(Z zQAKiV4QGV}zRfIp+(yDmVG3#_P!m>Bcj;)$FRkgdG_LacZC9b8dH&91S$})wPa+i^ zv|(|e%9SCz8Cx&-oWovhn7i%~_jZliamXk>vkVNRPBs@#7l5-Xp)rc*K9Q8i1QrWV zCQBX47m&_4+8NGpL>c$(I7e7x`O9c%|9U&T(L8MM# z`1M$LqsY@j!g&_T^C>)hWUjDF8uv0n#j2%_Y{(;)ICB<}uzv3XGx;!UVV`hjt>inX zi4#{;)u1zYOM!EKwHL?$t~$Fh-@QL}Q040iU}32Lvdu_E@`6a`;9S3lGm?|KeNxT# zA=jTJKA5`SKtxUQnJ$YU=rT*!-&+utu`tC?V^HWZa286Skecqu7}E`5q72f_(>867 zX=OT+@|$_OI7C)Nb?qJeAP^ait@x6VtJCt_*Vx2_P(IL{jD#qyTB)Zk#o^Z*Mo(Ud zcz|U9++agCZn{2yo{rl1>DHj8d*h@l&0yp%LiO?)XrOtH^@>sIBkTCatB})Cyd^m4 z-DEDERY?OUy8+=fuw;toHuWK8PoJeEVDC!9$7DlNzMNZ>Coi6e9-cb=sCu{t+#4v} z`c2`vNn#*2(zHcQ%Wtv`cE+>acu`B~Lyr^vz3g|UrUqBDaP1b z$jnTGAcPX&U6!-c;rqt|s+-#T^OQ*a$f*JOxo4;AS(N(?#pvCr7e~*|+}t|y6tgS@ zBFa{ITdw3zgu`Z~*Bnbx`!-Z9ZcV5O>h31NZ%oLf^(8QLN~G(I?y4ZDzfOm-V-Li*PO?^;z_8%O8%D#Wx<^b)kk7qO6u90GR4S!hePkU7ig?xU z!D{z#NSGDiuSTYVKI`Igcav@!Jti~u2WTsaq=m{Tak|wfFHsS<>2?U4dF~phhXhWZDo+?wX2Uuf$<#-Of+}PbOry zBC4%`s9E%#@Fj8_>@EC0AvdbQruxS(8D3YdAq*JioHFe0x=Ef(o+dC>G8+r7?gx<5 z?3g)Ie;Eof>%c3vO38i$V*1oxYfI5e0Agc`3PUk>{gou#?NQorIj`gq^F_!EbAvowa_^-QOwJZo_L-$e==)dp4) z!P#lac)^A4o9ty;R_<@{Pcpha4TjB$7tJ`8&&?j$A!{fs-z%j^JX*?|%7^DSgoclS z1Bg`f@%2jn1N$;yUd1mB_pg3%1gy6&1wfG%(3WJ;hFl#2D1Gydan5bwP3Wg0E_0Ry z)&!R(#y(voZGxoh{gz2qyjXH#fK!fG`S=}^3?S|6Zti5-@w{KV*qix!NtT^8f6_vq zF#LSS4r-$wUtDnQ0mYk-k8|d*-2zjd(YACR2r-7kM6^vb$^3@45kb72x+3YFw(@Xd zMh06tBKJ4yVl~ewDe!ya))~9U4i58v$o9rITUiyAHs8vzTdRg1#ypiUCDv@y0BvN_ zyX=gL;Tv_aXoT(&Tb)DCsqmp+g12jzGVNf=}379)8k{(~!ZTTl3T1S}an#oka`A$M(M8USHK?>zDA7z^rQ z0dSW2(3Z@R0$!v%hzXRIlQQpqa)X=OE*JF*7p}f|Wr_z{Yu#h>IcGiznAp2^JMF$Y!P@ATh z$b9tUqmXFBKGnH2gwCl5|FFJP%&%X+0wK2MxOqe&%5&VUAxzi!s>}}vtjsvMlgHs& zT`Kxb)Lp_{IQyprM}Dchgai=0krx)!M+wVBv5Klsn~tf*{`TlAn_@9w11PbQhXSu@ zS&PoccJrh8YlsH`>8~pdn5z+;Ah2{A0jyi})tuh0y)&-13?|oJz4aT=@HlgK^LDCoi)#wo9&!?#oQ04M5w+NN^;$JFL zmsk73&kdkc7@Pz*xmViWmF*P&P0e{eWUSE_oSy%)pcKax`)}dc$4Vk>Ti$!Bw=t8; z(MHuMZvKr{^MDr>O7|6r8QDI*tz4Z+`&2>QTn<#n;=4211 z2(byXES7W~F6IGZ@thl0Zp;y=JsJXn@=5cE5N568D^%yN7f+Fq$fw~=*%Nl~#wvd= z#`%Ey%V#O{eh6vIn|=@N`Bc1#+*}N9*@F6Z7Hsy|yR7*pyW(M5m5#;j!@J)pU`RJJ z4!|pEkql=DfjLoAOq7wfiFsCfm8POxRsjFRd3(HL)U1qc&Kb+Mv2b;$>e~oS%?>`^WLm;bz(F4pFMa>FAWQJ6HQvMfSkU0Mt%MhuXaPrWTZZx za-u3ju(Ky;_skpKn2Oo}?X^Ffcn1IsRa~L&YHiIdc-_R8o*c&tIpz3S_4~ojkiXI_ zr<1`f9LEq!fwag5E&dlc@*t{9?tUIYO53xRl@?k*DvOl*^p5D*47t+8_PyQVTcDbL zks3R^48}If{nnpWIS7|Q;Mo4GIFZLSqx;{jcs_5f>PK%xlBda$LHL`QRi7z%?dj<0 z>GK#JZTXKRVS`~?O+bnGxowi3{qa@U3b=3Y-w8ktA>aps^OB0+$C4EcUX8p@|D>3U zG+b6Qe^NN5+al3EhqZitn)$YZ26tz1clXp2?`zO_>oHkMp(SURGt&EUVOPF?F8$@p z27j8$Xk3g54{@szYKVs|T?mSv=2WFmcL{$js7*eIAR|}W)iZwI+7PGX6eAw&rPx0m z5l((v@xlG(j!2U#&3lzBZNL^^fSTt6?z&>*zjT!67*H2>f9NkddlWXm_|>Cmc+ue93(RXnO0Z<~snhh<@$s3pT_`8m!LXk4!teHTomp9N$c76%!vOS|R-^E@LZpz7 zM9=A@ib@*8S<~XE-4Le@TIj2ds+#-=ewOB>Au5}ek7#+MKK;PTh}nUZ>! zakt0 z&F3j|eM4RQ7dYjqbCMV~009i<{6}QVlo260!R04Di0W3)-)mmrJ+H^}Vmn+X z@{F&4ZvUWCUB-b)RUIrxQFk zm6L-0`+WOc9lEBJ88t8wZa;C6cK^HqXgE|Ztl2lHdpR>9g1U+V# zx;d8;ztn#2Gj@BAsE%ZSVp#J1Tftez)3duy@J6pN7MUAbVcQKpv&ZDb-8olzyoXJF z+0kb0RvqO~yFyYjNG;3EAJBgQa6Zso-d?0gC16Xj7ygE*2DM?yMm^Qnvaut~>_rZ| z)iuhQ;KR|Rt4~O8oig@&oFk7t)A!~&Z7GBPD#6at^US^QMy?)Iy(z%nO8|&%rrUd) zT7j4Tj0u?*aP5@wEPLVuP!Dy5pF8D14;l529xHu1$#b)`Ud%gI@iC-~knfS8Y}_EM zXS^6Udhf=;TLlVu{5_G4LviIy*RW3p*`Wx~==&;@v^n3x&zYc8LV6tVMk*g0L%xh( z;>a34#dXVI)-r^8;6$ALeZmHg3=oRUfL*(bln#9DbhZ2@t>O;XBl{w-PYsmBx7$y4 z`t(YKBK+A-`q#g9c6NF%4qFZ>P{X-SV5>#)uG>860b=`rl9)5mNo?qCp+5s9>mCJ; zX^#GMk4nBiw0RxbVWH7_6Q%2?(`f#fOsYk5WxDVWmVat`0BES-q5fRo_jR`;Px`)` z>&06$Ic!uc-1xFUjIQ4@{es9HXf^}L%K<`k*ayzsM=*j&x{7P{lZ!-gA1GWSAH&yH zhBHyNK&?&f`g7JZC81%&YzB4S4r`H&3+b)Lq9W>7dB6MUSxf(`uOMgpCO+!(#PnuD z2~)p{SkCN#NV|D0sy!Jg#06|E2GI24(5ilJo0|$rP48ORe`p3~rU%Hu#u`-)^Cm?m zxsgflm0sPRhQn>ZM&?}IH|&-(UPQ+Trnvd@~abh28qJRDwMIta|h;EUaZf-F{OBBd)WvFRy9lWo&+* z@D}HM^z7MV0IlaP-Y^~Pouzuet3Fggk3?tT7e=e8g8=I_Ee}}^NzERAiF$;|D3J%P z_O_AY^p3zO-ec*{RG-3a%+BS{Co%>9H8Up;Ku+=D2#R)t>{$t7n8Ul6->cTvgw~I~ ziu#~sfbva_4%~6+!!slmzu#MA&=hYQ!SCQXZcnv9GL}~10Ao-Nw|vk$n%9jFqUHt^ zGw!yMRZtF~j0+L19d?J+s5}ITVlV``ot3W7Q=6P?Li`2;efh0GERCEu3;pN>7izGs zj&y6K?q@Brnu`yiO9G@dd*-1aY-2j0EsEO!C0Od74OF>yRUzzG`<&XA^hYL~5>f)} zmAdD=GR*~{$fl#`I>9+J5ey)w>39wco%W2*h%4@GC(x@jCNY6@}U zQD37_`TA@nBNmoK?{-c}c(u7h_D?btI=8^7Dtk$z2o>3?bw zs*#bJku>$Xzw#>m2&2hb0udipd1H1m0y!K$8(q*|RNXlREFf4R7a)NNCO5`>w=P7U z*`g*okOS`yqeEcxys)M+HiD(dCoKOojm)ZC5aXrVrwQN|k~RjD^Gr=tGqs z12W*@Iv?d_tHY`DM}W1PNN3@Tx$PdWAQ68bBDpgI6vhN}dh`h_7kC~pS%C%hRdcu# zl0*GP&QKEwNbW{aOMWh^o0gRg-V7TQmxapH+gqFIQ4`Tf2HtXbFuM<>kK_yw#QI7I zwC*jsUq>4GCbt#PrCWi!OD$SP8O83~$S?eo6e+YaZJ>2<`>{9ptM3W-PI<#j(153m zl$4J@gD2%>A>w`A?B-yi*1SEEoAQiYMH}fpomv$s?g$qp6E)S`+?56z7NP{r$87Eq z=Ay?c7$EPbx!?yc`IWQZi-PFV=2TZtKhN{v`35T-ABtb{xVD)>-hcS8$=LdpApIE_ zGDq!hJU@{^6G~My<8_|+jKMG;V7zWCeq>7I3Csaeh-^iOr*+^TSD@*-6$1l?LSArF z<@qp00is-lwc@SHa6mu}FCQs-B)*C&4gL(pJR*d%IxYoFVAsjfn*Fd_0c28d2SEC{ za-JUmkm5Zr%a$9T@6W+VPd}Zl{iySh&s9)he2<}JrykW#6;i&cv0UGPPP-(k-FXS` zVKHCBKUrWb3IZC$w9_JhydX?})_JMIaF7E(^$a%)Am=zR(7{72K-@Tq9cFH%m3nM> zaXf~|f$q2E2>`E_b8Sb4y8kBewnKTv!lh-`98^2ar!v5uAjA-d>iC6AIlri&qGCLk1vG)t+z;a2%O)sykEESu9qqa`d)y8bs>nS0 zKp%ixXa9tba~2HW!g|AxSy{}bN-O)tNMqT)>fl!khu0i-6Z_ld+wJ{bT>ku0c|!ZW zK?KRo%en3rKZRcp$GPGXIVWw>(Jw#8=|pahiqMT{0lhG=m)!+GrC*WU!kx;Fb3~&8`*TC1*19_95q&$!3XgbRwrc;{3RAj zjm=|E#_;tuaO~$#`GBHwa+i0_Z)}%HIKLVCm06#2_V{l9x*iZK^h2z&CzPXu>@J6G zG3pH(ng3FRtthY5Ku|^fpz9zzNmn}L*y|R^@1sf-mv(*eo>UKo$5n?=hnuh|@YK+$ z+^`tbhBid07Sy#wQ3NQ;C`+flkIX`@$pBQCTV}SD`XDAqR73I@Y8t=j>h}=e!R~wt z2pbSs>s+-{afRDc8a~;>u#1LlkqjBdGTG+xxQ!}}3dX-V&j}N)0v?j{x8Di#$egzu zo>j;LJ>cxh0(p6&K@^vA z>twi?wE?`fy~58#w8u78nb=AL_}{-Gv>A}w0kl00bUgG3ymu(Jma?UMAQRW3eZxQ`Fgy0Wk%!y8BN6VtctN{i*)DWmYWp>0mAGYZ58rEJ`W&aI&gz2nP#Jr9a+Erp@@FVgMYkb z-9U$RXi2h4_^X>PNr3PZxOeb^d)7Mam8F5GxM4qE>F}e>nos(D zL*F4VR`T382Yk>eZUyDL>gTdG(%|pDCnEKXXGZr-m}`6}LltR5ss^3yr7^+e+9T(d zqf$OGsOkcViRA)AnfI*FV}@@GXDQ|uZN){6Ww{fXi)qo@1J@YD?7ZPqNYCxK#gsX( zL=$6tc;VD_TnNw<%lJ&d{U*GTr-!A8xBCk{bj|&aE4+|WqF020@dT*E0Q;F@>py9# zar2?1t{V~pwPf7k;bihlKbJp1M3NG=HI9}GtyqS%317``>JEYykq&Ot`XE44jdqmW z4~GFXym)d5(4^LdWVR;epy$Yhu3zb+pZ9^<qA61WhTcy_IYdAn3aiJg@xD$6d+^);udc~FbW3pR>&c0ki4ZHFqZ zFi48!e2suNqR`$TDBY&0a2K5hicN3#nI83Fmj7m@Vw2+3H{6C|qr3-P85F$ubJ;_( zWT{wtx8{HA0yW9q?vOca!qsX^(LwJN-s}+(9Jb|TJp<=S`CWQSY-O6ym3FF3_m8Bo zv64%AbHnbXe+Jx6@bHzNvu%^-7Itq+6lo*|E8CkDSMKM7bi%YHP8WxDGJx_>b^CQ< zzlxHALWm3ZUy9C4ZK%M&`vR&Bk4i=RJ?`#A+@KOKC0U6G|MHQ?Geu3LH4 zb8FB2Tdy5P8hXB2yncU9ZaSOO%RwfR48(c=d!iAt<9=kELW~2%nS4BPpAVq=1inf) z9gq0E%d!{>PMNX5sj}?lYFke}UU|gkirJz*%m47^A<@#;L;!s*D&8i8BUN6Cbd zNdZk0m!r6#a{lh`_gK?Q`o8EyWVrWt?h*q_rD$AkK$Wq@HBhVqOzDlI@>?IIw5_;4 zhAvZDGkCyOb#lC&glYn_tAc$7BJ$VA`8ss!(^)8-KBX^e5L{>xtv9~y1za=U^Ycil zrMtB%?|)xuWjcBH61uOWe)ptUwrLL1$+kBd>B=?$^p4M7+ED167TZc(7cQy%b~ zA{*BX-0-zyb6X9Uu(0vNA3%z1*=7D$*u7<08siQ*CZ2cSOpyo-zY=WMtCXiaMXsUJ zJ3c-zsrgh0G<#f|@^@n{{QO(qXPOwhM~r#5d&m1E9Hb>BOKA-KL{-_Dm#HdjWZCgM zfRdeO#cLb(evZ1oYQ49vU>F)KfjS#+x^H-qz};{RY`Kb0U0mL;kNnUCX@uQ$D6lGM zBh^YO=A}-1!klFZ;dEBKdin+X(7t_Els0!(79D)E4S&xzNwEUPM=T-$t^qJSc(7|rP9v7DWlHc=M zPb)XbyIeqMAy=}XzJ?!JVA*fI#`gWn$|JiMHDP1B*Q5Nss&bXJ*w#F>=a{5ieo{Cb z?Gg3Jc=~_hZ=03shw{hy#PC8_rb$uf7hTNd-y7^k5(y>t-$Mdl%`q5Geadt8DhT0e{r- zDo}DvplvmfK9oMB6fnWipks;q8`S>;zy_=DaKjty>=nOxwXY;DyEv#jG%F&^2cOq8SS@BQ% ziZu)5F~O;e16x1z=h;`Lqv4G)K!!jPI)lpNX`;xF2JSh-<(F^hNiLUlRVE<4M1(WF z+Te+`&b?oMrUNGpE9@lz9VHU+#kb;}C^Y3G`&8-^VMlPv4~g&=^mK1U<~q>yh4etJ zsQ4tI+9!ZMS(Pj!7gS=VMZNG^sz=6NWku6!K~rs>e=y5coviQi@+06OKz#-r|G2wx zU2r~J@dXowR(3||rGhEt==@#=xXeIvT1C=ZMkqm^#Np>QNZyq_!2vl{E0a5xH4loL zJ+5jpKN{%H8t#oy*)`uZ32^57-o3Yy*JnOcca;eQJC}UQgz#vve%Pl$r8zwCgqyT6 zQW?{}X>*-uiG)ZP+!mc_#kK)WF#!V`PvGGoNtU5V`Ff8x2Lk!}PA0nh*w6><$<7ry zpsLAl&eCIR?@#|jH{do^Jq`gYAKI7>)I{5=nb<;m?HFw)y58*5fdL^n8bi0a+;l6Ldaq9t%9HHmE&2>@(}5poBegnv6jwBz zM|w->_o=2xglx%kFWk&RelXOY5dzVX^Yjp+&^}x0F6nz>xJv1$lDMr^W05QKIThr8 z2-WG~bI)2(?dqy+4|{*9Y(=OaPoCyT&TMx7?s>#doGHd}9EC`jjZH+NCf+lFpsiBw zJPidGFw(bv!+S;z$ThBZe>rE z&kNLes-NUdXATRAj*~GuZlD{Pq5ukq&qnK`s|mC0-xkv=AQfKX%FSn<(5+K%;gz^E z7r6N}LS7fkFP{bN_n?lCShIcQckTX$mT9?k}XDq2> zuCv;PPVdOg(6c(lOu79h*`KBWuZi-)EQ&_P>bB&@0MI45*l3$i8>bJ})gsg|`a4f}0@zYQED5>0kfCe7LL9{xYZh;Dj@i z|0&y)UFep2=C8l?LLeUJ^w;gE(^q+o8E%ST7l3IKv|&Nhy%X*YP?x^s_FEh0vQ*iW z6(F*NCD!Qe_pQxH)q4so6PcmM_cc9hK_0foQ#RQTXP3$`i&y`QJt4~J+qaP_7uoPP zs331F_cp=v-EB&hOBB4~iaFm*nklYPjD`2$J5;|r%Vh?rZZAud>3W(xv47|ZDE0n_ zmL}z~0ujwo@GO0A^kM|dX0>9IJpb0|tfKi+nc`6>m6? zWbtE|I%Vnd(5NG<%oIP*2ow1w?M42qV7=^+y2tqFlg;dLEL-R{j~u4G=N~<6Mi3;S ziYL^fpw0s-x0_sIiqs5Cj&*}_bz8>5&uw>j4u2r`zT{1bO+LdNS28@2V1*{94=O&e zCKPrDy>!#fap!mMEFAtA#YN}AgH%tDTpUgzsr7vteKUq%FG}qYCQ>sS-)XkI$l<39 z_2LP(3QoQ0!wmYAnr5!g{W@==2Js!dL_-Jf9Yq>!CfeW6tJ(4V3o zca9fpJEdNjcmbi*2>XCWzk{f*x2xx!Wo`23i?T722G6#)k<7sc>qhf z06`3$h5+pxB~e-azzEI4}1A0~1A+{+rk5Bav>-lAysdd;9D~>t6slaJhed zM#g;*0de9|S^Kt(ln|*qeL(m-&}~x;7hvJX(A_m)0hsGMuI|5xh;2ni4pA5qa;9s}CeXRXVg?K+m;h=`} z?u`WIkrYC->^dnl`)34*pDJQq-e=dRMBmxRo-pE(p>n6|;pO zw6>Aa#Jmg}Xyp4&7?pe}0q=mze%UnN@7RFc@gvh-C4(uk; zt|fd}l~s5{DSWBvq6EDT5AuB}2z2ned_|UPN)4PAqPMKL?wP@q2#QUJF<+qTV&nGk z$UQ0gN20_?hnFaEhN^ErWp7vTBi$PYQz84ITsIdX2*$-2C^}mKYT8zxl1g{=1tCD5MgVVW}u}liYIk_%UYC?Dst5 zm^b)FUBt_kb3p934W(qFxI8LR_xP4^xB~{OMdP|h)x6NUMJ9`#9e{jx<$(WtRDe57huO*EyvvL`yDYL$|FpH!en z2v1b?SVp^6;f*$$p49t+Y}>nl1ACD1mT%E$SgYJLze^Wmb!?ThEZ05AfZPOi=&M<* z!EN|#d#cO=KNp2amX)1}7QVNV23W=rf%%40wXJrn6xJoi;TgaLy}8C%XK;m1_b4dm zVBg=d_U5)4Y&_L5fle?*W?`Y-q6^Go0D^d?{{4qtX3@Knc$ZP9*V;}tyQxHgi;wv0 zfI^co@RUxAIWYNh?S&TG=$Hl02#BYRx;5a&sSPu{N0u57RyDqO%>T0RrSFB` z1c1EuAdr^{7$Po#2Qh6+0^_v;NP*dJ(PQl-j_ip>=HN`;_gFS~BZF}+FfB4lCIy`m z`?8z0%%XE8@u^Yn1S2E@v#KE&RgN1#25}R~;Su&BwBKofnG#v{leaPA7pyo{og;QI z7id4D&>%}%!vXo^k>A9^37F-?ljdl>~swPS>H4-0*eT=(|6K(p3W3Z^f0 zC=1hh!AoRkhHnf{2dhVEfSGN(0*^9>FK37=dz(%UnrwW=kjTc9woxctDEz<>VB$hr+P1@X zOl|#6lS}Y4QQ)^NRd2-g0HHOn+s8as2#lWe|y zEBu@%Bjkn^#~wd~=frn3=qS*^Vqnwmn5;7>N#S)=pY0QK$O> z5@Z1wQ4rD)Mt!bA)z=3(oyM!>-n9YVV$dw@VoTNR4y`jCKk!GY6d^!2kv(3vh&LMt zbk4(SMV20Cq8IZ0wL!rF|L`Zc17r|+BSfD{5V_XxVdii@$y0(C2(81MQ|sRVre5}P z*m2y>e*`M_68*t$9jYBW=9Zu8uMZrcxERq6sT=fg8kKp_p?H_0FJwy{AS21Ici%8F z_LeLW@byQS4TPFbC9w8;7|g$=JsLo#Ul72608xE$pY0?66Ahly3W{mhb6)OwYkre0 zKrl`0wYCOb_MII|CFQ@}{KQ(iQmneb>9kZ&XW?#iRsy5C6}9e>-OH6)y}7W0L6L%Q z?Ih~l3Fkk%PJHj1_O=dKDP^&F=wo3;>>E_XHHAjJ+OFvj3I`$BX-B6zo0iGkQf#cX z^qKr&(5~o-H;8*}{DltHzkktSWVEC3>D=zhIbsQGM>RlxcIkvI z5nu5?DC30(8e-7)WHzirLB{!j+3wP+3adKJ>>Wr+}6LK;hL_}jfT(=S)a`1Ax z_|me|fsNO_9V(UZ`A6A~ycF(8uk-^Mlfuam)?fH4=Hxib#M!@HrPAglr7@!rBQFjbcB zuF)@b{3h_gboVoasZo)7EfOoY!t3pH%9B%63KmL5Q*MNFRA~Ui0u)sfU!cIWRYm%4 z?AB#q-q_CSj=iSufGlQ1_s_~@fYyJ@L-0Vn=`gkFr2vFI`|&MV4OloZn8lqHtWU`f zvZHIGdcghwx#;M2uU=(_f5N|@eXh;tD13KtKm4%+H$sB4L$6-RSZE6wVAsTxxo5UA z-JwM#lU0s16dJwlA_kp`f-pJ#f~Xqq_&4bwZe#whrmv2Rs(s!*yGuw2A|VYTNOw0X zsFWzMbV^CHbhD@kl7fmz3MjFp@BmA%K_ej`Ahm>aigfII^Zk8Z{^jgBch1Z;bIpu9 z#b&pNC3fv)mx5Vmx3=zr^EtD1(?s5b_6)&<%4OtHV zzPFZUho+Jt?+(sK9ru${PN=F*6nQS67c27l!?#1zw+na3`-$X$$JC+o;a3z$^YF`p zbVyW4Ce`&_&s=eLpMOzhoH*t#ft->{>5zTBRCy<7;{qNFlpwL<)$qp=93)n)Z!oVV z@E=jd`weO(GkXpP{!qA$V~IoH=?XD}30}3H_;t<(dO~wQ;#aX;>WBJi3X9A3N3tpJ zSa{CLd-{!#sS}DzD*VMouJ*Ui3m$pH1ePY1iDe>0wlm-pqDUrMw5)w#lZPiE4k|>< zKGc8pjy|#kU1!V&Oh7@k#<(P-AQg=Z4gZR<6vmx(=cvwxU9@Nl1St%NYb;+%#KIiv z;U1B4wa|e3CHou8`f6jPZTk z8IbewPZ+vpe^$|p!{p)?6t=MX?L?eC`ax_rp$Sm-A+6i_mKg7i`kRLcjJab3SW}h_ zz?g1ui%}7d+Lzs(hIR0a+G20#XUN;W>OUyjq?Oa;)%21)` zgOr5=4#|AJV6pzdV5yf2KU58QDKM2RU8!oVgz&1EAL~8&p<#$sWXpjQw;$tEW>nu< zeqQHD*L_&2N*C2w!@LS;s-C(Fy}<4bWG;iRsJRYLfH`x_Q>ZTt}V-1#Z1t0eY@PV(>Om=%=se&unS~U=ch_ zzC9nMP&{|Hy5k3l{_&5)`417 z^kT1DTfDB)+m^GWkf>}4|32Z@xxa0YwCI}q;bSDXrb^YT*tQ?w`%;dZbbk&ypYIyK z`iGP}VH2zVXwrb<(zHw*HDbM|>Ij$BZlDc(zHqsLSjf$>f=3gx{~PmkZBUYazu71? z`p0@TZb-gO-!@?LWaEmqj*PSQ^B3EN66=kOL1R2 zGL#go@xS%fC4>YQVm(5RI{~qbL&C;XKqfb`2DdX)Jhieq{=xpC8jR+R(5)+7Ok{a^ z=oFm~F;5?dsvuS+KcHchjA~bIUE$#3(lV;ze43*E6rM6)P@bKou$45i%b5Cpe6!r# zuLRS7ushyQ;X4R?!s;9JuavPcQU zXtr-Zd{Ikd!Ru!EkI$Cr1v3JiFUpHo9dhl`p2l{DWA*D>ECjh4<2wDHH%6#hNq+yx zRpqYQU%dJro2QE4sU!L@;vzi0Rn7I6yRGgO(dfU9G=Y~WA#skW;CtBi>{*8{zwWR=5q;}ajZ|sjqm*rA@%RZ;@MVBbYs}0B@&Od2ptbHH9C#3 zI!ffol?kzuS3CcT#3QA=97?ErL-P1yRY*_m@*)Z_)*qFOpAZ-n&|ScNzn59aNZc~G zGA?E+-O)sEi6x(;^5}Q{&FOKL)FlkNKP06MANXO*IOBFQV>m8_=fxTv1(|^@a7;P) zg$agxsrQNd&bJJ}bmnI00#s%n(2QFklRh2ZNfs3iR59FR3saJOWlpg3)`qIwU@tqX zRqR%NdcYQ?+6$d=NnH`J7JX!^e3$C$KGhSGK5?N36lolCFJ4ZXZHI1vA^)zII5dph zZF%#!v8bHbZF*i3(YU8t@P-VUvW(twzFFz;#fSMdDXc}aZ)-lE@0iNE;jKVVE1F|yUv@I=NUwmygo-T6f4jt?r_i}pvZ;B5`S^&{}3^qm+kk*~n zaLBbi0%|zWB!{KtnZ{zm`E`dXW>Zq~gf+-$Avk;Qx8|#X%3dM2cK3WZD>!<5t+f4g zkr7{@iI?JE>DkXilplT6CC{!f z&t>6L7U5Ey?c-Vy&>a%~o1HJ&AH7oMu%8cXlx$-qWXckiS}M_pWj1scMRtE$UMTCK z$kCZ)>uvSvZo0QK>I=$Qo)%FXRiB*AzSney|7(_99Yk>bbu73)8G0qzlK;clqn$ry92-|vGA3K5&B^K`rm$!==y1ccwG4AUJRcauKh&RjPkrHr ze4;9g-1pry@Z1AxOFs9th{t*9dXYuknj)~;wIx&JRQb3Y!(gwSH9j7`DBc#xAV+QATFe(uA)P5e|c?5 zBkStm`?XtOGo#qAMNAy$+|E{n-XX&F9F0cGGJY&_oZbBgr`Z;3KC2Y}lLFmCbiAH< zTi}e7!4lbtcAHwHsRf5Yx)tQJ#W1-UCu#dTD;>rBqRnp7q7nLQA%#f#Vr0-euzv0r49^q9?3q2S3DdsSZV&%>V77Am){!p#LBd5 zcYHs>PdR47QowtM^gsbmi+$#5{cS^S_=_vLCz9Sf`(C8By1gh((EAux4Xl67t(Tp! z=g#jH-?l>67Ud&jSU+Km2d6f-C7jd4b&;OA2W=cQM^Npd9)BGh@R*0a#q6JEki05b zSp=1XMh_F6X(9?*%|;?f`@XVCG}0PVgfUb~Rl+vk>`f07u9))WW2Z7Cgjh>p9WYNy zwisRly>xq0FC?yQ4`b=#9t__>WfZO6~N5keE&pov>#gRu|(sOZZe~ z)4N|`&Z8d-$SnSOL}N-CDCEoOVBBpCf!y-`6MCG;zx}Onkxg?a**I0~!kn5-gm-zJ zGP;FU0Zo>fIB{05;>*ci3b%ljGCesjL`&xJ1vkbB339QNtPZ}h>*%Os$~sxskkv}> zz8|Rw)i1l9y>r>|teaT7shJmc-n~)z1SrMy0@L=sHHGdpt7(EYk>-sCRQ$V+JYh z7?=76U_y7{O|*xO%W6s{>{!Y%K3~rHNn%!BF2$Ff`dn4{nDB(yEvll`cV3Dw98iAC z(D6Uuli;9a`_6r=GMa~}FJt=@O03qR2xTC&eRt}ka1)X8?2D(uJUxE}SCa=|zPC_L z8ZGn+SEy6lH_*)@zMQlskOeEqty647l*D$PpeoivPqTzmd{=)5oV0O!5^fS2u1x!d z6F4rjb*M9lSd1M|0SjVe0@j&QBV>UU>u;F_WK{yxy5*bnjR#&3VOe)36qy9IlCwQ0 z)yCIO23%t6d^|}SYOOxa&7~dJDT6ttpB$;p6Nqyhd^ln~Yjq>40L%SBtFPd>Iboji z7Zp0@pQW9J`rp%AGrDlGYllylg6IRSo!o|Ue)>LIyB*s|tRMX>QWEtkWfw!gHF3#H zgHD6M!^QHlQ(GN`zs}@&6j^IyOfkoblfv->-fLIVo^>dY60`*8nb4~|kiE&WI(LQD zv?$`&%AAktjhwQNr0D)7vCR)-V!n`aI(1XRs=KD1J>#MDNNLdaB`-5Njjb!m^y>Ds zG)JBm_c|wQjZdWRAS0eN7SriFXj#4687AbZe|$f?GpUfectrkT>-83w#E_HFyl>+f z;Vg5JR1S8impDHlT#&!~=>j39GnK0rGS3^COvGbB)6i<<9j}Ts^|Dn7pDbHnf!Potsd=Y;fli4=nKq>a-!m z37iG5t3Z^oQO=gvvC}DB(aVPQz06y_LK9RUQ#!H|A8>v1gDoGbP`V!JM>=WR7xi~B{~Rs zBwL4=p-Z+@j3x^(8kzT!1{t4a)sj2KPnW`&%6E{(NZYlD%obX-(9#M+VJVp!`-I*E zo=Q^q0nNHYOH8VpWNNtq8!E7}Irx8OEH5PA3?HlM>8D2;E^wF1J#3wh za&0h_etQ%-0v4uYM46H30HJy{xz4|js>ur38q>Iv?7F8<6I6(?(mH2jc{FmcqufH_Rv34tX6_bSrMi%n0-hPsr=ey^W$EahbA)TFH>jW zrzYYLn3jIXH{@(frGHnXucC4kGHrqzV`>G;w0rzP9W_zNnw(9YjBm54V^qUFy3h8j zvf&=lq;P(zx;oXPkqCUB4P^+UPr?J5JPF=mYK=#}fyTbF6?)?jo3Hi89y&9F*PMohRi8veg&?R0Y zL*0|&mE?sbVTX(&WQSrSMc=Id3qfza>^$)DqqoW_Sn1=clB|R^%j%n(sjK8-a-j1v z%sY_gFX$yG!XFNQ_gv?j@L>&NS(O`$miFf09K}83rCOQXUR?1h(Got@<1uFYQqa8;1+<_{|9?= z-UFZb=-luuW}T|(zm6TNn_Q$NBIm00_fub#MIAcm_o<)z|U zin;FLRo9oD6PI@X^cJ=V3MR(KE3HVr+WDBF^Lg$(s>E$1;l?F{4@(}CA-CrHYp}tv zx@an*0F#{xLz@z5UMGlDpK#|@PzG6(i0+WGy1m|HxpA4_^hpk#LSlUC{gjV0?x%xt ziFV!!LRJU8p~?-`r+1FEmm!xYl9Lgm{X>N7f*eM$@P53=IdlRmOxY6bxFtr71sT^j z)a{WpL4KOY3=6lB5qI~lMf~3IPo2|EdNk;da~SB^kGQWf%E3sdJGq8#jLh%!x>BfD z(M}%{tnp;ZlQ_pZ~UdC&*=-Yk%K3$W@q;mLppd^(Wf+ zBOqD?{iX?U@Clfll`+Vy$9d-QF$MzEu# zNnL0xsrf%s+h=$oi$GL0soo4KHa}(^z1BS2v&Z%Kx{DR1ux3ifa<%RIn9`XiQXV_3KM5sk`wp$61g=TNsl2F$ zFdH2vHxdi=7v9A;WqnWy@rhTGYZU7!_JLMIQ3Oc5CTho;`s^d)xiO4iCpFP7>^S~mGpJ&?I(x#B?+ z(BX~pNaJyHMHVL&kiXQ1UA!$WBF>oWgR8%t5FKi+3>Nq=LmT(%A-Rol)meypRBOoW z6!U*K#oKijk>FOeY(2=pU!5#tYMdf+wGZ6Sna)d7XQM@z{)uoxgdAV`NP4}GjnTlU z0$%=6>0l^f#W*#?As{I3@l`)d{pnU~5mh|`*0#lpX=9}+jyj;?}uD#QGbh`M|#gqJ8KLg+&FmN2!Tbj-Jp+VO@~@mNB6#qnS#~;ac%(FjF=m zqwape!*@hBt`?)1rgf^&-ub``nCHG+w)nGlf4Gh_NTQYQs=S$ynD|=|&3>qKrux1D z^4t;Y)4|)HZt*cnK5^s4z0prEVA($@jZu2^{W4TZ^x+zf7jxyEcGLr$0D);fZi6W8 zCrxs~Nth9mFejN>JbWD%$TPkweDIi2j$^E_f2lRTMARmJr$c}wy=tWqjDC7q^3}y- zd~*|oKyj~|URNvK-t|jGdct$M1^MhqCNU;gZMtol%WM3sLGZcDPRO7iIjk-(pa5gs zwZePgL$FU(wDq>%-`u{5cf`lc-IjFZOpv~^+IWf)H%*9-FMYNqF!2t!Wz?k)9^VN{ zCsT?%F|s1@K|7&kHi?$?$B?RavHrB>UB4uA5#rByHB-K!X-`5=-^(Sw`-m1mKRjbY zZ}9ieQH!jZlN~(pmUr8cz4?3;YHi=ZF&XgDj0=66kI4Pd#sO6F^WW#P?QbT2;rffu z`{fM8F~`T0{Z<>2scpr_)>N*aT;t#OW}tz&^p!F(Xm?RKX#%zx7h?h+_~hpmfKCv1 zl*noGC)d3NQXXr2x3TT0(6Tz4hKGNMaLg-=b_~2e+Cba;|x|D)HI z#biQb`>o;yEP`;3OKi`XE}33Mmo#Y%e!|>@MB&FOPi*6voOEC{`PfE@;mX@ z-G}Fd7RTzKoC=c$WE+uMB@vEssBz;Csf~+!M>q#v^4He0JJPi1QAm`G?YVe?_wnX{ zW3M3)Atjw&1XbOko->W1W`UcKf8i+OP!iHhxH(}*3t7FXWj)IS%vEt%%3c!=*tNSP!4G#!t8aZql(w9 zrO_|A0JJIbcgNljjq<)wffdL#lDFOQkZDN}S0q z+vgD&;Kusf+3`l^g!T=v9(RydFd=F;MunI*xwL5pg19Vz(S&VgaDpDCLX4hw@7|Sx zet}`tw>(}kMqWi*@&%MSL9LzJr^>irxaRP$;_X6nw}5l%R@yNm8`~6b&#rU&`EO&P zGlAVa1*`XU1P;=~e`0;#ureJuBl7Ny@;^36b<^TXbEG2;)~EKtQ|VTn{hPl*1y+a zBh6l-!z7gmhO8YC+w?jNsnEYITl{clJ3DMzm#j7>z8Fi4U8`*mOy=&|$8|HkIHVug zr+aYIK@T#5|DpiihX=NQAFHZN5@o)gKWwLbDv5e4pRjXVovKsryQvj?=fgS~t{nZG z>hV>L)0^QnX!-c!YTAniV%*JYg`ZWl zI}=)GRY3F8jT@XYmHJhRHy<->$|Q)luxh=KbjBPTXc;9`^-e(n7Zk}R2==vJ#3bwT@xry7Xs_q1G{Z8 z^+ZZ*bf>12443%k;Ftq<`gEz0zHY5j=gTft1I=W}f+u|RV5e!$YQ}=9iS3}w_eJ4Y z?{^0H3>Dk+;%i7{?)lvy`h=d3;LLVUo|4AuWzyA6xyA0#m6LpP!A3Rav_(8p?KrEq z!rKZ-)?335fR|$U9^f!hjEQ`^vO6cYKPA~7Cvg+HeMF1Ci28@Yw3`0hTT ziVr$1i985lA5xl;y-jMfs)1C!U(2>4iCTK0RTvLK>R3t0L59xefj0ElPkP&I5}xI> zGG>5c<4A~j_c$sd-dYS?7q71t?Kfx9=Nk76C%kqaJWoI9pM0;D~>em); zeRxw?s{1KSXnwa)|8FpzgEoZO-r%rlgM0+~kr|R_Cn8?ZtfIFvQ{cJ65yLOhZ-K)u zHMK?~KdR!dbIt71>sblGmix6L7qeKNOg9{oc**@46QDx9{+O6e`~djWim%ah9d8iw z?&j|Vh<;fp(jmiLdBs03@GyoA;%kB1W}Q+V%Kb4p{bDI9F`lK~RcESO1K7Ydk+Sxz zi$ols7XVou_X5`oX3lR2fB2T5;^1?m{I#(uLxfk`3musoCgaxgrs)MaT;{Vm7cEK3 zDgyr+77*FQ4Z!|^)LMUZ(1y9))+VWcp+zI_9bCyB(nkm##_dzn-9+_jd0CD&|$^EEgc&LFPmjf7yKF!3N^d@Rmcv@O0U_kTgT)D zmmD;qU*v3R9JQauN-SLI64FzJ@Ph8tnK+-?oaALTk^d^5!-X;Y=4|A9Q$drx_RRVdU}-X6*<#i7n;>152e~ zQ_Go#nwro-M5DZ4gr=2oroaJ>s~VFv=1AlXWpXmOfjQ=>DvQbozEtZSx?&*^Y@5iV zN^Z7QmzDWW1@m7c>JB13XdK(JHPVBtUflnrnJ`42W<0^m>EcDUc2r9LcwZ z#u^sb$&y@n)+E~XviZ%7+2D~3H#4l_ulB$}kGh%r`)iY}rMHK2y54}V1k3k_q1n8d zLyT?SX114S0IR4n#u!?Hp#aFnOW~8j)%=}SjxlYmPm1ka3L~P`0@hZ@9a8)kJrrqk z=v91mc1LNo>m5?DK5rcHAwg0+MqePXt^18}3isBH`4JZy`Le+$lZ*TxIl&Mo=@lSq ztJss&lus$cdDDp{ES?QMz!{;CN+R+#R`$qS#p~WOr;dBmr9+)|@!!tr>>D@IUV$H4 za40}}{v_e|Ywz&b8GSX&+Q(2TYHH7}4p&@Lc*XpA?R9$wx2DRy{gNeK>5LyIO3!KE z6r~nebw9&;4*G4=S`d!Hw**DWEJ#YXg!8^!p{a!iw6JY67@1=qwoT4Y;_m?*s4?8D zuos+HiSYIH-2;W8l@{dDcYK?<1)?L0#{ z1!|(hFX-~sud{UKhAzxrQeGmPHpx3{f!(GfgNFT-$h}8N^VM&vd!AT#`;tJDnlsXO zNRz8iA|vL)D}|#$n&Tg>7zZEj?K1eHDO}Goq!-|GR>K~3 z75XEkvYO{tI#9oM5uXfd+0ZAElECT}@YKe$o;JUmA;A)1>C8{#yaZ|wS*TOEgL0zV zB64F`|L}ZB;hzA*EAc8^3Nsp(e6}KjzjEAYE5R~G9VlA)xg)K2Sbq}PtyOC*{pYjI zm#6dq<C(s7dPw*|7QZbChCEifS_08RwSC!;5r7*8maS&Tzh-r{=2 zY~Q15iOMO#-L5q%@p~1Mnc~NaRIVI%%U-Qbk&G+ z?L59?5FLAqDiWNRn~tsg)8>P$y@Q_5db;+>Bc6%UngSr27Le|hwQRd%&8RUrI~=$Z z?ad28Tcp`Qj)>n3IKWR6ScdArH=*r<()prQae&ihLoO8$cV|PV(d#1_@#23DE|;!X zbb%Ei7JM0#B=F$?+!xUh#=?K#8R+zq@r@Zq13f+b<~hqy1z&95(6*1)=@pyoXp~k3 zIT;!r4F^czaeP-B8D%H6#p@()&BU+t>)q<=;S3!+8sj%GFC=E*Cd1cp)BrHV@3_Fq z*SG8d&>WGHkf;hzFBqLwC~@4m4{Vo^{q=FZ!J~iq47Li(Ld6qT{#=|j5g?TX)D;^StFU@G?xbQF)m>0rZ{qIdJ9*2{E9T( z`{!6)-x{4JP#miWK@^bzHpYmAVu6V^$uQ8NjCam%mhFIIRJ$}XAHH!(ZjLy|ZD!=NQct-tP0BofytPgA@FPRZ#8|906lq?j#^7|<< zh0M2^`eZv0vUkXC$CP5SVT=_RV?;&!i1gu&O_ss2IaNembB*LSyUicYL8jM99bQop z49~$O>u3tvP0djWJ5IpGvcG5qok?_2)(s?PY*!(48CpBiITx|=bpwleVeG#%Zi@#^ z!)B>em<{{@hPzNrZ*sXc&(YEPtvDr`@sB``Z`zi2mmCYC#UqGXu3j`kA!^Fr1op{H ziVEpEM7bbMZy>lE2>^sGhDS4ncDwp89}_)3N62j8hVU&&3lLr6SBhLSnCj1cE$G$A zdJvM(nf5pfuEY+ME}LcwYvhFZ4;}UJ-)=HxYYTFILBwK?(vx-T*P^KGK`)WkPPuj$ z?8%UzJ#|Og?S#4R^K(gG&I0BX?r|C{q*|f61v-`8SYJKd9d;&#@a*_XU~J&)?5$6~ zoSkft_wI?Mifbrb11Id=1x)u+l?)R)r%<=|blZuDY~Xq-_=#E1%f_{y{30BVvDnHO_!Pp!Yb{U3ec4OyD-%D@5SN8Qf2?*P}TSKW8A&y6iK^6pQd$ybzM=c3P!>No>oodif0LtYil zzrG?DdwRqH))*285<3!OMIJNN{Ymp|BjJV1+P*mS|~;VL^&VN>oKBO8&6 z(zB-&*pItw`uN$l&~OJE4vU_3q*D712i`Yn{yq8H#Nx&RaoKD{jzA`2NT0ANxI#;rx#bZwx_BizBrOAfE zw#oiBj@x{#Cmy32BR;%*&Jdw6A0{@>sQR6O5D8jA%#>rC<^y&j4AuRs+Eh7GA*Cf0 zUhS0aad3ShD){r2lUo+Ndax~G86uHBRQ7AH(f^Lc;h{rzLIqD#xaDsn^=?c&_?edt zQr+I&%|~T)i2slS@0j7i9^|W(&N*jVnVyUUA4*ozl*fJQ_dKP2gpW85-KVtZahFWv z)=aVU()<7@=I{Ap{aKlrt1@)utBCMX=PcO1Z*naa4F0ZnKLjPH^1{ra0|vPz9&E|8 zW`({0&H{-SuepzSHWh00`a$^VqW{q4><;O;O7P>mXau^RsbjqJj?md9)ZxIPIDDO& zRcnWL)xaWa-|CdgSbu^tP2OiwXv(8blw^86Xt@y3znlXD56$}L)5%QWVxJp3!^H&D z;bNCZX>o@Aa2wID)1O*Db@ZE$&%oYrcL{<6fW$P^FXiTdi7(C0+HxpX7Eq)@I-7L( zUQqFXE?~6bK48Y__Ct!aE%6?rbv7O!4%iR|D9x1h=ZZO11^p) zbOAr!2*ZUjWzP&6fG!TGU7Y={T&3`K;XvfTgsZ4^w1ch&P}_3b=J>Yk=x`nN+B!r; zTQ!l5OFw?PYu`K|_*&9uU%QQ`OOoSC&rT%uQ#nGXez~=h9y(-4rs*>QiQI?_*tS+V zhtZ4&KY7yGmjZAtZqAbU--N&SJsZ=c&q94>#C;A`&ag&Gj=*>>+cO`PNmJY-=x%hVOCbM0ZX^cuO!h=X`?-Ao`*xSXAj%NUk+eR8MXc@YB*J8rj z00l%`8P>HZXmjzRhi%qIy0x?k{MFPE)^oObjQo&ZOz~S2sqNNz$s7jI+a5D-YR&YD zsGMj7YkTQ-_2#G&K53?8R$!a}!A)LQ63$A~u@l0#ByB7SQ$*nJ(PG(6>N=J@NcO+e zGp)7(>c)Kds|;^#ua{Qu%T>cJ9|m5_IT0*x_;~iJsHm^*e5-i%r~HH6G|c9Nn~dlW z6xD0Q1Z+E>c%4*ed8d9avK1CRH1$}8B_RDY+A@6l`2pu2v(tmzldp!>Ul|BmW7V+;xK2Ok^pR=1kh*Vn*Pp&O17c_vG&v$)Pu{gqb(3N?r>3S>P1{wv$-7UE6a8{F5Nh{A z{H_;$eS3p_+4DvPxlCax+D-?Yf9^A!rLpq0cRK!d=ErMjXE-qQ*C5{F)iv*I7nqkl zYX|QirKGO+JkYuD%M+Qc=D5`2j}nu)s?ec$xw4;Z>8f>2uTIK>B<|kw`2p6t4)8vJ zjaMe$Z%1xZ0iA}B*S*aF*!a!ux*6>5Url_WZ>yM+ZbU_u4g{nhxJhMLmRt2A=Um=q ztQ{3KZLKOou+9!1lNH1HrgSkyn0Q&ulv41st;k*UyCtP5 zC1jX!{-E5IwFP6reR59KJJ^$%41g1e>KGo{Bma9hU%Ml_x>H{P5&o#M&JSJ%z*n}s z;=a|})AJn6G$+>yhz2-K`@EkUr&0^Q3yiJ{EckSy4p%=NUot(qHW#7LEQ^(Bd!NnS zbzL)M@@0s|>w~!pTph4~*W7n1L;*Q*<`#}0m_E0ZDNAEZt|hU+ULzN z8o8Ozt?B=*SwGb8mceud22ANk4@G)E(PKsE=!Cx<_KL|u5T9PLV5?Am_q+SQy2Bi_ z@cF0z0Gu7=(e#!tpA5Vn2ePZ!J9dt152;BeV0`UyC}V^%8EZ7z8XsOx&rX+g`nl_+ zJ&a1WHN;9bX1SRHcCo@}Bp+og9wLu>-7^E4&lMFbsVbQ&S(;@t&3vaT;MVQZ{1Q9^riZF!7}AI9 z*PeH%FFZ@QJAaM1&sppHRrF)sZ*N~rNdUBC$lgx>Djm^FnuAUR`uff5f^uU zt{iAu4HbRT9uIYZCd*RIb;7dJ4rFR_s_htz3ugsRn0A%?d4w~Au=-y{AFAnk z8kkZ!mHs?pRdSWPn_?E z^^?SYF+}q~wr9k~5mO4J>EhHd<2h!{1mVNxrfT-i_Bq-^!~T$x=0(ISBr*WrLrk?KgD;Xx6s2U1F214-eKo*Cct?vLfd+ciJE!ia zYv_B`ROvve;vNASwklf0g(N112O6iW169Gb|GIM^!}Qf#Kq=6d*s=(_21hbAc_m=g zqF|8`9~ecm+r#oXCfW&-*)z>a@$qgSG57F&$-b5{GO>At!+1M2bzoqZ0E(K?NHdBw z@J>bvrb9O4ho{Zfk#5d9gIawk%OP;x>i`bxdEaj9)RNzn0PwGbz&H#>elVP@ki{n^ zw)ld=;{H@0C;&#=kkXwI;39=eq7n=3h~$ENegEz5pFF9mBKlzQc=FfwG1zX}bj0M> z-D@WkorG8xAhTVb%iXA2vz*s+<7Km`sAS@sWXe}@g`Yc zu>y8*!E%h}%Y&jCZrcO)ldcls)wCsDU{3JnWPJ~SRNoBu5V$J#7ongj*1KTF!UuU5 z{&q0T%|ZSj89ZOQ?~rHS;L358Vg|&z_TjiJ@V*HYZ(KiMM?#YVX!WW%lqcGDvDLl+OnHo(kkx{D4&jljd22y8@l0UI3xD^t$}>n-jkT$E)lyh||C z&?&;yl)=Oz&QISx0L~(98?4Gyy}aBlXh6 zaV*c4AD~VCtLz)W(cY>k+@XXZ5*bbPTZT7Q`%GS^CB5v7)p%f$FM%7H*w{C7PWNEe z7-YaSw1KX+MkQaLs`gp_Pc!gi5ryq^eOJ+c8|e<|ymXe;;0-xTIqj{mK#3>n%D@OL ziRnB+AHYPZXzpl$l2<^fm19`qI@@tKajs}4uG?)4VZ=|KD4Canf{-|5xX^)mpqDe9z3P*npD(HL5yr_?jW$7AQ}!|>Ghq~HP2eWvCL|^e zyRQ5;a-$J1|LWrfkjkHc`#M2-N&G^x`86XBRc5tG1j{S?4$Dqk^~)Rg>(lr_IX6hdaIz|a*0i6~MKCw^>64YWIk_EqA)4+x=3eMLS7y6w?K)aCye9I42 zownH3=MqkRnV$fJO+q){?s)8tlHGPiD%Sy$LW28NMtU_7E{z?Ot4C-6z}P$RIZcNF zKKioLQ+;6$bbw~LLu#*+43gyvsDT1RVvc<*OwA0~0-$%Xog6@I@R+cLOX4p6A29@4 zghj-4I&Fs>{yg+)jj>2CSmD70uWWBuX1R(Ne7g$SNnCi&UUn8^!!O?~4N+eZKsM{E zmskBhY1iok|2{Rz15JYT)b}s5b$)m_!mF{+j|qMjV=)7QF6qi4{`6+ISq#VlcV<4B z?Mm;D8(6EWvT>c4F~OjZM?f@HcbWj03}e3nDUlwj3?-X3v2s2p0I;tcG3RX9pxLic zb-kJLyU7EQOa`*xEw7VuLEUm^MNYX~Cv-^U2|5I=h}`1<8yf(g^RW@sWj2t~hT^*h zA@(bwzyU@05Tle?umT+X*J*;()X$}*qpw-8VBQLG&%uI6^V zTyCVew90G`5Q@O8-oiDpwntE!pC*XY0_s@W)y^IC2X_LC-A#Kkv^Y=l5DfSe%WrV}Mx(6&8 void: + populate() + +func generate_traits(traits_list: Array = traits, chosen_seed: int = 0, chosen_amount: int = 3) -> Dictionary: + # Return a dictionary, with trait as key and boolean as value + # chosen_seed for random seed + # chosen_amount for the amount of traits to return + var picked_traits: Dictionary = {} + var traits_duplicate = traits_list.duplicate() + for select in range(chosen_amount): + # Pick a trait first and then choose if it is up or down + var picked_trait:Dictionary = {} + var random = RandomNumberGenerator.new() + random.seed = chosen_seed + random.randomize() + var result: int = random.randi_range(0, traits_duplicate.size() - 1) + + var random_value = RandomNumberGenerator.new() + random_value.seed = chosen_seed + random_value.randomize() + var value: bool = random_value.randi_range(0, 1) + + # Add the key and value to the array + picked_traits[traits_duplicate[result]] = value + + # Delete the chosen trait from the possible list + traits_duplicate.pop_at(result) + + return picked_traits + +func populate(traits: Array = traits, seed: int = 0, amount: int = 3) -> void: + # To create an itemlist with traits and values + + traits_list.clear() + + var char_traits: Dictionary = generate_traits(traits, seed, amount) + + for char_trait in char_traits: + var value: String = "" + if char_traits[char_trait]: + value = "↑" + else: + value = "↓" + var full_line: String = char_trait + " " + value + traits_list.add_item(full_line) diff --git a/traits.tscn b/traits.tscn new file mode 100644 index 0000000..913e1f9 --- /dev/null +++ b/traits.tscn @@ -0,0 +1,19 @@ +[gd_scene load_steps=2 format=3 uid="uid://cl5wswke7jxpi"] + +[ext_resource type="Script" path="res://traits.gd" id="1_6h04s"] + +[node name="Traits" type="Control"] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +offset_right = -832.0 +offset_bottom = -520.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_6h04s") + +[node name="Trait" type="ItemList" parent="."] +layout_mode = 0 +offset_right = 224.0 +offset_bottom = 96.0