Файловый менеджер - Редактировать - /home/tuudkjt/globeasy/wp-includes/ID3/twentytwentyfour.tar
Назад
readme.txt 0000777 00000007636 15251200642 0006562 0 ustar 00 === Twenty Twenty-Four === Contributors: wordpressdotorg Requires at least: 6.4 Tested up to: 6.9 Requires PHP: 7.0 Stable tag: 1.4 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html == Description == Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4. == Changelog == = 1.4 = * Released: December 2, 2025 https://wordpress.org/documentation/article/twenty-twenty-four-changelog/#Version_1.4 = 1.3 = * Released: November 12, 2024 https://wordpress.org/documentation/article/twenty-twenty-four-changelog/#Version_1.3 = 1.2 = * Released: July 16, 2024 https://wordpress.org/documentation/article/twenty-twenty-four-changelog/#Version_1.2 = 1.1 = * Released: April 2, 2024 https://wordpress.org/documentation/article/twenty-twenty-four-changelog/#Version_1.1 = 1.0 = * Released: November 7, 2023 https://wordpress.org/documentation/article/twenty-twenty-four-changelog/#Version_1.0 == Copyright == Twenty Twenty-Four WordPress Theme, (C) 2023-2025 WordPress.org and contributors. Twenty Twenty-Four is distributed under the terms of the GNU GPL. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 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 General Public License for more details. This theme bundles the following third-party resources: === Fonts === Cardo Font Copyright (c) 2002-2011, David J. Perry (hospes02@scholarsfonts.net) License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: http://scholarsfonts.net Instrument Sans Font Copyright 2022 The Instrument Sans Project Authors. License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/Instrument/instrument-sans Inter Font Copyright 2020 The Inter Project Authors. License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/rsms/inter Jost Font Copyright 2020 The Jost Project Authors. License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/indestructible-type/Jost === Images === License: CC0 https://creativecommons.org/publicdomain/zero/1.0/ museum.webp - https://www.rawpixel.com/image/3297419/free-photo-image-interior-hallway-architecture tourist-and-building.webp - https://www.rawpixel.com/image/5928004/photo-image-public-domain-hand-person building-exterior.webp - https://www.rawpixel.com/image/430335/free-photo-image-architecture-building-roof windows.webp - https://www.rawpixel.com/image/3286615/free-photo-image-texture-architecture-building abstract-geometric-art.webp - https://www.rawpixel.com/image/3283970/free-photo-image-pattern-artwork-abstract angular-roof.webp - https://www.rawpixel.com/image/3289063/free-photo-image-architectural-detail-architecture art-gallery.webp - https://www.rawpixel.com/image/3286187/free-photo-image-person-stairs-architecture green-staircase.webp - https://www.rawpixel.com/image/430558/free-photo-image-abstract-architecture-art-public-domain hotel-facade.webp - https://www.rawpixel.com/image/3286725/free-photo-image-black-and-white-background-photos License: UNICODE LICENSE V3 https://www.unicode.org/license.txt icon-message.webp functions.php 0000777 00000012655 15251200642 0007302 0 ustar 00 <?php /** * Twenty Twenty-Four functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package Twenty Twenty-Four * @since Twenty Twenty-Four 1.0 */ /** * Register block styles. */ if ( ! function_exists( 'twentytwentyfour_block_styles' ) ) : /** * Registers custom block styles. * * @since Twenty Twenty-Four 1.0 * @return void */ function twentytwentyfour_block_styles() { register_block_style( 'core/details', array( 'name' => 'arrow-icon-details', 'label' => __( 'Arrow icon', 'twentytwentyfour' ), /* * Styles for the custom Arrow icon style of the Details block */ 'inline_style' => ' .is-style-arrow-icon-details { padding-top: var(--wp--preset--spacing--10); padding-bottom: var(--wp--preset--spacing--10); } .is-style-arrow-icon-details summary { list-style-type: "\2193\00a0\00a0\00a0"; } .is-style-arrow-icon-details[open]>summary { list-style-type: "\2192\00a0\00a0\00a0"; }', ) ); register_block_style( 'core/post-terms', array( 'name' => 'pill', 'label' => __( 'Pill', 'twentytwentyfour' ), /* * Styles variation for post terms * https://github.com/WordPress/gutenberg/issues/24956 */ 'inline_style' => ' .is-style-pill a, .is-style-pill span:not([class], [data-rich-text-placeholder]) { display: inline-block; background-color: var(--wp--preset--color--base-2); padding: 0.375rem 0.875rem; border-radius: var(--wp--preset--spacing--20); } .is-style-pill a:hover { background-color: var(--wp--preset--color--contrast-3); }', ) ); register_block_style( 'core/list', array( 'name' => 'checkmark-list', 'label' => __( 'Checkmark', 'twentytwentyfour' ), /* * Styles for the custom checkmark list block style * https://github.com/WordPress/gutenberg/issues/51480 */ 'inline_style' => ' ul.is-style-checkmark-list { list-style-type: "\2713"; } ul.is-style-checkmark-list li { padding-inline-start: 1ch; }', ) ); register_block_style( 'core/navigation-link', array( 'name' => 'arrow-link', 'label' => __( 'With arrow', 'twentytwentyfour' ), /* * Styles for the custom arrow nav link block style */ 'inline_style' => ' .is-style-arrow-link .wp-block-navigation-item__label:after { content: "\2197"; padding-inline-start: 0.25rem; vertical-align: middle; text-decoration: none; display: inline-block; }', ) ); register_block_style( 'core/heading', array( 'name' => 'asterisk', 'label' => __( 'With asterisk', 'twentytwentyfour' ), 'inline_style' => " .is-style-asterisk:before { content: ''; width: 1.5rem; height: 3rem; background: var(--wp--preset--color--contrast-2, currentColor); clip-path: path('M11.93.684v8.039l5.633-5.633 1.216 1.23-5.66 5.66h8.04v1.737H13.2l5.701 5.701-1.23 1.23-5.742-5.742V21h-1.737v-8.094l-5.77 5.77-1.23-1.217 5.743-5.742H.842V9.98h8.162l-5.701-5.7 1.23-1.231 5.66 5.66V.684h1.737Z'); display: block; } /* Hide the asterisk if the heading has no content, to avoid using empty headings to display the asterisk only, which is an A11Y issue */ .is-style-asterisk:empty:before { content: none; } .is-style-asterisk:-moz-only-whitespace:before { content: none; } .is-style-asterisk.has-text-align-center:before { margin: 0 auto; } .is-style-asterisk.has-text-align-right:before { margin-left: auto; } .rtl .is-style-asterisk.has-text-align-left:before { margin-right: auto; }", ) ); } endif; add_action( 'init', 'twentytwentyfour_block_styles' ); /** * Enqueue block stylesheets. */ if ( ! function_exists( 'twentytwentyfour_block_stylesheets' ) ) : /** * Enqueues custom block stylesheets. * * @since Twenty Twenty-Four 1.0 * @return void */ function twentytwentyfour_block_stylesheets() { /** * The wp_enqueue_block_style() function allows us to enqueue a stylesheet * for a specific block. These will only get loaded when the block is rendered * (both in the editor and on the front end), improving performance * and reducing the amount of data requested by visitors. * * See https://make.wordpress.org/core/2021/12/15/using-multiple-stylesheets-per-block/ for more info. */ wp_enqueue_block_style( 'core/button', array( 'handle' => 'twentytwentyfour-button-style-outline', 'src' => get_parent_theme_file_uri( 'assets/css/button-outline.css' ), 'ver' => wp_get_theme( get_template() )->get( 'Version' ), 'path' => get_parent_theme_file_path( 'assets/css/button-outline.css' ), ) ); } endif; add_action( 'init', 'twentytwentyfour_block_stylesheets' ); /** * Register pattern categories. */ if ( ! function_exists( 'twentytwentyfour_pattern_categories' ) ) : /** * Registers pattern categories. * * @since Twenty Twenty-Four 1.0 * @return void */ function twentytwentyfour_pattern_categories() { register_block_pattern_category( 'twentytwentyfour_page', array( 'label' => _x( 'Pages', 'Block pattern category', 'twentytwentyfour' ), 'description' => __( 'A collection of full page layouts.', 'twentytwentyfour' ), ) ); } endif; add_action( 'init', 'twentytwentyfour_pattern_categories' ); assets/fonts/cardo/LICENSE.txt 0000777 00000010424 15251200642 0012117 0 ustar 00 Copyright (c) 2002-2011, David J. Perry (hospes02@scholarsfonts.net) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. assets/fonts/cardo/cardo_normal_400.woff2 0000777 00000435214 15251200642 0014274 0 ustar 00 wOF2 :� � :- ��(�|` � ��d��A�` 6$�\ �j��j[�����`�1����9F��R��<�?�l��c�>ݵ �%�B��3�tsF�£�����������d!�lvm�JkK���Hh�ro�r��T'���혐���G1�#���G%���� ��T��K��*��7�T��T�O�N?��k�a���-v��p���i�]�z��b�� �^�V�v5���ʗW����.�P�7�Y}k���2�WHU�5�A�qE���vq/{a�X��#����=/��&�\�m+�� ��؇�K�w�j���c�n5��{yZa�SgmkNA1%������Njk����Q�}�9x�t����[���ۄ�ح,�y��'����Z�ɰ��Z.�\�aӥ�dlʣ�4j�))ޔ_Jw.M�ۧ2)��H�Y؈���4���E�½�U�jo��Ix�Q�b(&q��{�E���ꔇ�K>�h]����j9L�{+�m��w >(�^) 4�� ���&)IG��=�,��'��ک�N1�if����d���"�zjT�Ҹ;���l������~�"p �1b��G8�-�pOK�o�T�mF������G�opdk�ÕH�{?�n�(�g��=��k�O���fV�0�����~����m\"�bg1���pZ:n �h��fl�z}�F[��l����XJA���}%����9g��R��RJ���Pj������RR�H���s�9#5�QF�?sΞ3Rm�n:�/�����d�K`2DMGY����#^�ڧms���><����|3�=�a�� Y�"jǂ����i�Xh�n�p�m�M�>�Y��h��-;�DdսofW��A(<�BH�Gԗr���y�����aY�MLLLu?�_>|$���s�I��doTn���"� �JJ6�G��hT`� �mJz�7@sk�5#jGȂю5G����<��@x$ZZ���IZ`"Q��O��a�ܬ�,�Һٴ�}�64�a餳�45ٰb I�'h��bY숥�uҺ� K�;IW�]�>.����M���MHiA�N?��X+�� ;��Bp��B��0x�1>�e�RѨ�T�� ��z�G�N]f�����"!�Y �d{�2���H�}�}1AD�\0 ��Og:�dJRC6���,�i�� )"�7��!���n�@��E���bq�xϡc@(~���f)I��_�����6%[kQ�1��!0��G�����Jr��q%t���Z=�^�S����u>~�g��s�j Hu��8V�R������-�2�soh�ܛ�}����jP�u�R_�R(sg"+@Bx�Żeb���j�x�4B#y�������[hkm����vV�q�^������y���_�qa2f����@��w�oߙY��X $�Y�`lir�6����?����c�-�R��0�t�0�σ B!�[�=͆tlqySk4�n'f+~��@J�H�R!S2�h(T�9�&^=���)mqɳ���g���h��lj�-�R�R�pp ���?�{�qpT ((F"`!* ؍�ӭ�M]��r�ιj��c�?���'܀�.�̩� ��X!9�t��i��퐚9��4�@c|QaH? z3~��O��ݙ�l�H�����*a;�m^�5s�K��;��+�n�1|�r���G�^ߛ��ɼQ.�&�0��t}��".�L!� �. $kWs_N�}�[��� �,92�ȉ�t`�ٙ,0�>��xa�:�M}����u'�{S��% �|8G��Gڧ���!Nqu�����1� I)ҩ ��R��n�pW�����`Z��_-�"�A,������*���b�����N �B�Q2�N$ p[����ۢ��j�9��Ucãk(�-A��h�@��t���B$�M�+�����o���|ٍ�t�B�.VI�b�Q�7?G�ȉk Mi��LS�� �����(�X���CpNǿCPl�r���뽿���k����ط��1'Sq�Ȋ�G2����^.�=%��ٚ���w�����:!��dxQ��rO�z�B��1]�Q)�"��'�X����7$O�JS :�¬ۃ��^- ��qN��J��{_�X��9yb�9��D���: t���F�{���j��G�_5�j�5k���XrL���m�>¿��_E���$��n���@lC�2 )H��، ۈlK����N�k�͌�A����l�h}fl�&���ٞ�{\���+kcm�Թ��w�dL������ٷ�ݤ[kT}�A���ք� X�` ��9�_P����!?�����8��W��ҝ_3���v��e���\��.H�� m�� ��t� %�4����r2c{Z��n�J���=��ײk�.�b�]�b�6�ݟ��i]%dπq.;x*�^�����x[+ߒ�H��>8�Di^RD�n��ڗ��K��KȀI��,��82��+L�&�%��B�c���=��q�V����X��6��t߽�u�=K)���ܓ�M�`�UYY���I8��߾��yb�ۻl�(�[��ݻp�?�Q��� =�i�-� �>)���D����i���������`\R����pVQ��D9�C��t��3���K8>(ĴP� ��*�\�(s�������b�%��B��/ ����G;B�����=��u�V�����N��K������(�>d�v� W���IW�����W?�;���_�Yw��do���)j�7�of����qJ�ĸ+q����G��M��^�7�Zpw@U�n%FbQ(� ��iJ��k�I�,�Wv�MsJ�Ԋdt�H6Ji$�?�����g�SK�Q+7*B�!�,�<�q�ࡺ=��K��Z0�g��a�3&�{��d�� b��l���=�i��D���}�F���iٽ���r$IF��IF���s�)Tf�FB�4�!�����uH�o��U ����<�b�����~��Z�n\��k�Xc��8o�m2�0�V��؏CLӹ$<L%>�O�.�Yb��̰$ho�^�?ƴ��7ɕR�-�F#( 3��p���}���Vl�v�@ $��bN��b�t��[��:@D��q����C�L�8��g��DY�It�rjmUP:3{u=�f��IDD$)����_��=�U�TKM5UU�{߿���3��P�AP:�?�N(S���N��$qa��x��+�=Lv�"mo* �i3e&��a��v ή�i7�[x�|�����b�F��#�|�$3_��i��{��x�Bm��W�nj��O�2�2��&a=~&���'�Ը�Aoߙ���P�A�Lh �ܕECV� ����ϟ'fT�~��u*����V-�5�m�v��[�����X�H�**�& �0d0�k� ~�I� ��TI��s�J<�{�G^��b#��;�a3�I������\��Y�eϗ������������ �n�{5�� exE�?|;;W���?��� )�gC��3�� (t�%�$ ��n�I�����Eww��|- �gp���\̠@� �-�$��=�p� BF��&606�L��xw�� HMX�&�5�l���Z�@��|ڂ\��V����k�\(g��^T�o|�H�-��|�=ĸ�<�Cj���*S� �����|�Q��@��4w+�C��`cA��S��.Lj/`ø;�k(������j��T�J��k� 4���2���º;����1EK1�a�(�V���%P������-���0�&;��� ��<�b�&��5��X�l�2���S<�L�C�[ 0�ǖ�2��z�U3c&#j>C7���N�����c6�c]�mݥ�-��.�M��2�l��P�;�Y�X�� $7OE�!��26ƉNr2k:�-�,ՙ@�a�\c�&"�F��3f���CI%�݄7(�-��^��Rz݆O*���MYX�/OK�4��W!���q�m,�"�71c��rs�Ո���_K wF�4��`�'�Y���] ������a�,7g�1�i\{DV �Ų���E�8�p�)�X+g� �c�cv}v%�=��h?����W&4�����X'U���, *�[ �э���ҁ��N��3�[��%P�pf_&=�;���� s=�ԖɏHٞ͞n-�k*lɝ���r��mҋ�ooX���C�!u3Nէ��e��䰌���Ywjޮ����˹P/��3��$��SKuF4�3>$����]9)�Yԛ: 5�l�C��o,�W�4�8�%�;�\��{7�������Z��/۹co���'����ΟA>����Gl��rjN"n�sLll H�0��#\�5�֩�n��k�Z��y�)��y#���_��~���x��!�_������U��cα�|�''[��ֈi����j1σQs���ҩ��8��}�YkZ�*Q����4�N���)*M��/��'��2]4s*7��E.;븃v3�� ��V�F���ߙĒ�й��g���>���sp�2d�k!�S����C4K�Ek؛TK�5L���H@7ø[�RG���V)T�� ��)�9���ڣ1�a.�|擴�C}}����gJ1(�,�t[]�y�{��g��oy̨��c��܄Z�PE)��:���a�T{�'��5�iF�G"p��1K�+�u�X��j�˴g�� ow,g%V6�C�ɐ�n�Q��츧��L^$�^�QO��%���&g�<�}��T�Ȼ���д��gE((�F�y3�4q�* I�i�;��?���������t����K#�{j a�SW�_�2����舿l��-j{ݕ���eΖkV�Ec�p���s��観>���� ^�VT�燊?,�Ӝ��8�i�w���H��{�T��7l�gA ��g�a�_�* ����*�y/�R�R��?� ��ݾ����|R����T���D��M!8WY�)��ӰH�5y��g����l�V��I��� ��_h�$�� ^;>�Q�Pfx7 �v~��ّ�g5��B�B��b�͔"�]���a�]�f � ��Ʃ0y��h��w(���"�G�����\�F��ʹ�C�(��e�~Fq `�eU��(�>ee}�*B�V)��tU���VN��_�xouN����\�j]�*���Xū����J��*��J��*��*��2)��Y)���`��\����E���uߞ��Q�ڽ�����kb��yw��~bO܉? �־�K�)����3�v�e���Lȓ+�l�L2N�d��C�{9L4�mh�IMR�e�2_��]���V8�x������e%�[�����~� ��lf �a]��?��ҽ�tǁ@�8��̏%D��߾��(��7)�����C:{����vc�<��Po�H�rX�i_���D��e�?��8�3sg����)�����(Ü�`�)���:�7�IU�TaE��tRI�ŧh���FF`Xj�{�|ٖH3�"�c�<��Q/��J��f <v<�H��)�6����_-������5<�s�ʍ;9B��r��1D$NSPr$�D��8�Ib�9��J�.Cf��P�eP�*�pF��,BT�P��E�hNd �r�����7�|k�H�.C���b�Ӆ@���? LT��>��ʔ�P�D��T�8(7��uK����+P�-: BTUJ���R{訯�p�Xq�I%�apU�|T��D�hQH�/iYB�C���,�3�^��*KH�L ���c�f%`w<p�:�H�u�g�ǐaA��l71ziVn��Z�l�����w�Ә�UD/�A�Pa��p�\�⫫����_ �; �7j�+|�Đ�����Ͼ(r�H?�6j�G�y� �d ����`�4�N%K����_�?�� Pb %#��� �Ս�u9��[1�W�7o���QG� �@��~�Z�j�;�>K�����oXh�9˙6�>��FktlJ���Kj��XJO��8���U�\��^�]���뺳۫�v�V�4 ��� �K���l��.en.v͙��t�v\��k8�\�����жF4"�;Xs�E�������= �i�@��Z����b?�[���XV"�dR������h���)H!�m��>B�WW`����w�����g^�b�?��@����;8:9��b�8<�H�PitF�g1H�8_�X��h)~��.Z�Xq�%H����z魏���o��,�C ��A���{�ۜ�� �^|�@M�2�� �����Y�7�?~��9Cۭ�P���I�X�k#���<��H�O��o(1�����[.��"�B�,�b.�� 4 �$�7i�j� �IsS�v쾮�*!���5V�V�3U�EX��n2�*9��w����~�>o ~Ii'y�#w�Bo����2�y_�w�t�;l ���zs��Ş�=�i��{ �vb�渋�iZu받.C��b���6�#g�r����\Ѷ��<�P�'6Q+Q�LyuY�R�jZ5jՕ�z 5i��?��'{��~t�6�pG������F���e��]f�F3���^h�b���1�E�ڋy?�$� t 4��I��D"��HTL��}��d'BMY"�̽o։"��Й��2ç�9��D��W�9�i����B���@���8�=-�w�6��N���_�� �����!X��p�|��^�tt� B��F38֮<�/]���51;��}�?5�rZ�Õ3���'�<_2�l'G7�1�~�A��LK^��fI�"b��" hT�α�"�,������ �r��A����ߵ��JU�_uL_m�{������_��v��g�x��z,�-(G�"HHQ����)��T=�M��)�KW9+�*��,:U�Ų�zV��1$G�1y�k���:%���+���(l��͆8,�))In�ʏ�7��.�yP^��d��� u'[C�vA3�Ƀ^)R�)R��!� 8�Y�&�6JThP�C�m�,�eǀ#7F<�0��Og�b�I��RM�ѮC�n=�����M6K��n���/� ����s����ڹ��zP^0F���u�B�nW�{���W��-�v:��1�y�涋�z/�'_$���N�Oܢ�J'�Z�r�ƃ��<�5�wh�> �L���j7lڌ5뭷n�� K�l�lK�n�Lj�lӤ�a��Ќ�1e�'V~s��+Wx�p�R�������;����nSY�E�~7��_�" I�844IV�H�cG�;2�x��#+@ 9�D�vF�x���A0 m�,���Rr�uX+�m4P�J�&=z�2dǂ]6l�1o��.����ɄI�,r��FnvZ�n��<v��5k��r������C�{�U`p�2u��X�� !�z�$AAI��E 7�Ry�N*A�CVez�l�|��j��-��(H�:������U���Iu��ZW-$����b�Q'.���n�a�]��d�L�����KQ��Ch��K�!:��t�P�G�>:��2bĈ 3Ƃ3sM4s��Y+S��/����N�n���s@G�h�'[�11�ca����1^���i��C�._&L�1eʟW|� 肋B��G��B�(�B%�jծ�������g&��Q�A7�ƌ���?�5�Ǐ_i���ݣJ�}f�<`��C�=B��17n�x��/T~�<CF�,R����k�"E�L�:,Z�3/�_<^���8��D��$N\E��P��-U��Ѥ�=z>�3� �>DDl�d�^7'N��p1�Ϯ�jT��hb�'θ4�&Ԩ5e܄/�����`/^s��'E��E�d-ABZ�B� -:tl���d��f~�goO�`����S�|�*t�T�C5j���Ǻt��[�����8F�bCG�` ;�-��������ac @�8(,,!ڴ���%̄ 8S�DX�"ʆ-1N\I��!��!���!�X1ժ�Ѩ��f-�^z �G�1c�L��5c�2�31�q3�������&- -N��]�RLYJs䨀�E�7e<Tx�R��O Y�E5D��DA�/^[��2�ܒ��A���bbf���`>��&�5E��i��@C��L�M�iѵ����Lm���� Å+����D�N#��8�d�4i���2ի��U�]t�ӣǡ>��vb܄S�֜#�O��f�f��2 ��U�*_�w�}Ѝ�G�tt�ƍk3iR�i�:��9��|:oi��˭~��!,{�w���mף���A�0��׆�}�� �hu�Mx���fĴ_�崌l���Ǡ�8<�?~!��B���%*�U T�U��f��R��.U���;:��@�c��3fFX���-7c<`2s?��S�A��]l�q��O�|��#P�c88'��N7J�'��h�błI�AX�"&,�s��K�Ű�@�A��qÓ�JA��y�o����``>Є�.��0�D�gpHt�}��v�yp4�H�+[1��(�6F͔�����Y��H�� /k�x;�<�|��j ���n0a"�%K��$H<�BѢm v��Ln���g�/�J��#Y��+�Je$�9X�er�(T�R�b�ʔ�V��I�j�<~�ﳙ�z[��ࠃ�x੦�;�s��c}ә�R�|�TF� �� ��&F�w(��x�w�������� ;\G���0��"�@E��jv@9gd�`���z,2��D6CX5��$��������7�Cbbx�{� � . �N�Dq�"��E|PP�``�h�$B�CDf,(�b͑$�Ը�,� sW\c���ų�(��ٜ���m���U���rU�չ/�#O�x�p�^���kWu��#n��"͌�f-ȳlE�Mwl�Uj�o����@�ƥ��G�D=!E �EϠ����A�KZ�^3D������ �/^��5�k�D��U�x�%J6#C�9y�(p۪b�6�+��Ƕ��������G,=��6b� � �f2�&�y8�X��a�_~���������A�C��(^�ޤ��3T�f�4���q=c�]u=�د�r��l��m��}�� d*�#��^�E��#{�}�Zr 9�� ��rY#{�"bl�}96��9e!c�D��6"��B�r�\�H@���%�`�0 ( �@3@F��`-t{�O�D�^Dem�����'�����僄.R�v�T��~��XPF=c,�����7)m��Mv�9�[y�MZU�/U���\�E�2�����T'��d�J��ηT������.t��������Vw�O���;98� ��+8|^�b<�T�"�d�}�)HG�9��a���� ڗW��]�+nl�W�V��M�����r3]�M��=(;N\`�P�H�x�L�'��Vh�X:8�Un^�n�{����u�M\E0�> �`a�&R �G�e����>q��1�B�B{���;)� Vl�����ٻ��9���UQ�횦dO�:u��KJ�**m�2˩�m���˃��˛����k���3��z� 7=0DujQ�J�j�&�AeL0 �������϶��Z�l�9�����ܧ��یm����v�v/uX�!F�-(.*�L���%�lFR�Xfp�M�a��t0�9��0���" xЅ ��s�5��6�q#B^ǐ����h�DJ�dKY�fHxR0���=G��6V��z�e����d!�ۿU� ��E��L!oZ&{�5�c(���P>kf�H�(ˀ%����+#/û�r5��r\. @�j�`� o ���@ �<�2��Q2���ތ�����j�_�sp]�`���MHw���v�U� �ȅI����#�c�l�J�jX� 3Y�Lř�3+�Ev�G��F��k��D��w����R�MS5 59�[-Аz��'�äzn-�������5,�.t.�4�7���_2I�-oq�K�K��U�qfb��+�G�*��q�c��C�Z<�jg�<Sk �f�F<��<J:S���TJ�?,F-��1580�Fk_��nvn>�|�U\��r����EO8�F��6\��H��2:��nֲ�c������7��$Β�53F��Z����C�����~���<tk>�Ͼ�i��6t)^I����;����ۦ.B��|��v��C��y�"�i��Z�z��U� F~�B��B$VG�ȗ|�Cnr�3����������k黶�k�"��2I�曯l d�}ŗ ���ˇ7/�<8�qa���� ��_�����.�"�*Q�T$�w� ܫ�/`�e��L߫sݩ���ɓŋ-j���*Y'4�e,��_�s{N��i��z��N�V��[��EuQ�A�/�k�i5�C�|ѧ�k����>)."���(�����9g]\����e =�t�S�R$V�0!D�x8p<��u��������/^8{�ı���Ο��O�HU����~k��T_[S�9i�!=���Zh.����J[)����i)��[e)a��C O�|��$XaRI����#- ���x �q�S�1��� ��@U���O7t�˘~���4\ԗ��w�76�ו���;�yO{����O��q����~\�f���+�/[�A�Xh�ʑ���������`a�ؾ�����5+���6kT�V�*�|��F�[�����Le�qt٬�g���A�~SreH�&U���^���1�����h?�S��%Jo(�_���_���=h��Cz�4�{hO�G�?�+p��o���=� L�AR^�w8���� ���D䋁c����@�ccn'p�j�>C�XF㬗�8�S-Q Ha<1 ca���)� ���������te� b5'��(���xҠ,�Rk.�]�D6�WBL:zG]mf}�#�y�мþ�����j�@�A�#.J ���Q�]�D@��(�P�h�2U���k?��_��Q0�D�I�R��G����hVNȹq�����DB������X��T��� 4*S&�3�${�J��ZM�x�VP�Hr\|���zK�Ǵ)�S $�Z^rpj]�-�N�3��S���5���q=�옶�O�Ӕ*�Bu�/ǫ� !���<y��%D��lN���/�|��=8�! �6��?�MxLp*.h�I�� �=�BN*�f*����� r�i9�wo:&��P��v�d��$Lu�e�}Q[X�zl���<�ݻ7�h��%�Ԗ `N�C, ����>���~ �����f,�=T"���Ӌ�d̘��Zz�lqv��'�z���i���(S�Z��@Ϛ�82����b�(�aw��M������z��<��0>I@S�@��Y�:P�`�ܲ �`��q����`I�2��Aa�<��C�~����u�8{����Eu�� ��Um��_,l�B�q{�щ�'xn��5���Ck!��_��/�g)�� � 2��Gv|"�k�]{�H0��Tf ��,�R�4\0�>)M�P��eEA�}�* *X�dBN0W��#w��˲7��Ϯ:�~Q oެ�M=(��}���*��#�q�<���wD$n�C��+�b��P�䀥 ���� � G�g�;����)�X��|�YE�ՋSγ�DUR�{YAI*�g�� ګ2I[�0в�~H�2b���ٳ�,]���p���`p����mDb������wh[�EZ H�l��w�^�!-�����E��gJ����n^�h�P����� i-'Y���}[�?�B�Ja������P�mv�U5)ؤhu�#b����c�$;�����J�ñ�mɬ��zg�<�y�'r����jCJ�`ih��k�:}��˙i�xҚnv��g�=�6�N�h�c̆��j3��_��Xߧ��Œ-��h�! z���!�Wo�mzs5||��H�㱚\��6w��`5�ftsIL�9�4�>8� ����RɖmU�Ŕ�T�}:�����LN�E�g�=Yz�����(�b���t9����� �j�cm5kj6��Ú����wN���D=�':��_EѶ���8�℈Ab�7�#�9�-X�� Q����ȷ+D�^%e�I��8�5�y��l�b��� 8NKm�{�[�q�h��kD���F:r�e�Z�M�S�n˶(�ަ�J��;�?�TIL'��Z��h^��BZ�%�GJ�)�����v�'rP�;M��e��qԤ���:e�y�g���6r& �R�A�A�(7����05�n��8 ���� �r�5�߹��B�l �J�_H��iA��ݽ]U/]� ����� I P1H)}!�̫bP���6{m���u���<�Y_�HRL�FeIJ�E"W&8��|c�����(�V����d�J��}a���A`]]p��#����o��p�vm}G��Ru�V/ܫS�5ov���0���$"_���f���YЖd�P��!HJ�t�Dy��R���\.d��DnB�u�Z�HJ���b�a@)02/A5���f4�O 5 ���C�Y�M=ݦ-����5:fР&�@s��%���(% ?�t!Ιp��D�(L�y�c�K�J�\��a��}��ƇNB��� #%`�V�aBZl�{#s�(�����Ō�݆ 4�����O���I#y�vc�͝�4Gm�Kg}H�6��W����#��O7���{����O^~��A��L�����}��뿑�5e,F��Ϛ�G#�"�|�Ƴ��ᓷ�ic^� qD�\����9�f&����W��O߿^��8}rs���T�O� �w_����� ьz4����5�GON�l0�4^��<O�����|:(`���7�?�zv0���'�of���h�VF�xz"�����sKA/����ZM����hCtH��czd��=��;=���O�����})˦JT�-&��'/�ûղ��f�ZN��H���,��y�Cu(���L��r�(�X_^^���sE�u˗�,�4j��'�-���A��t��44��uk�.���S�(��-�D�,K�^d���r "��D������ͰQ�"m����5��G�4=����T��yI�����D�R�2e42���I�5�I�G6}msp����z�ڧ����j���Ϋ߾w�w��wCJu8��x�%��uɪ�Y�:�����b�2L1��%�ǕʚC�'> �b�f�����&\|u�5�fk�`��5�W���}6<o���3�W�e����JxA)j� �A�� �2鴊!PZ�8Gw*�|Q[*Ԇ��D ���#�����ꅾ�[��M*wi�t��P�3��i'�& �7��W&��?B{��O*�2��Ƶ�GuE:��)��mpv�=�#�)U6�5iX�B��ؔ�k�9۽��)���u�,� * �7a�+x|�f��o����я-�|]���<-��T�:��pK\�zқЉP949�N#��)����5������㠡\��r�m#Ś ��+pX&�PtQ�X���}�G]l��]Ո���WW�{��]r}�a��Įs�F�L�z��|>s�f.&��+�uE+�]|�EnI뼫 ��)��VZ�7bt�|8����Xx�WU�w��o ��ώCy�E��%��1rG��9����$�"c�8"��Q�Ym�r� v�[ r.%"�xC��u�c1qו1iE��~�^e�8J R�4�r� ��p��RVQ�0��Æ���#��r+�Ƃ��%�'+��ô+�P��b�9 jIy��Xk�y�2���eZU ����:��H8d����h���T�w��Pr�t-�2�_�.�i�̖�Rߤ�nm��Г lG��������J >��� �<�c��&�q�{;�^��Tʻ$���(r=���\�c杊}�\�B�U�O4^ƫ��)5���2�k�nH���R�,I.�X�� � � �x��� +Os��VA���O����LZ�Kl���P���>��qg͕��:s:�5d�ȭ����Ͽ�7?�(Ap P�[��H�5��6@ �L3��Src��D�"�eQkI�)���}є_7)�:��^��:�Cn�+l��<��X^lI�j�#zG�ug��rL�f8�W3�,�hpٲ��0�)VC1�����D�.L�F�p�����IU� F���D"���~����wm�=�1�07DZ7� ���H���Cʲ%���Z De 6���dC�M�۲��+�����Wk��-~PZ�a��H�8����X,�B�&Y�� *�P�ܞu�� ^��1%K�m�xe)ti6s~������&"�����b.� :i�#�7-���������_��Ƣ��oBTKi�a�:L�Y<���n_��n�>Dib����� �����lFU�D$��</T�ì��a;8��6�JRN�����4��a�)T����1�q'4�:?"��"L�'i=����7z�+v=γ)/�4��|����eošT8njJ�Yuq�Q8��Ȁ�Z��"�,���O=!!�&8AO�x !�� �êGOa�C",��-�Z��<E l�_b��"i���<q�?�Q�Sn#���(�:શ~��Wi�.�}�x�5~�����v� Q�z�yN<"�}]��ˋ�U�?�b�1~E���]�DA����-Q��c,� �gE��p�n��( fkS�3�Q�g~��Ę6u��PP�}�(��������,�� _���VO|:<��\��PbV�e��nQ��z��i��?Z�@��Cf^Ma����wv���{,N��A�4"�"�t��a��y�9�*�6�)�4oe��c r��~`���>wMR�F38��KKu�hz�ײ�=����lH(����dO��]/�?��j�љA�z�8��¶Y�eC���39=�4�r�fIZO3ʒ�X?C�(� �T����4��<{�тy�6��Z\��j=m:u,s��V+�K�n �}A�Lc8�^s���e�tUuJ�Vc]�Z�Y���,���z@pp;nq�����V����٤�@Ҙ�19h�ƀ��Ơ��z��3��A��>���E�A�Ӫ*�FE�h�,��)ݦ�}���',��6-�N��Q����ѽsQ� �6����ߌc<�틡� ��+��WS�y3W�*c�� �[ځg�2A"H����I�@,43 Y=&��R͇��F$j!a�4�>�cIߌ��p,�w6�M�O{#���OZ�f�`�����C��5_T�y��T���,��n����J��wF;���m҇��)Y��?�� k<��ܠ;ū� �%����_,� 59�:,I)���&!���`��D�T�Go?�F�[ވ &�O�[��;z��� ���/)i�tlA�7a�=f�û:,J�4>�ͷ3n��YDR��HkkABS|�zX�$tp&Ib��3��ǛP��H�w +#M�QB�L�)��@NO<�$����� N5��k0% 6����V��|͏% ���+X"��)��?���1S���#�7�}W��-��>��L���ݷ(j7��'P�YJ=E���2'�S�[B� [��b�v��C�¬.B�ʠ�[���M@�u`6��:�W��}��t����/c #����%�K��v@Ç��"��V��h���p�{�c Wz�/=�f ��B¾�o\�w����i]��Q�@!H: Q� � ��� ���r�dzl�_ ��M"����E F��>s���U��6fP�A��D4�����L'��ac2��>e���0�Z3p��.�=f��B�Upcf(a�g��`1 �Z`Gk��x3���q�NS �b��С�1�c�f d?�턷�6" DR��� �j�qm������L1�k�C��w�jo��Q@��J"�A�JB�]�bz#�(���:�4�\��`KqU�@i�71͈{֨��ѡ��d����u��wlZz���au�(��-L���=��e2wE,רO������6�b�;3�U֢���Q�G�/��3��f�M��u��J�� 8E�l� ��.��+֢ZA|d��碣#*�?z��3��#،�6�< ��i��z\q��"Y!��B/+ºEqW%7�/�N��� �ZF�����Q�O��%���x�~R��X6Ԩ��V��;8�#9Rg-�++{Ua��1���E�-'�N��^��!�:����Ɯ��.H�]SBG���M4�U�����I��/.c�r���o��~f�|�{j*�[@9����k��t|�������� n�j����FB���]�K `Sw�ĭ� �Œ�E"�F5ς�t$~���Z<�<>P�d�f]R�፹ʔ�8�|L̎��M^�����bʈ�c0�����}������'&�ZPEM�r:�#��'z,��$ ^I�C�)��I��5��Ea�Vd~ &Nq>զD"����K�j)5hG�@�nD ��|2D�t����\/�� �$81c �����WZ�CI�PL�Bү�;+���/�� �k��r��z=pj��Ak��r��Ӆ4�J�U�D�1���$7����R�\�צ�yL*lc�`�v"lj��q�-��/�R�M��B��Y�ьO�9�R��R����w�q����!����+6Iw�' zU�rlK��8]��{{ʹ5�F������;)X��Db˾���� ѡ����*`��Gh�߂*�0�8F�%e��)�$,B�H:V����3?�ܡ�/�L��{?t��-���~�{�����ʽȉ�,������z+P.s��u-�~����'�j}v���g�EyaF�;�L-o�n�h�(���J%��,!�O�����Is3܂� ܶ.�G[ڄ� �!������-�,ڎS��$)��1��H�:%���FQM$T����ϗ�;���j��m�7�:��uN���A1_o��N��]�2zF#� �ZB��](YC��5�;vʲ�D)o��*<���ST�Y����S��K|�䅳��/��7���%�f�xY�=A-���5�4{%�<5n=B�l�{a$�Dt��!�>-D�e�P) K9f!�]��+�U� �P��[�d�n�gm����C��S+�e��5n�Dҗ�V�Q��[�A��/��$�G�v�dK�N��,3b���c�jw1�@�T&��aL��,�d���wo�ԋ�,kD�b�C9�-��P�$�B&�c�|X�l@�m�+v��> X���~�>�E�]�9��Lṗ�p�uL&fդ �y�cl�8S����Kf���<�CxN��a����U@�ނ�bnr����R��s,��Q��\�Ֆ����4`0���&��^�ǪKw��}.�9��Ԩ�Z�&��*j�QÞ�Z�� �Z�=��'6V����P�3a�m5�ЫZo!��9FZ� "�����$؝Ur�s�� ����3�?(�lB��+T��:7W�%Tt��R ���U_A�Н�ɭ��M�kC�;#��*.6I��l�V4S��ϫw`��3�QS���%�pǛT�����j8��r�P�z4�J^CZ��P�aɜl!���zo�z�*��r���@/�]1�)"��k|9�&��Ǹ6|>Co ;�ٯ�%4�����TI�H[�� w5�CT�bt�Z�g��L��Ur��XhX[Ia��uy~�j⒞9��5�͆�6e]�{���e^>}��m�b�6v��e�O{�wo� ��@qYݥwP])���&��|Yw���f�:�"��CC�)� @�}x��.r���pӻfx�vcQ���B �r�����T�z��B�8�0x�*�����u�� %��U�ғ}/0D:z;1q�f��-�`�KXG���ۨT?S�͵Q8+`?4ԃ`A����9�|���Z7�߱��Mm��ʼK�&� k��\H$W��~�8;}�"�w�C+�\��7��pU6u�Z=oH �Rቶ{q�8ǹ��#����i�A�w�?����֠q�9�W4S���姰�E!��4���~O>M%�K��Q�r>��4}�\�R�Df�<b+�D��5���c<��}�_�j��� ��s"��L`P봶�b�x߬�QF�7 �R�ҊC?[�BU�ӭ��β匸gddS���6`�C5���qq����q"0pӕ?� \06�Q�dHk�g<�Y�8G�Kwvd�q�*˖vtx�m�m��^����Ϸ�^�rI��[�ǩ|�{��5��ԧ���X��C�dΗ]���E���|��P���R��_hXt�F�Wk��6�L�j�˔�f[�M����US��5 �{��%"�i�꽢ѿ�c�}��W'WJ�O�Zp���Xa@a�F �x[�j144�J�mi�w����?`/����=�iEu��K�4� ���t�K��q����x/�Q^�\�'G����}Ȕ�2/n�i�(>>0�x��:a�N2'�w00M�'��#UWqlbIi_qw�0�?�$} ��W����D[�'J��3=�%� _�P���u��[��c�/�/QA�;��h�EH߆~�yz�ɱ�z��a[�c��M͐!n��=B�-xK�l ����8�%�m��Mi}���}�7�&l J��ϩ�̷�p����!����P;�����k�Buf�p/�z���-�!�l> W�p{�6}�t��W��%MX�t@h}h�!���*p�� 7-��4]�� Cy��}8����� �f�#G�Yغ���X�Ș�9� |�z�]ǧ��!��ħ54�t]�b�,��k��<�̐T���6Qz#Q�~,��-j��|x<\�-�) �a,�#$Sv�E����RG��>݇�b;pTu�[hA�6�����^J�:������=K�n�HFc�M�8D�ē $ɡ+�A-ZR &hk�3S c��)��"ݚd���/{9Ja�'�B�`r1 Q��@�{�Nk�a3�1Y ?���Q=GP����[Q}X�'�P� �,��!}���NI��zp�^廒 m,�K��?)#��6����&�����1�d�Q@r�)Z��C9r3j���i�7�ov0�+ �q��Ƙk�Z�'����� ] ߒ�c`,�,I���\���{��� LU"��ʵ�6=B'�捞xIR�~��b�Q��4;�֢;C�t�M��@�(�F4�Oט��Q���&+��<eq�GV�}�!��5��E/Ri~�g)�n����` ��Y�>�#� ���_�䒟���9����+�<�v��LI�˿�V�P)°g�0&����̋�t���hJsAŬ�"���n?�+N6:9cTE�P���b�}��% �j�V���S<p��2���>��'��f�����K����ؖn��]�QT95ȟ7 �c�My� �<8f�}hT���L�;�צ�M���c��E�N��UE�G&\j�{���U�&⤳���u�Ή�8g� ��1TP7�\ �yzY?�*�k/S�{8���3��SMwAT�D���I�x��/����o��z��\�;�h% �j�`]=,�� N�K�to����x\ҭѝ )Q�|�ĩ)Ā�%c`�/x�W��X%�8�'~0/sX~$�k6Pe��Td��|���~;ei��YD�/-�%5��>=�E���M 8�q�%ȹ�C�n��[���oF��3sg�X�1�BAEb�D����vlq�:̄�2�'���*��I��"���8��FL�<�Me<3"�i� ϴZ5Y�5Y ��$"v�N�e�_�O�oJK4�i<�����1�i��Q�4X�P<#���"M�)���c��ӻ @8t��iN�Y�=ќ���������b`��FL��Қ��CW��X����g(CdįXa�aa�JXxͼ�9:a�����u��پ�c��d�����+�ƴ|vU���S��R�itE�*�u �6�j5Q �UG1i���ZR���z*�Z�v�1[:��5 (l�5ԌB+�S }vZ���L��f�4�$�`\M�^�2�+�Q�|�a����E9 ��qi\W�{[y�Ѳ��>x�� xMS�Xȷ�����`�Ix ��TL��֥K]�d��pK��EG��Eȑ)��RL�7)�1T{��d���p"49_�\��kQѕe�Z����� �bF&�~Hs��#Z��FUC׃"��5�}�5����VOz��*Z�d@��u'_hG�څ`����/�^��u���C3z�F�k<ǩP'�(I�]��,E�^��� '_(��^��ΐ�ГxWN/ �Bo�b!�gz�gE�d�\�F#d2~��{v��(R�����.2l���W=�"�a�/��I0 '�������h �uEy�&/e#�.s�뙯d� �v���ލ�EZ��?�܉ܱm���4�wyb�kF�6*�o�5=� Q�-�lJ,�� �34��3'�G&�/�ʞ�y����w�#�H��&