;; vari�veis globais globals [ Employee_Trainee Employee Employee_Master Total-Employees Trainee_OutOfWork OutOfWork Employees_OutOfWork Masters_OutOfWork ] turtles-own [ Employee_Trainee? ;; se verdadeiro, a pessoa eh Employee Trainee Employee? ;; se verdadeiro, a pessoa eh Employee Employee_Master? ;; se verdadeiro, a pessoa eh Master Employee Trainee_OutOfWork? ;; se verdadeiro, a pessoa esta como Employee Trainee Afastado Employees_OutOfWork? ;; se verdadeiro, a pessoa esta como Employee Afastado Masters_OutOfWork? ;; se verdadeiro, a pessoa esta como Mestere Employee Afastado ;; anos-na-empresa ;; anos da pessoa na empresa ] ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; prepara o programa para ser executado ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; to setup ;; (for this model to work with NetLogo's new plotting features, ;; __clear-all-and-reset-ticks should be replaced with clear-all at ;; the beginning of your setup procedure and reset-ticks at the end ;; of the procedure.) __clear-all-and-reset-ticks ;; limpa todas vari�veis e a interface set-default-shape turtles "person" ;; prepara a tartaruga para a forma person (pessoas) crt num_initial_consumers [ ;; cria as pessoas de acordo com o n�mero de pessoas set Employee_Trainee? true ;; atribui verdadeiro ao estado Employee Trainee da pessoa set Employee? false ;; atribui falso ao estado Employee da pessoa set Employee_Master? false ;; atribui falso ao estado Master Employee da pessoa set Trainee_OutOfWork? false ;; atribui falso ao estado Trainee_OutOfWork da pessoa set Employees_OutOfWork? false ;; atribui falso ao estado Employees_OutOfWork da pessoa set Masters_OutOfWork? false ;; atribui falso ao estado Masters_OutOfWork da pessoa set color yellow ;; atribui cor amarela � pessoa no estado Employee Trainee set size 1.5 ;; atribui 1.5 ao tamanho da pessoa, mais f�cil de ver setxy random-xcor random-ycor ;; posiciona aleatoriamente as pessoas no patch ] atualiza-variaveis-globais ;; executa a procedure que atualiza variaveis globais reset-ticks end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; executa o programa, procedure principal ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; to go envelhece ;; executa a procedure que envelhece a pessoa move ;; executa a procedure que move a pessoa atualiza-variaveis-globais ;; executa a procedure que atualiza variaveis globais tick if ticks = (delay_retirement + delay_promotion_1 + delay_promotion_2) [ stop ] end to atualiza-variaveis-globais ;; procedure que atualiza variaveis globais set Employee_Trainee count turtles with [Employee_Trainee?] set Employee count turtles with [Employee?] set Employee_Master count turtles with [Employee_Master?] set Trainee_OutOfWork count turtles with [Trainee_OutOfWork?] set Employees_OutOfWork count turtles with [Employees_OutOfWork?] set Masters_OutOfWork count turtles with [Masters_OutOfWork?] set OutOfWork ( Trainee_OutOfWork + Employees_OutOfWork + Masters_OutOfWork ) set Total-Employees ( Employee_Trainee + Employee + Employee_Master + OutOfWork ) update-plot ;; atualiza o gr�fico end to envelhece ;; procedure que envelhe as pessoas ask n-of ( ( Employee_Trainee / delay_promotion_1 ) * fraction_1 ) turtles with [Employee_Trainee?] [ promove-Employee ] ask n-of ( ( Employee_Trainee / delay_promotion_1 ) * ( 1 - fraction_1 ) ) turtles with [Employee_Trainee?] [ demite-Trainee ] ask n-of random ( Employee_Trainee * fraction_T ) turtles with [Employee_Trainee?] [ afasta-Trainee ] ask n-of random ( Trainee_OutOfWork / delay_T ) turtles with [Trainee_OutOfWork?] [ retorna-Trainee ] ask n-of ( ( Employee / delay_promotion_2 ) * fraction_2 ) turtles with [Employee?] [ promove-Master ] ask n-of ( ( Employee / delay_promotion_2 ) * ( 1 - fraction_2 ) ) turtles with [Employee?] [ demite-Employee ] ask n-of random ( Employee * fraction_C ) turtles with [Employee?] [ afasta-Employee ] ask n-of random ( Employees_OutOfWork / delay_C ) turtles with [Employees_OutOfWork?] [ retorna-Employee ] ask n-of ( Employee_Master / delay_retirement ) turtles with [Employee_Master?] [ promove-retirement ] ask n-of random ( Employee_Master * fraction_M ) turtles with [Employee_Master?] [ afasta-Master ] ask n-of random ( Masters_OutOfWork / delay_M ) turtles with [Masters_OutOfWork?] [ retorna-Master ] end to promove-Employee set Employee_Trainee? false ;; atribui falso ao estado Employee Trainee da pessoa set Employee? true ;; atribui verdadeiro ao estado Employee da pessoa set color blue ;; atribui cor azul � pessoa no estado Employee end to promove-Master set Employee? false ;; atribui falso ao estado Employee da pessoa set Employee_Master? true ;; atribui verdadeiro ao estado Master Employee da pessoa set color green ;; atribui cor azul � pessoa no estado Employee end to demite-Trainee set Employee_Trainee? false ;; atribui falso ao estado Employee Trainee da pessoa die end to demite-Employee set Employee? false ;; atribui falso ao estado Employee Trainee da pessoa die end to promove-retirement set Employee_Master? false ;; atribui falso ao estado Master Employee da pessoa die end to afasta-Trainee set Employee_Trainee? false ;; atribui falso ao estado Employee Trainee da pessoa set Trainee_OutOfWork? true ;; atribui verdadeiro ao estado Trainee Afastado da pessoa set color red ;; atribui cor vermelha � pessoa afastada end to retorna-Trainee set Trainee_OutOfWork? false ;; atribui falso ao estado Trainee Afastado da pessoa set Employee_Trainee? true ;; atribui verdadeiro ao estado Employee Trainee da pessoa set color yellow ;; atribui cor amarela � pessoa no estado Employee Trainee end to afasta-Employee set Employee? false ;; atribui falso ao estado Employee da pessoa set Employees_OutOfWork? true ;; atribui verdadeiro ao estado Employee Afastado da pessoa set color red ;; tribui cor vermelha � pessoa afastada end to retorna-Employee set Employees_OutOfWork? false ;; atribui falso ao estado Employee Afastado da pessoa set Employee? true ;; atribui verdadeiro ao estado Employee da pessoa set color blue ;; atribui cor azul � pessoa no estado Employee end to afasta-Master set Employee_Master? false ;; atribui falso ao estado Master Employee da pessoa set Masters_OutOfWork? true ;; atribui verdadeiro ao estado Master Afastado da pessoa set color red ;; tribui cor vermelha � pessoa afastada end to retorna-Master set Masters_OutOfWork? false ;; atribui falso ao estado Master Afastado da pessoa set Employee_Master? true ;; atribui verdadeiro ao estado Master Employee da pessoa set color green ;; atribui cor verde � pessoa no estado Master Employee end to move ;; move todas as pessoas ask turtles [ rt random 100 lt random 100 fd 1 ] end to update-plot ;; atualiza o gr�fico set-current-plot "population" ;; seta o gr�fico population como corrente set-current-plot-pen "Beginner" ;; atualiza a vari�vel pessoas Employee_Trainee plot Employee_Trainee ;; plota o n�mero de pessoas Employee_Trainee no gr�fico set-current-plot-pen "Consumer" ;; atualiza a vari�vel pessoas Employee plot Employee ;; plota o n�mero de pessoas Employee no gr�fico set-current-plot-pen "Master" ;; atualiza a vari�vel infectadas Employee_Master plot Employee_Master ;; plota o n�mero de pessoas Employee_Master no gr�fico set-current-plot-pen "Away" ;; atualiza a vari�vel pessoas Afastadas plot OutOfWork ;; plota o n�mero de pessoas OutOfWork no gr�fico set-current-plot-pen "Total" ;; atualiza a vari�vel total de pessoas plot Total-Employees ;; plota o n�mero total de pessoas end @#$#@#$#@ GRAPHICS-WINDOW 524 48 988 533 17 17 12.97143 1 10 1 1 1 0 1 1 1 -17 17 -17 17 1 1 1 ticks 30.0 BUTTON 264 64 356 104 NIL setup NIL 1 T OBSERVER NIL NIL NIL NIL 1 BUTTON 359 65 454 104 NIL go T 1 T OBSERVER NIL NIL NIL NIL 1 PLOT 28 357 348 521 Population years people 0.0 36.0 0.0 200.0 true true "" "" PENS "Beginner" 1.0 0 -4079321 true "" "" "Consumer" 1.0 0 -13345367 true "" "" "Master" 1.0 0 -10899396 true "" "" "Away" 1.0 0 -2674135 true "" "" "Total" 1.0 0 -16777216 true "" "" SLIDER 47 64 243 97 num_initial_consumers num_initial_consumers 100 1000 500 100 1 NIL HORIZONTAL SLIDER 108 128 278 161 delay_promotion_1 delay_promotion_1 0 2 2 1 1 NIL HORIZONTAL SLIDER 108 184 278 217 delay_promotion_2 delay_promotion_2 0 4 4 1 1 NIL HORIZONTAL SLIDER 107 240 278 273 delay_retirement delay_retirement 0 29 12 1 1 NIL HORIZONTAL SLIDER 11 128 103 161 fraction_1 fraction_1 0 1 0.8 0.1 1 NIL HORIZONTAL SLIDER 10 184 102 217 fraction_2 fraction_2 0 1 0.2 0.1 1 NIL HORIZONTAL SLIDER 302 140 394 173 fraction_T fraction_T 0 1 0.1 0.1 1 NIL HORIZONTAL SLIDER 301 183 393 216 fraction_C fraction_C 0 1 0.2 0.1 1 NIL HORIZONTAL SLIDER 301 226 393 259 fraction_M fraction_M 0 1 0.1 0.1 1 NIL HORIZONTAL SLIDER 396 141 515 174 delay_T delay_T 0 10 1 1 1 NIL HORIZONTAL SLIDER 396 182 515 215 delay_C delay_C 0 10 9 1.5 1 NIL HORIZONTAL SLIDER 398 226 517 259 delay_M delay_M 0 10 10 1 1 NIL HORIZONTAL MONITOR 16 293 128 338 Begginer (B) Employee_Trainee 0 1 11 MONITOR 132 294 221 339 Consumer (C) Employee 0 1 11 MONITOR 221 294 328 339 Master (M) Employee_Master 0 1 11 MONITOR 330 294 435 339 Total Consumers Total-Employees 0 1 11 MONITOR 437 294 518 339 AWAY OutOfWork 0 1 11 MONITOR 361 361 502 406 Beginners Away Trainee_OutOfWork 0 1 11 MONITOR 361 418 508 463 Consumers Away Employees_OutOfWork 0 1 11 MONITOR 361 477 502 522 Masters Away Masters_OutOfWork 0 1 11 TEXTBOX 17 106 167 124 UPGRADE B -> C 11 0.0 1 TEXTBOX 17 166 167 184 UPGRADE C -> M 11 0.0 1 TEXTBOX 335 107 514 135 B,C,M -> AWAY \n(LEAVES, TRIPS & OTHERS) 11 0.0 1 TEXTBOX 44 243 144 271 Masters \nOUT: 11 0.0 1 TEXTBOX 17 15 976 39 Consumers' Profile Monitor - Based on Organizational Responsibility Model (Passos, Chamovitz & Theodoulidis, 2013) 18 0.0 0 @#$#@#$#@ ## WHAT IS IT? Consumers Profile Monitor is an simple adaptation from Evolution Employee, designed for The Organisational Responsibility Model (Passos, Chamovitz and Theodoulidis), which was built based on the Aging Chains model proposed by John Sterman in the book Business Dynamics: Systems Thinking and Modeling for a Complex World. Original model had been constructed to help managers to monitor status of 3 types of employees: Trainees, Common Employees and Masters, during employee life cycle. Staff evolution model mapped the evolution of professionals' careers, taking into account PROMOTION and OUTFLOW along employee life cycle, from hiring up to retirement. Consumers Profile Monitor considers 3 TYPES OF CONSUMERS: BEGINNERS, COMMON AND MASTERS .ere is a DELAY that makes the employee takes certain time to pass from beginner to more experienced positions. There is also ANOTHER DELAY for the employee to pass from the last employee stage, master, to finish his career at that company. The closure can be prematurely finished, along the intermediate stages. The model was adapted from the original to allow SHORT-TERM OR LONG-TERM LEAVES, and the main consequence is the consequent delay for their evolution/promotions, causing the employee to remain longer at each stage. Agent Based Modelling allows modelling each agent individually. For this model there is a PROBABILITY for each different agent leaving the company, as well as a different TIME for the agent to STAY TEMPORARY OUT of the company. The model then allows the manager to perform simulations changing parameters until he gets to a number of hires that allows, through the replacement of staff, to keep company with a suitable crew to keeping running it's services. ## HOW IT WORKS Suppose there is a place where a product need to be tested in a specific population from a limited and closed region. For this model, no new clients are considered, since there is a specific period to test the product (for example 35 weeks). This product can have 3 distinct types of consumers. As they get older, they can change their behaviour. One example could be an anti-aging cosmetic. AGENTS (consumers) can assume different STATUS: Beginners (B) is true when the agent is a beginner Common Consumers (C) is true after beginners upgrade Masters (M) is true after Employee upgrade When the test starts, no new consumers enter the system. However, customers can stop to consume (they are OUT OF MARKET) for a short or long time, due to a trip, a disease, or other cause. When an AGENT is OUT OF THE MARKET, status assume values as follows: Beginners_OutOfWork (T) is true if beginner is is out Beginners_OutOfWork (C) if true if common consumer is out Beginners-OutOfWork (M) is true if master is out The test starts with all consumers being beginners and no one out of company. Along the time, the 3 groups of agents (B, M, C) upgrade their status. - fraction-1 - determiines a fraction from the quantity of beginners that will be upgraded delay-promotion-1 - defines how long (weeks) does it takes to be upgraded from B to C - fraction-2 - determines a fraction from the quantity of common employees that will be upgraded delay-promotion-2 defines how long (weeks) does it takes to be promoted from C to M - fraction-T - ramdomically gives the number of beginners that were away that year delay-T - ramdomically gives the number of beginners that came back to the market after being away - fraction-C - ramdomically gives the number of common consumers that were away that year delay-C - ramdomically gives the number of common consumers that came back to the market after being away - fraction-M - ramdomically gives the number of masters that were away that year delay-M - ramdomically gives the number of masters that came back to the company after being away delay-retirement - defines the number of masters that left definitely the market. Whilst AGING, - part of each group will be UPGRADED - how many: (Consumer / delay-promotion ) * fraction ("1" controls promotion and delay from B to C and 2 controls promotion from C to M ) - the other part of each group that is not away and REMANIN CONSUMING, IN MARKET - how many: ( Employee / delay-promotio ) * ( 1 - fraction ) - part of each group will LEAVE TEMPORARY the market (i.e. on license, illness) - how many: ( Employee * fraction ) - part of each group will RETURN TO THE MARKET - how many: ( Beginner_OutOfWork / delay ) ## HOW TO USE IT select the number of new consumers (beginners) are entering the market for the test. Than try to change fraction_1 consider a test after a period and part of them will not be promoted, only X %. Run the model and observe the graphic. Do the same with fraction_2 Run the model again and observe the graphic. ## THINGS TO NOTICE - As the responsibility model, the sum of parameters: delay_promotion_1 + delay_promotion_2 + delay_retirement is 35 weeks, but it can be changed). Consider, for start: - delay_promotion_1 = 2; delay_promotion_2 = 4; delay_retirement = 29 years. These parameters reflect the opportunity that the company offers for public workers for building a career for life in the company. Nowadays the profile of the youth follows a different behavior, they does not think of staying in the same organization for all his life. - Fraction 1 and 2 represent the percentage of people who are expected to leave the company. It suggested 20% for promotion from beginners to common employees and 10% for promotion from common employees to masters. This parameter reflects consumers' fidelity stability. Some consumers stop to buy products and return, after a time. - Fraction T, C and M indicate the percentage of consumers that stay temporary out of the market. These parameters reflect the state of health of the population (consumers), if a region quite unhealthy this value can be high. Consider a coal mine, for example. - Delay T, C and M indicate the time of consumers being away. These parameters reflect two things: 1) high if the health status of the population is very poor, an important point may be the HDI of the region. 2) low if it is an university region, due to Masters, PhDs, Post-docs or Sabbatical year in some cases. ## THINGS TO TRY Modify the main parameters and compare the graphics, and the final results. ## EXTENDING THE MODEL This model was extended from Production and Business Management to the Market field, to monitor consumers behaviour. ## NETLOGO FEATURES ## RELATED MODELS This section could give the names of models in the NetLogo Models Library or elsewhere which are of related interest. ## CREDITS AND REFERENCES Thanks for Uri Wilensky References: NetLogo website. http://ccl.northwestern.edu/netlogo/, PASSOS, G.F. CHAMOVITZ, I. Modelo De Responsabilidade Organizacional, Aplicado Em Empresa Pública De Tecnologia Da Informação E Fundamentado Em Dinâmica De Sistemas. In: IX Congresso Nacional de Excelência em Gestão – CNEG 2013, 2013, Rio de Janeiro – RJ. PASSOS, G.F. CHAMOVITZ, I., THEODOULIDIS, B. Organizational Responsibility Model: Dealing with demand for services higher than installed capacity. Article accepted for presentation at the IEEE SMC 2013 Conference (SMC: Systems Science), October, 2013. STERMAN, J. Business dynamics: systems thinking and modeling for a complex world.Boston, MA: Irwin McGraw-Hill, 2000 ![CC BY-NC-SA 3.0](http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png) This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. Commercial licenses are also available. To inquire about commercial licenses, please contact Uri Wilensky at uri@northwestern.edu. @#$#@#$#@ default true 0 Polygon -7500403 true true 150 5 40 250 150 205 260 250 airplane true 0 Polygon -7500403 true true 150 0 135 15 120 60 120 105 15 165 15 195 120 180 135 240 105 270 120 285 150 270 180 285 210 270 165 240 180 180 285 195 285 165 180 105 180 60 165 15 arrow true 0 Polygon -7500403 true true 150 0 0 150 105 150 105 293 195 293 195 150 300 150 box false 0 Polygon -7500403 true true 150 285 285 225 285 75 150 135 Polygon -7500403 true true 150 135 15 75 150 15 285 75 Polygon -7500403 true true 15 75 15 225 150 285 150 135 Line -16777216 false 150 285 150 135 Line -16777216 false 150 135 15 75 Line -16777216 false 150 135 285 75 bug true 0 Circle -7500403 true true 96 182 108 Circle -7500403 true true 110 127 80 Circle -7500403 true true 110 75 80 Line -7500403 true 150 100 80 30 Line -7500403 true 150 100 220 30 butterfly true 0 Polygon -7500403 true true 150 165 209 199 225 225 225 255 195 270 165 255 150 240 Polygon -7500403 true true 150 165 89 198 75 225 75 255 105 270 135 255 150 240 Polygon -7500403 true true 139 148 100 105 55 90 25 90 10 105 10 135 25 180 40 195 85 194 139 163 Polygon -7500403 true true 162 150 200 105 245 90 275 90 290 105 290 135 275 180 260 195 215 195 162 165 Polygon -16777216 true false 150 255 135 225 120 150 135 120 150 105 165 120 180 150 165 225 Circle -16777216 true false 135 90 30 Line -16777216 false 150 105 195 60 Line -16777216 false 150 105 105 60 car false 0 Polygon -7500403 true true 300 180 279 164 261 144 240 135 226 132 213 106 203 84 185 63 159 50 135 50 75 60 0 150 0 165 0 225 300 225 300 180 Circle -16777216 true false 180 180 90 Circle -16777216 true false 30 180 90 Polygon -16777216 true false 162 80 132 78 134 135 209 135 194 105 189 96 180 89 Circle -7500403 true true 47 195 58 Circle -7500403 true true 195 195 58 circle false 0 Circle -7500403 true true 0 0 300 circle 2 false 0 Circle -7500403 true true 0 0 300 Circle -16777216 true false 30 30 240 cow false 0 Polygon -7500403 true true 200 193 197 249 179 249 177 196 166 187 140 189 93 191 78 179 72 211 49 209 48 181 37 149 25 120 25 89 45 72 103 84 179 75 198 76 252 64 272 81 293 103 285 121 255 121 242 118 224 167 Polygon -7500403 true true 73 210 86 251 62 249 48 208 Polygon -7500403 true true 25 114 16 195 9 204 23 213 25 200 39 123 cylinder false 0 Circle -7500403 true true 0 0 300 dot false 0 Circle -7500403 true true 90 90 120 face happy false 0 Circle -7500403 true true 8 8 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Polygon -16777216 true false 150 255 90 239 62 213 47 191 67 179 90 203 109 218 150 225 192 218 210 203 227 181 251 194 236 217 212 240 face neutral false 0 Circle -7500403 true true 8 7 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Rectangle -16777216 true false 60 195 240 225 face sad false 0 Circle -7500403 true true 8 8 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Polygon -16777216 true false 150 168 90 184 62 210 47 232 67 244 90 220 109 205 150 198 192 205 210 220 227 242 251 229 236 206 212 183 fish false 0 Polygon -1 true false 44 131 21 87 15 86 0 120 15 150 0 180 13 214 20 212 45 166 Polygon -1 true false 135 195 119 235 95 218 76 210 46 204 60 165 Polygon -1 true false 75 45 83 77 71 103 86 114 166 78 135 60 Polygon -7500403 true true 30 136 151 77 226 81 280 119 292 146 292 160 287 170 270 195 195 210 151 212 30 166 Circle -16777216 true false 215 106 30 flag false 0 Rectangle -7500403 true true 60 15 75 300 Polygon -7500403 true true 90 150 270 90 90 30 Line -7500403 true 75 135 90 135 Line -7500403 true 75 45 90 45 flower false 0 Polygon -10899396 true false 135 120 165 165 180 210 180 240 150 300 165 300 195 240 195 195 165 135 Circle -7500403 true true 85 132 38 Circle -7500403 true true 130 147 38 Circle -7500403 true true 192 85 38 Circle -7500403 true true 85 40 38 Circle -7500403 true true 177 40 38 Circle -7500403 true true 177 132 38 Circle -7500403 true true 70 85 38 Circle -7500403 true true 130 25 38 Circle -7500403 true true 96 51 108 Circle -16777216 true false 113 68 74 Polygon -10899396 true false 189 233 219 188 249 173 279 188 234 218 Polygon -10899396 true false 180 255 150 210 105 210 75 240 135 240 house false 0 Rectangle -7500403 true true 45 120 255 285 Rectangle -16777216 true false 120 210 180 285 Polygon -7500403 true true 15 120 150 15 285 120 Line -16777216 false 30 120 270 120 leaf false 0 Polygon -7500403 true true 150 210 135 195 120 210 60 210 30 195 60 180 60 165 15 135 30 120 15 105 40 104 45 90 60 90 90 105 105 120 120 120 105 60 120 60 135 30 150 15 165 30 180 60 195 60 180 120 195 120 210 105 240 90 255 90 263 104 285 105 270 120 285 135 240 165 240 180 270 195 240 210 180 210 165 195 Polygon -7500403 true true 135 195 135 240 120 255 105 255 105 285 135 285 165 240 165 195 line true 0 Line -7500403 true 150 0 150 300 line half true 0 Line -7500403 true 150 0 150 150 pentagon false 0 Polygon -7500403 true true 150 15 15 120 60 285 240 285 285 120 person false 0 Circle -7500403 true true 110 5 80 Polygon -7500403 true true 105 90 120 195 90 285 105 300 135 300 150 225 165 300 195 300 210 285 180 195 195 90 Rectangle -7500403 true true 127 79 172 94 Polygon -7500403 true true 195 90 240 150 225 180 165 105 Polygon -7500403 true true 105 90 60 150 75 180 135 105 plant false 0 Rectangle -7500403 true true 135 90 165 300 Polygon -7500403 true true 135 255 90 210 45 195 75 255 135 285 Polygon -7500403 true true 165 255 210 210 255 195 225 255 165 285 Polygon -7500403 true true 135 180 90 135 45 120 75 180 135 210 Polygon -7500403 true true 165 180 165 210 225 180 255 120 210 135 Polygon -7500403 true true 135 105 90 60 45 45 75 105 135 135 Polygon -7500403 true true 165 105 165 135 225 105 255 45 210 60 Polygon -7500403 true true 135 90 120 45 150 15 180 45 165 90 square false 0 Rectangle -7500403 true true 30 30 270 270 square 2 false 0 Rectangle -7500403 true true 30 30 270 270 Rectangle -16777216 true false 60 60 240 240 star false 0 Polygon -7500403 true true 151 1 185 108 298 108 207 175 242 282 151 216 59 282 94 175 3 108 116 108 target false 0 Circle -7500403 true true 0 0 300 Circle -16777216 true false 30 30 240 Circle -7500403 true true 60 60 180 Circle -16777216 true false 90 90 120 Circle -7500403 true true 120 120 60 tree false 0 Circle -7500403 true true 118 3 94 Rectangle -6459832 true false 120 195 180 300 Circle -7500403 true true 65 21 108 Circle -7500403 true true 116 41 127 Circle -7500403 true true 45 90 120 Circle -7500403 true true 104 74 152 triangle false 0 Polygon -7500403 true true 150 30 15 255 285 255 triangle 2 false 0 Polygon -7500403 true true 150 30 15 255 285 255 Polygon -16777216 true false 151 99 225 223 75 224 truck false 0 Rectangle -7500403 true true 4 45 195 187 Polygon -7500403 true true 296 193 296 150 259 134 244 104 208 104 207 194 Rectangle -1 true false 195 60 195 105 Polygon -16777216 true false 238 112 252 141 219 141 218 112 Circle -16777216 true false 234 174 42 Rectangle -7500403 true true 181 185 214 194 Circle -16777216 true false 144 174 42 Circle -16777216 true false 24 174 42 Circle -7500403 false true 24 174 42 Circle -7500403 false true 144 174 42 Circle -7500403 false true 234 174 42 turtle true 0 Polygon -10899396 true false 215 204 240 233 246 254 228 266 215 252 193 210 Polygon -10899396 true false 195 90 225 75 245 75 260 89 269 108 261 124 240 105 225 105 210 105 Polygon -10899396 true false 105 90 75 75 55 75 40 89 31 108 39 124 60 105 75 105 90 105 Polygon -10899396 true false 132 85 134 64 107 51 108 17 150 2 192 18 192 52 169 65 172 87 Polygon -10899396 true false 85 204 60 233 54 254 72 266 85 252 107 210 Polygon -7500403 true true 119 75 179 75 209 101 224 135 220 225 175 261 128 261 81 224 74 135 88 99 wheel false 0 Circle -7500403 true true 3 3 294 Circle -16777216 true false 30 30 240 Line -7500403 true 150 285 150 15 Line -7500403 true 15 150 285 150 Circle -7500403 true true 120 120 60 Line -7500403 true 216 40 79 269 Line -7500403 true 40 84 269 221 Line -7500403 true 40 216 269 79 Line -7500403 true 84 40 221 269 x false 0 Polygon -7500403 true true 270 75 225 30 30 225 75 270 Polygon -7500403 true true 30 75 75 30 270 225 225 270 @#$#@#$#@ NetLogo 5.0.5 @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ default 0.0 -0.2 0 0.0 1.0 0.0 1 1.0 0.0 0.2 0 0.0 1.0 link direction true 0 Line -7500403 true 150 150 90 180 Line -7500403 true 150 150 210 180 @#$#@#$#@ 0 @#$#@#$#@