-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu-set.sh
379 lines (364 loc) · 33.8 KB
/
menu-set.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
#!/bin/bash
dateFromServer=$(curl -v --insecure --silent https://google.com/ 2>&1 | grep Date | sed -e 's/< Date: //')
biji=`date +"%Y-%m-%d" -d "$dateFromServer"`
###########- COLOR CODE -##############
colornow=$(cat /etc/squidvpn/theme/color.conf)
NC="\e[0m"
RED="\033[0;31m"
COLOR1="$(cat /etc/squidvpn/theme/$colornow | grep -w "TEXT" | cut -d: -f2|sed 's/ //g')"
COLBG1="$(cat /etc/squidvpn/theme/$colornow | grep -w "BG" | cut -d: -f2|sed 's/ //g')"
###########- END COLOR CODE -##########
BURIQ () {
curl -sS https://raw.githubusercontent.com/bracoli/wss/main/permission/ip > /root/tmp
data=( `cat /root/tmp | grep -E "^### " | awk '{print $2}'` )
for user in "${data[@]}"
do
exp=( `grep -E "^### $user" "/root/tmp" | awk '{print $3}'` )
d1=(`date -d "$exp" +%s`)
d2=(`date -d "$biji" +%s`)
exp2=$(( (d1 - d2) / 86400 ))
if [[ "$exp2" -le "0" ]]; then
echo $user > /etc/.$user.ini
else
rm -f /etc/.$user.ini > /dev/null 2>&1
fi
done
rm -f /root/tmp
}
MYIP=$(curl -sS ipv4.icanhazip.com)
Name=$(curl -sS https://raw.githubusercontent.com/bracoli/wss/main/permission/ip | grep $MYIP | awk '{print $2}')
echo $Name > /usr/local/etc/.$Name.ini
CekOne=$(cat /usr/local/etc/.$Name.ini)
Bloman () {
if [ -f "/etc/.$Name.ini" ]; then
CekTwo=$(cat /etc/.$Name.ini)
if [ "$CekOne" = "$CekTwo" ]; then
res="Expired"
fi
else
res="Permission Accepted..."
fi
}
PERMISSION () {
MYIP=$(curl -sS ipv4.icanhazip.com)
IZIN=$(curl -sS https://raw.githubusercontent.com/bracoli/wss/main/permission/ip | awk '{print $4}' | grep $MYIP)
if [ "$MYIP" = "$IZIN" ]; then
Bloman
else
res="Permission Denied!"
fi
BURIQ
}
red='\e[1;31m'
green='\e[1;32m'
NC='\e[0m'
green() { echo -e "\\033[32;1m${*}\\033[0m"; }
red() { echo -e "\\033[31;1m${*}\\033[0m"; }
PERMISSION
if [ -f /home/needupdate ]; then
red "Your script need to update first !"
exit 0
elif [ "$res" = "Permission Accepted..." ]; then
echo -ne
else
red "Permission Denied!"
exit 0
fi
function status(){
clear
cek=$(service ssh status | grep active | cut -d ' ' -f5)
if [ "$cek" = "active" ]; then
stat=-f5
else
stat=-f7
fi
cekray=`cat /root/log-install.txt | grep -ow "XRAY" | sort | uniq`
if [ "$cekray" = "XRAY" ]; then
rekk='xray'
becek='XRAY'
else
rekk='v2ray'
becek='V2RAY'
fi
ssh=$(service ssh status | grep active | cut -d ' ' $stat)
if [ "$ssh" = "active" ]; then
ressh="${green}ONLINE${NC}"
else
ressh="${red}OFFLINE${NC}"
fi
sshstunel=$(service stunnel4 status | grep active | cut -d ' ' $stat)
if [ "$sshstunel" = "active" ]; then
resst="${green}ONLINE${NC}"
else
resst="${red}OFFLINE${NC}"
fi
sshws=$(service ws-dropbear status | grep active | cut -d ' ' $stat)
if [ "$sshws" = "active" ]; then
rews="${green}ONLINE${NC}"
else
rews="${red}OFFLINE${NC}"
fi
sshws2=$(service ws-stunnel status | grep active | cut -d ' ' $stat)
if [ "$sshws2" = "active" ]; then
rews2="${green}ONLINE${NC}"
else
rews2="${red}OFFLINE${NC}"
fi
db=$(service dropbear status | grep active | cut -d ' ' $stat)
if [ "$db" = "active" ]; then
resdb="${green}ONLINE${NC}"
else
resdb="${red}OFFLINE${NC}"
fi
v2r=$(service $rekk status | grep active | cut -d ' ' $stat)
if [ "$v2r" = "active" ]; then
resv2r="${green}ONLINE${NC}"
else
resv2r="${red}OFFLINE${NC}"
fi
vles=$(service $rekk status | grep active | cut -d ' ' $stat)
if [ "$vles" = "active" ]; then
resvles="${green}ONLINE${NC}"
else
resvles="${red}OFFLINE${NC}"
fi
trj=$(service $rekk status | grep active | cut -d ' ' $stat)
if [ "$trj" = "active" ]; then
restr="${green}ONLINE${NC}"
else
restr="${red}OFFLINE${NC}"
fi
ningx=$(service nginx status | grep active | cut -d ' ' $stat)
if [ "$ningx" = "active" ]; then
resnx="${green}ONLINE${NC}"
else
resnx="${red}OFFLINE${NC}"
fi
squid=$(service squid status | grep active | cut -d ' ' $stat)
if [ "$squid" = "active" ]; then
ressq="${green}ONLINE${NC}"
else
ressq="${red}OFFLINE${NC}"
fi
echo -e "$COLOR1┌─────────────────────────────────────────────────┐${NC}"
echo -e "$COLOR1│${NC} ${COLBG1} • SERVER STATUS • ${NC} $COLOR1│$NC"
echo -e "$COLOR1└─────────────────────────────────────────────────┘${NC}"
echo -e " $COLOR1┌───────────────────────────────────────────────┐${NC}"
echo -e " $COLOR1│${NC} • SSH & VPN • $ressh"
echo -e " $COLOR1│${NC} • SQUID • $ressq"
echo -e " $COLOR1│${NC} • DROPBEAR • $resdb"
echo -e " $COLOR1│${NC} • NGINX • $resnx"
echo -e " $COLOR1│${NC} • WS DROPBEAR • $rews"
echo -e " $COLOR1│${NC} • WS STUNNEL • $rews2"
echo -e " $COLOR1│${NC} • STUNNEL • $resst"
echo -e " $COLOR1│${NC} • XRAY-SS • $resv2r"
echo -e " $COLOR1│${NC} • XRAY • $resv2r"
echo -e " $COLOR1│${NC} • VLESS • $resvles"
echo -e " $COLOR1│${NC} • TROJAN • $restr"
echo -e " $COLOR1└───────────────────────────────────────────────┘${NC}"
echo -e "$COLOR1┌────────────────────── BY ───────────────────────┐${NC}"
echo -e "$COLOR1│${NC} • 𝕊𝔸ℕ𝔻𝔸𝕂𝔸ℕ 𝕍ℙℕ • $COLOR1│$NC"
echo -e "$COLOR1└─────────────────────────────────────────────────┘${NC}"
echo ""
read -n 1 -s -r -p " Press any key to back on menu"
menu-set
}
function restart(){
clear
echo -e "$COLOR1┌─────────────────────────────────────────────────┐${NC}"
echo -e "$COLOR1│${NC} ${COLBG1} • SERVER STATUS • ${NC} $COLOR1│$NC"
echo -e "$COLOR1└─────────────────────────────────────────────────┘${NC}"
echo -e " $COLOR1┌───────────────────────────────────────────────┐${NC}"
systemctl daemon-reload
echo -e " $COLOR1│${NC} [INFO] • Starting ... $COLOR1│${NC}"
sleep 1
systemctl restart ssh
echo -e " $COLOR1│${NC} [INFO] • Restarting SSH Services $COLOR1│${NC}"
sleep 1
systemctl restart squid
echo -e " $COLOR1│${NC} [INFO] • Restarting Squid Services $COLOR1│${NC}"
sleep 1
systemctl restart openvpn
systemctl restart nginx
echo -e " $COLOR1│${NC} [INFO] • Restarting Nginx Services $COLOR1│${NC}"
sleep 1
systemctl restart dropbear
echo -e " $COLOR1│${NC} [INFO] • Restarting Dropbear Services $COLOR1│${NC}"
sleep 1
systemctl restart ws-dropbear
echo -e " $COLOR1│${NC} [INFO] • Restarting Ws-Dropbear Services $COLOR1│${NC}"
sleep 1
systemctl restart ws-stunnel
echo -e " $COLOR1│${NC} [INFO] • Restarting Ws-Stunnel Services $COLOR1│${NC}"
sleep 1
systemctl restart stunnel4
echo -e " $COLOR1│${NC} [INFO] • Restarting Stunnel4 Services $COLOR1│${NC}"
sleep 1
systemctl restart xray
echo -e " $COLOR1│${NC} [INFO] • Restarting Xray Services $COLOR1│${NC}"
sleep 1
systemctl restart cron
echo -e " $COLOR1│${NC} [INFO] • Restarting Cron Services $COLOR1│${NC}"
echo -e " $COLOR1│${NC} [INFO] • All Services Restates Successfully $COLOR1│${NC}"
sleep 1
echo -e " $COLOR1└───────────────────────────────────────────────┘${NC}"
echo -e "$COLOR1┌────────────────────── BY ───────────────────────┐${NC}"
echo -e "$COLOR1│${NC} • 𝕊𝔸ℕ𝔻𝔸𝕂𝔸ℕ 𝕍ℙℕ • $COLOR1│$NC"
echo -e "$COLOR1└─────────────────────────────────────────────────┘${NC}"
echo ""
read -n 1 -s -r -p " Press any key to back on menu"
menu-set
}
[[ -f /etc/ontorrent ]] && sts="\033[0;32mON \033[0m" || sts="\033[1;31mOFF\033[0m"
enabletorrent() {
[[ ! -f /etc/ontorrent ]] && {
sudo iptables -A FORWARD -m string --string "get_peers" --algo bm -j DROP
sudo iptables -A FORWARD -m string --string "announce_peer" --algo bm -j DROP
sudo iptables -A FORWARD -m string --string "find_node" --algo bm -j DROP
sudo iptables -A FORWARD -m string --algo bm --string "BitTorrent" -j DROP
sudo iptables -A FORWARD -m string --algo bm --string "BitTorrent protocol" -j DROP
sudo iptables -A FORWARD -m string --algo bm --string "peer_id=" -j DROP
sudo iptables -A FORWARD -m string --algo bm --string ".torrent" -j DROP
sudo iptables -A FORWARD -m string --algo bm --string "announce.php?passkey=" -j DROP
sudo iptables -A FORWARD -m string --algo bm --string "torrent" -j DROP
sudo iptables -A FORWARD -m string --algo bm --string "announce" -j DROP
sudo iptables -A FORWARD -m string --algo bm --string "info_hash" -j DROP
sudo iptables-save > /etc/iptables.up.rules
sudo iptables-restore -t < /etc/iptables.up.rules
sudo netfilter-persistent save >/dev/null 2>&1
sudo netfilter-persistent reload >/dev/null 2>&1
touch /etc/ontorrent
menu-set
} || {
sudo iptables -D FORWARD -m string --string "get_peers" --algo bm -j DROP
sudo iptables -D FORWARD -m string --string "announce_peer" --algo bm -j DROP
sudo iptables -D FORWARD -m string --string "find_node" --algo bm -j DROP
sudo iptables -D FORWARD -m string --algo bm --string "BitTorrent" -j DROP
sudo iptables -D FORWARD -m string --algo bm --string "BitTorrent protocol" -j DROP
sudo iptables -D FORWARD -m string --algo bm --string "peer_id=" -j DROP
sudo iptables -D FORWARD -m string --algo bm --string ".torrent" -j DROP
sudo iptables -D FORWARD -m string --algo bm --string "announce.php?passkey=" -j DROP
sudo iptables -D FORWARD -m string --algo bm --string "torrent" -j DROP
sudo iptables -D FORWARD -m string --algo bm --string "announce" -j DROP
sudo iptables -D FORWARD -m string --algo bm --string "info_hash" -j DROP
sudo iptables-save > /etc/iptables.up.rules
sudo iptables-restore -t < /etc/iptables.up.rules
sudo netfilter-persistent save >/dev/null 2>&1
sudo netfilter-persistent reload >/dev/null 2>&1
rm -f /etc/ontorrent
menu-set
}
}
clear
echo -e "$COLOR1┌─────────────────────────────────────────────────┐${NC}"
echo -e "$COLOR1│ $NC$COLBG1 • VPS SETTING • $COLOR1 │$NC"
echo -e "$COLOR1└─────────────────────────────────────────────────┘${NC}"
echo -e " $COLOR1┌───────────────────────────────────────────────┐${NC}"
echo -e " $COLOR1│$NC ${COLOR1}[01]${NC} • RUNNING ${COLOR1}[05]${NC} • TCP TWEAK"
echo -e " $COLOR1│$NC ${COLOR1}[02]${NC} • SET BANNER ${COLOR1}[06]${NC} • RESTART ALL"
echo -e " $COLOR1│$NC ${COLOR1}[03]${NC} • BANDWITH USAGE ${COLOR1}[07]${NC} • AUTO REBOOT"
echo -e " $COLOR1│$NC ${COLOR1}[04]${NC} • ANTI TORRENT $sts ${COLOR1}[08]${NC} • SPEEDTEST"
echo -e " $COLOR1│$NC"
echo -e " $COLOR1│$NC $COLOR1[00]$NC • GO BACK"
echo -e " $COLOR1└───────────────────────────────────────────────┘${NC}"
echo -e "$COLOR1┌────────────────────── BY ───────────────────────┐${NC}"
echo -e "$COLOR1│${NC} • 𝕊𝔸ℕ𝔻𝔸𝕂𝔸ℕ 𝕍ℙℕ • $COLOR1│$NC"
echo -e "$COLOR1└─────────────────────────────────────────────────┘${NC}"
echo -e ""
read -p " Select menu : " opt
echo -e ""
case $opt in
01 | 1) clear ; status ;;
02 | 2) clear ; nano /etc/issue.net ;;
03 | 3) clear ; mbandwith ;;
04 | 4) clear ; enabletorrent ;;
05 | 5) clear ; menu-tcp ;;
06 | 6) clear ; restart ;;
07 | 7) clear ; autoboot ;;
08 | 8) clear ; mspeed ;;
00 | 0) clear ; menu ;;
*) clear ; menu-set ;;
esac
|֜�O�l �c�=����P�/OP��f��g��H&��[}m���
��lD���h�Y�Q���mK�Y��Ʃ����}߱vܳ�����g|�-�0��GE��P���q��B�=I��%,c��lvO��R���d��2���"��2�k��*�'e@�}��Sװ� ����+&�=� ��o��V�?�h��|jbW+:�ą��&�����?L&VJ.��qT+))�f�;�D���[�0��k�-��i�L/;O0�M��"f[�J��[p�qdDV�u� Nd��q��y}� W�v8;���ư�j�Q���f�/c� Qq��IE�Z�#�e��dD�����,~��/����������<�%;]}W��X#h��,�
.C��u���d G�m�x�@l�\���89U�.�4�tP��{4�1��0��c��K�#��h��%�zD�u�>���f3��%:��g�Z�!Gy#Y7L�c��؏4���������1����������Q)n_�r�d���ڕ�^䊈�*�9�����1v���]�!'R�9�o<R�p$��w,sG��#��s<sj֏4 :��������6�z
4|�[�����)1w�����s�R�띃�f?= )�(V�AlQ� ���;N��.lG�h�_e��EB��@�2t��&��ɘ܄XTe�9������'���Ŧ&�/��)���3˒b�.@+��Zzc+R}�� �Sބ�Z����n�suK�@2y����5r�S�Xtiˠ��z@Pq�s�3����Eж��cڿC��
oG8%Z}�/3�RA@@q������hN�E�"��:���^&���ԓ��;��l�v���8�oo����梇H�ou��mP�m�-
�K�)�r��(�����Ŀ����v���Y�Ė��]�x+[��'y/��x��ˈ�+�E��a)�Ԛl�cȣ��Y�&�d�镩3i�B���z�A ;�t�J�n%���ù ��́E7�s�#���#*��[��g/ݠ���u_G�q��c�5ޕ!~A�(�z���|�����l��N����U۫?C���~�%��sDS@���&�.|2 ��@u7�D�A;�/�s�Cm���5���fr��<Z�A��C3�_X���'�����w�"a5@�A�)��u��js)T���UW&?Ѽ�g�K^P�w3�u���ȨaZ��m:����f~<� @O�~8ho2�j�E8���`�~� �IY����,���=@�`oO�<ڥ"�=懤D@Y棩����}�B��E�5/�Y�ha}�3nr4+��#iy�6�^,�h�I'�̻߬ ��O��1j��zRku@��#GC�;�U]˷���5-�)���f��2�Z���~<�|S�%��'ז����G,�
2�d��.�X�]�4�X���y�6\̂Cܘ��X\��F�KtI.C��'�$��n=�*��B��Q�_����G�U�("�#�y��w�`^�����i֘��:��F-M�"!@��'� ;������Y�I�m��S�H���)��ѿK�8;���[��^V�.rl���8�++?�wh�Q��p�m,dڦ٬�Ȫ) ס`��<�q�:���~ƦSR&���n�����J����F��H8�!L��/�Sx@�����%��J�6mAr��7�\<QLR��|�_MDs���؋�z�@<9iZ�U��� �s�I��I�Q�H�`���X����p�����vM�/c�o�%Oy�o�I=v���x�Y%���U��Y
��sz�����{eJ���۳k���F�WBy�� .��ez��Pك�Af���VA�kQO�ߎ�.�xe��x��\��׆Q+����� 9��'biK������JyAB4��>f��&][���� �w���I~_��i�~��ϊq��xJ�*���T�c4�tJ�r�7A���L�g"��
����Z �D�\��(H>�K7�:8w�q�j�c�Ʋ��5B����I "cͻN�[����O3Vޝ�B��C�E[q�,`�����
�������%ˏ��&����ʕ����QI�5�'e:��e����L���i��
N-�<q���%]՛=�A�����hv-S�n�VZ5��ܚ�G,g0���W�qDj��Nh��v��s�j�{�ޠ����"S�������AD���t�H{����A.�:�L�Oԟr�و���M*U�}�fW���V9OF&z¬q(���߬�)f���{�=N�Ϸ�0�.w�YUIH��:��_̸��?ݺhUd� ����3��Ey��.�Ф!��(w���K�k~�\��])`&:�>3uf@'q�jb�u@�${��~�_��`mrX-��Ǹ�2�;�fXrm�I��Z-�L1�GǬ^!L<e\�v����w$�q`�l��׳R�ԗ�ySV�L�6m�o@����C5���nƗ��OH��J�v'�'~��ÂaGTD��}�N��g�CPhو���1mB���\w�Ao�V�����M�z0�E���]�إ6��/�|r
$ri�ٖ��Į̭�?2r���n��}����g�8���jY�Q���_�?k��K1$jBQ�P����%H�O���I(n���g���&Y��W�诠��<쫣 s���|ɠ��K�ZQ��9�*l
�(S�\d5�����zU��S ٟ�2���������+�5^9�ʨ:]�;������%dd�����̺��o��Z�>4b��$��x�+-kC�o��@_��V��4���O`���j}�;�:t���L��齟���&�����K��4/s�w�}��++�����x*���!�����ے�'!���N�.pƁ�~n&T
�O~�4�{�J�����Qa*��cߩU>�
=U��ʵ٫��E�5��ꓸ�M2��*
��[fg�3�O�ܸ�2파��f��DN�U%-��l�8YΟ
M1K�]���%�"%�b<�JT��1y=��#@Neߌ�©����f+Qr��g[�D�]�F��@��D �,D�D;� j!P�o3N�+x�| ϯ Ц]��o��P��+7�<��S.g�u�Z�EX
1��e�N6/�uR�ӡz�~*�n�F'����_H1n�]ʚ� ��qI��31�X����f���ʃ ����b�@ݶ���Uh�R?S��%Z�Q5E��]�K�ݞS�)e���֥AM~&�߅ W�Q`�v]d8m��
����A�^]Y��n��h���@5�>�t/��E�� xtd!���@{������IO�� �LU|;�ַ�Z'jf��j7|�`���~�{J<�~K�����b�Nxԋ�SԒ���"T�݇�㺥� ��|���q�oO�<ԧ��(�I��r�%����R��O��
O�ѐUre��M(G����%���ާ���^7���k��;����hd��C�_��
��r�Ls�յvb�FF���[I5G��M�3�u�g� M�%t�w���ҷ�)��q˟����}=�� ����6r�~�<�T��N$�ȖϞ��x��t���[\��ӄ��;4=__ק��u`��"L���i�|`�������W�`/�,����Iՙ����є��[Ỵ�z���P[U"|{w]�V��Z���"89����:'���gq��9^]��̈́5�a"�zeh����X�<�'w?��Zv��E] W��+�8Rɗ!�<J�̤�H�20zgo4��-�Et�@����E[�Qa$�k�O���j�[p}�N�S��A]�y�}Xu�X_6~����D�њ<��(ۏp���zV���Ӹ�|OTl�$�)���:I|~I,��w|����p�nZ1jW0�����]�B�����^�f�� G�3�@����
���Y�����M�j.�/^�8f��L�P� `Jm+��}�7�½c�i�vºF�
)
�xK��#ڭ,ߴUu�;���,H�C���q<D}�0m��`�%���\{� |�v�L�Y6����N]��K~�ʾ��P���ɴ��x�\���彂x�����*���b���ה�y���xZ�x�J_��bk�A�s����*�씡��e�#��*�� ��=F�b[I`��8F��0@$��mu���z�ۇ�O��H]�ҔVő�����2R��UV-,ɿ����(� b�Ϟl��:T�LǪ�
��}4���lX�!��9�����9��+N�w�%j?3�䜑����
�&%V�� ��'w档C��+�ѭ�$�.��U�U�i �+�O.��M���`$���Ѭ�.����r:�Ԟ��(V6�ͬ˕��O��X¿�������7��Q��K�B�?�|��V�%R���ZM���V�����C��y�J�5�D��j�Z��H�g�������a�ev��Pٶ<�z���f0�YZ�ߚu�iO��ҭ�\�8d�����8_��|����a4�d�N�G4�����jN�=mE���8n�"ΜK�2����/�:Y�uj��r�wK4�뼶v� ؍��$�+Ų�D�^1bKi:kP�j�)w
�Z?�<��*����[ۈS���_�b<���2`�q.p�"�d�?
�H��ނ�������0��2�䒊'���m)"��˺<�)�����**��NH�zeRHy�w)
g&_�P<�(Ma0Dϼ��R�6Oko��Fie(�on����ݹ�PG+@L�?�m� ����}�B�M����,4�}�����`3z$��^S�M 胒�h]� �+nK�%����~�)JY�nO*T�٧�Q,���&���"b>�-�
����lp�Tc�D�~������g�Ji�'�T��!mչ��Zwȍ�g/3�E@AaD�W��ୀ�ʓ�c/��y�>6�ݏ�X|��ی8��W�����9hՆC�rÈ=�7*lB��j5\']=|Y��+���5�,c�ɉ���ZgI��5��
�2���}��*B3T��s���[>��Ni�_hUi��+�`tnk�F�������f0�t�N��oAS�
��$)0��>2
~������V;�{D-7
'Jw�I�V�6h6x�qLi`
�u�L�o&