Contract con_testfarm02


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'] = 30
25 metadata['plant price'] = 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_gen, 'total_berries'] = 0
96 plants[active_gen, 'total_tau'] = 0
97 plants[active_gen,'stale_claim_time'] = now + datetime.timedelta(days = growing_season_length + 30)
98
99
100 @export
101 def buy_plant():
102 assert plants['growing_season'] == True, 'The growing season has not started, so you cannot buy a plant.'
103 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."
104 plant_generation = plants['active_generation']
105
106 plant_data = {
107 #"drought_resist": (random.randint(0, 25)),
108 #"crop_yield": (random.randint(90, 110)),
109 #"bug_resist": (random.randint(0, 25)),
110 #"photosynthesis_rate": (random.randint(90, 110)),
111 "current_water": (random.randint(50, 80)),
112 "current_bugs" : (random.randint(5, 25)),
113 "current_photosynthesis" : 0,
114 "current_nutrients" : (random.randint(50, 80)),
115 "current_weeds" : (random.randint(5, 25)),
116 "current_toxicity" : 0,
117 "current_weather" : 1,
118 "last_interaction" : now,
119 "last_daily" : now,
120 "last_calc" : now,
121 "alive" : True,
122 "generation" : plant_generation,
123 "last_squash_weed" : (now + datetime.timedelta(days = -1)),
124 "last_grow_light" : (now + datetime.timedelta(days = -1)),
125 "burn_amount" : 0
126 }
127
128 plant_calc_data = {
129 "previous_water": plant_data["current_water"],
130 "previous_bugs" : plant_data["current_bugs"],
131 "previous_nutrients" : plant_data["current_nutrients"],
132 "previous_weeds" : plant_data["current_weeds"],
133 "total_water": 0,
134 "total_bugs" : 0,
135 "total_nutrients" : 0,
136 "total_weeds": 0
137 }
138
139 p_count = plants['count'] + 1
140 name = f"Gen_{plant_generation}_{p_count}"
141 payment(plant_generation, metadata['plant price'])
142 mint_nft(name,'placeholder description','placeholder image URL',plant_data,1)
143 collection_nfts[name,'plant_calc_data'] = plant_calc_data
144 plants['count'] = p_count
145
146 def action_setup(plant_generation : int, plant_number : int):
147 active_generation = plants['active_generation']
148 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}.'
149 name = f'Gen_{plant_generation}_{plant_number}'
150 assert collection_balances[ctx.caller, name] == 1, "You do not own this plant."
151 assert now <= plants['growing_season_end_time'], 'The growing season is not active, so you cannot interact with your plant.'
152 if ctx.caller.startswith('con_'): return
153 plant_name = collection_nfts[name]
154 plant_data = plant_name['nft_metadata']
155 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.'
156
157 #interaction idle check. If idle too long, plant gets penalized.
158 if now > plant_data['last_interaction'] + datetime.timedelta(hours = 12):
159 plant_data["current_water"] -= (random.randint(5, 15))
160 plant_data["current_bugs"] += (random.randint(5, 15))
161 plant_data["current_nutrients"] -= (random.randint(5, 15))
162 plant_data["current_weeds"] += (random.randint(5, 15))
163
164 plant_data = daily_conditions(plant_data)
165 plant_data = totalizer_calc(plant_data,name)
166
167 if (random.randint(1, 10)) == 10 : #10% chance of an event happening
168 event_contract = importlib.import_module(metadata['event_handler'])
169 plant_data = event_contract.event(plant_data)
170
171 plant_data = dead_check(plant_data)
172 plant_data['last_interaction'] = now #resets the interaction time
173
174 plant_all = {
175 'plant_name' : plant_name,
176 'plant_data' : plant_data,
177 'name' : name
178 }
179
180 return plant_all
181
182 def daily_conditions(plant_data):
183 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
184 current_weather = random.randint(1, 3) # 1=sunny 2=cloudy 3=rainy
185 if current_weather == 1:
186 plant_data["current_water"] -= (random.randint(10, 20)) #how much water is lost each sunny day
187 plant_data["current_photosynthesis"] += (random.randint(4, 6)) #How much photosynthesis increases each sunny day
188 if current_weather == 2:
189 plant_data["current_water"] -= (random.randint(5, 15)) #how much water is lost each cloudy day
190 plant_data["current_photosynthesis"] += (random.randint(2, 4)) #How much photosynthesis increases each cloudy day
191 if current_weather == 3:
192 plant_data["current_water"] += (random.randint(5, 25)) #how much water is gained each rainy day
193 plant_data["current_photosynthesis"] += (random.randint(1, 2)) #How much photosynthesis increases each rainy day
194
195 plant_data["current_bugs"] += (random.randint(3, 15)) #how many bugs are added each day
196 plant_data["current_nutrients"] -= (random.randint(5, 10)) #how many nutrients are consumed each day
197 plant_data["current_weeds"] += (random.randint(3, 15)) #how many weeds grow each day
198 plant_data["last_daily"] += datetime.timedelta(days = 1)
199 plant_data["current_weather"] = current_weather
200 plant_data['current_toxicity'] -= (random.randint(0, 2))
201
202 if plant_data['current_water'] > 100 : #water can't be above 1
203 plant_data['current_water'] = 100
204
205 if plant_data["current_photosynthesis"] > 100 :
206 plant_data["burn_amount"] += (plant_data["current_photosynthesis"]-100)
207 plant_data["current_photosynthesis"] = 100
208
209 return plant_data
210
211 def totalizer_calc(plant_data,name):
212 if now > plant_data['last_calc'] + datetime.timedelta(hours = 3):
213 delta = now - plant_data['last_calc']
214 delta_d = (delta.seconds / 86400)
215 plant_calc_data = collection_nfts[name,'plant_calc_data']
216 #This sections performs an integral on the various properties for use in determining total berries produced.
217 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
218 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
219 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
220 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
221 collection_nfts[name,'plant_calc_data'] = plant_calc_data
222 plant_data['last_calc'] = now
223
224 return plant_data
225
226 def dead_check(plant_data):
227 if plant_data["current_toxicity"] >= 100 or plant_data["current_bugs"] >= 100 or plant_data["current_weeds"] >= 100:
228 plant_data["alive"] = False
229 if plant_data["current_water"] <= 0 or plant_data["current_nutrients"] <= 0:
230 plant_data["alive"] = False
231 return plant_data
232
233 @export
234 def water(plant_generation : int, plant_number : int, num_times : int = 1):
235 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
236 plant_data = plant_all['plant_data']
237 plant_name = plant_all['plant_name']
238 name = plant_all['name']
239
240 for x in range(0, num_times):
241 plant_data['current_water'] += (random.randint(5, 15))
242 if plant_data['current_water'] > 100 : #water can't be above 1
243 plant_data['current_water'] = 100
244
245 plant_name['nft_metadata'] = plant_data
246 collection_nfts[name] = plant_name
247
248 @export
249 def squash_bugs(plant_generation : int, plant_number : int):
250 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
251 plant_data = plant_all['plant_data']
252 plant_name = plant_all['plant_name']
253 name = plant_all['name']
254
255 t_delta = plant_data["last_squash_weed"] + datetime.timedelta(minutes = 5)
256 assert now > t_delta, f"You are still squashing bugs or pulling weeds. Try again at {t_delta}."
257
258 plant_data['current_bugs'] -= (random.randint(2, 5))
259 if plant_data['current_bugs'] < 0 :
260 plant_data['current_bugs'] = 0
261
262 plant_data["last_squash_weed"] = now
263 plant_name['nft_metadata'] = plant_data
264 collection_nfts[name] = plant_name
265
266 @export
267 def spray_bugs(plant_generation : int, plant_number : int):
268 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
269 plant_data = plant_all['plant_data']
270 plant_name = plant_all['plant_name']
271 name = plant_all['name']
272
273 plant_data['current_toxicity'] += (random.randint(1, 3))
274
275 plant_data['current_bugs'] -= (random.randint(10, 20))
276 if plant_data['current_bugs'] < 0 :
277 plant_data['current_bugs'] = 0
278
279 payment(plant_generation, 5)
280 plant_name['nft_metadata'] = plant_data
281 collection_nfts[name] = plant_name
282
283 @export
284 def grow_lights(plant_generation : int, plant_number : int):
285 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
286 plant_data = plant_all['plant_data']
287 plant_name = plant_all['plant_name']
288 name = plant_all['name']
289
290 t_delta = plant_data["last_grow_light"] + datetime.timedelta(days = 1)
291 assert now > t_delta, f"You have used a grow light or shade too recently. Try again at {t_delta}."
292
293 payment(plant_generation, 5)
294 plant_data['current_photosynthesis'] += (random.randint(3, 5))
295 plant_data["last_grow_light"] = now
296
297 if plant_data["current_photosynthesis"] > 100 :
298 plant_data["burn_amount"] += (plant_data["current_photosynthesis"]-100)
299 plant_data["current_photosynthesis"] = 100
300
301 plant_name['nft_metadata'] = plant_data
302 collection_nfts[name] = plant_name
303
304 @export
305 def shade_plant(plant_generation : int, plant_number : int):
306 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
307 plant_data = plant_all['plant_data']
308 plant_name = plant_all['plant_name']
309 name = plant_all['name']
310
311 t_delta = plant_data["last_grow_light"] + datetime.timedelta(days = 1)
312 assert now > t_delta, f"You have used a grow light or shade too recently. Try again at {t_delta}."
313
314 plant_data['current_photosynthesis'] -= (random.randint(3, 5))
315 plant_data["last_grow_light"] = now
316
317 if plant_data["current_photosynthesis"] > 100 :
318 plant_data["burn_amount"] += (plant_data["current_photosynthesis"]-100)
319 plant_data["current_photosynthesis"] = 100
320
321 plant_name['nft_metadata'] = plant_data
322 collection_nfts[name] = plant_name
323
324 @export
325 def fertilize(plant_generation : int, plant_number : int, num_times : int = 1): #increases nutrients of the plant
326 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
327 plant_data = plant_all['plant_data']
328 plant_name = plant_all['plant_name']
329 name = plant_all['name']
330
331 payment(plant_generation, 2*num_times)
332 for x in range(0, num_times):
333 plant_data['current_nutrients'] += (random.randint(3, 5))
334
335 if plant_data['current_nutrients'] > 100 :
336 plant_data["burn_amount"] += (plant_data['current_nutrients']-100)
337 plant_data['current_nutrients'] = 100
338
339 plant_name['nft_metadata'] = plant_data
340 collection_nfts[name] = plant_name
341
342 @export
343 def pull_weeds(plant_generation : int, plant_number : int): #reduces current weeds in plant and takes 5 minutes to do. Share's a timer.
344
345 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
346 plant_data = plant_all['plant_data']
347 plant_name = plant_all['plant_name']
348 name = plant_all['name']
349
350 t_delta = plant_data["last_squash_weed"] + datetime.timedelta(minutes = 5)
351 assert now > t_delta, f"You are still squashing bugs or pulling weeds. Try again at {t_delta}."
352
353 plant_data['current_weeds'] -= (random.randint(2, 5))
354 if plant_data['current_weeds'] < 0 :
355 plant_data['current_weeds'] = 0
356
357 plant_data["last_squash_weed"] = now
358 plant_name['nft_metadata'] = plant_data
359 collection_nfts[name] = plant_name
360
361 @export
362 def spray_weeds(plant_generation : int, plant_number : int):
363 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
364 plant_data = plant_all['plant_data']
365 plant_name = plant_all['plant_name']
366 name = plant_all['name']
367
368 plant_data['current_toxicity'] += (random.randint(1, 3))
369
370 plant_data['current_weeds'] -= (random.randint(10, 20))
371 if plant_data['current_weeds'] < 0 :
372 plant_data['current_weeds'] = 0
373
374 plant_name['nft_metadata'] = plant_data
375 collection_nfts[name] = plant_name
376
377 @export
378 def finalize_plant(plant_generation : int, plant_number : int): #Finalizes your plant at the end of growing season to deterimine your berry yield.
379 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}.'
380 name = f'Gen_{plant_generation}_{plant_number}'
381 assert collection_balances[ctx.caller, name] == 1, "You do not own this plant."
382 assert collection_nfts[name,'finalized'] == False, 'This plant has already been finalized.'
383 end_time = plants['growing_season_end_time']
384 assert now <= plants['finalize_time'] and now >= end_time, 'It is not time to finalize your plant.'
385 if ctx.caller.startswith('con_'): return
386 plant_name = collection_nfts[name]
387 plant_data = plant_name['nft_metadata']
388 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.'
389
390 delta = end_time - plant_data['last_calc']
391 delta_d = (delta.seconds / 86400)
392
393 plant_calc_data = collection_nfts[name,'plant_calc_data']
394 #This sections performs an integral on the various properties for use in determining total berries produced.
395 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
396 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
397 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
398 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
399
400 collection_nfts[name,'plant_calc_data'] = plant_calc_data
401
402 plant_data['last_calc'] = now
403 plant_name['nft_metadata'] = plant_data
404 collection_nfts[name] = plant_name
405
406 length = metadata['growing_season_length']
407 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))
408 collection_nfts[name,'berries'] = berries
409 collection_nfts[name,'final_score'] = berries
410 plants[plant_generation,'total_berries'] += berries
411 collection_nfts[name,'finalized'] == True
412
413 def sell_berries(plant_generation : int, plant_number : int): #redeem berries for TAU. Must be done after plant finalize time is over.
414 name = f'Gen_{plant_generation}_{plant_number}'
415 assert collection_balances[ctx.caller, name] == 1, "You do not own this plant."
416 berries = collection_nfts[name,'berries']
417 assert berries > 0, "You don't have any berries to sell."
418 assert now >= plants['finalize_time'], f"You can't sell yet. Try again after {plants['finalize_time']} but do not wait too long."
419 sell_price = plants[plant_generation, 'total_tau'] / plants[plant_generation,'total_berries']
420 proceeds = sell_price * berries
421 currency.transfer(amount=proceeds, to=ctx.caller)
422 collection_nfts[name,'berries'] = 0
423 plants[plant_generation, 'total_tau'] -= proceeds
424
425 def payment(plant_generation, amount): #used to process payments
426 currency.transfer_from(amount=amount*0.95, to=ctx.this, main_account=ctx.caller)
427 currency.transfer_from(amount=amount*0.05, to=metadata['operator'], main_account=ctx.caller)
428 plants[plant_generation, 'total_tau'] += amount
429
430 @export
431 def manual_reward_add(plant_generation : int, amount : int): #used to manually add more tau to the prize pool
432 currency.transfer_from(amount=amount, to=ctx.this, main_account=ctx.caller)
433 plants[plant_generation, 'total_tau'] += amount
434
435 @export
436 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
437 assert metadata['operator'] == ctx.caller, "Only the operator can claim stale tau."
438 stale_claim_time = plants[plant_generation,'stale_claim_time']
439 assert now >= stale_claim_time, f"The tau is not stale yet and cannot be claimed. Try again after {stale_claim_time}"
440 stale_tau = plants[plant_generation, 'total_tau']
441 assert stale_tau > 0, "There is no stale tau to claim."
442 currency.transfer(amount=stale_tau, to=ctx.caller)
443
444 @export
445 def nickname(plant_generation : int, plant_number : int, nick : str):
446 name = f'Gen_{plant_generation}_{plant_number}'
447 assert collection_balances[ctx.caller, name] == 1, "You do not own this plant."
448 assert bool(collection_nfts[nick]) == False, "This nickname already exists."
449 payment(plant_generation, 25)
450 collection_nfts[nick] = [plant_generation , plant_number]
451
452 @export
453 def nickname_interaction(nickname : str, function_name :str):
454 nick = collection_nfts[nickname]
455
456 function_names = {
457 'water' : water,
458 'squash_bugs' : squash_bugs,
459 'spray_bugs' : spray_bugs,
460 'grow_lights' : grow_lights,
461 'shade_plant' : shade_plant,
462 'fertilize' : fertilize,
463 'pull_weeds' : pull_weeds,
464 'spray_weeds' : spray_weeds
465 }
466
467 function_names[function_name](nick[0],nick[1])
468
469 @export
470 def emergency_withdraw(amount:float): #temporary function used in testing. will be removed from final contract.
471 assert metadata['operator'] == ctx.caller, "Only the operator can claim tau."
472 currency.transfer(amount=amount, to=ctx.caller)

Byte Code

e3000000000000000000000000070000004000000073c0020000640064016c005a0065016402640364048d025a0265016402640564048d025a03650464006402640664078d035a05650464006402640864078d035a06650464006402640964078d035a07650464006402640a64078d035a0865046402640b64048d025a0965046402640c64048d025a0a650b6a0c83000100640d640e84005a0d650e64028301650f650f640f9c0264106411840483015a10650e64028301650f650f650f6511651264129c0564136414840483015a13650e64028301650f6512650f64159c0364166417840483015a14650e640283016512650f650f64189c036419641a840483015a15650e64028301650f6512650f650f641b9c04641c641d840483015a16650e64028301641e641f840083015a17650e6402830164206421840083015a186512651264229c026423642484045a196425642684005a1a6427642884005a1b6429642a84005a1c650e640283016452651265126512642c9c03642d642e840583015a1d650e640283016512651264229c02642f6430840483015a1e650e640283016512651264229c0264316432840483015a1f650e640283016512651264229c0264336434840483015a20650e640283016512651264229c0264356436840483015a21650e640283016453651265126512642c9c0364376438840583015a22650e640283016512651264229c026439643a840483015a23650e640283016512651264229c02643b643c840483015a24650e640283016512651264229c02643d643e840483015a256512651264229c02643f644084045a266441644284005a27650e640283016512651264439c0264446445840483015a28650e64028301651264469c0164476448840483015a29650e6402830165126512650f64499c03644a644b840483015a2a650e64028301650f650f644c9c02644d644e840483015a2b650e64028301652c644f9c0164506451840483015a2d640153002954e9000000004eda0e636f6e5f746573746661726d3032da0f636f6c6c656374696f6e5f6e616d652902da08636f6e7472616374da046e616d65da10636f6c6c656374696f6e5f6f776e6572da0f636f6c6c656374696f6e5f6e6674732903da0d64656661756c745f76616c756572040000007205000000da13636f6c6c656374696f6e5f62616c616e636573da1d636f6c6c656374696f6e5f62616c616e6365735f617070726f76616c73da06706c616e7473da086d65746164617461da096e69636b6e616d6573630000000000000000010000000300000043000000736c00000074006a0164018301010074026a0174036a048301010074036a04740564023c00740664038301740564043c006405740564063c006407740564083c0064097405640a3c00640b7407640c3c0074087407640d3c00640e7407640f3c006412740764113c0069007d006400530029134eda0b546573745f706c616e7473da086f70657261746f727a04302e3035da09726f79616c74696573e91e000000da1567726f77696e675f736561736f6e5f6c656e677468e9640000007a0b706c616e74207072696365da11636f6e5f6262665f6576656e74735f3031da0d6576656e745f68616e646c657246da0e67726f77696e675f736561736f6eda1967726f77696e675f736561736f6e5f73746172745f74696d657201000000da05636f756e74e901000000da116163746976655f67656e65726174696f6ee9ffffffff2909da115f5f636f6c6c656374696f6e5f6e616d65da03736574da125f5f636f6c6c656374696f6e5f6f776e6572da03637478da0663616c6c6572da0a5f5f6d65746164617461da07646563696d616cda085f5f706c616e7473da036e6f772901da0b5f5f6e69636b6e616d6573a9007226000000da00da045f5f5f5f11000000731800000000010a010c010a010c01080108010801080108010801080172280000002902da036b6579da096e65775f76616c7565630200000000000000020000000300000043000000732200000074006a017402640119006b02731674036402830182017c0174027c003c006400530029034e720f0000007a1e6f6e6c79206f70657261746f722063616e20736574206d657461646174612904721f00000072200000007221000000da0e417373657274696f6e4572726f7229027229000000722a000000722600000072260000007227000000da0f6368616e67655f6d65746164617461200000007306000000000210010601722c00000029057205000000da0b6465736372697074696f6eda0e697066735f696d6167655f75726cda0c6e66745f6d65746164617461da06616d6f756e7463050000000000000005000000050000004300000073580000007c0064016b037310740064028301820174017c00190064036b02732474006404830182017c0464036b04733474006405830182017c017c027c037c0464069c0474017c003c007c04740274036a047c0066023c006400530029074e72270000007a144e616d652063616e6e6f7420626520656d70747972010000007a134e616d6520616c7265616479206578697374737a24596f752063616e6e6f74207472616e73666572206e6567617469766520616d6f756e74732904722d000000722e000000722f00000072300000002905722b000000da115f5f636f6c6c656374696f6e5f6e667473da155f5f636f6c6c656374696f6e5f62616c616e636573721f000000722000000029057205000000722d000000722e000000722f0000007230000000722600000072260000007227000000da086d696e745f6e667427000000730c0000000003100114011001020110017233000000290372050000007230000000da02746f63030000000000000003000000040000004300000073680000007c0164016b04731074006402830182017c0064036b0373207400640483018201740174026a037c00660219007c016b05733a7400640583018201740174026a037c006602050019007c01380003003c0074017c027c006602050019007c01370003003c006400530029064e72010000007a24596f752063616e6e6f74207472616e73666572206e6567617469766520616d6f756e747372270000007a37506c65617365207370656369667920746865206e616d65206f6620746865204e465420796f752077616e7420746f207472616e736665727a22596f7520646f6e2774206861766520656e6f756768204e46547320746f2073656e642904722b0000007232000000721f00000072200000002903720500000072300000007234000000722600000072260000007227000000da087472616e7366657232000000730c0000000002100110010c010e01160172350000002903723000000072050000007234000000630300000000000000030000000400000043000000732c0000007c0064016b0473107400640283018201740174026a037c027c016603050019007c00370003003c006400530029034e72010000007a1f43616e6e6f7420617070726f7665206e6567617469766520616d6f756e74732904722b000000da1f5f5f636f6c6c656374696f6e5f62616c616e6365735f617070726f76616c73721f00000072200000002903723000000072050000007234000000722600000072260000007227000000da07617070726f76653c00000073040000000002100172370000002904720500000072300000007234000000da0c6d61696e5f6163636f756e7463040000000000000004000000060000004300000073960000007c0164016b047310740064028301820174017c037c027c00660319007c016b05733c740064036a0274017c037c027c00660319007c0183028301820174037c037c00660219007c016b057354740064048301820174017c037c027c006603050019007c01380003003c0074037c037c006602050019007c01380003003c0074037c027c006602050019007c01370003003c006400530029054e72010000007a1e43616e6e6f742073656e64206e656761746976652062616c616e636573217a484e6f7420656e6f756768204e46547320617070726f76656420746f2073656e642120596f752068617665207b7d20616e642061726520747279696e6720746f207370656e64207b7d7a184e6f7420656e6f756768204e46547320746f2073656e64212904722b0000007236000000da06666f726d6174723200000029047205000000723000000072340000007238000000722600000072260000007227000000da0d7472616e736665725f66726f6d420000007312000000000210010c010c0114010a010e0116011401723a00000063000000000000000003000000040000004300000073ba00000074006a01830074026a036b02731674046401830182017405640219007d007c0064036b02732e74046404830182017406640519007d017405640619007d027c02640737007d026408740564023c007407740564093c00740774086a097c01640a8d0117007405640b3c00740774086a097c01640c1700640a8d0117007405640d3c00640e74057c02640f66023c00640e74057c02641066023c00740774086a097c0164111700640a8d01170074057c02641266023c006400530029134e7a2a4f6e6c7920746865206f776e65722063616e20737461727420612067726f77696e6720736561736f6e2e7216000000467a1d497420697320616c72656164792067726f77696e6720736561736f6e2e7212000000721a00000072190000005472170000002901da0464617973da1767726f77696e675f736561736f6e5f656e645f74696d65e903000000da0d66696e616c697a655f74696d657201000000da0d746f74616c5f62657272696573da09746f74616c5f7461757211000000da107374616c655f636c61696d5f74696d65290a721e000000da03676574721f0000007220000000722b000000722300000072210000007224000000da086461746574696d65da0974696d6564656c74612903da0b67726f775f736561736f6e7212000000da0a6163746976655f67656e722600000072260000007227000000da1473746172745f67726f77696e675f736561736f6e4f0000007322000000000206011001080110010801080108010801080106010e01060112010c010c0106017247000000630000000000000000050000001100000043000000731001000074006401190064026b0273147401640383018201740064041900740274036a04640564068d0117006b05733474016407830182017400640819007d0074056a066409640a830274056a06640b64058302640c74056a066409640a830274056a06640b64058302640c640d74027402740264027c00740274036a04641b64068d011700740274036a04641c64068d011700640c640e9c0f7d017c01640f19007c01641019007c01641119007c0164121900640c640c640c640c64139c087d02740064141900640d17007d0364157c009b0064167c039b009d047d0474077c007408641719008302010074097c04641864197c01640d830501007c02740a7c04641a66023c007c03740064143c0064005300291d4e7216000000547a3e5468652067726f77696e6720736561736f6e20686173206e6f7420737461727465642c20736f20796f752063616e6e6f7420627579206120706c616e742e723c000000e9190000002901723b0000007a444974277320746f6f2066617220696e746f207468652067726f77696e6720736561736f6e20616e6420796f752063616e6e6f7420627579206120706c616e74206e6f772e721a000000e932000000e950000000e90500000072010000007219000000290fda0d63757272656e745f7761746572da0c63757272656e745f62756773da1663757272656e745f70686f746f73796e746865736973da1163757272656e745f6e75747269656e7473da0d63757272656e745f7765656473da1063757272656e745f746f786963697479da0f63757272656e745f77656174686572da106c6173745f696e746572616374696f6eda0a6c6173745f6461696c79da096c6173745f63616c63da05616c697665da0a67656e65726174696f6eda106c6173745f7371756173685f77656564da0f6c6173745f67726f775f6c69676874da0b6275726e5f616d6f756e74724c000000724d000000724f00000072500000002908da0e70726576696f75735f7761746572da0d70726576696f75735f62756773da1270726576696f75735f6e75747269656e7473da0e70726576696f75735f7765656473da0b746f74616c5f7761746572da0a746f74616c5f62756773da0f746f74616c5f6e75747269656e7473da0b746f74616c5f77656564737218000000da0447656e5fda015f7a0b706c616e742070726963657a17706c616365686f6c646572206465736372697074696f6e7a15706c616365686f6c64657220696d6167652055524cda0f706c616e745f63616c635f64617461721b000000721b000000290b7223000000722b000000722400000072430000007244000000da0672616e646f6dda0772616e64696e74da095f5f7061796d656e747221000000723300000072310000002905da10706c616e745f67656e65726174696f6eda0a706c616e745f646174617265000000da07705f636f756e747205000000722600000072260000007227000000da096275795f706c616e74640000007334000000000206010e010c010e01060108010a010c010a010e01060104011001140106010601080108010a010c0110010e01080108010c01726c00000029027269000000da0c706c616e745f6e756d62657263020000000000000008000000060000004300000073680100007400640119007d027c007c026b027320740164027c029b0064039d038301820164047c009b0064057c019b009d047d03740274036a047c036602190064066b02734a740164078301820174057400640819006b01735e740164098301820174036a046a06640a8301726e6400530074077c0319007d047c04640b19007d057c05640c1900640d6b0273927401640e8301820174057c05640f190074086a09641064118d0117006b049001720c7c05641205001900740a6a0b641364148302380003003c007c05641505001900740a6a0b641364148302370003003c007c05641605001900740a6a0b641364148302380003003c007c05641705001900740a6a0b641364148302370003003c00740c7c0583017d05740d7c057c0383027d05740a6a0b64066418830264186b0290017248740e6a0f74106419190083017d067c066a117c0583017d0574127c0583017d0574057c05640f3c007c047c057c03641a9c037d077c075300291b4e721a0000007a6b54686520706c616e7420796f752061726520747279696e6720746f20696e7465726163742077697468206973206e6f742070617274206f66207468652063757272656e742067656e65726174696f6e2e205468652063757272656e742067656e65726174696f6e20697320da012e7263000000726400000072190000007a1a596f7520646f206e6f74206f776e207468697320706c616e742e723c0000007a495468652067726f77696e6720736561736f6e206973206e6f74206163746976652c20736f20796f752063616e6e6f7420696e746572616374207769746820796f757220706c616e742eda04636f6e5f722f0000007256000000547a64596f757220706c616e7420697320646561642064756520746f206e65676c65637420616e6420796f75206d757374206275792061206e657720706c616e7420746f2074727920616761696e2e20547279206e6f7420746f206b696c6c20697420746f6f2e7253000000e90c0000002901da05686f757273724c000000724b000000e90f000000724d000000724f0000007250000000e90a00000072150000002903da0a706c616e745f6e616d65726a000000720500000029137223000000722b0000007232000000721f00000072200000007224000000da0a7374617274737769746872310000007243000000724400000072660000007267000000da125f5f6461696c795f636f6e646974696f6e73da105f5f746f74616c697a65725f63616c63da09696d706f72746c6962da0d696d706f72745f6d6f64756c657221000000da056576656e74da0c5f5f646561645f636865636b29087269000000726d000000721a00000072050000007274000000726a000000da0e6576656e745f636f6e7472616374da09706c616e745f616c6c722600000072260000007227000000da0e5f5f616374696f6e5f736574757082000000733800000000010801180110010c010e010e0106010c0104010801080106010e011a01180118011801180108010a0112010e010a010801080104010801727e000000630100000000000000020000000600000043000000739c0100009001789474007c0064011900180074016a02640264038d016b049001729674036a046402640483027d017c0164026b0272627c0064050500190074036a04640664078302380003003c007c0064080500190074036a046409640a8302370003003c007c01640b6b02729a7c0064050500190074036a04640c640d8302380003003c007c0064080500190074036a04640b64098302370003003c007c0164046b0272d27c0064050500190074036a04640c640e8302370003003c007c0064080500190074036a046402640b8302370003003c007c00640f0500190074036a046404640d8302370003003c007c0064100500190074036a04640c64068302380003003c007c0064110500190074036a046404640d8302370003003c007c0064010500190074016a02640264038d01370003003c007c017c0064123c007c0064130500190074036a046414640b8302380003003c007c006405190064156b049001726864157c0064053c007c006408190064156b0472047c006416050019007c006408190064151800370003003c0064157c0064083c00710457007c00530029174e725400000072190000002901723b000000723d000000724c0000007273000000e914000000724e000000e904000000e906000000e902000000724b00000072720000007248000000724d000000724f00000072500000007252000000725100000072010000007213000000725a0000002905722400000072430000007244000000726600000072670000002902726a00000072520000007226000000722600000072270000007276000000a1000000733000000000011e010c010801180118010801180118010801180118011801180118011801080118010e0108010c010e010a010c017276000000630200000000000000050000000800000043000000737c01000074007c006401190074016a02640264038d0117006b049001727874007c006401190018007d027c026a0364041b007d0374047c016405660219007d047c046406050019007c03640713007c046408190064091b007c04640a190064091b0018007c031b00140064071b007c04640a190064091b007c0314001700370003003c007c04640b050019007c0364071300640c7c04640d190064091b001800640c7c04640e190064091b00180018007c031b00140064071b00640c7c04640e190064091b0018007c0314001700370003003c007c04640f050019007c03640713007c046410190064091b007c046411190064091b0018007c031b00140064071b007c046411190064091b007c0314001700370003003c007c046412050019007c0364071300640c7c046413190064091b001800640c7c046414190064091b00180018007c031b00140064071b00640c7c046414190064091b0018007c0314001700370003003c007c0474047c01640566023c0074007c0064013c007c00530029154e7255000000723d0000002901727100000069805101007265000000725f0000007282000000724c0000007213000000725b00000072600000007219000000724d000000725c0000007261000000724f000000725d00000072620000007250000000725e0000002905722400000072430000007244000000da077365636f6e647372310000002905726a0000007205000000da0564656c7461da0764656c74615f6472650000007226000000722600000072270000007277000000bc000000732600000000011a010c010a010c010802260116010802320116010802260116010802320116010c010801727700000063010000000000000001000000030000004300000073500000007c006401190064026b0573247c006403190064026b0573247c006404190064026b05722c64057c0064063c007c006407190064086b0173447c006409190064086b01724c64057c0064063c007c005300290a4e72510000007213000000724d0000007250000000467256000000724c0000007201000000724f00000072260000002901726a000000722600000072260000007227000000727b000000d6000000730e0000000001120112010801120106010801727b000000721900000029037269000000726d000000da096e756d5f74696d6573630300000000000000080000000700000043000000737600000074007c007c0183027d037c03640119007d047c03640219007d057c03640319007d06782a740164047c02830244005d1c7d077c0464050500190074026a03640664078302370003003c00712e57007c046405190064086b04726264087c0464053c007c047c0564093c007c0574047c063c0064005300290a4e726a000000727400000072050000007201000000724c000000724b00000072720000007213000000722f0000002905727e000000da0572616e676572660000007267000000723100000029087269000000726d0000007286000000727d000000726a00000072740000007205000000da0178722600000072260000007227000000da057761746572e0000000731400000000020a0108010801080110011c010c01080108017289000000630200000000000000070000000600000043000000739600000074007c007c0183027d027c02640119007d037c02640219007d047c02640319007d057c036404190074016a02640564068d0117007d0674037c066b04734e740464077c069b0064089d03830182017c0364090500190074056a06640a64058302380003003c007c0364091900640b6b00727a640b7c0364093c0074037c0364043c007c037c04640c3c007c0474077c053c0064005300290d4e726a000000727400000072050000007258000000724b0000002901da076d696e757465737a3c596f7520617265207374696c6c20737175617368696e672062756773206f722070756c6c696e672077656564732e2054727920616761696e20617420726e000000724d00000072820000007201000000722f0000002908727e000000724300000072440000007224000000722b00000072660000007267000000723100000029077269000000726d000000727d000000726a00000072740000007205000000da07745f64656c7461722600000072260000007227000000da0b7371756173685f62756773ee000000731800000000020a010801080108011401180118010c01080108010801728c000000630200000000000000060000000600000043000000738400000074007c007c0183027d027c02640119007d037c02640219007d047c02640319007d057c0364040500190074016a02640564068302370003003c007c0364070500190074016a02640864098302380003003c007c0364071900640a6b007266640a7c0364073c0074037c00640b830201007c037c04640c3c007c0474047c053c0064005300290d4e726a0000007274000000720500000072510000007219000000723d000000724d0000007273000000727f0000007201000000724b000000722f0000002905727e000000726600000072670000007268000000723100000029067269000000726d000000727d000000726a00000072740000007205000000722600000072260000007227000000da0a73707261795f62756773fe000000731600000000020a01080108010801180118010c0108010a010801728d00000063020000000000000007000000060000004300000073b800000074007c007c0183027d027c02640119007d037c02640219007d047c02640319007d057c036404190074016a02640564068d0117007d0674037c066b04734e740464077c069b0064089d038301820174057c006409830201007c03640a0500190074066a07640b64098302370003003c0074037c0364043c007c03640a1900640c6b0472a47c03640d050019007c03640a1900640c1800370003003c00640c7c03640a3c007c037c04640e3c007c0474087c053c0064005300290f4e726a00000072740000007205000000725900000072190000002901723b0000007a3f596f752068617665207573656420612067726f77206c69676874206f7220736861646520746f6f20726563656e746c792e2054727920616761696e20617420726e000000724b000000724e000000723d0000007213000000725a000000722f0000002909727e000000724300000072440000007224000000722b000000726800000072660000007267000000723100000029077269000000726d000000727d000000726a00000072740000007205000000728b000000722600000072260000007227000000da0b67726f775f6c69676874730d010000731c00000000020a01080108010801140118010a01180108010c01180108010801728e00000063020000000000000007000000060000004300000073ae00000074007c007c0183027d027c02640119007d037c02640219007d047c02640319007d057c036404190074016a02640564068d0117007d0674037c066b04734e740464077c069b0064089d03830182017c0364090500190074056a06640a640b8302380003003c0074037c0364043c007c0364091900640c6b04729a7c03640d050019007c0364091900640c1800370003003c00640c7c0364093c007c037c04640e3c007c0474077c053c0064005300290f4e726a00000072740000007205000000725900000072190000002901723b0000007a3f596f752068617665207573656420612067726f77206c69676874206f7220736861646520746f6f20726563656e746c792e2054727920616761696e20617420726e000000724e000000723d000000724b0000007213000000725a000000722f0000002908727e000000724300000072440000007224000000722b00000072660000007267000000723100000029077269000000726d000000727d000000726a00000072740000007205000000728b000000722600000072260000007227000000da0b73686164655f706c616e741f010000731a00000000020a0108010801080114011801180108010c01180108010801728f000000630300000000000000080000000700000043000000739c00000074007c007c0183027d037c03640119007d047c03640219007d057c03640319007d0674017c0064047c02140083020100782a740264057c02830244005d1c7d077c0464060500190074036a04640764088302370003003c00713c57007c046406190064096b0472887c04640a050019007c046406190064091800370003003c0064097c0464063c007c047c05640b3c007c0574057c063c0064005300290c4e726a0000007274000000720500000072820000007201000000724f000000723d000000724b0000007213000000725a000000722f0000002906727e0000007268000000728700000072660000007267000000723100000029087269000000726d0000007286000000727d000000726a000000727400000072050000007288000000722600000072260000007227000000da0966657274696c697a6530010000731800000000020a010801080108010e0110011c010c011801080108017290000000630200000000000000070000000600000043000000739600000074007c007c0183027d027c02640119007d037c02640219007d047c02640319007d057c036404190074016a02640564068d0117007d0674037c066b04734e740464077c069b0064089d03830182017c0364090500190074056a06640a64058302380003003c007c0364091900640b6b00727a640b7c0364093c0074037c0364043c007c037c04640c3c007c0474077c053c0064005300290d4e726a000000727400000072050000007258000000724b0000002901728a0000007a3c596f7520617265207374696c6c20737175617368696e672062756773206f722070756c6c696e672077656564732e2054727920616761696e20617420726e000000725000000072820000007201000000722f0000002908727e000000724300000072440000007224000000722b00000072660000007267000000723100000029077269000000726d000000727d000000726a00000072740000007205000000728b000000722600000072260000007227000000da0a70756c6c5f776565647340010000731800000000020a010801080108011401180118010c010801080108017291000000630200000000000000060000000600000043000000737a00000074007c007c0183027d027c02640119007d037c02640219007d047c02640319007d057c0364040500190074016a02640564068302370003003c007c0364070500190074016a02640864098302380003003c007c0364071900640a6b007266640a7c0364073c007c037c04640b3c007c0474037c053c0064005300290c4e726a0000007274000000720500000072510000007219000000723d00000072500000007273000000727f0000007201000000722f0000002904727e00000072660000007267000000723100000029067269000000726d000000727d000000726a00000072740000007205000000722600000072260000007227000000da0b73707261795f776565647350010000731400000000020a01080108010801180118010c010801080172920000006302000000000000000b000000080000004300000073c40200007c0074006b0273187401640174009b0064029d038301820164037c009b0064047c019b009d047d02740274036a047c026602190064056b027342740164068301820174057c0264076602190064086b02735a74016409830182017406640a19007d0374077406640b19006b01727674077c036b05737e7401640c8301820174036a046a08640d8301728e6400530074057c0219007d047c04640e19007d057c05640f190064106b0273b274016411830182017c037c056412190018007d067c066a0964131b007d0774057c026414660219007d087c086415050019007c07641613007c086417190064181b007c086419190064181b0018007c071b00140064161b007c086419190064181b007c0714001700370003003c007c08641a050019007c076416130064057c08641b190064181b00180064057c08641c190064181b00180018007c071b00140064161b0064057c08641c190064181b0018007c0714001700370003003c007c08641d050019007c07641613007c08641e190064181b007c08641f190064181b0018007c071b00140064161b007c08641f190064181b007c0714001700370003003c007c086420050019007c076416130064057c086421190064181b00180064057c086422190064181b00180018007c071b00140064161b0064057c086422190064181b0018007c0714001700370003003c007c0874057c02641466023c0074077c0564123c007c057c04640e3c007c0474057c023c00740a642319007d09740b64247c08641519007c08641a190014007c08641d190014007c086420190014007c09642513001b00140064057c056426190064181b00180014007c056427190064181b00140064057c056428190064181b001800140083017d0a7c0a74057c02642966023c007c0a74057c02642a66023c0074067c00642b6602050019007c0a370003003c0074057c0264076602190064106b02010064005300292c4e7a6b54686520706c616e7420796f752061726520747279696e6720746f20696e7465726163742077697468206973206e6f742070617274206f66207468652063757272656e742067656e65726174696f6e2e205468652063757272656e742067656e65726174696f6e20697320726e0000007263000000726400000072190000007a1a596f7520646f206e6f74206f776e207468697320706c616e742eda0966696e616c697a6564467a265468697320706c616e742068617320616c7265616479206265656e2066696e616c697a65642e723c000000723e0000007a264974206973206e6f742074696d6520746f2066696e616c697a6520796f757220706c616e742e726f000000722f0000007256000000547a64596f757220706c616e7420697320646561642064756520746f206e65676c65637420616e6420796f75206d757374206275792061206e657720706c616e7420746f2074727920616761696e2e20547279206e6f7420746f206b696c6c20697420746f6f2e725500000069805101007265000000725f0000007282000000724c0000007213000000725b0000007260000000724d000000725c0000007261000000724f000000725d00000072620000007250000000725e000000721200000069e803000072800000007251000000724e000000725a000000da0762657272696573da0b66696e616c5f73636f7265723f000000290c721a000000722b0000007232000000721f0000007220000000723100000072230000007224000000727500000072830000007221000000da03696e74290b7269000000726d0000007205000000da08656e645f74696d657274000000726a000000728400000072850000007265000000da066c656e6774687294000000722600000072260000007227000000da0e66696e616c697a655f706c616e745e01000073500000000002180110010c010e010a010e0108010c0110010c0104010801080106010e010c010a010c0108023c0108023c010c0108022601160108023c010c010c01080108010801080102045a010c010c011401729900000063020000000000000006000000040000004300000073ba00000064017c009b0064027c019b009d047d02740074016a027c026602190064036b02732a740364048301820174047c026405660219007d037c0364066b047346740364078301820174057406640819006b057366740364097406640819009b00640a9d038301820174067c00640b6602190074067c00640c660219001b007d047c047c0314007d0574076a087c0574016a02640d8d020100640674047c02640566023c0074067c00640b6602050019007c05380003003c0064005300290e4e7263000000726400000072190000007a1a596f7520646f206e6f74206f776e207468697320706c616e742e729400000072010000007a23596f7520646f6e2774206861766520616e79206265727269657320746f2073656c6c2e723e0000007a24596f752063616e27742073656c6c207965742e2054727920616761696e206166746572207a1a2062757420646f206e6f74207761697420746f6f206c6f6e672e7240000000723f00000029027230000000723400000029097232000000721f0000007220000000722b000000723100000072240000007223000000da0863757272656e6379723500000029067269000000726d00000072050000007294000000da0a73656c6c5f7072696365da0870726f6365656473722600000072260000007227000000da0e5f5f73656c6c5f6265727269657391010000731a000000000110010c010e010c0110010e0112010c010c01080110010c01729d000000630200000000000000020000000500000043000000735200000074006a017c01740264018301140074036a0474036a0564028d03010074006a017c01740264038301140074066404190074036a0564028d03010074077c0064056602050019007c01370003003c006400530029064e7a04302e393529037230000000723400000072380000007a04302e3035720f00000072400000002908729a000000723a0000007222000000721f000000da04746869737220000000722100000072230000002902726900000072300000007226000000722600000072270000007268000000a1010000730a000000000112010a0110010e017268000000290272690000007230000000630200000000000000020000000500000043000000732c00000074006a017c0174026a0374026a0464018d03010074057c0064026602050019007c01370003003c006400530029034e290372300000007234000000723800000072400000002906729a000000723a000000721f000000729e00000072200000007223000000290272690000007230000000722600000072260000007227000000da116d616e75616c5f7265776172645f616464a9010000730400000000021401729f00000029017269000000630100000000000000030000000400000043000000736800000074006401190074016a026b027316740364028301820174047c006403660219007d0174057c016b057338740364047c019b009d028301820174047c006405660219007d027c0264066b047354740364078301820174066a077c0274016a0264088d0201006400530029094e720f0000007a264f6e6c7920746865206f70657261746f722063616e20636c61696d207374616c65207461752e72410000007a4054686520746175206973206e6f74207374616c652079657420616e642063616e6e6f7420626520636c61696d65642e2054727920616761696e20616674657220724000000072010000007a1f5468657265206973206e6f207374616c652074617520746f20636c61696d2e29027230000000723400000029087221000000721f0000007220000000722b00000072230000007224000000729a0000007235000000290372690000007241000000da097374616c655f746175722600000072260000007227000000da0c7374616c655f636c61696d73af010000730e0000000002060110010c0116010c01100172a100000029037269000000726d000000da046e69636b630300000000000000040000000400000043000000735c00000064017c009b0064027c019b009d047d03740074016a027c036602190064036b02732a7403640483018201740474057c021900830164056b027342740364068301820174067c006407830201007c007c01670274057c023c006400530029084e7263000000726400000072190000007a1a596f7520646f206e6f74206f776e207468697320706c616e742e467a1d54686973206e69636b6e616d6520616c7265616479206578697374732e724800000029077232000000721f0000007220000000722b000000da04626f6f6c7231000000726800000029047269000000726d00000072a20000007205000000722600000072260000007227000000da086e69636b6e616d65ba010000730e000000000210010c010e010a010e010a0172a4000000290272a4000000da0d66756e6374696f6e5f6e616d65630200000000000000040000000900000043000000733800000074007c0019007d027401740274037404740574067407740864019c087d037c037c0119007c02640219007c0264031900830201006400530029044e29087289000000728c000000728d000000728e000000728f00000072900000007291000000729200000072010000007219000000290972310000007289000000728c000000728d000000728e000000728f000000729000000072910000007292000000290472a400000072a500000072a2000000da0e66756e6374696f6e5f6e616d6573722600000072260000007227000000da146e69636b6e616d655f696e746572616374696f6ec5010000730c00000000020801040104010601080172a700000029017230000000630100000000000000010000000400000043000000732a00000074006401190074016a026b027316740364028301820174046a057c0074016a0264038d0201006400530029044e720f0000007a204f6e6c7920746865206f70657261746f722063616e20636c61696d207461752e29027230000000723400000029067221000000721f0000007220000000722b000000729a000000723500000029017230000000722600000072260000007227000000da12656d657267656e63795f7769746864726177cf010000730600000000020601100172a80000002901721900000029017219000000292e729a000000da085661726961626c65721c000000721e000000da04486173687231000000723200000072360000007223000000722100000072250000007266000000da04736565647228000000da085f5f6578706f7274da03737472722c000000da04646963747296000000723300000072350000007237000000723a0000007247000000726c000000727e00000072760000007277000000727b0000007289000000728c000000728d000000728e000000728f0000007290000000729100000072920000007299000000729d0000007268000000729f00000072a100000072a400000072a7000000da05666c6f617472a80000007226000000722600000072260000007227000000da083c6d6f64756c653e01000000737a00000008010c0104010801060108010601080104010a010e010c010c010803080f0601120606010601120906011409060114050601160c1015101e101f081b081a080a0601160d0601120f0601120e06011211060112100601160f0601120f0601120d0601123210100808060112050601100a0601140a060112090601