Contract con_testfarm04


Contract Code


  
1 import currency # For buy function
2
3 #NFTs are always part of a collection.
4
5 collection_name = Variable() # The name of the collection for display
6 collection_owner = Variable() # Only the owner can mint new NFTs for this collection
7 collection_nfts = Hash(default_value=0) # All NFTs of the collection
8 collection_balances = Hash(default_value=0) # All user balances of the NFTs
9 collection_balances_approvals = Hash(default_value=0) # Approval amounts of certain NFTs
10
11 plants = Hash(default_value=0)
12 metadata = Hash()
13 nicknames = Hash()
14
15 random.seed()
16
17 @construct
18 def seed():
19 collection_name.set("Test_plants") # Sets the name
20 collection_owner.set(ctx.caller) # Sets the owner
21 metadata['operator'] = ctx.caller
22 metadata['royalties'] = 0.05
23
24 metadata['growing_season_length'] = 4 #change back to 30
25 metadata['plant price'] = 1 #change back to 100
26 metadata['event_handler'] = 'con_bbf_events_01'
27
28 plants['growing_season'] = False
29 plants['growing_season_start_time'] = now
30 plants['count'] = 0
31 plants['active_generation'] = -1
32
33 nicknames = {}
34
35
36 @export
37 def change_metadata(key: str, new_value: str):
38 assert ctx.caller == metadata['operator'], "only operator can set metadata"
39 metadata[key] = new_value
40
41 # function to mint a new NFT
42 @export
43 def mint_nft(name: str, description: str, ipfs_image_url: str, nft_metadata: dict, amount: int):
44 assert name != "", "Name cannot be empty"
45 assert collection_nfts[name] == 0, "Name already exists"
46 assert amount > 0, "You cannot transfer negative amounts"
47 #assert collection_owner.get() == ctx.caller, "Only the collection owner can mint NFTs"
48
49 collection_nfts[name] = {"description": description, "ipfs_image_url": ipfs_image_url, "nft_metadata": nft_metadata, "amount": amount} # Adds NFT to collection with all details
50 collection_balances[ctx.caller, name] = amount # Mints the NFT
51
52 # standard transfer function
53 @export
54 def transfer(name: str, amount:int, to: str):
55 assert amount > 0, "You cannot transfer negative amounts"
56 assert name != "", "Please specify the name of the NFT you want to transfer"
57 assert collection_balances[ctx.caller, name] >= amount, "You don't have enough NFTs to send"
58
59 collection_balances[ctx.caller, name] -= amount # Removes amount from sender
60 collection_balances[to, name] += amount # Adds amount to receiver
61
62 # allows other account to spend on your behalf
63 @export
64 def approve(amount: int, name: str, to: str):
65 assert amount > 0, "Cannot approve negative amounts"
66
67 collection_balances_approvals[ctx.caller, to, name] += amount # Approves certain amount for spending by another account
68
69 # transfers on your behalf
70 @export
71 def transfer_from(name:str, amount:int, to: str, main_account: str):
72 assert amount > 0, 'Cannot send negative balances!'
73
74 assert collection_balances_approvals[main_account, to, name] >= amount, "Not enough NFTs approved to send! You have {} and are trying to spend {}"\
75 .format(collection_balances_approvals[main_account, to, name], amount)
76 assert collection_balances[main_account, name] >= amount, "Not enough NFTs to send!"
77
78 collection_balances_approvals[main_account, to, name] -= amount # Removes Approval Amount
79 collection_balances[main_account, name] -= amount # Removes amount from sender
80
81 collection_balances[to, name] += amount # Adds amount to receiver
82
83 @export
84 def start_growing_season():
85 assert collection_owner.get() == ctx.caller, "Only the owner can start a growing season."
86 grow_season = plants['growing_season']
87 assert grow_season == False, "It is already growing season."
88 growing_season_length = metadata['growing_season_length']
89 active_gen = plants['active_generation']
90 active_gen += 1
91 plants['growing_season'] = True
92 plants['growing_season_start_time'] = now
93 plants['growing_season_end_time'] = now + datetime.timedelta(days = growing_season_length)
94 plants['finalize_time'] = now + datetime.timedelta(days = growing_season_length + 3)
95 plants['active_generation'] = active_gen
96 plants[active_gen, 'total_berries'] = 0
97 plants[active_gen, 'total_tau'] = 0
98 plants[active_gen,'stale_claim_time'] = now + datetime.timedelta(days = growing_season_length + 30)
99
100
101 @export
102 def buy_plant():
103 assert plants['growing_season'] == True, 'The growing season has not started, so you cannot buy a plant.'
104 #assert plants['growing_season_end_time'] >= now + datetime.timedelta(days = 25), "It's too far into the growing season and you cannot buy a plant now."
105 plant_generation = plants['active_generation']
106
107 plant_data = {
108 #"drought_resist": (random.randint(0, 25)),
109 #"crop_yield": (random.randint(90, 110)),
110 #"bug_resist": (random.randint(0, 25)),
111 #"photosynthesis_rate": (random.randint(90, 110)),
112 "current_water": (random.randint(50, 80)),
113 "current_bugs" : (random.randint(5, 25)),
114 "current_photosynthesis" : 0,
115 "current_nutrients" : (random.randint(50, 80)),
116 "current_weeds" : (random.randint(5, 25)),
117 "current_toxicity" : 0,
118 "current_weather" : 1,
119 "last_interaction" : now,
120 "last_daily" : now,
121 "last_calc" : now,
122 "alive" : True,
123 "generation" : plant_generation,
124 "last_squash_weed" : (now + datetime.timedelta(days = -1)),
125 "last_grow_light" : (now + datetime.timedelta(days = -1)),
126 "burn_amount" : 0
127 }
128
129 plant_calc_data = {
130 "previous_water": plant_data["current_water"],
131 "previous_bugs" : plant_data["current_bugs"],
132 "previous_nutrients" : plant_data["current_nutrients"],
133 "previous_weeds" : plant_data["current_weeds"],
134 "total_water": 0,
135 "total_bugs" : 0,
136 "total_nutrients" : 0,
137 "total_weeds": 0
138 }
139
140 p_count = plants['count'] + 1
141 name = f"Gen_{plant_generation}_{p_count}"
142 payment(plant_generation, metadata['plant price'])
143 mint_nft(name,'placeholder description','placeholder image URL',plant_data,1)
144 collection_nfts[name,'plant_calc_data'] = plant_calc_data
145 plants['count'] = p_count
146
147 def action_setup(plant_generation : int, plant_number : int):
148 active_generation = plants['active_generation']
149 assert plant_generation == active_generation, f'The plant you are trying to interact with is not part of the current generation. The current generation is {active_generation}.'
150 name = f'Gen_{plant_generation}_{plant_number}'
151 assert collection_balances[ctx.caller, name] == 1, "You do not own this plant."
152 assert now <= plants['growing_season_end_time'], 'The growing season is not active, so you cannot interact with your plant.'
153 if ctx.caller.startswith('con_'): return
154 plant_name = collection_nfts[name]
155 plant_data = plant_name['nft_metadata']
156 assert plant_data["alive"] == True, 'Your plant is dead due to neglect and you must buy a new plant to try again. Try not to kill it too.'
157
158 #interaction idle check. If idle too long, plant gets penalized.
159 if now > plant_data['last_interaction'] + datetime.timedelta(hours = 12):
160 plant_data["current_water"] -= (random.randint(5, 15))
161 plant_data["current_bugs"] += (random.randint(5, 15))
162 plant_data["current_nutrients"] -= (random.randint(5, 15))
163 plant_data["current_weeds"] += (random.randint(5, 15))
164
165 plant_data = daily_conditions(plant_data)
166 plant_data = totalizer_calc(plant_data,name)
167
168 if (random.randint(1, 10)) == 10 : #10% chance of an event happening
169 event_contract = importlib.import_module(metadata['event_handler'])
170 plant_data = event_contract.event(plant_data)
171
172 plant_data = dead_check(plant_data)
173 plant_data['last_interaction'] = now #resets the interaction time
174
175 plant_all = {
176 'plant_name' : plant_name,
177 'plant_data' : plant_data,
178 'name' : name
179 }
180
181 return plant_all
182
183 def daily_conditions(plant_data):
184 while now - plant_data["last_daily"] > datetime.timedelta(days = 1): #Loops through to calculate changes to plant if it's been more than a day since the last day's changes. Does multiple days worth too if needed
185 current_weather = random.randint(1, 3) # 1=sunny 2=cloudy 3=rainy
186 if current_weather == 1:
187 plant_data["current_water"] -= (random.randint(10, 20)) #how much water is lost each sunny day
188 plant_data["current_photosynthesis"] += (random.randint(4, 6)) #How much photosynthesis increases each sunny day
189 if current_weather == 2:
190 plant_data["current_water"] -= (random.randint(5, 15)) #how much water is lost each cloudy day
191 plant_data["current_photosynthesis"] += (random.randint(2, 4)) #How much photosynthesis increases each cloudy day
192 if current_weather == 3:
193 plant_data["current_water"] += (random.randint(5, 25)) #how much water is gained each rainy day
194 plant_data["current_photosynthesis"] += (random.randint(1, 2)) #How much photosynthesis increases each rainy day
195
196 plant_data["current_bugs"] += (random.randint(3, 15)) #how many bugs are added each day
197 plant_data["current_nutrients"] -= (random.randint(5, 10)) #how many nutrients are consumed each day
198 plant_data["current_weeds"] += (random.randint(3, 15)) #how many weeds grow each day
199 plant_data["last_daily"] += datetime.timedelta(days = 1)
200 plant_data["current_weather"] = current_weather
201 plant_data['current_toxicity'] -= (random.randint(0, 2))
202
203 if plant_data['current_water'] > 100 : #water can't be above 1
204 plant_data['current_water'] = 100
205
206 if plant_data["current_photosynthesis"] > 100 :
207 plant_data["burn_amount"] += (plant_data["current_photosynthesis"]-100)
208 plant_data["current_photosynthesis"] = 100
209
210 return plant_data
211
212 def totalizer_calc(plant_data,name):
213 if now > plant_data['last_calc'] + datetime.timedelta(hours = 3):
214 delta = now - plant_data['last_calc']
215 delta_d = (delta.seconds / 86400)
216 plant_calc_data = collection_nfts[name,'plant_calc_data']
217 #This sections performs an integral on the various properties for use in determining total berries produced.
218 plant_calc_data["total_water"] += (delta_d**2*((plant_calc_data["current_water"]/100-plant_calc_data["previous_water"]/100)/(delta_d))/2)+plant_calc_data["previous_water"]/100*delta_d
219 plant_calc_data["total_bugs"] += (delta_d**2*(((1-plant_calc_data["current_bugs"]/100)-(1-plant_calc_data["previous_bugs"]/100))/(delta_d))/2)+(1-plant_calc_data["previous_bugs"]/100)*delta_d
220 plant_calc_data["total_nutrients"] += (delta_d**2*((plant_calc_data["current_nutrients"]/100-plant_calc_data["previous_nutrients"]/100)/(delta_d))/2)+plant_calc_data["previous_nutrients"]/100*delta_d
221 plant_calc_data["total_weeds"] += (delta_d**2*(((1-plant_calc_data["current_weeds"]/100)-(1-plant_calc_data["previous_weeds"]/100))/(delta_d))/2)+(1-plant_calc_data["previous_weeds"]/100)*delta_d
222 collection_nfts[name,'plant_calc_data'] = plant_calc_data
223 plant_data['last_calc'] = now
224
225 return plant_data
226
227 def dead_check(plant_data):
228 if plant_data["current_toxicity"] >= 100 or plant_data["current_bugs"] >= 100 or plant_data["current_weeds"] >= 100:
229 plant_data["alive"] = False
230 if plant_data["current_water"] <= 0 or plant_data["current_nutrients"] <= 0:
231 plant_data["alive"] = False
232 return plant_data
233
234 @export
235 def water(plant_generation : int, plant_number : int, num_times : int = 1):
236 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
237 plant_data = plant_all['plant_data']
238 plant_name = plant_all['plant_name']
239 name = plant_all['name']
240
241 for x in range(0, num_times):
242 plant_data['current_water'] += (random.randint(5, 15))
243 if plant_data['current_water'] > 100 : #water can't be above 1
244 plant_data['current_water'] = 100
245
246 plant_name['nft_metadata'] = plant_data
247 collection_nfts[name] = plant_name
248
249 @export
250 def squash_bugs(plant_generation : int, plant_number : int):
251 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
252 plant_data = plant_all['plant_data']
253 plant_name = plant_all['plant_name']
254 name = plant_all['name']
255
256 t_delta = plant_data["last_squash_weed"] + datetime.timedelta(minutes = 5)
257 assert now > t_delta, f"You are still squashing bugs or pulling weeds. Try again at {t_delta}."
258
259 plant_data['current_bugs'] -= (random.randint(2, 5))
260 if plant_data['current_bugs'] < 0 :
261 plant_data['current_bugs'] = 0
262
263 plant_data["last_squash_weed"] = now
264 plant_name['nft_metadata'] = plant_data
265 collection_nfts[name] = plant_name
266
267 @export
268 def spray_bugs(plant_generation : int, plant_number : int):
269 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
270 plant_data = plant_all['plant_data']
271 plant_name = plant_all['plant_name']
272 name = plant_all['name']
273
274 plant_data['current_toxicity'] += (random.randint(1, 3))
275
276 plant_data['current_bugs'] -= (random.randint(10, 20))
277 if plant_data['current_bugs'] < 0 :
278 plant_data['current_bugs'] = 0
279
280 payment(plant_generation, 5)
281 plant_name['nft_metadata'] = plant_data
282 collection_nfts[name] = plant_name
283
284 @export
285 def grow_lights(plant_generation : int, plant_number : int):
286 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
287 plant_data = plant_all['plant_data']
288 plant_name = plant_all['plant_name']
289 name = plant_all['name']
290
291 t_delta = plant_data["last_grow_light"] + datetime.timedelta(days = 1)
292 assert now > t_delta, f"You have used a grow light or shade too recently. Try again at {t_delta}."
293
294 payment(plant_generation, 5)
295 plant_data['current_photosynthesis'] += (random.randint(3, 5))
296 plant_data["last_grow_light"] = now
297
298 if plant_data["current_photosynthesis"] > 100 :
299 plant_data["burn_amount"] += (plant_data["current_photosynthesis"]-100)
300 plant_data["current_photosynthesis"] = 100
301
302 plant_name['nft_metadata'] = plant_data
303 collection_nfts[name] = plant_name
304
305 @export
306 def shade_plant(plant_generation : int, plant_number : int):
307 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
308 plant_data = plant_all['plant_data']
309 plant_name = plant_all['plant_name']
310 name = plant_all['name']
311
312 t_delta = plant_data["last_grow_light"] + datetime.timedelta(days = 1)
313 assert now > t_delta, f"You have used a grow light or shade too recently. Try again at {t_delta}."
314
315 plant_data['current_photosynthesis'] -= (random.randint(3, 5))
316 plant_data["last_grow_light"] = now
317
318 if plant_data["current_photosynthesis"] > 100 :
319 plant_data["burn_amount"] += (plant_data["current_photosynthesis"]-100)
320 plant_data["current_photosynthesis"] = 100
321
322 plant_name['nft_metadata'] = plant_data
323 collection_nfts[name] = plant_name
324
325 @export
326 def fertilize(plant_generation : int, plant_number : int, num_times : int = 1): #increases nutrients of the plant
327 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
328 plant_data = plant_all['plant_data']
329 plant_name = plant_all['plant_name']
330 name = plant_all['name']
331
332 payment(plant_generation, 2*num_times)
333 for x in range(0, num_times):
334 plant_data['current_nutrients'] += (random.randint(3, 5))
335
336 if plant_data['current_nutrients'] > 100 :
337 plant_data["burn_amount"] += (plant_data['current_nutrients']-100)
338 plant_data['current_nutrients'] = 100
339
340 plant_name['nft_metadata'] = plant_data
341 collection_nfts[name] = plant_name
342
343 @export
344 def pull_weeds(plant_generation : int, plant_number : int): #reduces current weeds in plant and takes 5 minutes to do. Share's a timer.
345
346 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
347 plant_data = plant_all['plant_data']
348 plant_name = plant_all['plant_name']
349 name = plant_all['name']
350
351 t_delta = plant_data["last_squash_weed"] + datetime.timedelta(minutes = 5)
352 assert now > t_delta, f"You are still squashing bugs or pulling weeds. Try again at {t_delta}."
353
354 plant_data['current_weeds'] -= (random.randint(2, 5))
355 if plant_data['current_weeds'] < 0 :
356 plant_data['current_weeds'] = 0
357
358 plant_data["last_squash_weed"] = now
359 plant_name['nft_metadata'] = plant_data
360 collection_nfts[name] = plant_name
361
362 @export
363 def spray_weeds(plant_generation : int, plant_number : int):
364 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
365 plant_data = plant_all['plant_data']
366 plant_name = plant_all['plant_name']
367 name = plant_all['name']
368
369 plant_data['current_toxicity'] += (random.randint(1, 3))
370
371 plant_data['current_weeds'] -= (random.randint(10, 20))
372 if plant_data['current_weeds'] < 0 :
373 plant_data['current_weeds'] = 0
374
375 plant_name['nft_metadata'] = plant_data
376 collection_nfts[name] = plant_name
377
378 @export
379 def finalize_plant(plant_generation : int, plant_number : int): #Finalizes your plant at the end of growing season to deterimine your berry yield.
380 assert plant_generation == active_generation, f'The plant you are trying to interact with is not part of the current generation. The current generation is {active_generation}.'
381 name = f'Gen_{plant_generation}_{plant_number}'
382 assert collection_balances[ctx.caller, name] == 1, "You do not own this plant."
383 assert collection_nfts[name,'finalized'] == False, 'This plant has already been finalized.'
384 end_time = plants['growing_season_end_time']
385 assert now <= plants['finalize_time'] and now >= end_time, 'It is not time to finalize your plant.'
386 if ctx.caller.startswith('con_'): return
387 plant_name = collection_nfts[name]
388 plant_data = plant_name['nft_metadata']
389 assert plant_data["alive"] == True, 'Your plant is dead due to neglect and you must buy a new plant to try again. Try not to kill it too.'
390
391 delta = end_time - plant_data['last_calc']
392 delta_d = (delta.seconds / 86400)
393
394 plant_calc_data = collection_nfts[name,'plant_calc_data']
395 #This sections performs an integral on the various properties for use in determining total berries produced.
396 plant_calc_data["total_water"] += (delta_d**2*((plant_calc_data["current_water"]/100-plant_calc_data["previous_water"]/100)/(delta_d))/2)+plant_calc_data["previous_water"]/100*delta_d
397 plant_calc_data["total_bugs"] += (delta_d**2*(((1-plant_calc_data["current_bugs"]/100)-(1-plant_calc_data["previous_bugs"]/100))/(delta_d))/2)+(1-plant_calc_data["previous_bugs"]/100)*delta_d
398 plant_calc_data["total_nutrients"] += (delta_d**2*((plant_calc_data["current_nutrients"]/100-plant_calc_data["previous_nutrients"]/100)/(delta_d))/2)+plant_calc_data["previous_nutrients"]/100*delta_d
399 plant_calc_data["total_weeds"] += (delta_d**2*(((1-plant_calc_data["current_weeds"]/100)-(1-plant_calc_data["previous_weeds"]/100))/(delta_d))/2)+(1-plant_calc_data["previous_weeds"]/100)*delta_d
400
401 collection_nfts[name,'plant_calc_data'] = plant_calc_data
402
403 plant_data['last_calc'] = now
404 plant_name['nft_metadata'] = plant_data
405 collection_nfts[name] = plant_name
406
407 length = metadata['growing_season_length']
408 berries = int(1000 * ((plant_calc_data["total_water"]*plant_calc_data["total_bugs"]*plant_calc_data["total_nutrients"]*plant_calc_data["total_weeds"])/(length**4))*(1-plant_data['current_toxicity']/100)*(plant_data["current_photosynthesis"]/100)*(1-plant_data["burn_amount"]/100))
409 collection_nfts[name,'berries'] = berries
410 collection_nfts[name,'final_score'] = berries
411 plants[plant_generation,'total_berries'] += berries
412 collection_nfts[name,'finalized'] == True
413
414 def sell_berries(plant_generation : int, plant_number : int): #redeem berries for TAU. Must be done after plant finalize time is over.
415 name = f'Gen_{plant_generation}_{plant_number}'
416 assert collection_balances[ctx.caller, name] == 1, "You do not own this plant."
417 berries = collection_nfts[name,'berries']
418 assert berries > 0, "You don't have any berries to sell."
419 assert now >= plants['finalize_time'], f"You can't sell yet. Try again after {plants['finalize_time']} but do not wait too long."
420 sell_price = plants[plant_generation, 'total_tau'] / plants[plant_generation,'total_berries']
421 proceeds = sell_price * berries
422 currency.transfer(amount=proceeds, to=ctx.caller)
423 collection_nfts[name,'berries'] = 0
424 plants[plant_generation, 'total_tau'] -= proceeds
425
426 def payment(plant_generation, amount): #used to process payments
427 currency.transfer_from(amount=amount*0.95, to=ctx.this, main_account=ctx.caller)
428 currency.transfer_from(amount=amount*0.05, to=metadata['operator'], main_account=ctx.caller)
429 plants[plant_generation, 'total_tau'] += amount
430
431 @export
432 def manual_reward_add(plant_generation : int, amount : int): #used to manually add more tau to the prize pool
433 currency.transfer_from(amount=amount, to=ctx.this, main_account=ctx.caller)
434 plants[plant_generation, 'total_tau'] += amount
435
436 @export
437 def stale_claims(plant_generation : int): #used by the operator to claim tau from a plant generation that ended at least 30 days prior. This allows players aple time to sell their berries
438 assert metadata['operator'] == ctx.caller, "Only the operator can claim stale tau."
439 stale_claim_time = plants[plant_generation,'stale_claim_time']
440 assert now >= stale_claim_time, f"The tau is not stale yet and cannot be claimed. Try again after {stale_claim_time}"
441 stale_tau = plants[plant_generation, 'total_tau']
442 assert stale_tau > 0, "There is no stale tau to claim."
443 currency.transfer(amount=stale_tau, to=ctx.caller)
444
445 @export
446 def nickname(plant_generation : int, plant_number : int, nick : str):
447 name = f'Gen_{plant_generation}_{plant_number}'
448 assert collection_balances[ctx.caller, name] == 1, "You do not own this plant."
449 assert bool(collection_nfts[nick]) == False, "This nickname already exists."
450 payment(plant_generation, 2)
451 collection_nfts[nick] = [plant_generation , plant_number]
452
453 @export
454 def nickname_interaction(nickname : str, function_name :str):
455 nick = collection_nfts[nickname]
456
457 function_names = {
458 'water' : water,
459 'squash_bugs' : squash_bugs,
460 'spray_bugs' : spray_bugs,
461 'grow_lights' : grow_lights,
462 'shade_plant' : shade_plant,
463 'fertilize' : fertilize,
464 'pull_weeds' : pull_weeds,
465 'spray_weeds' : spray_weeds
466 }
467
468 function_names[function_name](nick[0],nick[1])
469
470 @export
471 def emergency_withdraw(amount:float): #temporary function used in testing. will be removed from final contract.
472 assert metadata['operator'] == ctx.caller, "Only the operator can claim tau."
473 currency.transfer(amount=amount, to=ctx.caller)

Byte Code

e3000000000000000000000000070000004000000073c0020000640064016c005a0065016402640364048d025a0265016402640564048d025a03650464006402640664078d035a05650464006402640864078d035a06650464006402640964078d035a07650464006402640a64078d035a0865046402640b64048d025a0965046402640c64048d025a0a650b6a0c83000100640d640e84005a0d650e64028301650f650f640f9c0264106411840483015a10650e64028301650f650f650f6511651264129c0564136414840483015a13650e64028301650f6512650f64159c0364166417840483015a14650e640283016512650f650f64189c036419641a840483015a15650e64028301650f6512650f650f641b9c04641c641d840483015a16650e64028301641e641f840083015a17650e6402830164206421840083015a186512651264229c026423642484045a196425642684005a1a6427642884005a1b6429642a84005a1c650e640283016452651265126512642c9c03642d642e840583015a1d650e640283016512651264229c02642f6430840483015a1e650e640283016512651264229c0264316432840483015a1f650e640283016512651264229c0264336434840483015a20650e640283016512651264229c0264356436840483015a21650e640283016453651265126512642c9c0364376438840583015a22650e640283016512651264229c026439643a840483015a23650e640283016512651264229c02643b643c840483015a24650e640283016512651264229c02643d643e840483015a256512651264229c02643f644084045a266441644284005a27650e640283016512651264439c0264446445840483015a28650e64028301651264469c0164476448840483015a29650e6402830165126512650f64499c03644a644b840483015a2a650e64028301650f650f644c9c02644d644e840483015a2b650e64028301652c644f9c0164506451840483015a2d640153002954e9000000004eda0e636f6e5f746573746661726d3034da0f636f6c6c656374696f6e5f6e616d652902da08636f6e7472616374da046e616d65da10636f6c6c656374696f6e5f6f776e6572da0f636f6c6c656374696f6e5f6e6674732903da0d64656661756c745f76616c756572040000007205000000da13636f6c6c656374696f6e5f62616c616e636573da1d636f6c6c656374696f6e5f62616c616e6365735f617070726f76616c73da06706c616e7473da086d65746164617461da096e69636b6e616d6573630000000000000000010000000300000043000000736c00000074006a0164018301010074026a0174036a048301010074036a04740564023c00740664038301740564043c006405740564063c006407740564083c0064097405640a3c00640b7407640c3c0074087407640d3c00640e7407640f3c006411740764103c0069007d006400530029124eda0b546573745f706c616e7473da086f70657261746f727a04302e3035da09726f79616c74696573e904000000da1567726f77696e675f736561736f6e5f6c656e677468e9010000007a0b706c616e74207072696365da11636f6e5f6262665f6576656e74735f3031da0d6576656e745f68616e646c657246da0e67726f77696e675f736561736f6eda1967726f77696e675f736561736f6e5f73746172745f74696d657201000000da05636f756e74da116163746976655f67656e65726174696f6ee9ffffffff2909da115f5f636f6c6c656374696f6e5f6e616d65da03736574da125f5f636f6c6c656374696f6e5f6f776e6572da03637478da0663616c6c6572da0a5f5f6d65746164617461da07646563696d616cda085f5f706c616e7473da036e6f772901da0b5f5f6e69636b6e616d6573a9007225000000da00da045f5f5f5f11000000731800000000010a010c010a010c01080108010801080108010801080172270000002902da036b6579da096e65775f76616c7565630200000000000000020000000300000043000000732200000074006a017402640119006b02731674036402830182017c0174027c003c006400530029034e720f0000007a1e6f6e6c79206f70657261746f722063616e20736574206d657461646174612904721e000000721f0000007220000000da0e417373657274696f6e4572726f72290272280000007229000000722500000072250000007226000000da0f6368616e67655f6d65746164617461200000007306000000000210010601722b00000029057205000000da0b6465736372697074696f6eda0e697066735f696d6167655f75726cda0c6e66745f6d65746164617461da06616d6f756e7463050000000000000005000000050000004300000073580000007c0064016b037310740064028301820174017c00190064036b02732474006404830182017c0464036b04733474006405830182017c017c027c037c0464069c0474017c003c007c04740274036a047c0066023c006400530029074e72260000007a144e616d652063616e6e6f7420626520656d70747972010000007a134e616d6520616c7265616479206578697374737a24596f752063616e6e6f74207472616e73666572206e6567617469766520616d6f756e74732904722c000000722d000000722e000000722f0000002905722a000000da115f5f636f6c6c656374696f6e5f6e667473da155f5f636f6c6c656374696f6e5f62616c616e636573721e000000721f00000029057205000000722c000000722d000000722e000000722f000000722500000072250000007226000000da086d696e745f6e667427000000730c000000000310011401100102011001723200000029037205000000722f000000da02746f63030000000000000003000000040000004300000073680000007c0164016b04731074006402830182017c0064036b0373207400640483018201740174026a037c00660219007c016b05733a7400640583018201740174026a037c006602050019007c01380003003c0074017c027c006602050019007c01370003003c006400530029064e72010000007a24596f752063616e6e6f74207472616e73666572206e6567617469766520616d6f756e747372260000007a37506c65617365207370656369667920746865206e616d65206f6620746865204e465420796f752077616e7420746f207472616e736665727a22596f7520646f6e2774206861766520656e6f756768204e46547320746f2073656e642904722a0000007231000000721e000000721f00000029037205000000722f0000007233000000722500000072250000007226000000da087472616e7366657232000000730c0000000002100110010c010e01160172340000002903722f00000072050000007233000000630300000000000000030000000400000043000000732c0000007c0064016b0473107400640283018201740174026a037c027c016603050019007c00370003003c006400530029034e72010000007a1f43616e6e6f7420617070726f7665206e6567617469766520616d6f756e74732904722a000000da1f5f5f636f6c6c656374696f6e5f62616c616e6365735f617070726f76616c73721e000000721f0000002903722f00000072050000007233000000722500000072250000007226000000da07617070726f76653c000000730400000000021001723600000029047205000000722f0000007233000000da0c6d61696e5f6163636f756e7463040000000000000004000000060000004300000073960000007c0164016b047310740064028301820174017c037c027c00660319007c016b05733c740064036a0274017c037c027c00660319007c0183028301820174037c037c00660219007c016b057354740064048301820174017c037c027c006603050019007c01380003003c0074037c037c006602050019007c01380003003c0074037c027c006602050019007c01370003003c006400530029054e72010000007a1e43616e6e6f742073656e64206e656761746976652062616c616e636573217a484e6f7420656e6f756768204e46547320617070726f76656420746f2073656e642120596f752068617665207b7d20616e642061726520747279696e6720746f207370656e64207b7d7a184e6f7420656e6f756768204e46547320746f2073656e64212904722a0000007235000000da06666f726d6174723100000029047205000000722f00000072330000007237000000722500000072250000007226000000da0d7472616e736665725f66726f6d420000007312000000000210010c010c0114010a010e0116011401723900000063000000000000000003000000040000004300000073c200000074006a01830074026a036b02731674046401830182017405640219007d007c0064036b02732e74046404830182017406640519007d017405640619007d027c02640737007d026408740564023c007407740564093c00740774086a097c01640a8d0117007405640b3c00740774086a097c01640c1700640a8d0117007405640d3c007c02740564063c00640e74057c02640f66023c00640e74057c02641066023c00740774086a097c0164111700640a8d01170074057c02641266023c006400530029134e7a2a4f6e6c7920746865206f776e65722063616e20737461727420612067726f77696e6720736561736f6e2e7216000000467a1d497420697320616c72656164792067726f77696e6720736561736f6e2e7212000000721900000072130000005472170000002901da0464617973da1767726f77696e675f736561736f6e5f656e645f74696d65e903000000da0d66696e616c697a655f74696d657201000000da0d746f74616c5f62657272696573da09746f74616c5f746175e91e000000da107374616c655f636c61696d5f74696d65290a721d000000da03676574721e000000721f000000722a000000722200000072200000007223000000da086461746574696d65da0974696d6564656c74612903da0b67726f775f736561736f6e7212000000da0a6163746976655f67656e722500000072250000007226000000da1473746172745f67726f77696e675f736561736f6e4f0000007324000000000206011001080110010801080108010801080106010e010601120108010c010c010601724700000063000000000000000005000000110000004300000073f000000074006401190064026b02731474016403830182017400640419007d0074026a0364056406830274026a03640764088302640974026a0364056406830274026a036407640883026409640a74047404740464027c00740474056a066419640b8d011700740474056a06641a640b8d0117006409640c9c0f7d017c01640d19007c01640e19007c01640f19007c0164101900640964096409640964119c087d02740064121900640a17007d0364137c009b0064147c039b009d047d0474077c007408641519008302010074097c04641664177c01640a830501007c02740a7c04641866023c007c03740064123c0064005300291b4e7216000000547a3e5468652067726f77696e6720736561736f6e20686173206e6f7420737461727465642c20736f20796f752063616e6e6f7420627579206120706c616e742e7219000000e932000000e950000000e905000000e919000000720100000072130000002901723a000000290fda0d63757272656e745f7761746572da0c63757272656e745f62756773da1663757272656e745f70686f746f73796e746865736973da1163757272656e745f6e75747269656e7473da0d63757272656e745f7765656473da1063757272656e745f746f786963697479da0f63757272656e745f77656174686572da106c6173745f696e746572616374696f6eda0a6c6173745f6461696c79da096c6173745f63616c63da05616c697665da0a67656e65726174696f6eda106c6173745f7371756173685f77656564da0f6c6173745f67726f775f6c69676874da0b6275726e5f616d6f756e74724c000000724d000000724f00000072500000002908da0e70726576696f75735f7761746572da0d70726576696f75735f62756773da1270726576696f75735f6e75747269656e7473da0e70726576696f75735f7765656473da0b746f74616c5f7761746572da0a746f74616c5f62756773da0f746f74616c5f6e75747269656e7473da0b746f74616c5f77656564737218000000da0447656e5fda015f7a0b706c616e742070726963657a17706c616365686f6c646572206465736372697074696f6e7a15706c616365686f6c64657220696d6167652055524cda0f706c616e745f63616c635f64617461721a000000721a000000290b7222000000722a000000da0672616e646f6dda0772616e64696e74722300000072430000007244000000da095f5f7061796d656e747220000000723200000072300000002905da10706c616e745f67656e65726174696f6eda0a706c616e745f646174617265000000da07705f636f756e747205000000722500000072250000007226000000da096275795f706c616e7465000000732e000000000206010e0108010a010c010a010e01060104011001140106010601080108010a010c0110010e01080108010c01726c00000029027269000000da0c706c616e745f6e756d62657263020000000000000008000000060000004300000073680100007400640119007d027c007c026b027320740164027c029b0064039d038301820164047c009b0064057c019b009d047d03740274036a047c036602190064066b02734a740164078301820174057400640819006b01735e740164098301820174036a046a06640a8301726e6400530074077c0319007d047c04640b19007d057c05640c1900640d6b0273927401640e8301820174057c05640f190074086a09641064118d0117006b049001720c7c05641205001900740a6a0b641364148302380003003c007c05641505001900740a6a0b641364148302370003003c007c05641605001900740a6a0b641364148302380003003c007c05641705001900740a6a0b641364148302370003003c00740c7c0583017d05740d7c057c0383027d05740a6a0b64066418830264186b0290017248740e6a0f74106419190083017d067c066a117c0583017d0574127c0583017d0574057c05640f3c007c047c057c03641a9c037d077c075300291b4e72190000007a6b54686520706c616e7420796f752061726520747279696e6720746f20696e7465726163742077697468206973206e6f742070617274206f66207468652063757272656e742067656e65726174696f6e2e205468652063757272656e742067656e65726174696f6e20697320da012e7263000000726400000072130000007a1a596f7520646f206e6f74206f776e207468697320706c616e742e723b0000007a495468652067726f77696e6720736561736f6e206973206e6f74206163746976652c20736f20796f752063616e6e6f7420696e746572616374207769746820796f757220706c616e742eda04636f6e5f722e0000007256000000547a64596f757220706c616e7420697320646561642064756520746f206e65676c65637420616e6420796f75206d757374206275792061206e657720706c616e7420746f2074727920616761696e2e20547279206e6f7420746f206b696c6c20697420746f6f2e7253000000e90c0000002901da05686f757273724c000000724a000000e90f000000724d000000724f0000007250000000e90a00000072150000002903da0a706c616e745f6e616d65726a000000720500000029137222000000722a0000007231000000721e000000721f0000007223000000da0a7374617274737769746872300000007243000000724400000072660000007267000000da125f5f6461696c795f636f6e646974696f6e73da105f5f746f74616c697a65725f63616c63da09696d706f72746c6962da0d696d706f72745f6d6f64756c657220000000da056576656e74da0c5f5f646561645f636865636b29087269000000726d000000721900000072050000007274000000726a000000da0e6576656e745f636f6e7472616374da09706c616e745f616c6c722500000072250000007226000000da0e5f5f616374696f6e5f736574757080000000733800000000010801180110010c010e010e0106010c0104010801080106010e011a01180118011801180108010a0112010e010a010801080104010801727e000000630100000000000000020000000600000043000000739c0100009001789474007c0064011900180074016a02640264038d016b049001729674036a046402640483027d017c0164026b0272627c0064050500190074036a04640664078302380003003c007c0064080500190074036a046409640a8302370003003c007c01640b6b02729a7c0064050500190074036a04640c640d8302380003003c007c0064080500190074036a04640b64098302370003003c007c0164046b0272d27c0064050500190074036a04640c640e8302370003003c007c0064080500190074036a046402640b8302370003003c007c00640f0500190074036a046404640d8302370003003c007c0064100500190074036a04640c64068302380003003c007c0064110500190074036a046404640d8302370003003c007c0064010500190074016a02640264038d01370003003c007c017c0064123c007c0064130500190074036a046414640b8302380003003c007c006405190064156b049001726864157c0064053c007c006408190064156b0472047c006416050019007c006408190064151800370003003c0064157c0064083c00710457007c00530029174e725400000072130000002901723a000000723c000000724c0000007273000000e914000000724e0000007211000000e906000000e902000000724a0000007272000000724b000000724d000000724f0000007250000000725200000072510000007201000000e964000000725a0000002905722300000072430000007244000000726600000072670000002902726a000000725200000072250000007225000000722600000072760000009f000000733000000000011e010c010801180118010801180118010801180118011801180118011801080118010e0108010c010e010a010c017276000000630200000000000000050000000800000043000000737c01000074007c006401190074016a02640264038d0117006b049001727874007c006401190018007d027c026a0364041b007d0374047c016405660219007d047c046406050019007c03640713007c046408190064091b007c04640a190064091b0018007c031b00140064071b007c04640a190064091b007c0314001700370003003c007c04640b050019007c0364071300640c7c04640d190064091b001800640c7c04640e190064091b00180018007c031b00140064071b00640c7c04640e190064091b0018007c0314001700370003003c007c04640f050019007c03640713007c046410190064091b007c046411190064091b0018007c031b00140064071b007c046411190064091b007c0314001700370003003c007c046412050019007c0364071300640c7c046413190064091b001800640c7c046414190064091b00180018007c031b00140064071b00640c7c046414190064091b0018007c0314001700370003003c007c0474047c01640566023c0074007c0064013c007c00530029154e7255000000723c0000002901727100000069805101007265000000725f0000007281000000724c0000007282000000725b00000072600000007213000000724d000000725c0000007261000000724f000000725d00000072620000007250000000725e0000002905722300000072430000007244000000da077365636f6e647372300000002905726a0000007205000000da0564656c7461da0764656c74615f6472650000007225000000722500000072260000007277000000ba000000732600000000011a010c010a010c010802260116010802320116010802260116010802320116010c010801727700000063010000000000000001000000030000004300000073500000007c006401190064026b0573247c006403190064026b0573247c006404190064026b05722c64057c0064063c007c006407190064086b0173447c006409190064086b01724c64057c0064063c007c005300290a4e72510000007282000000724d0000007250000000467256000000724c0000007201000000724f00000072250000002901726a000000722500000072250000007226000000727b000000d4000000730e0000000001120112010801120106010801727b000000721300000029037269000000726d000000da096e756d5f74696d6573630300000000000000080000000700000043000000737600000074007c007c0183027d037c03640119007d047c03640219007d057c03640319007d06782a740164047c02830244005d1c7d077c0464050500190074026a03640664078302370003003c00712e57007c046405190064086b04726264087c0464053c007c047c0564093c007c0574047c063c0064005300290a4e726a000000727400000072050000007201000000724c000000724a00000072720000007282000000722e0000002905727e000000da0572616e676572660000007267000000723000000029087269000000726d0000007286000000727d000000726a00000072740000007205000000da0178722500000072250000007226000000da057761746572de000000731400000000020a0108010801080110011c010c01080108017289000000630200000000000000070000000600000043000000739600000074007c007c0183027d027c02640119007d037c02640219007d047c02640319007d057c036404190074016a02640564068d0117007d0674037c066b04734e740464077c069b0064089d03830182017c0364090500190074056a06640a64058302380003003c007c0364091900640b6b00727a640b7c0364093c0074037c0364043c007c037c04640c3c007c0474077c053c0064005300290d4e726a000000727400000072050000007258000000724a0000002901da076d696e757465737a3c596f7520617265207374696c6c20737175617368696e672062756773206f722070756c6c696e672077656564732e2054727920616761696e20617420726e000000724d00000072810000007201000000722e0000002908727e000000724300000072440000007223000000722a00000072660000007267000000723000000029077269000000726d000000727d000000726a00000072740000007205000000da07745f64656c7461722500000072250000007226000000da0b7371756173685f62756773ec000000731800000000020a010801080108011401180118010c01080108010801728c000000630200000000000000060000000600000043000000738400000074007c007c0183027d027c02640119007d037c02640219007d047c02640319007d057c0364040500190074016a02640564068302370003003c007c0364070500190074016a02640864098302380003003c007c0364071900640a6b007266640a7c0364073c0074037c00640b830201007c037c04640c3c007c0474047c053c0064005300290d4e726a0000007274000000720500000072510000007213000000723c000000724d0000007273000000727f0000007201000000724a000000722e0000002905727e000000726600000072670000007268000000723000000029067269000000726d000000727d000000726a00000072740000007205000000722500000072250000007226000000da0a73707261795f62756773fc000000731600000000020a01080108010801180118010c0108010a010801728d00000063020000000000000007000000060000004300000073b800000074007c007c0183027d027c02640119007d037c02640219007d047c02640319007d057c036404190074016a02640564068d0117007d0674037c066b04734e740464077c069b0064089d038301820174057c006409830201007c03640a0500190074066a07640b64098302370003003c0074037c0364043c007c03640a1900640c6b0472a47c03640d050019007c03640a1900640c1800370003003c00640c7c03640a3c007c037c04640e3c007c0474087c053c0064005300290f4e726a00000072740000007205000000725900000072130000002901723a0000007a3f596f752068617665207573656420612067726f77206c69676874206f7220736861646520746f6f20726563656e746c792e2054727920616761696e20617420726e000000724a000000724e000000723c0000007282000000725a000000722e0000002909727e000000724300000072440000007223000000722a000000726800000072660000007267000000723000000029077269000000726d000000727d000000726a00000072740000007205000000728b000000722500000072250000007226000000da0b67726f775f6c69676874730b010000731c00000000020a01080108010801140118010a01180108010c01180108010801728e00000063020000000000000007000000060000004300000073ae00000074007c007c0183027d027c02640119007d037c02640219007d047c02640319007d057c036404190074016a02640564068d0117007d0674037c066b04734e740464077c069b0064089d03830182017c0364090500190074056a06640a640b8302380003003c0074037c0364043c007c0364091900640c6b04729a7c03640d050019007c0364091900640c1800370003003c00640c7c0364093c007c037c04640e3c007c0474077c053c0064005300290f4e726a00000072740000007205000000725900000072130000002901723a0000007a3f596f752068617665207573656420612067726f77206c69676874206f7220736861646520746f6f20726563656e746c792e2054727920616761696e20617420726e000000724e000000723c000000724a0000007282000000725a000000722e0000002908727e000000724300000072440000007223000000722a00000072660000007267000000723000000029077269000000726d000000727d000000726a00000072740000007205000000728b000000722500000072250000007226000000da0b73686164655f706c616e741d010000731a00000000020a0108010801080114011801180108010c01180108010801728f000000630300000000000000080000000700000043000000739c00000074007c007c0183027d037c03640119007d047c03640219007d057c03640319007d0674017c0064047c02140083020100782a740264057c02830244005d1c7d077c0464060500190074036a04640764088302370003003c00713c57007c046406190064096b0472887c04640a050019007c046406190064091800370003003c0064097c0464063c007c047c05640b3c007c0574057c063c0064005300290c4e726a0000007274000000720500000072810000007201000000724f000000723c000000724a0000007282000000725a000000722e0000002906727e0000007268000000728700000072660000007267000000723000000029087269000000726d0000007286000000727d000000726a000000727400000072050000007288000000722500000072250000007226000000da0966657274696c697a652e010000731800000000020a010801080108010e0110011c010c011801080108017290000000630200000000000000070000000600000043000000739600000074007c007c0183027d027c02640119007d037c02640219007d047c02640319007d057c036404190074016a02640564068d0117007d0674037c066b04734e740464077c069b0064089d03830182017c0364090500190074056a06640a64058302380003003c007c0364091900640b6b00727a640b7c0364093c0074037c0364043c007c037c04640c3c007c0474077c053c0064005300290d4e726a000000727400000072050000007258000000724a0000002901728a0000007a3c596f7520617265207374696c6c20737175617368696e672062756773206f722070756c6c696e672077656564732e2054727920616761696e20617420726e000000725000000072810000007201000000722e0000002908727e000000724300000072440000007223000000722a00000072660000007267000000723000000029077269000000726d000000727d000000726a00000072740000007205000000728b000000722500000072250000007226000000da0a70756c6c5f77656564733e010000731800000000020a010801080108011401180118010c010801080108017291000000630200000000000000060000000600000043000000737a00000074007c007c0183027d027c02640119007d037c02640219007d047c02640319007d057c0364040500190074016a02640564068302370003003c007c0364070500190074016a02640864098302380003003c007c0364071900640a6b007266640a7c0364073c007c037c04640b3c007c0474037c053c0064005300290c4e726a0000007274000000720500000072510000007213000000723c00000072500000007273000000727f0000007201000000722e0000002904727e00000072660000007267000000723000000029067269000000726d000000727d000000726a00000072740000007205000000722500000072250000007226000000da0b73707261795f77656564734e010000731400000000020a01080108010801180118010c010801080172920000006302000000000000000b000000080000004300000073c40200007c0074006b0273187401640174009b0064029d038301820164037c009b0064047c019b009d047d02740274036a047c026602190064056b027342740164068301820174057c0264076602190064086b02735a74016409830182017406640a19007d0374077406640b19006b01727674077c036b05737e7401640c8301820174036a046a08640d8301728e6400530074057c0219007d047c04640e19007d057c05640f190064106b0273b274016411830182017c037c056412190018007d067c066a0964131b007d0774057c026414660219007d087c086415050019007c07641613007c086417190064181b007c086419190064181b0018007c071b00140064161b007c086419190064181b007c0714001700370003003c007c08641a050019007c076416130064057c08641b190064181b00180064057c08641c190064181b00180018007c071b00140064161b0064057c08641c190064181b0018007c0714001700370003003c007c08641d050019007c07641613007c08641e190064181b007c08641f190064181b0018007c071b00140064161b007c08641f190064181b007c0714001700370003003c007c086420050019007c076416130064057c086421190064181b00180064057c086422190064181b00180018007c071b00140064161b0064057c086422190064181b0018007c0714001700370003003c007c0874057c02641466023c0074077c0564123c007c057c04640e3c007c0474057c023c00740a642319007d09740b64247c08641519007c08641a190014007c08641d190014007c086420190014007c09642513001b00140064057c056426190064181b00180014007c056427190064181b00140064057c056428190064181b001800140083017d0a7c0a74057c02642966023c007c0a74057c02642a66023c0074067c00642b6602050019007c0a370003003c0074057c0264076602190064106b02010064005300292c4e7a6b54686520706c616e7420796f752061726520747279696e6720746f20696e7465726163742077697468206973206e6f742070617274206f66207468652063757272656e742067656e65726174696f6e2e205468652063757272656e742067656e65726174696f6e20697320726e0000007263000000726400000072130000007a1a596f7520646f206e6f74206f776e207468697320706c616e742eda0966696e616c697a6564467a265468697320706c616e742068617320616c7265616479206265656e2066696e616c697a65642e723b000000723d0000007a264974206973206e6f742074696d6520746f2066696e616c697a6520796f757220706c616e742e726f000000722e0000007256000000547a64596f757220706c616e7420697320646561642064756520746f206e65676c65637420616e6420796f75206d757374206275792061206e657720706c616e7420746f2074727920616761696e2e20547279206e6f7420746f206b696c6c20697420746f6f2e725500000069805101007265000000725f0000007281000000724c0000007282000000725b0000007260000000724d000000725c0000007261000000724f000000725d00000072620000007250000000725e000000721200000069e803000072110000007251000000724e000000725a000000da0762657272696573da0b66696e616c5f73636f7265723e000000290c7219000000722a0000007231000000721e000000721f000000723000000072220000007223000000727500000072830000007220000000da03696e74290b7269000000726d0000007205000000da08656e645f74696d657274000000726a000000728400000072850000007265000000da066c656e6774687294000000722500000072250000007226000000da0e66696e616c697a655f706c616e745c01000073500000000002180110010c010e010a010e0108010c0110010c0104010801080106010e010c010a010c0108023c0108023c010c0108022601160108023c010c010c01080108010801080102045a010c010c011401729900000063020000000000000006000000040000004300000073ba00000064017c009b0064027c019b009d047d02740074016a027c026602190064036b02732a740364048301820174047c026405660219007d037c0364066b047346740364078301820174057406640819006b057366740364097406640819009b00640a9d038301820174067c00640b6602190074067c00640c660219001b007d047c047c0314007d0574076a087c0574016a02640d8d020100640674047c02640566023c0074067c00640b6602050019007c05380003003c0064005300290e4e7263000000726400000072130000007a1a596f7520646f206e6f74206f776e207468697320706c616e742e729400000072010000007a23596f7520646f6e2774206861766520616e79206265727269657320746f2073656c6c2e723d0000007a24596f752063616e27742073656c6c207965742e2054727920616761696e206166746572207a1a2062757420646f206e6f74207761697420746f6f206c6f6e672e723f000000723e0000002902722f000000723300000029097231000000721e000000721f000000722a000000723000000072230000007222000000da0863757272656e6379723400000029067269000000726d00000072050000007294000000da0a73656c6c5f7072696365da0870726f6365656473722500000072250000007226000000da0e5f5f73656c6c5f626572726965738f010000731a000000000110010c010e010c0110010e0112010c010c01080110010c01729d000000630200000000000000020000000500000043000000735200000074006a017c01740264018301140074036a0474036a0564028d03010074006a017c01740264038301140074066404190074036a0564028d03010074077c0064056602050019007c01370003003c006400530029064e7a04302e39352903722f000000723300000072370000007a04302e3035720f000000723f0000002908729a00000072390000007221000000721e000000da0474686973721f0000007220000000722200000029027269000000722f00000072250000007225000000722600000072680000009f010000730a000000000112010a0110010e01726800000029027269000000722f000000630200000000000000020000000500000043000000732c00000074006a017c0174026a0374026a0464018d03010074057c0064026602050019007c01370003003c006400530029034e2903722f00000072330000007237000000723f0000002906729a0000007239000000721e000000729e000000721f000000722200000029027269000000722f000000722500000072250000007226000000da116d616e75616c5f7265776172645f616464a7010000730400000000021401729f00000029017269000000630100000000000000030000000400000043000000736800000074006401190074016a026b027316740364028301820174047c006403660219007d0174057c016b057338740364047c019b009d028301820174047c006405660219007d027c0264066b047354740364078301820174066a077c0274016a0264088d0201006400530029094e720f0000007a264f6e6c7920746865206f70657261746f722063616e20636c61696d207374616c65207461752e72410000007a4054686520746175206973206e6f74207374616c652079657420616e642063616e6e6f7420626520636c61696d65642e2054727920616761696e20616674657220723f00000072010000007a1f5468657265206973206e6f207374616c652074617520746f20636c61696d2e2902722f000000723300000029087220000000721e000000721f000000722a00000072220000007223000000729a0000007234000000290372690000007241000000da097374616c655f746175722500000072250000007226000000da0c7374616c655f636c61696d73ad010000730e0000000002060110010c0116010c01100172a100000029037269000000726d000000da046e69636b630300000000000000040000000400000043000000735c00000064017c009b0064027c019b009d047d03740074016a027c036602190064036b02732a7403640483018201740474057c021900830164056b027342740364068301820174067c006407830201007c007c01670274057c023c006400530029084e7263000000726400000072130000007a1a596f7520646f206e6f74206f776e207468697320706c616e742e467a1d54686973206e69636b6e616d6520616c7265616479206578697374732e728100000029077231000000721e000000721f000000722a000000da04626f6f6c7230000000726800000029047269000000726d00000072a20000007205000000722500000072250000007226000000da086e69636b6e616d65b8010000730e000000000210010c010e010a010e010a0172a4000000290272a4000000da0d66756e6374696f6e5f6e616d65630200000000000000040000000900000043000000733800000074007c0019007d027401740274037404740574067407740864019c087d037c037c0119007c02640219007c0264031900830201006400530029044e29087289000000728c000000728d000000728e000000728f00000072900000007291000000729200000072010000007213000000290972300000007289000000728c000000728d000000728e000000728f000000729000000072910000007292000000290472a400000072a500000072a2000000da0e66756e6374696f6e5f6e616d6573722500000072250000007226000000da146e69636b6e616d655f696e746572616374696f6ec3010000730c00000000020801040104010601080172a70000002901722f000000630100000000000000010000000400000043000000732a00000074006401190074016a026b027316740364028301820174046a057c0074016a0264038d0201006400530029044e720f0000007a204f6e6c7920746865206f70657261746f722063616e20636c61696d207461752e2902722f000000723300000029067220000000721e000000721f000000722a000000729a00000072340000002901722f000000722500000072250000007226000000da12656d657267656e63795f7769746864726177cd010000730600000000020601100172a80000002901721300000029017213000000292e729a000000da085661726961626c65721b000000721d000000da04486173687230000000723100000072350000007222000000722000000072240000007266000000da04736565647227000000da085f5f6578706f7274da03737472722b000000da0464696374729600000072320000007234000000723600000072390000007247000000726c000000727e00000072760000007277000000727b0000007289000000728c000000728d000000728e000000728f0000007290000000729100000072920000007299000000729d0000007268000000729f00000072a100000072a400000072a7000000da05666c6f617472a80000007225000000722500000072250000007226000000da083c6d6f64756c653e01000000737a00000008010c0104010801060108010601080104010a010e010c010c010803080f0601120606010601120906011409060114050601160c1016101b101f081b081a080a0601160d0601120f0601120e06011211060112100601160f0601120f0601120d0601123210100808060112050601100a0601140a060112090601