From a5b11d545d1ff97cb5af947170913fd5b4b2251d Mon Sep 17 00:00:00 2001
From: weipengfei <2187978347@qq.com>
Date: Wed, 8 Nov 2023 16:30:19 +0800
Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E4=BE=9B=E9=94=80=E5=BA=97?=
=?UTF-8?q?=E9=93=BA=E5=92=8C=E5=95=86=E5=93=81=E7=9A=84=E6=8E=A8=E8=8D=90?=
=?UTF-8?q?=E9=80=BB=E8=BE=91,=E4=BC=98=E5=8C=96=E9=A1=B5=E9=9D=A2?=
=?UTF-8?q?=E6=95=88=E6=9E=9C?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
api/api.js | 9 +
.../WaterfallsFlowItemo.vue | 10 +-
pages/index/index.vue | 1 -
pages/nongKe/supply_chain/supplier.vue | 172 ++++++++++++------
pages/supply_chains/supply_chains.vue | 43 +++--
static/images/no_short.png | Bin 0 -> 10367 bytes
6 files changed, 161 insertions(+), 74 deletions(-)
create mode 100644 static/images/no_short.png
diff --git a/api/api.js b/api/api.js
index acb74a7..2a6bdd0 100644
--- a/api/api.js
+++ b/api/api.js
@@ -7,6 +7,15 @@ import request from "@/utils/request.js";
export function cloudWarehouse(data) {
return request.get("store/product/cloudWarehouse", data, { noAuth: true });
}
+
+/**
+ * 为你推荐
+ *
+ */
+export function spuRecommend(data) {
+ return request.get("product/spu/recommend", data, { noAuth: true });
+}
+
/**
* 获取云仓分类
*
diff --git a/components/WaterfallsFlowItem/WaterfallsFlowItemo.vue b/components/WaterfallsFlowItem/WaterfallsFlowItemo.vue
index e99906e..2b51da2 100644
--- a/components/WaterfallsFlowItem/WaterfallsFlowItemo.vue
+++ b/components/WaterfallsFlowItem/WaterfallsFlowItemo.vue
@@ -18,6 +18,9 @@
满20包邮
-->
+
+ ¥{{item.price.split('.')[0]}}.{{item.price.split('.')[1]}}
+
{{item.rate}}
@@ -29,17 +32,14 @@
{{item.merchant&&item.merchant.distance}}
-
- ¥{{item.price.split('.')[0]}}.{{item.price.split('.')[1]}}
-
-
+
diff --git a/pages/index/index.vue b/pages/index/index.vue
index 99c04e7..a441c97 100644
--- a/pages/index/index.vue
+++ b/pages/index/index.vue
@@ -188,7 +188,6 @@ import {
getIndexData,
getDiy,
getArticleList,
- cloudWarehouse,
getArticleCategoryLists
} from '@/api/api.js'
import {
diff --git a/pages/nongKe/supply_chain/supplier.vue b/pages/nongKe/supply_chain/supplier.vue
index c6b5af8..adbb48a 100644
--- a/pages/nongKe/supply_chain/supplier.vue
+++ b/pages/nongKe/supply_chain/supplier.vue
@@ -1,5 +1,5 @@
-
+
@@ -31,7 +31,7 @@
+
+ 暂无店铺,切换其他位置试试
+
+
+
+
+ 为你推荐
+
+
@@ -152,7 +164,6 @@
-
@@ -316,12 +327,7 @@
-
-
-
- 暂无店铺,快去搜索其他店铺吧
-
-
+
@@ -455,14 +461,15 @@
firstKey: 0,
// 商铺列表
storeList: [],
- sotreParam: {
+ storeParam: {
keyword: '',
page: 1,
limit: 10,
order: '',
category_id: '',
type_id: '',
- street_id: ''
+ street_id: '',
+ is_recommend: false, // 是否为推荐的参数
},
storeKey: 0,
storeScroll: true,
@@ -494,12 +501,12 @@
this.longitude = this.$store.state.storage.location.long;
}
if (options.street_id != undefined) {
- this.sotreParam.street_id = options.street_id
+ this.storeParam.street_id = options.street_id
}
this.credit_buy = options.credit_buy
- this.sotreParam.type_id = options.type_id
- this.sotreParam.type_id = options.type_id && options.type_id.split(',').toString() || ''
- this.sotreParam.category_id = options.cate_id && options.cate_id.split(',').toString() || ''
+ this.storeParam.type_id = options.type_id
+ this.storeParam.type_id = options.type_id && options.type_id.split(',').toString() || ''
+ this.storeParam.category_id = options.cate_id && options.cate_id.split(',').toString() || ''
this.storeList = [];
if (this.mer_location == 1) {
this.selfLocation()
@@ -557,7 +564,7 @@
this.$bus.$emit('value-updated', e.value[1].name + ',' + e.value[1].code);
})
- this.sotreParam.street_id = e.value[1].code
+ this.storeParam.street_id = e.value[1].code
this.street_id = e.value[1].code
this.storeMerchantList()
},
@@ -638,14 +645,14 @@
},
test() {
- // if (this.sotreParam.keyword.length > 3) {
- // this.sotreParam.keyword.slice(0, 3)
- // this.sotreParam.keyword = this.sotreParam.keyword.slice(0, 3) + "..."
+ // if (this.storeParam.keyword.length > 3) {
+ // this.storeParam.keyword.slice(0, 3)
+ // this.storeParam.keyword = this.storeParam.keyword.slice(0, 3) + "..."
// }
- // console.log(this.sotreParam.keyword.length)
+ // console.log(this.storeParam.keyword.length)
},
hotSerchFn(keywords) {
- this.sotreParam.keyword = keywords
+ this.storeParam.keyword = keywords
this.searchSubmit()
},
goMap(url) {
@@ -686,8 +693,8 @@
check: false
}
})
- if (this.sotreParam.category_id.length > 0) {
- this.sotreParam.category_id.forEach((ids, index) => {
+ if (this.storeParam.category_id.length > 0) {
+ this.storeParam.category_id.forEach((ids, index) => {
temp.forEach(el => {
if (ids == el.merchant_category_id) {
el.check = true
@@ -708,7 +715,7 @@
let temp = []
getStoreTypeApi().then(res => {
res.data.forEach(item => {
- if (item.mer_type_id == this.sotreParam.type_id) {
+ if (item.mer_type_id == this.storeParam.type_id) {
temp.push({
...item,
check: true
@@ -851,29 +858,60 @@
if (this.loading) return
this.loading = true
let rqData = {
- keyword: this.sotreParam.keyword,
- page: this.sotreParam.page,
+ keyword: this.storeParam.keyword,
+ page: this.storeParam.page,
limit: 10,
- order: this.sotreParam.order,
- category_id: this.sotreParam.category_id,
- type_id: this.sotreParam.type_id,
- street_id: this.sotreParam.street_id,
+ order: this.storeParam.order,
+ category_id: this.storeParam.category_id,
+ type_id: this.storeParam.type_id,
credit_buy: this.credit_buy,
}
+ rqData.street_id = this.storeParam.street_id
if (this.latitude) {
rqData.location = this.latitude + ',' + this.longitude
}
// console.log(rqData)
storeMerchantList(rqData).then(res => {
+ if (res.data.list.length < rqData.limit) {
+ this.status = "nomore"
+ }
this.count = res.data.count
this.storeList = (res.data.list)
this.loading = false
this.loadingIcon = false
+ //当没有店铺时推荐其他店铺
+ if(rqData.page==1 && res.data.count==0){
+ this.storeMerchantList2();
+ }else this.storeParam.is_recommend = false;
})
},
+ // 推荐店铺
+ storeMerchantList2() {
+ if (this.loading) return
+ this.loading = true
+ let rqData = {
+ keyword: this.storeParam.keyword,
+ page: this.storeParam.page,
+ limit: 10,
+ order: this.storeParam.order,
+ category_id: this.storeParam.category_id,
+ type_id: this.storeParam.type_id,
+ credit_buy: this.credit_buy,
+ }
+ if (this.latitude) {
+ rqData.location = this.latitude + ',' + this.longitude
+ }
+ storeMerchantList(rqData).then(res => {
+ this.storeParam.is_recommend = true;
+ this.count = res.data.count
+ this.storeList = (res.data.list)
+ this.loading = false
+ this.loadingIcon = false
+ })
+ },
// 进店
goStore(id) {
- if (this.sotreParam.type_id == 12) {
+ if (this.storeParam.type_id == 12) {
uni.navigateTo({
url: `/pages/nongKe/supply_chain/merchant?id=${id}`
})
@@ -887,13 +925,13 @@
},
searchSubmit: function() {
let that = this;
- that.$set(that.sotreParam, 'keyword', this.sotreParam.keyword);
+ that.$set(that.storeParam, 'keyword', this.storeParam.keyword);
this.set_where(this.firstKey)
this.showSerch = false
},
// 右侧切换
bindRight() {
- this.sotreParam.page = 1
+ this.storeParam.page = 1
this.rightBox = true
},
// 组件确定
@@ -901,24 +939,24 @@
let arr1 = [],
arr2 = []
if (data.storeTypeArr.length == 0) {
- // this.sotreParam.type_id = ''
+ // this.storeParam.type_id = ''
} else {
data.storeTypeArr.forEach(item => {
arr1.push(item.mer_type_id)
})
- this.sotreParam.type_id = arr1.toString();
+ this.storeParam.type_id = arr1.toString();
}
if (data.merList.length == 0) {
- this.sotreParam.category_id = ''
+ this.storeParam.category_id = ''
} else {
data.merList.forEach(item => {
arr2.push(item.merchant_category_id)
})
- this.sotreParam.category_id = arr2.toString();
+ this.storeParam.category_id = arr2.toString();
}
this.rightBox = data.status
this.loadend = false;
- this.$set(this.sotreParam, 'page', 1)
+ this.$set(this.storeParam, 'page', 1)
this.storeList = [];
this.storeMerchantList();
},
@@ -932,8 +970,8 @@
if (this.loading) return
this.storeList = []
this.firstKey = e
- this.sotreParam.page = 1
- this.sotreParam.order = this.downMenu[e].order
+ this.storeParam.page = 1
+ this.storeParam.order = this.downMenu[e].order
this.storeMerchantList();
},
backjJump() {
@@ -965,16 +1003,16 @@
},
//上划加载更多
onReachBottom() {
- this.sotreParam.page += 1
+ this.storeParam.page += 1
let rqData = {
- keyword: this.sotreParam.keyword,
- page: this.sotreParam.page,
+ keyword: this.storeParam.keyword,
+ page: this.storeParam.page,
limit: 10,
- order: this.sotreParam.order,
- category_id: this.sotreParam.category_id,
- type_id: this.sotreParam.type_id,
- street_id: this.sotreParam.street_id,
+ order: this.storeParam.order,
+ category_id: this.storeParam.category_id,
+ type_id: this.storeParam.type_id,
+ street_id: this.storeParam.street_id,
credit_buy: this.credit_buy
}
if (this.latitude) {
@@ -982,16 +1020,13 @@
}
// console.log(rqData)
storeMerchantList(rqData).then(res => {
- if (res.data.list == 0) {
+ console.log(res.data.list.length);
+ if (res.data.list.length < rqData.limit) {
this.status = "nomore"
- return
}
this.count = res.data.count
this.storeList.push(...res.data.list)
-
})
-
-
}
}
@@ -1002,6 +1037,9 @@
margin: 0;
padding: 0;
}
+ page{
+ background-color: #f5f5f5;
+ }
.com_name {
font-size: 33.29rpx;
@@ -1035,7 +1073,8 @@
padding-top: var(--status-bar-height);
// padding-top: 80rpx;
- background-color: #F0F2F5;
+ background-color: #f5f5f5;
+ // background-color: #F0F2F5;
position: fixed;
z-index: 999;
width: 100%;
@@ -1067,6 +1106,25 @@
}
+
+ .common-hd {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ height: 60rpx;
+ margin-top: 30rpx;
+
+ .title {
+ padding: 0 80rpx;
+ font-size: 34rpx;
+ color: $theme-color;
+ font-weight: bold;
+ background-image: url("~@/static/images/index-title.png");
+ background-repeat: no-repeat;
+ background-size: 100% auto;
+ background-position: left center;
+ }
+ }
.goods_list {
margin-top: 20rpx;
@@ -1632,8 +1690,8 @@
color: $uni-nothing-text;
image {
- width: 414rpx;
- height: 380rpx;
+ width: 500rpx;
+ height: 180rpx;
}
}
}
diff --git a/pages/supply_chains/supply_chains.vue b/pages/supply_chains/supply_chains.vue
index 8d2cd5c..3ccb8b1 100644
--- a/pages/supply_chains/supply_chains.vue
+++ b/pages/supply_chains/supply_chains.vue
@@ -131,7 +131,12 @@
- - 此区域没有更多商品了 -
+
+
+
+ 暂无商品,切换其他位置试试
+
+
为你推荐
@@ -187,7 +192,7 @@
import {
getIndexData,
getDiy,
- cloudWarehouse
+ spuRecommend
} from '@/api/api.js'
import {
@@ -195,7 +200,8 @@
} from '@/api/product.js';
import {
getGeocoder,
- merClassifly
+ merClassifly,
+ getProductslist
} from '@/api/store.js';
import {
getArea,
@@ -379,16 +385,16 @@
that.loading = true;
that.loadTitle = '';
- cloudWarehouse({
+ getProductslist({
page: that.where.page,
limit: that.where.limit,
- street_code: id,
- category_id: 0,
+ street_id: id,
+ type_id: '17,10',
location: this.latitude + ',' + this.longitude
}).then(res => {
// console.log(222)
let list = res.data.list;
- if(list.length==0){
+ if(list.length==0&&that.productList.length==0){
that.list2(true, '');
}
let productList = that.$util.SplitArray(list, that.productList);
@@ -423,11 +429,9 @@
that.loading2 = true;
that.loadTitle2 = '';
- cloudWarehouse({
+ spuRecommend({
page: that.where2.page,
limit: that.where2.limit,
- street_code: id,
- category_id: 0,
location: this.latitude + ',' + this.longitude
}).then(res => {
// console.log(222)
@@ -503,8 +507,9 @@
this.loadend2 = false;
this.$set(this.where, 'page', 1)
this.$set(this.where2, 'page', 1)
- this.list(true, this.street_id)
+ this.$set(this, 'productList', []);
this.$nextTick(() => {
+ this.list(true, this.street_id)
this.$bus.$emit('value-updated', e.value[1].name + ',' + e.value[1].code);
})
@@ -1152,6 +1157,22 @@
text-align: center;
padding-top: 18rpx;
}
+ .no-shop {
+ background-color: #fff;
+ // padding-bottom: calc(100% - 176rpx);
+
+ .pictrue {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ color: $uni-nothing-text;
+
+ image {
+ width: 500rpx;
+ height: 180rpx;
+ }
+ }
+ }
.common-hd {
display: flex;
align-items: center;
diff --git a/static/images/no_short.png b/static/images/no_short.png
new file mode 100644
index 0000000000000000000000000000000000000000..505c230df3d06412699d3a497b68ec7072a970fe
GIT binary patch
literal 10367
zcmeIYc{r5u`!D`Tp=2$g$=jr#oe%Cpl@A>Oo*ZK4K!^Jc6yx*_;^}g@db1%;ueO(QfGZ)VQ0KlU8
zP~8v!POO4|Z!s}|zrPO@@&kY%psB9<*e{z*M8!T|^vA8wmo1eq;k^fHkuNZ?`q~w2
z-)careRciHbMrHuRVPF9fp{VDs_zf(32NQuR6XDjRi&eQ_3*W_3X^ImH1u@55WV45
z;lEHZQl(VZ7o=HaPDT#)XMY*Gh+-A=%V@jVm~zKQm)KN7%T}032&!vZ4k&Rh**DdL
z&EGizqWXV7|5q3gr2Zc+qk`bg-FH15DoA0YOEgP)WY1HoBm`By0ad;N&8zDb<+yVl
zY6qnXls2QAkvGMRa$?n{Liyc0iEGvA`Sr$IXnXMmU1>;yW&+3P7iPdWC?IQ-!cDfs=%lUmS?
zG_jN(iJ0yQD@#kvKnpYQFzv(uBk;lWqv4(uhrf~f(Z14oi_R4?#>tHvNQ6En(0yoQ
zmrL|CP`Vh4*}aPEnZP?XiyOg0edUkFTc;NQjG*W>Zc8j4_j}w!`N!
zEb?)OK{#ClP3)tO8z8g_=!W0#rltCGo12>>Ui1CL+>DHjdZQO}oc&5KV$H6lJYw#O
z=R0SmKGV6evC-l`9Vh?k4-R+yII`u`{@=e;kh27FaF3Z0aF0lSBw#iOmxybwfTIe6
zZiwBFe)REu@jirnk9Kenxb|C1;->Q6OmYXfN8~<1psQ_VWrf=&aJ^#yd$7@aT=Mw(
zp>xg0Yxi*Tkd#NWeggHU03P;G#g{chwhA|)k?PM&V%YiB+X529sZEbQ8eT{Ooh8Pj
zDDBbJM(@SnOC2%XI*pdOe82j1Q+sD6up2#M${V}W3Crm}j`4GtCTpAe<>&azUzWL=|NJL
zaz)C{(&*^u_e9*l`Irs~n?_H2^phJ$hFP1~&d(2l+dTikd{RXXS+ta}{Eb|BdPzB-
zn@qEGme;OTG>vBI=}Hht6Uhto#PJvrx{UYNd($KYWIJn^DJ{=&5a4UVKMdv0VSa;I
z>_%Txs0~y}dDRy<#D@~;Zd1cRfsjA_I&2`{Nip0KCUH`X>q>{=Vy5Lc7H?2r59y6>
zGXN_>{~yDX&2!tO=;(kS5qqDlP)8+Jb!3lXqvFT?(cLyN<))QS-WBBrIG5^QTXFaZ
zTXL`tSiG7ex2fB<*hHFVMQj6tAs~_}m9SlUH$&|ahP{l}Yu4N2c80v;WqI*iYdFgW
zcU55#k!15%J24sQ>AOYJ($W=IT_O3)hbi>d8bCJ}2;y2xhbm`(=%|C`*F!#s39S1M=z#Tq7@%MO
z2KAyS&DJzrhFU4*IWQ*^673hDy
z*|{atA3V3-C2&k&6bM{%fo^oXrVS!aumH9y|Bmy!H%AQ;J{#1v(}3Pg=z5GBx;S2o
zo#|Le64A>Y)+fF#k(ZZuc@=19S9oD~n~HFx#fq;U1dND(r^Q6*
zs$?Mmw(5tID=d?3x_xo{kew15G_%i-4&2+waSPteqQrDBcK4kpAMWX4-U7A_|3JT=
z>~ogD@1&KbU*MUjgXee@UPc#>7PWc}`uzHeL8BFYH|P4yjjb%61&|GJn;H_+$E(3R
zYK?Vc3sZ8gBSYTnYM8Pf8!)CXB;`dlF3y9CN(TNzUiq}W311sBXfo6*_swlApMN%B
z41I>|*1Y%P;_9l=ppeX!mg6HDOg4{ZIl214@+ES_pZn-gQewO3fbC7U{JBsR`DmfD
za`4P?a7IoJ5r?OL8TRclFW_XbJy%QdQ#8L-_g)FE7WnqY|+uHtYX*OhQDc&}4E>tHX(4BZS@E1$~sn&O5g
zGcxMTis&L7xkKWvX2eDyX@qwYR!v)zOCzNo4w`3Ii8TvX__&LVeE5L}ysdn|&V;WF
z#%096B4AM>0g<0s(^`Tg^o*36I&hXFt_B2Cy_Ct)IZEpPOfv_FfjQ!Y082jpF1Li87YVe*i9fvy>X}&An#Bo(WnNQtRTU>{
z@0^G(=HkiLw^DP8&`yAg`JmjQlTDqy>h|7`e|OatMb8ih;6CCYcZyB>ypji8p5mHk>D
zS1N>*u|9Lq)`a-^o>?CpB7Vf>kCp+
z!4wj9)a7mQG9vZP20K)
z8QJ*H9#~H_cuc>JI{3`86yWzvS-`yPOUTxsMkRKJ4Ys9^Ge%-DCK%b3<(f=g)K#+F
zOw;CKzyeeEhiKYZwZm+8l2BZ)H)K>1o3@9u$K9u9(}K!=LhPKMl6W?WhQ&35JJA6$
z(#bUmqP8;Yt@0Lrb+;lW~M_>
zPCK3=PAo`k8oDDDjPc3lI$O67O;ps-y6D9Rjh5x7{H)Sc-R?Sv1=zj$vRSV_6OEWa
z?|tji@p=TYgztfqZO}}ThI7|a#Fzbod$@tJWLj8h
z%IetISZ*l#%40lnw<}BDt%r=Sr+QDwd|Qr8DAY*sy<0*0L`$4vrL7^=XXbaR`a!Z-
zT4DeHDUI8?AD`mbd(^`H2bUf3!Zb!((2?NYiuw8cACU`P>NBN>)^x3Wpv(+h
z$SsQn$xPT`Cn!rmZ6GtK9OjLSbw0e0U3Ac?ygsXhJ9qpyp4*i-nJoCgyaxe_@6yb5
zss|mBZ$3{$t(tjg|FVim_d?T^!L>53V3r*$3CXfHey=cQXO`{FPGidz=mdFw>GWzh
zBotM*=4yWy+;`Z)U0DojD(k|!d3lKa%PUiAK#B2Qa2Te!&S&Ns!4;`N8Q5j%wWKsKgs?2jBM6S@%S*$+RcwcOQ9E`V}4Q$GvJbiku(u8DhJnFgCYJM8n;TG?bPiBOE_k;>;vU>6(WE
zG@NFSD!ceg`B-1+W)4avEn_WZ|C82zrqz~f&=4UOwiFkq!MaRDD24&fLdoeb3URG<
zF2hb=EWztU4lWNTRxH0)UarDmESU)kvY&=%(bmUcisn)#eze_0@}{<`w9{ymmWdsU
zuxsSLL9>;V&XuMB6llJF(G0JLH`xPSR51KdPqFw
z%(56@v8pe&vhU|>!H3)7;T}JX(@b7Ky{r4>_!7r~v(tv6n#1&X|nHTyAh+9x&--CnRZDF(BdZj`EiT!AhX*wKbMNHQfci|W0m@J2tIOobBwj~(
z-+Dn{ZEtVSJSB){$hzimzMW0^OHfRHvWGWjR_V2`hDhIm6vy6YVg~38|Eo*hcR${Q
zZcrW^77U)j?8GlW$PWvY_@(3pj~R@!ij?_#^``glpY|M@E5!fQ9)rlqav{xN8+F#%
z*#eJb2X7($AlH3=n_tR*E*kn=@2j-yijdWV#f|G`{$7K(*SRNKjjaQe)=w@eRXMYJFQj27r75$=d20xB;KuN1(3#@P<@`;~ncN~*jmt+&Ze*UbqQ
z8aDzg)q^t}#D9`AjMFUY5ga7^kX&g+Om|?WDJSqR?KG2yQ)3l6q;Vf^-oh&?#!bj#
zjQlAJV22=+$Or%*_`xjf&w&?*f2>29X8YdUTDt{V+cSSU^H!Yq_K{KvjS%u7v#hph^9D!7HkUYeqUi0j2}w0}5UDlK*4Jc-_c-~HOfSXK2~sX>ewwzNLorLoSoQxbKMYifL4u5<%y
z`QJpiiD}h91b&rtb6#WdDOiM+8WWZ=ll&*Eeiuxw#@_S8QQOI6@~mO;R)VYkaVorc
z3G%%<>#b)(;)Bz{dR)b{LxMd$2jrCr8;dl`0r9AA+T
z#?PR-Ho<-2f;I2(_PPHGucye0Tqnw`rMNRkcw{j&tpWgl!q+?*iXhW98)KF5ZM@
z4rGP`AvBM1T&t-g4Z0-c}Ysj<7KcCm0wIfQQcP%&_KEw{X@C?OA_
zzf`i+1OWSB#-6Cymrpv|w4E0RPm?+gKBI3lR-v&%`^sbIMbEc!?WrObN{n~<`pWbz
z*-mYOcPboZpvMsqYO%3DhpWNc9d-R;xHtXP!o0Se!du%0TbH{xeSX+FGY?oJPESTt4CiTIcf{YvIp~2l`QRwM(0bn=dKD
z{f5lzwfuYcrXtGmctyFhE;KE{SM>@7cv;~Cx@X@GceJ#$YS)xtus#stL%M$u-BWg6
zbigi7win>T*E_dT>)ty^Cb^VEu9+uJ5L5V2UtEekVsh)S*pahjRjl!Yi(J%&vs60j
z4|PIINJ||6u>MmX@o>C-X3&%_j5+IJxZ?i9jM2J`aUTuwXBRsT*SJiO$dBekc%X{p
zO^duteTi)5k6uPTA+bSMUS2AO3YaO|VmBW@K0T=nfZ-d7?_w#vMJY{}sSQXaU(
z-qMzP-jkkEld6I+4-2&Xiky#OBbQlj?Nm&Rs;nMCSQn*ms?LlrlQcT`R1kZR&%%s0
z6*-?OIh?g+iSf~AG1KFw%Y`Rs1+A1Yx7EH{r8Hs8^6m
zCUkx1sX5O%NUBwCeC|aBho71SZ1iz#98=r%j0J4W1wQr1aFazRPsW!94@%Fzv}CIP
z@%mg19^$0s==P)a?=n;U_w)y!kzIQn=xsHXHu!!~=9l}7QpiN9g@?7cRvYQo^s=mR=iaw3sYzz
zqUXBrQs;^R&_a+G<7wzEr!-N@{AmtRe0%2rSjp$z4%**Zd{#NyfF9)ImUU>97fAAj
zy#FI%IT0ZvUdTv#vh$=x!;#>)drfBu-y*9ZWx46B%jZ=T#E}kW&T!FXm
zqxmbIDrEy;V6t?!I#a6cjND5-dI+5eIJIf~vsfb9
zX>-=8Lf$d{jdt*&aD`eBUve9|=2G5JJ>%hpt2)N3KUgRD$pKG;$1Jv}S0O8Of)`r(
zULwl;Z*%rIVDqh4)|l*@Wd)s@Q91Hgh0ELE+J)T2j{Ui-nIr3hYoGo+^tz$r^;>7z
zClV*xY_3Pd3cDOL5bF(#p6Ql8lJ1t!NWF^BViPQ4T2)ax@5-K6eL1M#;)TN96NSUo
zkVh@zUm4@_&=dN#{&A`c^AB!fDqBCB^07h1*!QuuA+P}Hzdq7$P*!~z!6?E|k6%UK
zZ8q1J$lf4S!@UrgBv?*-a}*upCkQ1a27lJk(n1`Kc17Y}@L^|XVA?KHM{DU1&F+qG
z@|XY8nrWD8y5EkTKus9q1{QjZY;&r#YRp@fYw-<|Ap_zTj5Xx|LoCSaRztfdq|d=jqPwlU6bz#rFy2s_|I6Y9F?Mm0_%ZFhUDRg_7${y>e7tlc
zfTIP`Y-4HP+qR(Sc3vSKug7IwG3Z?5TSA+SFL$zRAmPi3Wr0B=c8k`l$}PGL1%I*y3+joD8)i+-?v^xqvo_n%{CFFgH)Dv0erY1+Z9l`bb{|6
zzAh_C(BKz1aW7)T!aj4nwyiFxz{fEJl#z#yB~mqeZkH?so|(n}ktMg{Q^vth-EE_iw-
zEzWrCw$B!q5Z9h@McD)TLtT=9;LO=Nu}lD9Quy~S03(>ROU@e)C#V~;hOBu#M51*O;h_7_nxeWw5d%UYUvr3=uB?|=cFQ9AAcuLPfzRd
z+T}`i$~61GVV)eER)9BT-iDC!&W#n#V6hjAO-em!J7j}{dT%1bHf5|GE&4>{!_X&|
zwR+dQz?6B-nKvT25AVjgZB&OxD?YeCwrs5I+>Tb0Wo1!iUn&3cCD2CQd(VeuV`ylI
zyJvR8$j;7=n>oA)+Q
z9sKCw79TjW3iNDuR-2kW2a`K9IeQep?3aNDtBgdQ{LB5hGDOO)vDW7g2gz`H-4NKamxsZE`Wg0$YN2kicP_Qi
z7aig9hibB{nYA$dtjF|R%)(W@K0e{oaOyn)k!7Ix*@h<`$)LHjb>}WZY&1t%VcQ`a@VKs&nQur*WO?VZp;E4kDLsJGO!i+v6dy09M1C)DOWM57%yY-osLvbMZx
zJ7KpmgX9Cgd)L7(1jA9bk35TTepCDxa|;XfreTYyP20Oqi^m`RH|B8*!%Pd)y~5<=
z}~HT@h3t#r6AYO(rA9i6w%PG8*J6SG;4Y|7WR(C#kWT9;LCBLCc$U
zzs0x8>Dw!7Ykg2IF3T-ZQR3s~UXSH{xsps{rSb#>1Z>7hq$4hlJzucNucmmK;oFf1
z%E_u8Qbj6!8Ln!p$HTk%$HMI+Je;|XYwk7Ck?~vWAg)mKLQIEq?IRjCw~0GZ
z@Bb7jZ5MwZ8WlCK)A!J5A@skEM;*t176ur#kP%l#oKwyyCW<#Dyfv!p_5p?W`T$43
zefNR%^MSW~xqL$$G;6*Cz%R4bx_A7WC+>!*4a$ZpHrcQ6&*=IcBmAoAfP5sPNLK>`
ztJ)}&Re&}WLLyfnvG{gTH*o-1u^Nom@udq6?>bKgkMu>Jg?-PC7*>>~$mI(F3~q$}
zS2oprI(*SUI37#(LgA-^yp;C0E1k_=XOcRB?=1
zs$rpM-97d1*)09tB*XASLe6zX0AO5BCnhEDv{bt>uoDK;FGxFteClBZR07_)9@997
z98}x~>OB+_u+Jx${G`Fxd2(LB*)aVf6LWWZM8Lp5`_*_Zv8=|(o)Hj)bdq763d8T#t_=HtR!VI0zca%;af|I~~xS;*mwiL=lRbR0^;}
zX(#RQfL|kGLQ>H|DaC}0)gq*SiBt?Vg-Qrk8tHy_&cZ_*Axw5{62|A
zgtfEQ1^2$*Wd&z@Hw`56O|Vdl@7&LfU-Fx%Q6WWEfQz~!hDWKyoCN?!4e54<1btr)
zLbZ;?^E0o(WB(Q2w!Mst0jIGA_QHkW(5kcZGXUgsPlE+rMeZH12*#UX;MLh&MR3Rn
zEQG&^;^VJe0SmL(dXCdKZ-HMG2#3fcy4%`Luvvp`?doDjTqZa>1ojKeLanLbbj2b0
z@;{qkwye(?z>T}GzraQhknaW#G4k2drA|^;{@w@Q7i4&)odo_9TL~%JfYJj%H*Y9v
jhkcw505%?|A1SMytYB}D))D*n+L`8kUG?&NwxRz6r?@an
literal 0
HcmV?d00001