galaaz 0.4.2 → 0.4.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (114) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +25 -0
  3. data/Rakefile +8 -0
  4. data/bin/gknit +9 -5
  5. data/bin/gstudio +4 -2
  6. data/bin/gstudio.rb +32 -2
  7. data/blogs/dev/dev.html +219 -34
  8. data/blogs/dev/dev.md +26 -26
  9. data/blogs/dev/dev_files/figure-html/bubble-1.png +0 -0
  10. data/blogs/dev/dev_files/figure-html/diverging_bar.png +0 -0
  11. data/blogs/dplyr/dplyr.rb +63 -0
  12. data/blogs/galaaz_ggplot/galaaz_ggplot.Rmd +38 -26
  13. data/blogs/galaaz_ggplot/galaaz_ggplot.aux +16 -17
  14. data/blogs/galaaz_ggplot/galaaz_ggplot.pdf +0 -0
  15. data/blogs/galaaz_ggplot/galaaz_ggplot.tex +65 -31
  16. data/blogs/oh_my/not_so.rb +2342 -0
  17. data/blogs/oh_my/oh_my.Rmd +493 -0
  18. data/blogs/oh_my/oh_my.html +680 -0
  19. data/blogs/oh_my/oh_my.md +597 -0
  20. data/blogs/oh_my/old.Rmd +2100 -0
  21. data/blogs/ruby_plot/figures/facets_with_decorations.png +0 -0
  22. data/blogs/ruby_plot/figures/facets_with_jitter.png +0 -0
  23. data/blogs/ruby_plot/figures/final_box_plot.png +0 -0
  24. data/blogs/ruby_plot/figures/final_violin_plot.png +0 -0
  25. data/blogs/ruby_plot/figures/violin_with_jitter.png +0 -0
  26. data/blogs/ruby_plot/ruby_plot.Rmd +147 -122
  27. data/blogs/ruby_plot/ruby_plot.Rmd_external_figs +662 -0
  28. data/blogs/ruby_plot/ruby_plot.html +49 -54
  29. data/blogs/ruby_plot/ruby_plot.md +147 -122
  30. data/blogs/ruby_plot/ruby_plot.pdf +0 -0
  31. data/blogs/ruby_plot/ruby_plot.tex +776 -157
  32. data/blogs/ruby_plot/ruby_plot_files/figure-html/dose_len.svg +57 -0
  33. data/blogs/ruby_plot/ruby_plot_files/figure-html/facet_by_delivery.svg +106 -0
  34. data/blogs/ruby_plot/ruby_plot_files/figure-html/facet_by_dose.svg +110 -0
  35. data/blogs/ruby_plot/ruby_plot_files/figure-html/facets_by_delivery_color.svg +174 -0
  36. data/blogs/ruby_plot/ruby_plot_files/figure-html/facets_by_delivery_color2.svg +236 -0
  37. data/blogs/ruby_plot/ruby_plot_files/figure-html/facets_with_decorations.png +0 -0
  38. data/blogs/ruby_plot/ruby_plot_files/figure-html/facets_with_jitter.svg +296 -0
  39. data/blogs/ruby_plot/ruby_plot_files/figure-html/facets_with_points.svg +236 -0
  40. data/blogs/ruby_plot/ruby_plot_files/figure-html/final_box_plot.svg +218 -0
  41. data/blogs/ruby_plot/ruby_plot_files/figure-html/final_violin_plot.svg +128 -0
  42. data/blogs/ruby_plot/ruby_plot_files/figure-html/violin_with_jitter.svg +150 -0
  43. data/examples/islr/ch2.spec.rb +21 -18
  44. data/examples/islr/ch3_boston.rb +14 -5
  45. data/examples/islr/ch3_multiple_regression.rb +2 -3
  46. data/examples/islr/ch6.spec.rb +1 -1
  47. data/examples/islr/x_y_rnorm.jpg +0 -0
  48. data/lib/R_interface/r.rb +14 -10
  49. data/lib/R_interface/r_libs.R +9 -0
  50. data/lib/R_interface/r_methods.rb +77 -6
  51. data/lib/R_interface/{expression.rb → r_module_s.rb} +13 -14
  52. data/lib/R_interface/rbinary_operators.rb +58 -71
  53. data/lib/R_interface/rdata_frame.rb +2 -1
  54. data/lib/R_interface/rdevices.R +4 -0
  55. data/lib/R_interface/rdevices.rb +1 -1
  56. data/lib/R_interface/renvironment.rb +34 -1
  57. data/lib/R_interface/rexpression.rb +108 -2
  58. data/lib/R_interface/rindexed_object.rb +3 -1
  59. data/lib/R_interface/rlanguage.rb +18 -2
  60. data/lib/R_interface/rmatrix.rb +14 -0
  61. data/lib/R_interface/rmd_indexed_object.rb +5 -1
  62. data/lib/R_interface/robject.rb +61 -23
  63. data/lib/R_interface/rsupport.rb +111 -53
  64. data/lib/R_interface/rsymbol.rb +6 -5
  65. data/lib/R_interface/ruby_extensions.rb +130 -4
  66. data/lib/R_interface/runary_operators.rb +35 -3
  67. data/lib/R_interface/rvector.rb +1 -0
  68. data/lib/galaaz.rb +0 -2
  69. data/lib/gknit/knitr_engine.rb +58 -4
  70. data/lib/gknit/ruby_engine.rb +5 -6
  71. data/lib/util/exec_ruby.rb +55 -9
  72. data/specs/all.rb +13 -3
  73. data/specs/figures/dose_len.png +0 -0
  74. data/specs/r_dataframe.spec.rb +49 -26
  75. data/specs/r_environment.spec.rb +140 -0
  76. data/specs/r_eval.spec.rb +0 -15
  77. data/specs/r_formula.spec.rb +232 -0
  78. data/specs/r_function.spec.rb +7 -8
  79. data/specs/r_list.spec.rb +4 -0
  80. data/specs/r_list_apply.spec.rb +11 -11
  81. data/specs/r_matrix.spec.rb +3 -3
  82. data/specs/{r_plots.spec.rb~ → r_nse.spec.rb} +29 -6
  83. data/specs/r_vector_creation.spec.rb +6 -0
  84. data/specs/r_vector_object.spec.rb +2 -2
  85. data/specs/r_vector_operators.spec.rb +3 -3
  86. data/specs/r_vector_subsetting.spec.rb +4 -4
  87. data/specs/ruby_expression.spec.rb +324 -0
  88. data/specs/tmp.rb +12 -524
  89. data/sty/galaaz.sty +71 -0
  90. data/version.rb +1 -1
  91. metadata +31 -41
  92. data/bin/gknit2~ +0 -6
  93. data/bin/ogk~ +0 -4
  94. data/bin/prepareR.rb~ +0 -1
  95. data/blogs/dev/dev.Rmd~ +0 -104
  96. data/blogs/galaaz_ggplot/galaaz_ggplot.dvi +0 -0
  97. data/blogs/galaaz_ggplot/midwest_external_png~ +0 -1
  98. data/blogs/gknit/gknit.Rmd~ +0 -184
  99. data/blogs/gknit/gknit.Rnd~ +0 -17
  100. data/blogs/gknit/model.rb~ +0 -46
  101. data/blogs/ruby_plot/ruby_plot.Rmd~ +0 -215
  102. data/examples/islr/Figure.jpg +0 -0
  103. data/examples/misc/moneyball.rb~ +0 -16
  104. data/examples/misc/subsetting.rb~ +0 -372
  105. data/lib/R/eng_ruby.R~ +0 -63
  106. data/lib/R_interface/capture_plot.rb~ +0 -23
  107. data/lib/R_interface/r.rb~ +0 -121
  108. data/lib/R_interface/rdevices.rb~ +0 -27
  109. data/lib/gknit.rb~ +0 -26
  110. data/lib/gknit/knitr_engine.rb~ +0 -102
  111. data/lib/gknit/ruby_engine.rb~ +0 -72
  112. data/lib/util/inline_file.rb~ +0 -23
  113. data/r_requires/knitr.rb~ +0 -4
  114. data/specs/r_language.spec.rb +0 -157
@@ -0,0 +1,128 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' viewBox='0 0 506 506' style='fill:transparent'>
4
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
5
+ <rect x='0' y='0' width='506' height='506' style='stroke:#FFFFFF;fill:#FFFFFF'/>
6
+ <rect x='33' y='51' width='199' height='416' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#EBEBEB'/>
7
+ <polyline points='57,397 57,397 57,396 57,396 57,396 57,395 57,395 57,395 57,394 57,394 57,394 57,393 57,393 57,393 57,392 57,392 57,392 57,391 57,391 56,391 56,390 56,390 56,390 56,389 56,389 56,389 56,388 56,388 56,388 56,387 56,387 56,387 56,386 56,386 56,386 56,385 56,385 56,385 56,384 56,384 56,384 56,383 56,383 56,383 56,382 56,382 56,382 56,381 56,381 56,381 56,380 56,380 56,380 56,379 56,379 56,379 56,378 56,378 56,378 56,377 56,377 56,377 56,376 56,376 56,376 56,375 56,375 56,375 56,374 56,374 56,374 56,373 56,373 56,373 56,372 56,372 56,372 56,371 56,371 56,371 56,370 56,370 56,370 56,369 56,369 56,369 56,368 56,368 56,368 56,367 56,367 56,367 56,366 56,366 56,366 56,365 56,365 56,365 56,364 56,364 56,364 56,363 56,363 56,363 56,363 56,362 56,362 56,362 56,361 56,361 56,361 57,360 57,360 57,360 57,359 57,359 57,359 57,358 57,358 57,358 57,357 57,357 57,357 57,356 57,356 57,356 57,355 57,355 57,355 57,354 57,354 57,354 57,353 57,353 57,353 57,352 57,352 57,352 57,351 57,351 58,351 58,350 58,350 58,350 58,349 58,349 58,349 58,348 58,348 58,348 58,347 58,347 58,347 58,346 58,346 58,346 58,345 58,345 58,345 58,344 58,344 58,344 58,343 58,343 58,343 58,342 58,342 58,342 58,341 58,341 58,341 58,340 58,340 58,340 58,339 59,339 59,339 59,338 59,338 59,338 59,337 59,337 59,337 59,336 59,336 59,336 59,335 59,335 59,335 59,334 59,334 59,334 59,333 59,333 59,333 59,332 59,332 59,332 59,331 59,331 59,331 59,330 59,330 59,330 59,329 59,329 59,329 59,328 59,328 59,328 59,327 59,327 59,327 59,326 59,326 59,326 59,325 59,325 59,325 59,324 59,324 59,324 59,323 59,323 59,323 59,322 59,322 59,322 59,321 59,321 59,321 59,320 59,320 59,320 59,319 59,319 59,319 59,318 59,318 59,318 59,317 59,317 59,317 59,316 59,316 59,316 59,315 59,315 59,315 59,314 59,314 59,314 59,313 59,313 59,313 59,312 59,312 59,312 59,311 59,311 59,311 59,310 59,310 59,310 59,309 59,309 59,309 59,309 59,308 59,308 59,308 59,307 59,307 59,307 59,306 59,306 59,306 59,305 59,305 59,305 59,304 59,304 59,304 59,303 59,303 59,303 59,302 59,302 59,302 59,301 59,301 59,301 59,300 59,300 59,300 59,299 59,299 59,299 59,298 59,298 59,298 59,297 59,297 59,297 59,296 59,296 59,296 59,295 59,295 59,295 59,294 59,294 59,294 59,293 59,293 59,293 59,292 59,292 59,292 59,291 59,291 59,291 59,290 59,290 59,290 59,289 59,289 59,289 59,288 59,288 60,288 60,287 60,287 60,287 60,286 60,286 60,286 60,285 60,285 60,285 60,284 60,284 60,284 60,283 60,283 60,283 60,282 60,282 60,282 60,281 60,281 60,281 60,280 60,280 60,280 60,279 60,279 60,279 60,278 60,278 60,278 60,277 60,277 61,277 61,276 61,276 61,276 61,275 61,275 61,275 61,274 61,274 61,274 61,273 61,273 61,273 61,272 61,272 61,272 61,271 61,271 61,271 61,270 61,270 61,270 61,269 61,269 61,269 61,268 61,268 62,268 62,267 62,267 62,267 62,266 62,266 62,266 62,265 62,265 62,265 62,264 62,264 62,264 62,263 62,263 62,263 62,262 62,262 62,262 62,261 62,261 62,261 62,260 62,260 62,260 63,259 63,259 63,259 63,258 63,258 63,258 63,257 63,257 63,257 63,256 63,256 63,256 63,255 63,255 63,255 63,254 63,254 63,254 63,254 63,253 63,253 63,253 63,252 63,252 63,252 63,251 63,251 64,251 64,250 64,250 64,250 64,249 64,249 64,249 64,248 64,248 64,248 64,247 64,247 64,247 64,246 64,246 64,246 64,245 64,245 64,245 64,244 64,244 64,244 64,243 64,243 64,243 64,242 64,242 64,242 64,241 64,241 64,241 65,240 65,240 65,240 65,239 65,239 65,239 65,238 65,238 65,238 65,237 65,237 65,237 65,236 65,236 65,236 65,235 65,235 65,235 65,234 65,234 65,234 65,233 65,233 65,233 65,232 65,232 65,232 65,231 65,231 65,231 65,230 65,230 65,230 65,229 65,229 66,229 66,228 66,228 66,228 74,228 74,228 74,228 74,229 74,229 74,229 74,230 74,230 74,230 74,231 74,231 74,231 74,232 74,232 74,232 74,233 75,233 75,233 75,234 75,234 75,234 75,235 75,235 75,235 75,236 75,236 75,236 75,237 75,237 75,237 75,238 75,238 75,238 75,239 75,239 75,239 75,240 75,240 75,240 75,241 75,241 75,241 75,242 75,242 75,242 75,243 75,243 75,243 75,244 76,244 76,244 76,245 76,245 76,245 76,246 76,246 76,246 76,247 76,247 76,247 76,248 76,248 76,248 76,249 76,249 76,249 76,250 76,250 76,250 76,251 76,251 76,251 76,252 76,252 76,252 76,253 76,253 76,253 77,254 77,254 77,254 77,254 77,255 77,255 77,255 77,256 77,256 77,256 77,257 77,257 77,257 77,258 77,258 77,258 77,259 77,259 77,259 77,260 77,260 77,260 77,261 77,261 77,261 77,262 77,262 78,262 78,263 78,263 78,263 78,264 78,264 78,264 78,265 78,265 78,265 78,266 78,266 78,266 78,267 78,267 78,267 78,268 78,268 78,268 78,269 78,269 78,269 78,270 78,270 78,270 79,271 79,271 79,271 79,272 79,272 79,272 79,273 79,273 79,273 79,274 79,274 79,274 79,275 79,275 79,275 79,276 79,276 79,276 79,277 79,277 79,277 79,278 79,278 79,278 79,279 79,279 79,279 79,280 80,280 80,280 80,281 80,281 80,281 80,282 80,282 80,282 80,283 80,283 80,283 80,284 80,284 80,284 80,285 80,285 80,285 80,286 80,286 80,286 80,287 80,287 80,287 80,288 80,288 80,288 80,289 80,289 80,289 80,290 80,290 80,290 80,291 80,291 80,291 80,292 80,292 80,292 80,293 80,293 81,293 81,294 81,294 81,294 81,295 81,295 81,295 81,296 81,296 81,296 81,297 81,297 81,297 81,298 81,298 81,298 81,299 81,299 81,299 81,300 81,300 81,300 81,301 81,301 81,301 81,302 81,302 81,302 81,303 81,303 81,303 81,304 81,304 81,304 81,305 81,305 81,305 81,306 81,306 81,306 81,307 81,307 81,307 81,308 81,308 81,308 81,309 81,309 81,309 81,309 81,310 81,310 81,310 81,311 81,311 81,311 81,312 81,312 81,312 81,313 81,313 81,313 81,314 81,314 81,314 81,315 81,315 81,315 81,316 81,316 81,316 81,317 81,317 81,317 81,318 81,318 81,318 81,319 81,319 81,319 81,320 81,320 81,320 81,321 81,321 81,321 81,322 81,322 81,322 81,323 81,323 81,323 81,324 81,324 81,324 81,325 81,325 81,325 81,326 81,326 81,326 81,327 81,327 81,327 81,328 81,328 81,328 81,329 81,329 81,329 81,330 81,330 81,330 81,331 81,331 81,331 81,332 81,332 81,332 81,333 81,333 81,333 81,334 81,334 81,334 81,335 81,335 81,335 81,336 81,336 81,336 81,337 81,337 81,337 81,338 81,338 81,338 81,339 81,339 81,339 81,340 81,340 81,340 81,341 81,341 81,341 81,342 81,342 81,342 81,343 81,343 81,343 82,344 82,344 82,344 82,345 82,345 82,345 82,346 82,346 82,346 82,347 82,347 82,347 82,348 82,348 82,348 82,349 82,349 82,349 82,350 82,350 82,350 82,351 82,351 82,351 82,352 82,352 82,352 82,353 82,353 82,353 82,354 83,354 83,354 83,355 83,355 83,355 83,356 83,356 83,356 83,357 83,357 83,357 83,358 83,358 83,358 83,359 83,359 83,359 83,360 83,360 83,360 83,361 83,361 83,361 83,362 83,362 83,362 83,363 83,363 83,363 83,363 84,364 84,364 84,364 84,365 84,365 84,365 84,366 84,366 84,366 84,367 84,367 84,367 84,368 84,368 84,368 84,369 84,369 84,369 84,370 84,370 84,370 84,371 84,371 84,371 84,372 84,372 84,372 84,373 84,373 84,373 84,374 84,374 84,374 84,375 84,375 84,375 84,376 84,376 84,376 84,377 84,377 84,377 84,378 84,378 84,378 84,379 84,379 84,379 84,380 84,380 84,380 84,381 84,381 84,381 84,382 84,382 84,382 84,383 84,383 84,383 84,384 84,384 84,384 84,385 84,385 84,385 84,386 84,386 84,386 84,387 84,387 84,387 84,388 84,388 84,388 83,389 83,389 83,389 83,390 83,390 83,390 83,391 83,391 83,391 83,392 83,392 83,392 83,393 83,393 83,393 83,394 83,394 83,394 83,395 83,395 83,395 82,396 82,396 82,396 82,397 82,397 57,397 57,397' style='stroke:#333333;fill:#00FFFF'/>
8
+ <polyline points='128,317 128,316 128,316 128,316 128,315 128,315 128,315 128,315 128,314 128,314 128,314 128,313 128,313 128,313 128,312 128,312 128,312 128,311 128,311 128,311 128,310 128,310 128,310 128,309 128,309 128,309 128,308 128,308 128,308 128,308 128,307 128,307 128,307 128,306 128,306 128,306 128,305 128,305 128,305 128,304 128,304 128,304 128,303 128,303 128,303 128,302 128,302 128,302 128,301 128,301 128,301 128,301 128,300 128,300 128,300 128,299 128,299 128,299 128,298 128,298 128,298 128,297 128,297 128,297 128,296 128,296 128,296 128,295 128,295 128,295 128,294 128,294 128,294 128,293 128,293 128,293 128,293 127,292 127,292 127,292 127,291 127,291 127,291 127,290 127,290 127,290 127,289 127,289 127,289 127,288 127,288 127,288 127,287 127,287 127,287 127,286 127,286 127,286 127,286 127,285 127,285 127,285 127,284 127,284 127,284 127,283 127,283 127,283 127,282 127,282 126,282 126,281 126,281 126,281 126,280 126,280 126,280 126,279 126,279 126,279 126,279 126,278 126,278 126,278 126,277 126,277 126,277 126,276 126,276 126,276 126,275 126,275 126,275 125,274 125,274 125,274 125,273 125,273 125,273 125,272 125,272 125,272 125,271 125,271 125,271 125,271 125,270 125,270 125,270 125,269 125,269 124,269 124,268 124,268 124,268 124,267 124,267 124,267 124,266 124,266 124,266 124,265 124,265 124,265 124,264 124,264 124,264 124,264 123,263 123,263 123,263 123,262 123,262 123,262 123,261 123,261 123,261 123,260 123,260 123,260 123,259 123,259 123,259 123,258 122,258 122,258 122,257 122,257 122,257 122,257 122,256 122,256 122,256 122,255 122,255 122,255 122,254 122,254 122,254 122,253 122,253 121,253 121,252 121,252 121,252 121,251 121,251 121,251 121,250 121,250 121,250 121,249 121,249 121,249 121,249 121,248 121,248 121,248 121,247 120,247 120,247 120,246 120,246 120,246 120,245 120,245 120,245 120,244 120,244 120,244 120,243 120,243 120,243 120,242 120,242 120,242 120,242 120,241 120,241 120,241 119,240 119,240 119,240 119,239 119,239 119,239 119,238 119,238 119,238 119,237 119,237 119,237 119,236 119,236 119,236 119,235 119,235 119,235 119,235 119,234 119,234 119,234 119,233 119,233 119,233 118,232 118,232 118,232 118,231 118,231 118,231 118,230 118,230 118,230 118,229 118,229 118,229 118,228 118,228 118,228 118,227 118,227 118,227 118,227 118,226 118,226 118,226 118,225 118,225 118,225 118,224 118,224 118,224 118,223 118,223 117,223 117,222 117,222 117,222 117,221 117,221 117,221 117,220 117,220 117,220 117,220 117,219 117,219 117,219 117,218 117,218 117,218 117,217 117,217 117,217 117,216 117,216 117,216 117,215 117,215 117,215 117,214 117,214 117,214 117,213 117,213 117,213 117,213 117,212 117,212 117,212 116,211 116,211 116,211 116,210 116,210 116,210 116,209 116,209 116,209 116,208 116,208 116,208 116,207 116,207 116,207 116,206 116,206 116,206 116,205 116,205 116,205 116,205 116,204 116,204 116,204 116,203 116,203 116,203 116,202 116,202 116,202 116,201 116,201 116,201 116,200 116,200 116,200 116,199 116,199 116,199 116,198 116,198 115,198 115,198 115,197 115,197 115,197 115,196 115,196 115,196 115,195 115,195 115,195 115,194 115,194 115,194 115,193 115,193 115,193 115,192 115,192 115,192 115,191 115,191 115,191 115,191 115,190 115,190 115,190 115,189 115,189 115,189 115,188 115,188 115,188 115,187 115,187 115,187 115,186 115,186 115,186 115,185 115,185 115,185 115,184 115,184 115,184 115,183 115,183 115,183 115,183 115,182 115,182 115,182 115,181 115,181 115,181 115,180 115,180 115,180 115,179 115,179 115,179 115,178 115,178 115,178 115,177 116,177 116,177 116,176 116,176 116,176 116,176 116,175 116,175 116,175 116,174 116,174 116,174 116,173 116,173 116,173 116,172 116,172 116,172 116,171 116,171 116,171 116,170 116,170 116,170 116,169 116,169 117,169 117,169 117,168 117,168 117,168 117,167 117,167 117,167 117,166 117,166 117,166 117,165 117,165 117,165 117,164 117,164 117,164 117,163 118,163 118,163 118,162 118,162 118,162 118,161 118,161 118,161 118,161 118,160 118,160 118,160 118,159 118,159 119,159 119,158 119,158 119,158 119,157 119,157 119,157 119,156 119,156 119,156 119,155 119,155 120,155 120,154 120,154 120,154 144,154 144,154 144,154 144,155 145,155 145,155 145,156 145,156 145,156 145,157 145,157 145,157 145,158 145,158 145,158 145,159 146,159 146,159 146,160 146,160 146,160 146,161 146,161 146,161 146,161 146,162 146,162 146,162 146,163 146,163 147,163 147,164 147,164 147,164 147,165 147,165 147,165 147,166 147,166 147,166 147,167 147,167 147,167 147,168 147,168 147,168 147,169 148,169 148,169 148,169 148,170 148,170 148,170 148,171 148,171 148,171 148,172 148,172 148,172 148,173 148,173 148,173 148,174 148,174 148,174 148,175 148,175 148,175 148,176 148,176 148,176 148,176 148,177 148,177 149,177 149,178 149,178 149,178 149,179 149,179 149,179 149,180 149,180 149,180 149,181 149,181 149,181 149,182 149,182 149,182 149,183 149,183 149,183 149,183 149,184 149,184 149,184 149,185 149,185 149,185 149,186 149,186 149,186 149,187 149,187 149,187 149,188 149,188 149,188 149,189 149,189 149,189 149,190 149,190 149,190 149,191 149,191 149,191 149,191 149,192 149,192 149,192 149,193 149,193 149,193 149,194 149,194 149,194 149,195 149,195 149,195 149,196 149,196 149,196 149,197 149,197 149,197 149,198 149,198 149,198 148,198 148,199 148,199 148,199 148,200 148,200 148,200 148,201 148,201 148,201 148,202 148,202 148,202 148,203 148,203 148,203 148,204 148,204 148,204 148,205 148,205 148,205 148,205 148,206 148,206 148,206 148,207 148,207 148,207 148,208 148,208 148,208 148,209 148,209 148,209 148,210 148,210 148,210 148,211 148,211 148,211 148,212 147,212 147,212 147,213 147,213 147,213 147,213 147,214 147,214 147,214 147,215 147,215 147,215 147,216 147,216 147,216 147,217 147,217 147,217 147,218 147,218 147,218 147,219 147,219 147,219 147,220 147,220 147,220 147,220 147,221 147,221 147,221 147,222 147,222 147,222 147,223 146,223 146,223 146,224 146,224 146,224 146,225 146,225 146,225 146,226 146,226 146,226 146,227 146,227 146,227 146,227 146,228 146,228 146,228 146,229 146,229 146,229 146,230 146,230 146,230 146,231 146,231 146,231 146,232 146,232 146,232 146,233 145,233 145,233 145,234 145,234 145,234 145,235 145,235 145,235 145,235 145,236 145,236 145,236 145,237 145,237 145,237 145,238 145,238 145,238 145,239 145,239 145,239 145,240 145,240 145,240 144,241 144,241 144,241 144,242 144,242 144,242 144,242 144,243 144,243 144,243 144,244 144,244 144,244 144,245 144,245 144,245 144,246 144,246 144,246 144,247 144,247 143,247 143,248 143,248 143,248 143,249 143,249 143,249 143,249 143,250 143,250 143,250 143,251 143,251 143,251 143,252 143,252 143,252 143,253 142,253 142,253 142,254 142,254 142,254 142,255 142,255 142,255 142,256 142,256 142,256 142,257 142,257 142,257 142,257 142,258 142,258 141,258 141,259 141,259 141,259 141,260 141,260 141,260 141,261 141,261 141,261 141,262 141,262 141,262 141,263 141,263 141,263 140,264 140,264 140,264 140,264 140,265 140,265 140,265 140,266 140,266 140,266 140,267 140,267 140,267 140,268 140,268 140,268 140,269 139,269 139,269 139,270 139,270 139,270 139,271 139,271 139,271 139,271 139,272 139,272 139,272 139,273 139,273 139,273 139,274 139,274 139,274 139,275 138,275 138,275 138,276 138,276 138,276 138,277 138,277 138,277 138,278 138,278 138,278 138,279 138,279 138,279 138,279 138,280 138,280 138,280 138,281 138,281 138,281 138,282 137,282 137,282 137,283 137,283 137,283 137,284 137,284 137,284 137,285 137,285 137,285 137,286 137,286 137,286 137,286 137,287 137,287 137,287 137,288 137,288 137,288 137,289 137,289 137,289 137,290 137,290 137,290 137,291 137,291 137,291 137,292 137,292 137,292 136,293 136,293 136,293 136,293 136,294 136,294 136,294 136,295 136,295 136,295 136,296 136,296 136,296 136,297 136,297 136,297 136,298 136,298 136,298 136,299 136,299 136,299 136,300 136,300 136,300 136,301 136,301 136,301 136,301 136,302 136,302 136,302 136,303 136,303 136,303 136,304 136,304 136,304 136,305 136,305 136,305 136,306 136,306 136,306 136,307 136,307 136,307 136,308 136,308 136,308 136,308 136,309 136,309 136,309 136,310 136,310 136,310 136,311 136,311 136,311 136,312 136,312 136,312 136,313 136,313 136,313 136,314 136,314 136,314 136,315 136,315 136,315 136,315 136,316 136,316 136,316 136,317 128,317 128,317' style='stroke:#333333;fill:#00BFFF'/>
9
+ <polyline points='180,216 180,216 180,216 180,216 180,215 180,215 180,215 180,215 179,215 179,214 179,214 179,214 179,214 179,213 179,213 179,213 179,213 179,213 179,212 178,212 178,212 178,212 178,212 178,211 178,211 178,211 178,211 178,210 178,210 178,210 178,210 178,210 178,209 177,209 177,209 177,209 177,209 177,208 177,208 177,208 177,208 177,208 177,207 177,207 177,207 177,207 177,206 177,206 177,206 176,206 176,206 176,205 176,205 176,205 176,205 176,205 176,204 176,204 176,204 176,204 176,204 176,203 176,203 176,203 176,203 175,202 175,202 175,202 175,202 175,202 175,201 175,201 175,201 175,201 175,201 175,200 175,200 175,200 175,200 175,199 174,199 174,199 174,199 174,199 174,198 174,198 174,198 174,198 174,198 174,197 174,197 174,197 174,197 173,197 173,196 173,196 173,196 173,196 173,195 173,195 173,195 173,195 173,195 173,194 173,194 172,194 172,194 172,194 172,193 172,193 172,193 172,193 172,192 172,192 172,192 172,192 171,192 171,191 171,191 171,191 171,191 171,191 171,190 171,190 171,190 171,190 171,190 170,189 170,189 170,189 170,189 170,188 170,188 170,188 170,188 170,188 170,187 170,187 169,187 169,187 169,187 169,186 169,186 169,186 169,186 169,186 169,185 169,185 169,185 169,185 168,184 168,184 168,184 168,184 168,184 168,183 168,183 168,183 168,183 168,183 168,182 168,182 168,182 168,182 167,181 167,181 167,181 167,181 167,181 167,180 167,180 167,180 167,180 167,180 167,179 167,179 167,179 167,179 167,179 167,178 167,178 167,178 167,178 167,177 166,177 166,177 166,177 166,177 166,176 166,176 166,176 166,176 166,176 166,175 166,175 166,175 166,175 166,174 166,174 166,174 166,174 166,174 166,173 166,173 166,173 166,173 166,173 166,172 166,172 166,172 166,172 166,172 166,171 166,171 166,171 166,171 166,170 166,170 166,170 167,170 167,170 167,169 167,169 167,169 167,169 167,169 167,168 167,168 167,168 167,168 167,168 167,167 167,167 167,167 167,167 167,166 167,166 168,166 168,166 168,166 168,165 168,165 168,165 168,165 168,165 168,164 168,164 168,164 169,164 169,163 169,163 169,163 169,163 169,163 169,162 169,162 169,162 170,162 170,162 170,161 170,161 170,161 170,161 170,161 170,160 171,160 171,160 171,160 171,159 171,159 171,159 171,159 172,159 172,158 172,158 172,158 172,158 172,158 172,157 173,157 173,157 173,157 173,157 173,156 173,156 173,156 174,156 174,155 174,155 174,155 174,155 174,155 175,154 175,154 175,154 175,154 175,154 175,153 176,153 176,153 176,153 176,152 176,152 176,152 176,152 177,152 177,151 177,151 177,151 177,151 177,151 178,150 178,150 178,150 178,150 178,150 178,149 178,149 179,149 179,149 179,148 179,148 179,148 179,148 179,148 180,147 180,147 180,147 180,147 180,147 180,146 180,146 180,146 181,146 181,145 181,145 181,145 181,145 181,145 181,144 181,144 182,144 182,144 182,144 182,143 182,143 182,143 182,143 182,143 182,142 182,142 182,142 183,142 183,141 183,141 183,141 183,141 183,141 183,140 183,140 183,140 183,140 183,140 183,139 183,139 183,139 183,139 183,139 183,138 184,138 184,138 184,138 184,137 184,137 184,137 184,137 184,137 184,136 184,136 184,136 184,136 184,136 184,135 184,135 184,135 184,135 184,134 184,134 184,134 184,134 184,134 184,133 184,133 184,133 184,133 184,133 184,132 184,132 184,132 184,132 184,132 184,131 184,131 184,131 184,131 184,130 184,130 184,130 184,130 184,130 184,129 184,129 184,129 184,129 184,129 184,128 184,128 184,128 184,128 184,127 184,127 184,127 184,127 184,127 184,126 184,126 184,126 184,126 184,126 184,125 184,125 184,125 184,125 184,125 184,124 184,124 184,124 184,124 184,123 184,123 184,123 184,123 184,123 184,122 184,122 184,122 184,122 184,122 184,121 184,121 184,121 184,121 184,121 184,120 184,120 184,120 184,120 184,119 184,119 184,119 184,119 184,119 184,118 184,118 184,118 184,118 184,118 184,117 184,117 184,117 184,117 184,116 184,116 184,116 184,116 184,116 184,115 184,115 184,115 184,115 184,115 184,114 184,114 184,114 184,114 184,114 184,113 184,113 184,113 184,113 184,112 184,112 184,112 184,112 184,112 184,111 184,111 184,111 184,111 184,111 184,110 184,110 185,110 185,110 185,109 185,109 185,109 185,109 185,109 185,108 185,108 185,108 203,108 203,108 203,108 203,109 204,109 204,109 204,109 204,109 204,110 204,110 204,110 204,110 204,111 204,111 204,111 204,111 204,111 204,112 204,112 204,112 204,112 204,112 204,113 204,113 204,113 204,113 204,114 204,114 204,114 205,114 205,114 205,115 205,115 205,115 205,115 205,115 205,116 205,116 205,116 205,116 205,116 205,117 205,117 205,117 205,117 205,118 205,118 205,118 205,118 205,118 205,119 205,119 205,119 205,119 205,119 205,120 205,120 205,120 205,120 205,121 205,121 205,121 205,121 205,121 205,122 205,122 205,122 205,122 205,122 205,123 205,123 205,123 205,123 205,123 205,124 205,124 205,124 205,124 205,125 205,125 205,125 205,125 205,125 205,126 205,126 205,126 205,126 205,126 205,127 205,127 204,127 204,127 204,127 204,128 204,128 204,128 204,128 204,129 204,129 204,129 204,129 204,129 204,130 204,130 204,130 204,130 204,130 204,131 204,131 204,131 204,131 204,132 204,132 204,132 204,132 204,132 204,133 204,133 204,133 204,133 204,133 204,134 204,134 204,134 204,134 204,134 204,135 204,135 204,135 204,135 204,136 204,136 204,136 204,136 205,136 205,137 205,137 205,137 205,137 205,137 205,138 205,138 205,138 205,138 205,139 205,139 205,139 205,139 205,139 205,140 205,140 205,140 205,140 205,140 205,141 206,141 206,141 206,141 206,141 206,142 206,142 206,142 206,142 206,143 206,143 206,143 206,143 207,143 207,144 207,144 207,144 207,144 207,144 207,145 207,145 207,145 207,145 208,145 208,146 208,146 208,146 208,146 208,147 208,147 208,147 209,147 209,147 209,148 209,148 209,148 209,148 209,148 210,149 210,149 210,149 210,149 210,150 210,150 210,150 211,150 211,150 211,151 211,151 211,151 211,151 212,151 212,152 212,152 212,152 212,152 212,152 212,153 213,153 213,153 213,153 213,154 213,154 213,154 214,154 214,154 214,155 214,155 214,155 214,155 215,155 215,156 215,156 215,156 215,156 215,157 215,157 216,157 216,157 216,157 216,158 216,158 216,158 217,158 217,158 217,159 217,159 217,159 217,159 217,159 218,160 218,160 218,160 218,160 218,161 218,161 218,161 218,161 219,161 219,162 219,162 219,162 219,162 219,162 219,163 219,163 219,163 220,163 220,163 220,164 220,164 220,164 220,164 220,165 220,165 220,165 220,165 221,165 221,166 221,166 221,166 221,166 221,166 221,167 221,167 221,167 221,167 221,168 221,168 221,168 221,168 221,168 222,169 222,169 222,169 222,169 222,169 222,170 222,170 222,170 222,170 222,170 222,171 222,171 222,171 222,171 222,172 222,172 222,172 222,172 222,172 222,173 222,173 222,173 222,173 222,173 222,174 222,174 222,174 222,174 222,174 222,175 222,175 222,175 222,175 222,176 222,176 222,176 222,176 222,176 222,177 222,177 222,177 222,177 222,177 222,178 222,178 222,178 222,178 222,179 222,179 222,179 221,179 221,179 221,180 221,180 221,180 221,180 221,180 221,181 221,181 221,181 221,181 221,181 221,182 221,182 221,182 221,182 221,183 220,183 220,183 220,183 220,183 220,184 220,184 220,184 220,184 220,184 220,185 220,185 220,185 220,185 219,186 219,186 219,186 219,186 219,186 219,187 219,187 219,187 219,187 219,187 219,188 219,188 218,188 218,188 218,188 218,189 218,189 218,189 218,189 218,190 218,190 218,190 218,190 217,190 217,191 217,191 217,191 217,191 217,191 217,192 217,192 217,192 217,192 217,192 216,193 216,193 216,193 216,193 216,194 216,194 216,194 216,194 216,194 216,195 216,195 215,195 215,195 215,195 215,196 215,196 215,196 215,196 215,197 215,197 215,197 215,197 215,197 214,198 214,198 214,198 214,198 214,198 214,199 214,199 214,199 214,199 214,199 214,200 214,200 214,200 214,200 213,201 213,201 213,201 213,201 213,201 213,202 213,202 213,202 213,202 213,202 213,203 213,203 213,203 213,203 213,204 212,204 212,204 212,204 212,204 212,205 212,205 212,205 212,205 212,205 212,206 212,206 212,206 212,206 212,206 212,207 212,207 212,207 211,207 211,208 211,208 211,208 211,208 211,208 211,209 211,209 211,209 211,209 211,209 211,210 211,210 211,210 211,210 210,210 210,211 210,211 210,211 210,211 210,212 210,212 210,212 210,212 210,212 210,213 210,213 210,213 209,213 209,213 209,214 209,214 209,214 209,214 209,215 209,215 209,215 209,215 208,215 208,216 208,216 208,216 208,216 180,216 180,216' style='stroke:#333333;fill:#00688B'/>
10
+ </g><g style='stroke-width:0.9448818897637796;stroke-linejoin:round;stroke-linecap:round'>
11
+ <rect x='60' y='306' width='3' height='3' transform='rotate(-315,61,308)' style='stroke:#00CDCD;fill:#00CDCD'/>
12
+ <rect x='74' y='226' width='3' height='3' transform='rotate(-315,75,228)' style='stroke:#00CDCD;fill:#00CDCD'/>
13
+ <rect x='59' y='276' width='3' height='3' transform='rotate(-315,61,277)' style='stroke:#00CDCD;fill:#00CDCD'/>
14
+ <rect x='51' y='377' width='3' height='3' transform='rotate(-315,52,378)' style='stroke:#00CDCD;fill:#00CDCD'/>
15
+ <rect x='44' y='315' width='3' height='3' transform='rotate(-315,45,317)' style='stroke:#00CDCD;fill:#00CDCD'/>
16
+ <rect x='50' y='373' width='3' height='3' transform='rotate(-315,52,374)' style='stroke:#00CDCD;fill:#00CDCD'/>
17
+ <rect x='84' y='396' width='3' height='3' transform='rotate(-315,85,397)' style='stroke:#00CDCD;fill:#00CDCD'/>
18
+ <rect x='88' y='380' width='3' height='3' transform='rotate(-315,89,382)' style='stroke:#00CDCD;fill:#00CDCD'/>
19
+ <rect x='49' y='290' width='3' height='3' transform='rotate(-315,51,292)' style='stroke:#00CDCD;fill:#00CDCD'/>
20
+ <rect x='65' y='376' width='3' height='3' transform='rotate(-315,67,378)' style='stroke:#00CDCD;fill:#00CDCD'/>
21
+ <rect x='145' y='249' width='3' height='3' transform='rotate(-315,146,250)' style='stroke:#00CDCD;fill:#00CDCD'/>
22
+ <rect x='153' y='203' width='3' height='3' transform='rotate(-315,155,205)' style='stroke:#00CDCD;fill:#00CDCD'/>
23
+ <rect x='121' y='200' width='3' height='3' transform='rotate(-315,123,201)' style='stroke:#00CDCD;fill:#00CDCD'/>
24
+ <rect x='114' y='164' width='3' height='3' transform='rotate(-315,115,165)' style='stroke:#00CDCD;fill:#00CDCD'/>
25
+ <rect x='126' y='246' width='3' height='3' transform='rotate(-315,127,247)' style='stroke:#00CDCD;fill:#00CDCD'/>
26
+ <rect x='150' y='179' width='3' height='3' transform='rotate(-315,152,180)' style='stroke:#00CDCD;fill:#00CDCD'/>
27
+ <rect x='151' y='171' width='3' height='3' transform='rotate(-315,153,173)' style='stroke:#00CDCD;fill:#00CDCD'/>
28
+ <rect x='117' y='230' width='3' height='3' transform='rotate(-315,118,232)' style='stroke:#00CDCD;fill:#00CDCD'/>
29
+ <rect x='131' y='315' width='3' height='3' transform='rotate(-315,133,316)' style='stroke:#00CDCD;fill:#00CDCD'/>
30
+ <rect x='151' y='152' width='3' height='3' transform='rotate(-315,153,154)' style='stroke:#00CDCD;fill:#00CDCD'/>
31
+ <rect x='186' y='175' width='3' height='3' transform='rotate(-315,188,177)' style='stroke:#00CDCD;fill:#00CDCD'/>
32
+ <rect x='180' y='164' width='3' height='3' transform='rotate(-315,182,165)' style='stroke:#00CDCD;fill:#00CDCD'/>
33
+ <rect x='172' y='215' width='3' height='3' transform='rotate(-315,173,216)' style='stroke:#00CDCD;fill:#00CDCD'/>
34
+ <rect x='182' y='188' width='3' height='3' transform='rotate(-315,184,189)' style='stroke:#00CDCD;fill:#00CDCD'/>
35
+ <rect x='215' y='185' width='3' height='3' transform='rotate(-315,217,186)' style='stroke:#00CDCD;fill:#00CDCD'/>
36
+ <rect x='189' y='107' width='3' height='3' transform='rotate(-315,191,108)' style='stroke:#00CDCD;fill:#00CDCD'/>
37
+ <rect x='191' y='164' width='3' height='3' transform='rotate(-315,193,165)' style='stroke:#00CDCD;fill:#00CDCD'/>
38
+ <rect x='204' y='152' width='3' height='3' transform='rotate(-315,206,154)' style='stroke:#00CDCD;fill:#00CDCD'/>
39
+ <rect x='208' y='126' width='3' height='3' transform='rotate(-315,209,127)' style='stroke:#00CDCD;fill:#00CDCD'/>
40
+ <rect x='215' y='207' width='3' height='3' transform='rotate(-315,216,209)' style='stroke:#00CDCD;fill:#00CDCD'/>
41
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
42
+ <rect x='237' y='51' width='199' height='416' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#EBEBEB'/>
43
+ <polyline points='263,448 263,448 263,448 263,447 263,447 263,447 262,447 262,447 262,446 262,446 262,446 262,446 262,446 262,446 262,445 262,445 262,445 262,445 262,445 261,444 261,444 261,444 261,444 261,444 261,444 261,443 261,443 261,443 261,443 261,443 261,442 261,442 261,442 260,442 260,442 260,442 260,441 260,441 260,441 260,441 260,441 260,440 260,440 260,440 260,440 260,440 260,440 260,439 259,439 259,439 259,439 259,439 259,438 259,438 259,438 259,438 259,438 259,438 259,437 259,437 259,437 259,437 259,437 259,436 258,436 258,436 258,436 258,436 258,436 258,435 258,435 258,435 258,435 258,435 258,434 258,434 258,434 258,434 258,434 258,434 258,433 258,433 258,433 258,433 257,433 257,432 257,432 257,432 257,432 257,432 257,432 257,431 257,431 257,431 257,431 257,431 257,430 257,430 257,430 257,430 257,430 257,430 257,429 257,429 257,429 257,429 257,429 257,428 257,428 257,428 257,428 257,428 257,428 257,427 257,427 256,427 256,427 256,427 256,426 256,426 256,426 256,426 256,426 256,426 256,425 256,425 256,425 256,425 256,425 256,424 256,424 256,424 256,424 256,424 256,424 256,423 256,423 256,423 256,423 256,423 256,422 256,422 256,422 256,422 256,422 256,422 256,421 256,421 256,421 256,421 256,421 256,420 256,420 256,420 256,420 256,420 256,420 256,419 256,419 256,419 256,419 256,419 256,418 256,418 257,418 257,418 257,418 257,418 257,417 257,417 257,417 257,417 257,417 257,416 257,416 257,416 257,416 257,416 257,416 257,415 257,415 257,415 257,415 257,415 257,414 257,414 257,414 257,414 257,414 257,414 257,413 257,413 257,413 257,413 257,413 257,412 257,412 258,412 258,412 258,412 258,412 258,411 258,411 258,411 258,411 258,411 258,410 258,410 258,410 258,410 258,410 258,410 258,409 258,409 258,409 258,409 258,409 258,408 258,408 259,408 259,408 259,408 259,408 259,407 259,407 259,407 259,407 259,407 259,406 259,406 259,406 259,406 259,406 259,406 259,405 259,405 259,405 259,405 259,405 259,404 260,404 260,404 260,404 260,404 260,404 260,403 260,403 260,403 260,403 260,403 260,402 260,402 260,402 260,402 260,402 260,402 260,401 260,401 260,401 260,401 261,401 261,400 261,400 261,400 261,400 261,400 261,400 261,399 261,399 261,399 261,399 261,399 261,398 261,398 261,398 261,398 261,398 261,398 261,397 261,397 261,397 261,397 261,397 261,396 261,396 262,396 262,396 262,396 262,396 262,395 262,395 262,395 262,395 262,395 262,394 262,394 262,394 262,394 262,394 262,394 262,393 262,393 262,393 262,393 262,393 262,392 262,392 262,392 262,392 262,392 262,392 262,391 262,391 262,391 262,391 262,391 262,390 262,390 262,390 262,390 262,390 262,390 262,389 262,389 262,389 262,389 262,389 262,388 262,388 262,388 262,388 262,388 262,388 262,387 262,387 262,387 262,387 262,387 262,386 262,386 262,386 262,386 262,386 262,386 262,385 262,385 262,385 262,385 262,385 262,384 262,384 262,384 262,384 262,384 262,384 262,383 262,383 262,383 262,383 262,383 262,382 262,382 262,382 262,382 262,382 262,382 262,381 262,381 262,381 262,381 262,381 262,380 262,380 262,380 262,380 262,380 262,380 262,379 262,379 262,379 262,379 262,379 262,378 262,378 262,378 262,378 262,378 262,377 262,377 262,377 262,377 261,377 261,377 261,376 261,376 261,376 261,376 261,376 261,375 261,375 261,375 261,375 261,375 261,375 261,374 261,374 261,374 261,374 261,374 261,373 261,373 261,373 261,373 261,373 261,373 261,372 261,372 261,372 261,372 261,372 261,371 261,371 261,371 261,371 261,371 261,371 261,370 261,370 261,370 261,370 261,370 260,369 260,369 260,369 260,369 260,369 260,369 260,368 260,368 260,368 260,368 260,368 260,367 260,367 260,367 260,367 260,367 260,367 260,366 260,366 260,366 260,366 260,366 260,365 260,365 260,365 260,365 260,365 260,365 260,364 260,364 260,364 260,364 260,364 260,363 260,363 260,363 260,363 260,363 260,363 260,362 260,362 260,362 260,362 260,362 260,361 260,361 260,361 260,361 260,361 260,361 260,360 260,360 260,360 260,360 260,360 260,359 260,359 260,359 260,359 260,359 260,359 260,358 260,358 260,358 260,358 261,358 261,357 261,357 261,357 261,357 261,357 261,357 261,356 261,356 261,356 261,356 261,356 261,355 261,355 261,355 261,355 288,355 288,355 288,355 288,355 288,356 288,356 288,356 288,356 288,356 288,357 288,357 288,357 288,357 288,357 288,357 288,358 288,358 288,358 288,358 288,358 288,359 288,359 288,359 288,359 288,359 288,359 288,360 288,360 288,360 288,360 288,360 288,361 288,361 288,361 288,361 288,361 288,361 288,362 288,362 288,362 288,362 288,362 288,363 288,363 288,363 288,363 288,363 288,363 288,364 288,364 288,364 288,364 288,364 288,365 288,365 288,365 288,365 288,365 288,365 288,366 288,366 288,366 288,366 288,366 288,367 288,367 288,367 288,367 288,367 288,367 288,368 288,368 288,368 288,368 288,368 288,369 288,369 288,369 288,369 288,369 288,369 288,370 288,370 288,370 288,370 288,370 288,371 288,371 288,371 288,371 288,371 288,371 288,372 288,372 288,372 288,372 288,372 288,373 288,373 288,373 288,373 288,373 287,373 287,374 287,374 287,374 287,374 287,374 287,375 287,375 287,375 287,375 287,375 287,375 287,376 287,376 287,376 287,376 287,376 287,377 287,377 287,377 287,377 287,377 287,377 287,378 287,378 287,378 287,378 287,378 287,379 287,379 287,379 287,379 287,379 287,380 287,380 287,380 287,380 287,380 287,380 287,381 287,381 286,381 286,381 286,381 286,382 286,382 286,382 286,382 286,382 286,382 286,383 286,383 286,383 286,383 286,383 286,384 286,384 286,384 286,384 286,384 286,384 286,385 286,385 286,385 286,385 286,385 286,386 286,386 286,386 286,386 286,386 286,386 286,387 286,387 286,387 286,387 286,387 286,388 286,388 286,388 286,388 286,388 286,388 286,389 286,389 286,389 286,389 286,389 286,390 286,390 286,390 286,390 286,390 286,390 286,391 286,391 286,391 286,391 286,391 286,392 286,392 286,392 286,392 286,392 286,392 286,393 286,393 287,393 287,393 287,393 287,394 287,394 287,394 287,394 287,394 287,394 287,395 287,395 287,395 287,395 287,395 287,396 287,396 287,396 287,396 287,396 287,396 287,397 287,397 287,397 287,397 287,397 287,398 287,398 287,398 287,398 287,398 287,398 288,399 288,399 288,399 288,399 288,399 288,400 288,400 288,400 288,400 288,400 288,400 288,401 288,401 288,401 288,401 288,401 288,402 288,402 288,402 288,402 288,402 288,402 289,403 289,403 289,403 289,403 289,403 289,404 289,404 289,404 289,404 289,404 289,404 289,405 289,405 289,405 289,405 289,405 289,406 289,406 289,406 289,406 290,406 290,406 290,407 290,407 290,407 290,407 290,407 290,408 290,408 290,408 290,408 290,408 290,408 290,409 290,409 290,409 290,409 290,409 290,410 290,410 290,410 291,410 291,410 291,410 291,411 291,411 291,411 291,411 291,411 291,412 291,412 291,412 291,412 291,412 291,412 291,413 291,413 291,413 291,413 291,413 291,414 291,414 291,414 291,414 291,414 291,414 291,415 292,415 292,415 292,415 292,415 292,416 292,416 292,416 292,416 292,416 292,416 292,417 292,417 292,417 292,417 292,417 292,418 292,418 292,418 292,418 292,418 292,418 292,419 292,419 292,419 292,419 292,419 292,420 292,420 292,420 292,420 292,420 292,420 292,421 292,421 292,421 292,421 292,421 292,422 292,422 292,422 292,422 292,422 292,422 292,423 292,423 292,423 292,423 292,423 292,424 292,424 292,424 292,424 292,424 292,424 292,425 292,425 292,425 292,425 292,425 292,426 292,426 292,426 292,426 292,426 292,426 292,427 292,427 292,427 292,427 292,427 292,428 292,428 292,428 292,428 292,428 292,428 292,429 292,429 292,429 292,429 292,429 292,430 292,430 292,430 292,430 292,430 292,430 291,431 291,431 291,431 291,431 291,431 291,432 291,432 291,432 291,432 291,432 291,432 291,433 291,433 291,433 291,433 291,433 291,434 291,434 291,434 291,434 291,434 291,434 291,435 290,435 290,435 290,435 290,435 290,436 290,436 290,436 290,436 290,436 290,436 290,437 290,437 290,437 290,437 290,437 290,438 290,438 290,438 289,438 289,438 289,438 289,439 289,439 289,439 289,439 289,439 289,440 289,440 289,440 289,440 289,440 289,440 289,441 288,441 288,441 288,441 288,441 288,442 288,442 288,442 288,442 288,442 288,442 288,443 288,443 288,443 288,443 287,443 287,444 287,444 287,444 287,444 287,444 287,444 287,445 287,445 287,445 287,445 287,445 287,446 287,446 286,446 286,446 286,446 286,446 286,447 286,447 286,447 286,447 286,447 286,448 286,448 286,448 263,448 263,448' style='stroke:#333333;fill:#00FFFF'/>
44
+ <polyline points='324,328 324,328 324,328 324,328 324,327 323,327 323,327 323,327 323,326 323,326 323,326 322,326 322,326 322,325 322,325 322,325 322,325 322,324 321,324 321,324 321,324 321,324 321,323 321,323 321,323 320,323 320,322 320,322 320,322 320,322 320,322 320,321 319,321 319,321 319,321 319,320 319,320 319,320 319,320 319,320 318,319 318,319 318,319 318,319 318,318 318,318 318,318 317,318 317,318 317,317 317,317 317,317 317,317 317,316 317,316 316,316 316,316 316,316 316,315 316,315 316,315 316,315 316,314 316,314 315,314 315,314 315,314 315,313 315,313 315,313 315,313 315,312 315,312 314,312 314,312 314,312 314,311 314,311 314,311 314,311 314,310 314,310 314,310 314,310 313,310 313,309 313,309 313,309 313,309 313,308 313,308 313,308 313,308 313,308 313,307 312,307 312,307 312,307 312,306 312,306 312,306 312,306 312,306 312,305 312,305 312,305 312,305 312,305 311,304 311,304 311,304 311,304 311,303 311,303 311,303 311,303 311,303 311,302 311,302 311,302 311,302 311,301 311,301 310,301 310,301 310,301 310,300 310,300 310,300 310,300 310,299 310,299 310,299 310,299 310,299 310,298 310,298 310,298 309,298 309,297 309,297 309,297 309,297 309,297 309,296 309,296 309,296 309,296 309,295 309,295 309,295 309,295 309,295 309,294 309,294 309,294 309,294 309,293 309,293 309,293 309,293 309,293 309,292 308,292 308,292 308,292 308,291 308,291 308,291 308,291 308,291 308,290 308,290 308,290 308,290 309,289 309,289 309,289 309,289 309,289 309,288 309,288 309,288 309,288 309,287 309,287 309,287 309,287 309,287 309,286 309,286 309,286 309,286 310,285 310,285 310,285 310,285 310,285 310,284 310,284 310,284 310,284 311,283 311,283 311,283 311,283 311,283 311,282 311,282 311,282 312,282 312,281 312,281 312,281 312,281 312,281 313,280 313,280 313,280 313,280 313,279 313,279 314,279 314,279 314,279 314,278 314,278 315,278 315,278 315,277 315,277 315,277 316,277 316,277 316,276 316,276 316,276 317,276 317,275 317,275 317,275 317,275 318,275 318,274 318,274 318,274 318,274 319,273 319,273 319,273 319,273 319,273 319,272 320,272 320,272 320,272 320,271 320,271 321,271 321,271 321,271 321,270 321,270 321,270 322,270 322,269 322,269 322,269 322,269 322,269 323,268 323,268 323,268 323,268 323,267 323,267 324,267 324,267 324,267 324,266 324,266 324,266 324,266 325,265 325,265 325,265 325,265 325,265 325,264 325,264 325,264 326,264 326,263 326,263 326,263 326,263 326,263 326,262 326,262 327,262 327,262 327,261 327,261 327,261 327,261 327,261 327,260 328,260 328,260 328,260 328,259 328,259 328,259 328,259 328,259 328,258 329,258 329,258 329,258 329,258 329,257 329,257 329,257 329,257 329,256 330,256 330,256 330,256 330,256 330,255 330,255 330,255 330,255 330,254 331,254 331,254 331,254 331,254 331,253 331,253 331,253 331,253 331,252 332,252 332,252 332,252 332,252 332,251 332,251 332,251 332,251 332,250 332,250 333,250 333,250 333,250 333,249 333,249 333,249 333,249 333,248 333,248 333,248 333,248 333,248 334,247 334,247 334,247 334,247 334,246 334,246 334,246 334,246 334,246 334,245 334,245 334,245 334,245 334,244 334,244 334,244 335,244 335,244 335,243 335,243 335,243 335,243 335,242 335,242 335,242 335,242 335,242 335,241 335,241 335,241 335,241 335,240 335,240 335,240 335,240 335,240 335,239 335,239 335,239 335,239 335,238 335,238 335,238 335,238 335,238 335,237 335,237 335,237 335,237 335,236 335,236 335,236 335,236 335,236 335,235 335,235 335,235 335,235 335,234 335,234 335,234 335,234 335,234 335,233 335,233 335,233 334,233 334,232 334,232 334,232 334,232 334,232 334,231 334,231 334,231 334,231 334,230 334,230 334,230 334,230 334,230 334,229 333,229 333,229 333,229 333,228 333,228 333,228 333,228 333,228 333,227 333,227 333,227 333,227 333,226 332,226 332,226 332,226 332,226 332,225 332,225 332,225 332,225 332,224 332,224 332,224 332,224 332,224 331,223 331,223 331,223 331,223 331,222 331,222 331,222 331,222 331,222 331,221 331,221 331,221 331,221 331,220 331,220 330,220 330,220 330,220 330,219 330,219 330,219 330,219 330,218 330,218 330,218 330,218 330,218 330,217 330,217 330,217 330,217 330,216 330,216 330,216 330,216 330,216 330,215 330,215 330,215 343,215 343,215 343,215 343,216 343,216 343,216 343,216 343,216 343,217 343,217 343,217 343,217 343,218 343,218 343,218 343,218 343,218 343,219 343,219 343,219 343,219 342,220 342,220 342,220 342,220 342,220 342,221 342,221 342,221 342,221 342,222 342,222 342,222 342,222 342,222 342,223 342,223 341,223 341,223 341,224 341,224 341,224 341,224 341,224 341,225 341,225 341,225 341,225 341,226 340,226 340,226 340,226 340,226 340,227 340,227 340,227 340,227 340,228 340,228 340,228 340,228 340,228 339,229 339,229 339,229 339,229 339,230 339,230 339,230 339,230 339,230 339,231 339,231 339,231 339,231 339,232 339,232 339,232 338,232 338,232 338,233 338,233 338,233 338,233 338,234 338,234 338,234 338,234 338,234 338,235 338,235 338,235 338,235 338,236 338,236 338,236 338,236 338,236 338,237 338,237 338,237 338,237 338,238 338,238 338,238 338,238 338,238 338,239 338,239 338,239 338,239 338,240 338,240 338,240 338,240 338,240 338,241 338,241 338,241 338,241 338,242 338,242 338,242 338,242 338,242 338,243 338,243 338,243 338,243 338,244 338,244 338,244 338,244 338,244 339,245 339,245 339,245 339,245 339,246 339,246 339,246 339,246 339,246 339,247 339,247 339,247 339,247 339,248 339,248 340,248 340,248 340,248 340,249 340,249 340,249 340,249 340,250 340,250 340,250 340,250 340,250 341,251 341,251 341,251 341,251 341,252 341,252 341,252 341,252 341,252 341,253 342,253 342,253 342,253 342,254 342,254 342,254 342,254 342,254 342,255 343,255 343,255 343,255 343,256 343,256 343,256 343,256 343,256 343,257 344,257 344,257 344,257 344,258 344,258 344,258 344,258 344,258 344,259 345,259 345,259 345,259 345,259 345,260 345,260 345,260 345,260 346,261 346,261 346,261 346,261 346,261 346,262 346,262 346,262 346,262 347,263 347,263 347,263 347,263 347,263 347,264 347,264 348,264 348,264 348,265 348,265 348,265 348,265 348,265 348,266 349,266 349,266 349,266 349,267 349,267 349,267 349,267 350,267 350,268 350,268 350,268 350,268 350,269 351,269 351,269 351,269 351,269 351,270 351,270 352,270 352,270 352,271 352,271 352,271 352,271 353,271 353,272 353,272 353,272 353,272 354,273 354,273 354,273 354,273 354,273 354,274 355,274 355,274 355,274 355,275 355,275 356,275 356,275 356,275 356,276 356,276 357,276 357,276 357,277 357,277 357,277 358,277 358,277 358,278 358,278 358,278 359,278 359,279 359,279 359,279 359,279 360,279 360,280 360,280 360,280 360,280 360,281 361,281 361,281 361,281 361,281 361,282 361,282 361,282 362,282 362,283 362,283 362,283 362,283 362,283 362,284 363,284 363,284 363,284 363,285 363,285 363,285 363,285 363,285 363,286 363,286 364,286 364,286 364,287 364,287 364,287 364,287 364,287 364,288 364,288 364,288 364,288 364,289 364,289 364,289 364,289 364,289 364,290 364,290 364,290 364,290 364,291 364,291 364,291 364,291 364,291 364,292 364,292 364,292 364,292 364,293 364,293 364,293 364,293 364,293 364,294 364,294 364,294 364,294 364,295 364,295 364,295 364,295 364,295 364,296 364,296 364,296 364,296 364,297 364,297 364,297 363,297 363,297 363,298 363,298 363,298 363,298 363,299 363,299 363,299 363,299 363,299 363,300 363,300 363,300 363,300 363,301 362,301 362,301 362,301 362,301 362,302 362,302 362,302 362,302 362,303 362,303 362,303 362,303 362,303 362,304 361,304 361,304 361,304 361,305 361,305 361,305 361,305 361,305 361,306 361,306 361,306 361,306 361,306 361,307 360,307 360,307 360,307 360,308 360,308 360,308 360,308 360,308 360,309 360,309 360,309 359,309 359,310 359,310 359,310 359,310 359,310 359,311 359,311 359,311 359,311 359,312 358,312 358,312 358,312 358,312 358,313 358,313 358,313 358,313 358,314 357,314 357,314 357,314 357,314 357,315 357,315 357,315 357,315 357,316 356,316 356,316 356,316 356,316 356,317 356,317 356,317 356,317 355,318 355,318 355,318 355,318 355,318 355,319 355,319 355,319 354,319 354,320 354,320 354,320 354,320 354,320 354,321 354,321 353,321 353,321 353,322 353,322 353,322 353,322 353,322 352,323 352,323 352,323 352,323 352,324 352,324 352,324 351,324 351,324 351,325 351,325 351,325 351,325 350,326 350,326 350,326 350,326 350,326 350,327 350,327 349,327 349,327 349,328 349,328 349,328 349,328 324,328 324,328' style='stroke:#333333;fill:#00BFFF'/>
45
+ <polyline points='395,266 394,265 394,265 394,265 394,264 394,264 394,264 394,263 394,263 394,262 394,262 394,262 394,261 394,261 394,260 394,260 394,260 394,259 394,259 394,259 394,258 394,258 394,257 394,257 394,257 394,256 394,256 394,255 394,255 394,255 393,254 393,254 393,254 393,253 393,253 393,252 393,252 393,252 393,251 393,251 393,251 393,250 393,250 393,249 393,249 393,249 393,248 393,248 393,247 393,247 393,247 393,246 393,246 393,246 393,245 393,245 392,244 392,244 392,244 392,243 392,243 392,242 392,242 392,242 392,241 392,241 392,241 392,240 392,240 392,239 392,239 392,239 392,238 392,238 392,237 392,237 392,237 392,236 392,236 392,236 391,235 391,235 391,234 391,234 391,234 391,233 391,233 391,232 391,232 391,232 391,231 391,231 391,231 391,230 391,230 391,229 391,229 391,229 391,228 391,228 391,227 391,227 390,227 390,226 390,226 390,226 390,225 390,225 390,224 390,224 390,224 390,223 390,223 390,223 390,222 390,222 390,221 390,221 390,221 390,220 390,220 390,219 390,219 390,219 389,218 389,218 389,218 389,217 389,217 389,216 389,216 389,216 389,215 389,215 389,214 389,214 389,214 389,213 389,213 389,213 389,212 389,212 389,211 389,211 389,211 389,210 389,210 389,209 388,209 388,209 388,208 388,208 388,208 388,207 388,207 388,206 388,206 388,206 388,205 388,205 388,204 388,204 388,204 388,203 388,203 388,203 388,202 388,202 388,201 388,201 388,201 388,200 388,200 388,199 388,199 388,199 388,198 388,198 388,198 388,197 387,197 387,196 387,196 387,196 387,195 387,195 387,194 387,194 387,194 387,193 387,193 387,193 387,192 387,192 387,191 387,191 387,191 387,190 387,190 387,190 387,189 387,189 387,188 387,188 387,188 387,187 387,187 387,186 387,186 387,186 387,185 387,185 387,185 387,184 387,184 387,183 387,183 387,183 387,182 387,182 387,181 387,181 387,181 387,180 387,180 387,180 387,179 387,179 387,178 387,178 387,178 387,177 387,177 387,176 387,176 387,176 387,175 387,175 387,175 387,174 387,174 387,173 387,173 387,173 387,172 387,172 387,171 387,171 387,171 387,170 387,170 388,170 388,169 388,169 388,168 388,168 388,168 388,167 388,167 388,166 388,166 388,166 388,165 388,165 388,165 388,164 388,164 388,163 388,163 388,163 388,162 388,162 388,162 388,161 388,161 388,160 388,160 388,160 388,159 388,159 388,158 388,158 389,158 389,157 389,157 389,157 389,156 389,156 389,155 389,155 389,155 389,154 389,154 389,153 389,153 389,153 389,152 389,152 389,152 389,151 389,151 389,150 389,150 389,150 389,149 389,149 390,148 390,148 390,148 390,147 390,147 390,147 390,146 390,146 390,145 390,145 390,145 390,144 390,144 390,143 390,143 390,143 390,142 390,142 390,142 390,141 390,141 390,140 390,140 391,140 391,139 391,139 391,138 391,138 391,138 391,137 391,137 391,137 391,136 391,136 391,135 391,135 391,135 391,134 391,134 391,134 391,133 391,133 391,132 391,132 391,132 391,131 391,131 391,130 391,130 391,130 391,129 392,129 392,129 392,128 392,128 392,127 392,127 392,127 392,126 392,126 392,125 392,125 392,125 392,124 392,124 392,124 392,123 392,123 392,122 392,122 392,122 392,121 392,121 392,120 392,120 392,120 392,119 392,119 392,119 392,118 392,118 392,117 392,117 392,117 392,116 392,116 392,115 392,115 392,115 392,114 392,114 392,114 392,113 392,113 392,112 392,112 392,112 392,111 392,111 392,110 392,110 392,110 392,109 392,109 392,109 392,108 393,108 393,107 393,107 393,107 393,106 393,106 393,106 393,105 393,105 393,104 393,104 393,104 393,103 393,103 393,102 393,102 393,102 393,101 393,101 393,101 393,100 393,100 393,99 393,99 393,99 393,98 393,98 393,97 393,97 393,97 393,96 393,96 393,96 393,95 393,95 393,94 393,94 393,94 393,93 393,93 393,92 393,92 393,92 393,91 393,91 393,91 393,90 393,90 393,89 393,89 393,89 393,88 393,88 393,87 393,87 393,87 393,86 393,86 393,86 393,85 393,85 393,84 393,84 393,84 393,83 393,83 393,82 393,82 393,82 393,81 393,81 393,81 393,80 393,80 393,79 393,79 393,79 393,78 393,78 393,77 393,77 393,77 393,76 393,76 393,76 393,75 393,75 393,74 393,74 393,74 393,73 393,73 393,73 393,72 393,72 394,71 394,71 394,71 394,70 394,70 404,70 404,70 404,71 404,71 404,71 404,72 404,72 404,73 404,73 404,73 404,74 404,74 404,74 404,75 404,75 404,76 404,76 404,76 404,77 404,77 404,77 404,78 404,78 404,79 404,79 404,79 404,80 404,80 404,81 404,81 404,81 404,82 404,82 404,82 404,83 404,83 404,84 404,84 404,84 404,85 404,85 404,86 404,86 404,86 404,87 404,87 404,87 404,88 404,88 404,89 404,89 404,89 404,90 404,90 404,91 404,91 404,91 404,92 404,92 404,92 404,93 404,93 404,94 404,94 404,94 404,95 404,95 404,96 404,96 404,96 405,97 405,97 405,97 405,98 405,98 405,99 405,99 405,99 405,100 405,100 405,101 405,101 405,101 405,102 405,102 405,102 405,103 405,103 405,104 405,104 405,104 405,105 405,105 405,106 405,106 405,106 405,107 405,107 405,107 405,108 405,108 405,109 405,109 405,109 405,110 405,110 405,110 405,111 405,111 405,112 405,112 405,112 405,113 405,113 405,114 405,114 405,114 405,115 405,115 405,115 405,116 405,116 405,117 405,117 405,117 405,118 405,118 405,119 405,119 405,119 405,120 405,120 405,120 405,121 405,121 405,122 405,122 405,122 405,123 405,123 405,124 405,124 405,124 405,125 405,125 405,125 405,126 405,126 405,127 405,127 406,127 406,128 406,128 406,129 406,129 406,129 406,130 406,130 406,130 406,131 406,131 406,132 406,132 406,132 406,133 406,133 406,134 406,134 406,134 406,135 406,135 406,135 406,136 406,136 406,137 406,137 406,137 406,138 406,138 407,138 407,139 407,139 407,140 407,140 407,140 407,141 407,141 407,142 407,142 407,142 407,143 407,143 407,143 407,144 407,144 407,145 407,145 407,145 407,146 407,146 407,147 407,147 407,147 408,148 408,148 408,148 408,149 408,149 408,150 408,150 408,150 408,151 408,151 408,152 408,152 408,152 408,153 408,153 408,153 408,154 408,154 408,155 408,155 408,155 408,156 408,156 408,157 409,157 409,157 409,158 409,158 409,158 409,159 409,159 409,160 409,160 409,160 409,161 409,161 409,162 409,162 409,162 409,163 409,163 409,163 409,164 409,164 409,165 409,165 409,165 409,166 409,166 409,166 409,167 409,167 409,168 410,168 410,168 410,169 410,169 410,170 410,170 410,170 410,171 410,171 410,171 410,172 410,172 410,173 410,173 410,173 410,174 410,174 410,175 410,175 410,175 410,176 410,176 410,176 410,177 410,177 410,178 410,178 410,178 410,179 410,179 410,180 410,180 410,180 410,181 410,181 410,181 410,182 410,182 410,183 410,183 410,183 410,184 410,184 410,185 410,185 410,185 410,186 410,186 410,186 410,187 410,187 410,188 410,188 410,188 410,189 410,189 410,190 410,190 410,190 410,191 410,191 410,191 410,192 410,192 410,193 410,193 410,193 410,194 410,194 410,194 410,195 410,195 410,196 410,196 410,196 410,197 410,197 410,198 410,198 410,198 410,199 410,199 409,199 409,200 409,200 409,201 409,201 409,201 409,202 409,202 409,203 409,203 409,203 409,204 409,204 409,204 409,205 409,205 409,206 409,206 409,206 409,207 409,207 409,208 409,208 409,208 409,209 409,209 409,209 409,210 409,210 409,211 408,211 408,211 408,212 408,212 408,213 408,213 408,213 408,214 408,214 408,214 408,215 408,215 408,216 408,216 408,216 408,217 408,217 408,218 408,218 408,218 408,219 408,219 408,219 407,220 407,220 407,221 407,221 407,221 407,222 407,222 407,223 407,223 407,223 407,224 407,224 407,224 407,225 407,225 407,226 407,226 407,226 407,227 407,227 407,227 407,228 406,228 406,229 406,229 406,229 406,230 406,230 406,231 406,231 406,231 406,232 406,232 406,232 406,233 406,233 406,234 406,234 406,234 406,235 406,235 406,236 406,236 406,236 406,237 405,237 405,237 405,238 405,238 405,239 405,239 405,239 405,240 405,240 405,241 405,241 405,241 405,242 405,242 405,242 405,243 405,243 405,244 405,244 405,244 405,245 405,245 405,246 405,246 404,246 404,247 404,247 404,247 404,248 404,248 404,249 404,249 404,249 404,250 404,250 404,251 404,251 404,251 404,252 404,252 404,252 404,253 404,253 404,254 404,254 404,254 404,255 404,255 404,255 404,256 403,256 403,257 403,257 403,257 403,258 403,258 403,259 403,259 403,259 403,260 403,260 403,260 403,261 403,261 403,262 403,262 403,262 403,263 403,263 403,264 403,264 403,264 403,265 403,265 403,265 403,266 395,266 395,266' style='stroke:#333333;fill:#00688B'/>
46
+ </g><g style='stroke-width:0.9448818897637796;stroke-linejoin:round;stroke-linecap:round'>
47
+ <rect x='295' y='446' width='3' height='3' transform='rotate(-315,296,447)' style='stroke:#00CDCD;fill:#00CDCD'/>
48
+ <rect x='294' y='353' width='3' height='3' transform='rotate(-315,296,355)' style='stroke:#00CDCD;fill:#00CDCD'/>
49
+ <rect x='249' y='407' width='3' height='3' transform='rotate(-315,250,409)' style='stroke:#00CDCD;fill:#00CDCD'/>
50
+ <rect x='248' y='426' width='3' height='3' transform='rotate(-315,250,427)' style='stroke:#00CDCD;fill:#00CDCD'/>
51
+ <rect x='264' y='418' width='3' height='3' transform='rotate(-315,265,420)' style='stroke:#00CDCD;fill:#00CDCD'/>
52
+ <rect x='282' y='373' width='3' height='3' transform='rotate(-315,284,374)' style='stroke:#00CDCD;fill:#00CDCD'/>
53
+ <rect x='269' y='357' width='3' height='3' transform='rotate(-315,271,358)' style='stroke:#00CDCD;fill:#00CDCD'/>
54
+ <rect x='251' y='357' width='3' height='3' transform='rotate(-315,253,358)' style='stroke:#00CDCD;fill:#00CDCD'/>
55
+ <rect x='295' y='434' width='3' height='3' transform='rotate(-315,297,436)' style='stroke:#00CDCD;fill:#00CDCD'/>
56
+ <rect x='258' y='411' width='3' height='3' transform='rotate(-315,260,412)' style='stroke:#00CDCD;fill:#00CDCD'/>
57
+ <rect x='354' y='290' width='3' height='3' transform='rotate(-315,355,292)' style='stroke:#00CDCD;fill:#00CDCD'/>
58
+ <rect x='340' y='290' width='3' height='3' transform='rotate(-315,341,292)' style='stroke:#00CDCD;fill:#00CDCD'/>
59
+ <rect x='328' y='307' width='3' height='3' transform='rotate(-315,329,308)' style='stroke:#00CDCD;fill:#00CDCD'/>
60
+ <rect x='327' y='279' width='3' height='3' transform='rotate(-315,328,281)' style='stroke:#00CDCD;fill:#00CDCD'/>
61
+ <rect x='329' y='213' width='3' height='3' transform='rotate(-315,331,215)' style='stroke:#00CDCD;fill:#00CDCD'/>
62
+ <rect x='356' y='280' width='3' height='3' transform='rotate(-315,357,282)' style='stroke:#00CDCD;fill:#00CDCD'/>
63
+ <rect x='319' y='326' width='3' height='3' transform='rotate(-315,321,328)' style='stroke:#00CDCD;fill:#00CDCD'/>
64
+ <rect x='331' y='316' width='3' height='3' transform='rotate(-315,332,317)' style='stroke:#00CDCD;fill:#00CDCD'/>
65
+ <rect x='318' y='261' width='3' height='3' transform='rotate(-315,319,262)' style='stroke:#00CDCD;fill:#00CDCD'/>
66
+ <rect x='339' y='303' width='3' height='3' transform='rotate(-315,341,304)' style='stroke:#00CDCD;fill:#00CDCD'/>
67
+ <rect x='387' y='199' width='3' height='3' transform='rotate(-315,388,201)' style='stroke:#00CDCD;fill:#00CDCD'/>
68
+ <rect x='396' y='264' width='3' height='3' transform='rotate(-315,398,266)' style='stroke:#00CDCD;fill:#00CDCD'/>
69
+ <rect x='415' y='68' width='3' height='3' transform='rotate(-315,416,70)' style='stroke:#00CDCD;fill:#00CDCD'/>
70
+ <rect x='414' y='175' width='3' height='3' transform='rotate(-315,415,177)' style='stroke:#00CDCD;fill:#00CDCD'/>
71
+ <rect x='420' y='163' width='3' height='3' transform='rotate(-315,421,165)' style='stroke:#00CDCD;fill:#00CDCD'/>
72
+ <rect x='398' y='87' width='3' height='3' transform='rotate(-315,400,88)' style='stroke:#00CDCD;fill:#00CDCD'/>
73
+ <rect x='421' y='160' width='3' height='3' transform='rotate(-315,422,162)' style='stroke:#00CDCD;fill:#00CDCD'/>
74
+ <rect x='381' y='226' width='3' height='3' transform='rotate(-315,382,227)' style='stroke:#00CDCD;fill:#00CDCD'/>
75
+ <rect x='416' y='203' width='3' height='3' transform='rotate(-315,418,204)' style='stroke:#00CDCD;fill:#00CDCD'/>
76
+ <rect x='397' y='125' width='3' height='3' transform='rotate(-315,399,126)' style='stroke:#00CDCD;fill:#00CDCD'/>
77
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
78
+ <rect x='33' y='33' width='199' height='17' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#D9D9D9'/>
79
+ </g><text x='127' y='45' lengthAdjust='spacingAndGlyphs' textLength='11px' style='font-size:8.8px;fill:#1A1A1A'>OJ</text>
80
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
81
+ <rect x='237' y='33' width='199' height='17' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#D9D9D9'/>
82
+ </g><text x='331' y='45' lengthAdjust='spacingAndGlyphs' textLength='11px' style='font-size:8.8px;fill:#1A1A1A'>VC</text>
83
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
84
+ <polyline points='70,470 70,467' style='stroke:#333333'/>
85
+ <polyline points='132,470 132,467' style='stroke:#333333'/>
86
+ <polyline points='194,470 194,467' style='stroke:#333333'/>
87
+ </g><text x='63' y='477' lengthAdjust='spacingAndGlyphs' textLength='14px' style='font-size:8.0px;fill:#000080'>0.5</text>
88
+ <text x='130' y='477' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.0px;fill:#000080'>1</text>
89
+ <text x='192' y='477' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.0px;fill:#000080'>2</text>
90
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
91
+ <polyline points='274,470 274,467' style='stroke:#333333'/>
92
+ <polyline points='336,470 336,467' style='stroke:#333333'/>
93
+ <polyline points='399,470 399,467' style='stroke:#333333'/>
94
+ </g><text x='267' y='477' lengthAdjust='spacingAndGlyphs' textLength='14px' style='font-size:8.0px;fill:#000080'>0.5</text>
95
+ <text x='334' y='477' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.0px;fill:#000080'>1</text>
96
+ <text x='396' y='477' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.0px;fill:#000080'>2</text>
97
+ <text x='18' y='377' lengthAdjust='spacingAndGlyphs' textLength='10px' style='font-size:8.0px;fill:#000080'>10</text>
98
+ <text x='18' y='250' lengthAdjust='spacingAndGlyphs' textLength='10px' style='font-size:8.0px;fill:#000080'>20</text>
99
+ <text x='18' y='122' lengthAdjust='spacingAndGlyphs' textLength='10px' style='font-size:8.0px;fill:#000080'>30</text>
100
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
101
+ <polyline points='30,374 33,374' style='stroke:#333333'/>
102
+ <polyline points='30,247 33,247' style='stroke:#333333'/>
103
+ <polyline points='30,119 33,119' style='stroke:#333333'/>
104
+ </g><text x='373' y='490' lengthAdjust='spacingAndGlyphs' textLength='63px' style='font-size:10.0px;fill:#000080;font-weight:bold'>Dose (mg)</text>
105
+ <text x='12' y='132' lengthAdjust='spacingAndGlyphs' textLength='81px' style='font-size:10.0px;fill:#000080;font-weight:bold' transform='rotate(-90,12,132)'>Teeth length</text>
106
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
107
+ <rect x='447' y='211' width='53' height='95' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#FFFFFF'/>
108
+ </g><text x='453' y='225' lengthAdjust='spacingAndGlyphs' textLength='32px' style='font-size:12.0px;fill:#000080;font-weight:bold'>dose</text>
109
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
110
+ <rect x='453' y='231' width='23' height='23' style='stroke:#FFFFFF;fill:#F2F2F2'/>
111
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:miter;stroke-linecap:round;stroke-miterlimit:10.0'>
112
+ <rect x='454' y='232' width='22' height='22' style='stroke:#333333;fill:#00688B'/>
113
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
114
+ <rect x='453' y='254' width='23' height='23' style='stroke:#FFFFFF;fill:#F2F2F2'/>
115
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:miter;stroke-linecap:round;stroke-miterlimit:10.0'>
116
+ <rect x='454' y='255' width='22' height='22' style='stroke:#333333;fill:#00BFFF'/>
117
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
118
+ <rect x='453' y='277' width='23' height='23' style='stroke:#FFFFFF;fill:#F2F2F2'/>
119
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:miter;stroke-linecap:round;stroke-miterlimit:10.0'>
120
+ <rect x='454' y='278' width='22' height='22' style='stroke:#333333;fill:#00FFFF'/>
121
+ </g><text x='479' y='246' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#000000'>2</text>
122
+ <text x='479' y='269' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#000000'>1</text>
123
+ <text x='479' y='292' lengthAdjust='spacingAndGlyphs' textLength='16px' style='font-size:8.8px;fill:#000000'>0.5</text>
124
+ <text x='33' y='28' lengthAdjust='spacingAndGlyphs' textLength='197px' style='font-size:9.0px;fill:#000080'>Faceted by delivery method, OJ or VC</text>
125
+ <text x='33' y='16' lengthAdjust='spacingAndGlyphs' textLength='386px' style='font-size:14.399999999999999px;fill:#000080;font-weight:bold'>Tooth Growth: Length vs Vitamin C Dose</text>
126
+ <text x='234' y='500' lengthAdjust='spacingAndGlyphs' textLength='202px' style='font-size:8.0px;fill:#000080'>Length of odontoblasts in 60 guinea pigs. </text>
127
+ <text x='147' y='508' lengthAdjust='spacingAndGlyphs' textLength='289px' style='font-size:8.0px;fill:#000080'>Each animal received one of three dose levels of vitamin C.</text>
128
+ </svg>
@@ -0,0 +1,150 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' viewBox='0 0 506 506' style='fill:transparent'>
4
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
5
+ <rect x='0' y='0' width='506' height='506' style='stroke:#FFFFFF;fill:#FFFFFF'/>
6
+ <rect x='34' y='23' width='198' height='453' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#EBEBEB'/>
7
+ </g><g style='stroke-width:0.7113188976377953;stroke-linejoin:round;stroke-linecap:butt'>
8
+ <polyline points='34,444 232,444' style='stroke:#FFFFFF'/>
9
+ <polyline points='34,305 232,305' style='stroke:#FFFFFF'/>
10
+ <polyline points='34,167 232,167' style='stroke:#FFFFFF'/>
11
+ <polyline points='34,28 232,28' style='stroke:#FFFFFF'/>
12
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
13
+ <polyline points='34,375 232,375' style='stroke:#FFFFFF'/>
14
+ <polyline points='34,236 232,236' style='stroke:#FFFFFF'/>
15
+ <polyline points='34,97 232,97' style='stroke:#FFFFFF'/>
16
+ <polyline points='71,476 71,23' style='stroke:#FFFFFF'/>
17
+ <polyline points='133,476 133,23' style='stroke:#FFFFFF'/>
18
+ <polyline points='195,476 195,23' style='stroke:#FFFFFF'/>
19
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
20
+ <polyline points='59,400 59,399 59,399 59,399 59,398 59,398 59,398 59,397 59,397 59,396 58,396 58,396 58,395 58,395 58,395 58,394 58,394 58,394 58,393 58,393 58,392 58,392 58,392 58,391 58,391 58,391 58,390 58,390 58,390 58,389 58,389 58,388 58,388 58,388 57,387 57,387 57,387 57,386 57,386 57,386 57,385 57,385 57,385 57,384 57,384 57,383 57,383 57,383 57,382 57,382 57,382 57,381 57,381 57,381 57,380 57,380 57,379 57,379 57,379 57,378 57,378 57,378 57,377 57,377 57,377 57,376 57,376 57,375 57,375 57,375 57,374 57,374 57,374 57,373 57,373 57,373 57,372 57,372 57,372 57,371 57,371 57,370 57,370 57,370 57,369 57,369 57,369 57,368 57,368 57,368 57,367 57,367 58,366 58,366 58,366 58,365 58,365 58,365 58,364 58,364 58,364 58,363 58,363 58,363 58,362 58,362 58,361 58,361 58,361 58,360 58,360 58,360 58,359 58,359 58,359 58,358 58,358 58,357 58,357 58,357 58,356 58,356 58,356 58,355 59,355 59,355 59,354 59,354 59,353 59,353 59,353 59,352 59,352 59,352 59,351 59,351 59,351 59,350 59,350 59,350 59,349 59,349 59,348 59,348 59,348 59,347 59,347 59,347 59,346 59,346 59,346 59,345 59,345 60,344 60,344 60,344 60,343 60,343 60,343 60,342 60,342 60,342 60,341 60,341 60,340 60,340 60,340 60,339 60,339 60,339 60,338 60,338 60,338 60,337 60,337 60,337 60,336 60,336 60,335 60,335 60,335 60,334 60,334 60,334 60,333 60,333 60,333 60,332 60,332 60,331 60,331 60,331 60,330 60,330 60,330 60,329 60,329 60,329 60,328 60,328 60,327 60,327 60,327 60,326 60,326 60,326 60,325 60,325 60,325 60,324 60,324 60,324 60,323 60,323 60,322 60,322 61,322 61,321 61,321 61,321 61,320 61,320 61,320 61,319 61,319 61,318 61,318 61,318 61,317 61,317 61,317 60,316 60,316 60,316 60,315 60,315 60,314 60,314 60,314 60,313 60,313 60,313 60,312 60,312 60,312 60,311 60,311 60,311 60,310 60,310 60,309 60,309 60,309 60,308 60,308 60,308 60,307 60,307 60,307 60,306 60,306 60,305 60,305 60,305 60,304 60,304 60,304 60,303 60,303 60,303 60,302 60,302 60,302 60,301 60,301 60,300 60,300 60,300 60,299 60,299 60,299 60,298 60,298 60,298 60,297 60,297 60,296 60,296 60,296 60,295 60,295 60,295 60,294 60,294 60,294 61,293 61,293 61,292 61,292 61,292 61,291 61,291 61,291 61,290 61,290 61,290 61,289 61,289 61,289 61,288 61,288 61,287 61,287 61,287 61,286 61,286 61,286 61,285 61,285 61,285 61,284 61,284 61,283 61,283 61,283 61,282 61,282 61,282 61,281 61,281 61,281 61,280 61,280 61,279 61,279 61,279 61,278 61,278 61,278 61,277 61,277 61,277 61,276 61,276 61,276 61,275 62,275 62,274 62,274 62,274 62,273 62,273 62,273 62,272 62,272 62,272 62,271 62,271 62,270 62,270 62,270 62,269 62,269 62,269 62,268 62,268 62,268 62,267 62,267 62,266 62,266 62,266 62,265 62,265 62,265 62,264 63,264 63,264 63,263 63,263 63,263 63,262 63,262 63,261 63,261 63,261 63,260 63,260 63,260 63,259 63,259 63,259 63,258 63,258 63,257 63,257 63,257 63,256 63,256 63,256 63,255 63,255 64,255 64,254 64,254 64,253 64,253 64,253 64,252 64,252 64,252 64,251 64,251 64,251 64,250 64,250 64,250 64,249 64,249 64,248 64,248 64,248 64,247 64,247 64,247 64,246 64,246 64,246 65,245 65,245 65,244 65,244 65,244 65,243 65,243 65,243 65,242 65,242 65,242 65,241 65,241 65,241 65,240 65,240 65,239 65,239 65,239 65,238 65,238 65,238 65,237 65,237 65,237 65,236 65,236 65,235 66,235 66,235 66,234 66,234 66,234 66,233 66,233 66,233 66,232 66,232 66,231 66,231 66,231 66,230 66,230 66,230 66,229 66,229 66,229 66,228 66,228 66,228 66,227 66,227 66,226 66,226 66,226 66,225 66,225 66,225 66,224 66,224 66,224 67,223 67,223 67,222 67,222 67,222 67,221 67,221 67,221 67,220 67,220 67,220 67,219 67,219 67,218 67,218 67,218 67,217 67,217 67,217 67,216 67,216 67,216 67,215 76,215 76,216 76,216 76,216 76,217 76,217 76,217 76,218 76,218 76,218 76,219 76,219 76,220 76,220 76,220 76,221 76,221 76,221 76,222 76,222 76,222 76,223 76,223 76,224 76,224 76,224 76,225 76,225 76,225 76,226 76,226 76,226 76,227 76,227 77,228 77,228 77,228 77,229 77,229 77,229 77,230 77,230 77,230 77,231 77,231 77,231 77,232 77,232 77,233 77,233 77,233 77,234 77,234 77,234 77,235 77,235 77,235 77,236 77,236 77,237 77,237 77,237 77,238 77,238 77,238 78,239 78,239 78,239 78,240 78,240 78,241 78,241 78,241 78,242 78,242 78,242 78,243 78,243 78,243 78,244 78,244 78,244 78,245 78,245 78,246 78,246 78,246 78,247 78,247 78,247 78,248 78,248 79,248 79,249 79,249 79,250 79,250 79,250 79,251 79,251 79,251 79,252 79,252 79,252 79,253 79,253 79,253 79,254 79,254 79,255 79,255 79,255 79,256 79,256 79,256 79,257 79,257 79,257 80,258 80,258 80,259 80,259 80,259 80,260 80,260 80,260 80,261 80,261 80,261 80,262 80,262 80,263 80,263 80,263 80,264 80,264 80,264 80,265 80,265 80,265 80,266 80,266 80,266 80,267 81,267 81,268 81,268 81,268 81,269 81,269 81,269 81,270 81,270 81,270 81,271 81,271 81,272 81,272 81,272 81,273 81,273 81,273 81,274 81,274 81,274 81,275 81,275 81,276 81,276 81,276 81,277 81,277 81,277 81,278 81,278 81,278 82,279 82,279 82,279 82,280 82,280 82,281 82,281 82,281 82,282 82,282 82,282 82,283 82,283 82,283 82,284 82,284 82,285 82,285 82,285 82,286 82,286 82,286 82,287 82,287 82,287 82,288 82,288 82,289 82,289 82,289 82,290 82,290 82,290 82,291 82,291 82,291 82,292 82,292 82,292 82,293 82,293 82,294 82,294 82,294 82,295 82,295 82,295 82,296 82,296 82,296 82,297 82,297 82,298 82,298 82,298 82,299 82,299 82,299 82,300 82,300 82,300 82,301 82,301 82,302 82,302 82,302 82,303 82,303 82,303 82,304 82,304 82,304 82,305 82,305 82,305 82,306 82,306 82,307 82,307 82,307 82,308 82,308 82,308 82,309 82,309 82,309 82,310 82,310 82,311 82,311 82,311 82,312 82,312 82,312 82,313 82,313 82,313 82,314 82,314 82,314 82,315 82,315 82,316 82,316 82,316 82,317 82,317 82,317 82,318 82,318 82,318 82,319 82,319 82,320 82,320 82,320 82,321 82,321 82,321 82,322 82,322 82,322 82,323 82,323 82,324 82,324 82,324 82,325 82,325 82,325 82,326 82,326 82,326 82,327 82,327 82,327 82,328 82,328 82,329 82,329 82,329 82,330 82,330 82,330 82,331 82,331 82,331 82,332 82,332 82,333 82,333 82,333 82,334 83,334 83,334 83,335 83,335 83,335 83,336 83,336 83,337 83,337 83,337 83,338 83,338 83,338 83,339 83,339 83,339 83,340 83,340 83,340 83,341 83,341 83,342 83,342 83,342 83,343 83,343 83,343 83,344 83,344 83,344 83,345 83,345 83,346 83,346 83,346 83,347 83,347 83,347 83,348 84,348 84,348 84,349 84,349 84,350 84,350 84,350 84,351 84,351 84,351 84,352 84,352 84,352 84,353 84,353 84,353 84,354 84,354 84,355 84,355 84,355 84,356 84,356 84,356 84,357 84,357 84,357 84,358 84,358 85,359 85,359 85,359 85,360 85,360 85,360 85,361 85,361 85,361 85,362 85,362 85,363 85,363 85,363 85,364 85,364 85,364 85,365 85,365 85,365 85,366 85,366 85,366 85,367 85,367 85,368 85,368 85,368 85,369 85,369 85,369 85,370 85,370 85,370 85,371 85,371 85,372 85,372 86,372 86,373 86,373 86,373 86,374 86,374 86,374 86,375 86,375 86,375 86,376 86,376 86,377 86,377 86,377 86,378 86,378 86,378 86,379 86,379 86,379 86,380 86,380 86,381 86,381 86,381 86,382 86,382 86,382 86,383 85,383 85,383 85,384 85,384 85,385 85,385 85,385 85,386 85,386 85,386 85,387 85,387 85,387 85,388 85,388 85,388 85,389 85,389 85,390 85,390 85,390 85,391 85,391 85,391 85,392 85,392 85,392 85,393 85,393 85,394 85,394 84,394 84,395 84,395 84,395 84,396 84,396 84,396 84,397 84,397 84,398 84,398 84,398 84,399 84,399 84,399 84,400 59,400 59,400' style='stroke:#333333;fill:#00FFFF'/>
21
+ <polyline points='130,312 130,312 130,312 130,311 130,311 130,311 130,310 130,310 130,310 130,309 130,309 130,308 130,308 130,308 130,307 130,307 130,307 130,306 130,306 130,306 129,305 129,305 129,305 129,304 129,304 129,304 129,303 129,303 129,303 129,302 129,302 129,302 129,301 129,301 129,300 129,300 129,300 129,299 129,299 129,299 129,298 129,298 129,298 129,297 129,297 129,297 129,296 129,296 129,296 129,295 129,295 129,295 129,294 129,294 129,294 129,293 129,293 129,293 129,292 129,292 129,291 129,291 129,291 129,290 129,290 129,290 129,289 129,289 129,289 129,288 129,288 129,288 129,287 129,287 129,287 129,286 129,286 129,286 129,285 129,285 129,285 129,284 129,284 129,283 129,283 129,283 129,282 129,282 128,282 128,281 128,281 128,281 128,280 128,280 128,280 128,279 128,279 128,279 128,278 128,278 128,278 128,277 128,277 128,277 128,276 128,276 128,275 128,275 128,275 128,274 128,274 128,274 128,273 128,273 128,273 128,272 128,272 127,272 127,271 127,271 127,271 127,270 127,270 127,270 127,269 127,269 127,269 127,268 127,268 127,267 127,267 127,267 127,266 127,266 127,266 127,265 127,265 127,265 126,264 126,264 126,264 126,263 126,263 126,263 126,262 126,262 126,262 126,261 126,261 126,261 126,260 126,260 126,260 126,259 126,259 126,258 125,258 125,258 125,257 125,257 125,257 125,256 125,256 125,256 125,255 125,255 125,255 125,254 125,254 125,254 125,253 125,253 124,253 124,252 124,252 124,252 124,251 124,251 124,250 124,250 124,250 124,249 124,249 124,249 124,248 124,248 124,248 124,247 124,247 123,247 123,246 123,246 123,246 123,245 123,245 123,245 123,244 123,244 123,244 123,243 123,243 123,242 123,242 123,242 123,241 123,241 122,241 122,240 122,240 122,240 122,239 122,239 122,239 122,238 122,238 122,238 122,237 122,237 122,237 122,236 122,236 122,236 122,235 122,235 122,234 121,234 121,234 121,233 121,233 121,233 121,232 121,232 121,232 121,231 121,231 121,231 121,230 121,230 121,230 121,229 121,229 121,229 121,228 121,228 121,228 121,227 121,227 120,227 120,226 120,226 120,225 120,225 120,225 120,224 120,224 120,224 120,223 120,223 120,223 120,222 120,222 120,222 120,221 120,221 120,221 120,220 120,220 120,220 120,219 120,219 120,219 120,218 120,218 119,217 119,217 119,217 119,216 119,216 119,216 119,215 119,215 119,215 119,214 119,214 119,214 119,213 119,213 119,213 119,212 119,212 119,212 119,211 119,211 119,211 119,210 119,210 119,209 119,209 119,209 119,208 119,208 119,208 119,207 119,207 119,207 119,206 118,206 118,206 118,205 118,205 118,205 118,204 118,204 118,204 118,203 118,203 118,203 118,202 118,202 118,201 118,201 118,201 118,200 118,200 118,200 118,199 118,199 118,199 118,198 118,198 118,198 118,197 118,197 118,197 118,196 118,196 118,196 118,195 118,195 118,195 118,194 118,194 117,194 117,193 117,193 117,192 117,192 117,192 117,191 117,191 117,191 117,190 117,190 117,190 117,189 117,189 117,189 117,188 117,188 117,188 117,187 117,187 117,187 117,186 117,186 117,186 117,185 117,185 117,184 117,184 117,184 117,183 117,183 117,183 117,182 117,182 117,182 117,181 117,181 117,181 117,180 117,180 117,180 117,179 117,179 117,179 117,178 117,178 117,178 117,177 117,177 117,176 117,176 117,176 117,175 117,175 116,175 116,174 116,174 116,174 116,173 116,173 116,173 116,172 116,172 116,172 116,171 116,171 116,171 116,170 116,170 116,170 116,169 116,169 116,168 116,168 116,168 116,167 116,167 117,167 117,166 117,166 117,166 117,165 117,165 117,165 117,164 117,164 117,164 117,163 117,163 117,163 117,162 117,162 117,162 117,161 117,161 117,161 117,160 117,160 117,159 117,159 117,159 117,158 117,158 117,158 117,157 117,157 117,157 117,156 117,156 117,156 117,155 117,155 117,155 117,154 117,154 117,154 118,153 118,153 118,153 118,152 118,152 118,151 118,151 118,151 118,150 118,150 118,150 118,149 118,149 118,149 118,148 118,148 118,148 118,147 118,147 119,147 119,146 119,146 119,146 119,145 119,145 119,145 119,144 119,144 119,143 119,143 119,143 119,142 119,142 119,142 120,141 120,141 120,141 120,140 120,140 120,140 120,139 120,139 120,139 120,138 120,138 120,138 120,137 121,137 121,137 121,136 121,136 121,135 121,135 121,135 145,135 146,135 146,135 146,136 146,136 146,137 146,137 146,137 146,138 146,138 146,138 146,139 146,139 146,139 147,140 147,140 147,140 147,141 147,141 147,141 147,142 147,142 147,142 147,143 147,143 147,143 147,144 148,144 148,145 148,145 148,145 148,146 148,146 148,146 148,147 148,147 148,147 148,148 148,148 148,148 148,149 148,149 148,149 148,150 149,150 149,150 149,151 149,151 149,151 149,152 149,152 149,153 149,153 149,153 149,154 149,154 149,154 149,155 149,155 149,155 149,156 149,156 149,156 149,157 149,157 149,157 149,158 150,158 150,158 150,159 150,159 150,159 150,160 150,160 150,161 150,161 150,161 150,162 150,162 150,162 150,163 150,163 150,163 150,164 150,164 150,164 150,165 150,165 150,165 150,166 150,166 150,166 150,167 150,167 150,167 150,168 150,168 150,168 150,169 150,169 150,170 150,170 150,170 150,171 150,171 150,171 150,172 150,172 150,172 150,173 150,173 150,173 150,174 150,174 150,174 150,175 150,175 150,175 150,176 150,176 150,176 150,177 150,177 150,178 150,178 150,178 150,179 150,179 150,179 150,180 150,180 150,180 150,181 150,181 150,181 150,182 150,182 150,182 150,183 150,183 150,183 150,184 150,184 150,184 150,185 150,185 150,186 150,186 149,186 149,187 149,187 149,187 149,188 149,188 149,188 149,189 149,189 149,189 149,190 149,190 149,190 149,191 149,191 149,191 149,192 149,192 149,192 149,193 149,193 149,194 149,194 149,194 149,195 149,195 149,195 149,196 149,196 149,196 149,197 149,197 149,197 149,198 149,198 149,198 149,199 149,199 149,199 149,200 148,200 148,200 148,201 148,201 148,201 148,202 148,202 148,203 148,203 148,203 148,204 148,204 148,204 148,205 148,205 148,205 148,206 148,206 148,206 148,207 148,207 148,207 148,208 148,208 148,208 148,209 148,209 148,209 148,210 148,210 148,211 148,211 148,211 148,212 148,212 147,212 147,213 147,213 147,213 147,214 147,214 147,214 147,215 147,215 147,215 147,216 147,216 147,216 147,217 147,217 147,217 147,218 147,218 147,219 147,219 147,219 147,220 147,220 147,220 147,221 147,221 147,221 147,222 147,222 147,222 146,223 146,223 146,223 146,224 146,224 146,224 146,225 146,225 146,225 146,226 146,226 146,227 146,227 146,227 146,228 146,228 146,228 146,229 146,229 146,229 146,230 146,230 146,230 146,231 145,231 145,231 145,232 145,232 145,232 145,233 145,233 145,233 145,234 145,234 145,234 145,235 145,235 145,236 145,236 145,236 145,237 145,237 145,237 145,238 144,238 144,238 144,239 144,239 144,239 144,240 144,240 144,240 144,241 144,241 144,241 144,242 144,242 144,242 144,243 144,243 144,244 144,244 143,244 143,245 143,245 143,245 143,246 143,246 143,246 143,247 143,247 143,247 143,248 143,248 143,248 143,249 143,249 143,249 142,250 142,250 142,250 142,251 142,251 142,252 142,252 142,252 142,253 142,253 142,253 142,254 142,254 142,254 142,255 142,255 142,255 141,256 141,256 141,256 141,257 141,257 141,257 141,258 141,258 141,258 141,259 141,259 141,260 141,260 141,260 141,261 141,261 141,261 140,262 140,262 140,262 140,263 140,263 140,263 140,264 140,264 140,264 140,265 140,265 140,265 140,266 140,266 140,266 140,267 140,267 140,267 140,268 139,268 139,269 139,269 139,269 139,270 139,270 139,270 139,271 139,271 139,271 139,272 139,272 139,272 139,273 139,273 139,273 139,274 139,274 139,274 139,275 139,275 139,275 139,276 139,276 138,277 138,277 138,277 138,278 138,278 138,278 138,279 138,279 138,279 138,280 138,280 138,280 138,281 138,281 138,281 138,282 138,282 138,282 138,283 138,283 138,283 138,284 138,284 138,285 138,285 138,285 138,286 138,286 138,286 138,287 138,287 138,287 138,288 138,288 138,288 138,289 138,289 138,289 138,290 137,290 137,290 137,291 137,291 137,291 137,292 137,292 137,293 137,293 137,293 137,294 137,294 137,294 137,295 137,295 137,295 137,296 137,296 137,296 137,297 137,297 137,297 137,298 137,298 137,298 137,299 137,299 137,299 137,300 137,300 137,300 137,301 137,301 137,302 137,302 137,302 137,303 137,303 137,303 137,304 137,304 137,304 137,305 137,305 137,305 137,306 137,306 137,306 137,307 137,307 137,307 137,308 137,308 137,308 137,309 137,309 137,310 137,310 137,310 137,311 137,311 137,311 137,312 137,312 137,312 130,312 130,312' style='stroke:#333333;fill:#00BFFF'/>
22
+ <polyline points='181,203 181,203 181,202 181,202 181,202 181,202 181,201 181,201 180,201 180,201 180,200 180,200 180,200 180,200 180,200 180,199 180,199 180,199 180,199 180,198 179,198 179,198 179,198 179,197 179,197 179,197 179,197 179,197 179,196 179,196 179,196 179,196 179,195 179,195 178,195 178,195 178,194 178,194 178,194 178,194 178,194 178,193 178,193 178,193 178,193 178,192 178,192 178,192 178,192 178,191 177,191 177,191 177,191 177,191 177,190 177,190 177,190 177,190 177,189 177,189 177,189 177,189 177,188 177,188 177,188 177,188 176,188 176,187 176,187 176,187 176,187 176,186 176,186 176,186 176,186 176,185 176,185 176,185 176,185 176,185 176,184 175,184 175,184 175,184 175,183 175,183 175,183 175,183 175,182 175,182 175,182 175,182 175,182 175,181 174,181 174,181 174,181 174,180 174,180 174,180 174,180 174,179 174,179 174,179 174,179 174,179 173,178 173,178 173,178 173,178 173,177 173,177 173,177 173,177 173,176 173,176 173,176 172,176 172,176 172,175 172,175 172,175 172,175 172,174 172,174 172,174 172,174 172,173 171,173 171,173 171,173 171,173 171,172 171,172 171,172 171,172 171,171 171,171 171,171 170,171 170,170 170,170 170,170 170,170 170,170 170,169 170,169 170,169 170,169 170,168 170,168 169,168 169,168 169,167 169,167 169,167 169,167 169,167 169,166 169,166 169,166 169,166 169,165 169,165 169,165 168,165 168,164 168,164 168,164 168,164 168,164 168,163 168,163 168,163 168,163 168,162 168,162 168,162 168,162 168,161 168,161 168,161 168,161 168,161 168,160 168,160 168,160 167,160 167,159 167,159 167,159 167,159 167,158 167,158 167,158 167,158 167,158 167,157 167,157 167,157 167,157 167,156 167,156 167,156 167,156 167,155 167,155 167,155 167,155 167,155 167,154 167,154 167,154 167,154 167,153 167,153 168,153 168,153 168,152 168,152 168,152 168,152 168,152 168,151 168,151 168,151 168,151 168,150 168,150 168,150 168,150 168,149 168,149 168,149 168,149 168,149 169,148 169,148 169,148 169,148 169,147 169,147 169,147 169,147 169,146 169,146 169,146 170,146 170,146 170,145 170,145 170,145 170,145 170,144 170,144 170,144 170,144 171,143 171,143 171,143 171,143 171,143 171,142 171,142 171,142 172,142 172,141 172,141 172,141 172,141 172,140 172,140 173,140 173,140 173,140 173,139 173,139 173,139 173,139 174,138 174,138 174,138 174,138 174,137 174,137 175,137 175,137 175,137 175,136 175,136 175,136 175,136 176,135 176,135 176,135 176,135 176,134 176,134 177,134 177,134 177,134 177,133 177,133 177,133 178,133 178,132 178,132 178,132 178,132 178,131 178,131 179,131 179,131 179,131 179,130 179,130 179,130 180,130 180,129 180,129 180,129 180,129 180,128 180,128 181,128 181,128 181,128 181,127 181,127 181,127 181,127 181,126 182,126 182,126 182,126 182,125 182,125 182,125 182,125 182,125 182,124 183,124 183,124 183,124 183,123 183,123 183,123 183,123 183,122 183,122 183,122 183,122 184,122 184,121 184,121 184,121 184,121 184,120 184,120 184,120 184,120 184,119 184,119 184,119 184,119 184,119 184,118 184,118 185,118 185,118 185,117 185,117 185,117 185,117 185,116 185,116 185,116 185,116 185,116 185,115 185,115 185,115 185,115 185,114 185,114 185,114 185,114 185,113 185,113 185,113 185,113 185,113 185,112 185,112 185,112 185,112 185,111 185,111 185,111 185,111 185,110 185,110 185,110 185,110 185,110 185,109 185,109 185,109 185,109 185,108 185,108 185,108 185,108 185,107 185,107 185,107 185,107 185,107 185,106 185,106 185,106 185,106 185,105 185,105 185,105 185,105 185,104 185,104 185,104 185,104 185,104 185,103 185,103 185,103 185,103 185,102 185,102 185,102 185,102 185,101 185,101 185,101 185,101 185,101 185,100 185,100 185,100 185,100 185,99 185,99 185,99 185,99 185,98 185,98 185,98 185,98 185,98 185,97 185,97 185,97 185,97 185,96 185,96 185,96 185,96 185,95 185,95 185,95 185,95 185,95 185,94 185,94 185,94 185,94 185,93 185,93 185,93 185,93 185,92 185,92 185,92 185,92 185,92 185,91 185,91 185,91 185,91 185,90 185,90 185,90 185,90 185,89 185,89 185,89 185,89 185,89 185,88 185,88 185,88 185,88 185,87 186,87 186,87 186,87 186,86 186,86 186,86 186,86 186,86 186,85 186,85 186,85 204,85 204,85 204,85 204,86 204,86 205,86 205,86 205,86 205,87 205,87 205,87 205,87 205,88 205,88 205,88 205,88 205,89 205,89 205,89 205,89 205,89 205,90 205,90 205,90 205,90 205,91 205,91 205,91 205,91 205,92 205,92 205,92 206,92 206,92 206,93 206,93 206,93 206,93 206,94 206,94 206,94 206,94 206,95 206,95 206,95 206,95 206,95 206,96 206,96 206,96 206,96 206,97 206,97 206,97 206,97 206,98 206,98 206,98 206,98 206,98 206,99 206,99 206,99 206,99 206,100 206,100 206,100 206,100 206,101 206,101 206,101 206,101 206,101 206,102 206,102 206,102 206,102 206,103 206,103 206,103 206,103 206,104 206,104 206,104 206,104 206,104 205,105 205,105 205,105 205,105 205,106 205,106 205,106 205,106 205,107 205,107 205,107 205,107 205,107 205,108 205,108 205,108 205,108 205,109 205,109 205,109 205,109 205,110 205,110 205,110 205,110 205,110 205,111 205,111 205,111 205,111 205,112 205,112 205,112 205,112 205,113 205,113 205,113 205,113 205,113 205,114 205,114 205,114 205,114 205,115 205,115 205,115 205,115 205,116 205,116 205,116 206,116 206,116 206,117 206,117 206,117 206,117 206,118 206,118 206,118 206,118 206,119 206,119 206,119 206,119 206,119 206,120 206,120 206,120 206,120 206,121 207,121 207,121 207,121 207,122 207,122 207,122 207,122 207,122 207,123 207,123 207,123 207,123 208,124 208,124 208,124 208,124 208,125 208,125 208,125 208,125 208,125 209,126 209,126 209,126 209,126 209,127 209,127 209,127 209,127 210,128 210,128 210,128 210,128 210,128 210,129 210,129 210,129 211,129 211,130 211,130 211,130 211,130 211,131 212,131 212,131 212,131 212,131 212,132 212,132 212,132 213,132 213,133 213,133 213,133 213,133 213,134 214,134 214,134 214,134 214,134 214,135 214,135 214,135 215,135 215,136 215,136 215,136 215,136 215,137 216,137 216,137 216,137 216,137 216,138 216,138 217,138 217,138 217,139 217,139 217,139 217,139 217,140 218,140 218,140 218,140 218,140 218,141 218,141 218,141 219,141 219,142 219,142 219,142 219,142 219,143 219,143 219,143 220,143 220,143 220,144 220,144 220,144 220,144 220,145 220,145 220,145 221,145 221,146 221,146 221,146 221,146 221,146 221,147 221,147 221,147 221,147 221,148 222,148 222,148 222,148 222,149 222,149 222,149 222,149 222,149 222,150 222,150 222,150 222,150 222,151 222,151 222,151 223,151 223,152 223,152 223,152 223,152 223,152 223,153 223,153 223,153 223,153 223,154 223,154 223,154 223,154 223,155 223,155 223,155 223,155 223,155 223,156 223,156 223,156 223,156 223,157 223,157 223,157 223,157 223,158 223,158 223,158 223,158 223,158 223,159 223,159 223,159 223,159 223,160 223,160 223,160 223,160 223,161 223,161 223,161 223,161 223,161 222,162 222,162 222,162 222,162 222,163 222,163 222,163 222,163 222,164 222,164 222,164 222,164 222,164 222,165 222,165 222,165 222,165 222,166 222,166 221,166 221,166 221,167 221,167 221,167 221,167 221,167 221,168 221,168 221,168 221,168 221,169 221,169 220,169 220,169 220,170 220,170 220,170 220,170 220,170 220,171 220,171 220,171 220,171 220,172 219,172 219,172 219,172 219,173 219,173 219,173 219,173 219,173 219,174 219,174 219,174 218,174 218,175 218,175 218,175 218,175 218,176 218,176 218,176 218,176 218,176 218,177 217,177 217,177 217,177 217,178 217,178 217,178 217,178 217,179 217,179 217,179 217,179 216,179 216,180 216,180 216,180 216,180 216,181 216,181 216,181 216,181 216,182 216,182 216,182 215,182 215,182 215,183 215,183 215,183 215,183 215,184 215,184 215,184 215,184 215,185 215,185 215,185 214,185 214,185 214,186 214,186 214,186 214,186 214,187 214,187 214,187 214,187 214,188 214,188 214,188 214,188 214,188 214,189 213,189 213,189 213,189 213,190 213,190 213,190 213,190 213,191 213,191 213,191 213,191 213,191 213,192 213,192 213,192 213,192 212,193 212,193 212,193 212,193 212,194 212,194 212,194 212,194 212,194 212,195 212,195 212,195 212,195 212,196 212,196 212,196 211,196 211,197 211,197 211,197 211,197 211,197 211,198 211,198 211,198 211,198 211,199 211,199 211,199 210,199 210,200 210,200 210,200 210,200 210,200 210,201 210,201 210,201 210,201 210,202 209,202 209,202 209,202 209,203 209,203 181,203 181,203' style='stroke:#333333;fill:#00688B'/>
23
+ </g><g style='stroke-width:0.9448818897637796;stroke-linejoin:round;stroke-linecap:round'>
24
+ <rect x='61' y='301' width='3' height='3' transform='rotate(-315,63,302)' style='stroke:#00CDCD;fill:#00CDCD'/>
25
+ <rect x='84' y='214' width='3' height='3' transform='rotate(-315,86,215)' style='stroke:#00CDCD;fill:#00CDCD'/>
26
+ <rect x='48' y='268' width='3' height='3' transform='rotate(-315,50,269)' style='stroke:#00CDCD;fill:#00CDCD'/>
27
+ <rect x='91' y='377' width='3' height='3' transform='rotate(-315,92,379)' style='stroke:#00CDCD;fill:#00CDCD'/>
28
+ <rect x='85' y='311' width='3' height='3' transform='rotate(-315,87,312)' style='stroke:#00CDCD;fill:#00CDCD'/>
29
+ <rect x='92' y='374' width='3' height='3' transform='rotate(-315,94,375)' style='stroke:#00CDCD;fill:#00CDCD'/>
30
+ <rect x='62' y='398' width='3' height='3' transform='rotate(-315,64,400)' style='stroke:#00CDCD;fill:#00CDCD'/>
31
+ <rect x='60' y='382' width='3' height='3' transform='rotate(-315,61,383)' style='stroke:#00CDCD;fill:#00CDCD'/>
32
+ <rect x='66' y='283' width='3' height='3' transform='rotate(-315,67,284)' style='stroke:#00CDCD;fill:#00CDCD'/>
33
+ <rect x='48' y='378' width='3' height='3' transform='rotate(-315,50,379)' style='stroke:#00CDCD;fill:#00CDCD'/>
34
+ <rect x='130' y='239' width='3' height='3' transform='rotate(-315,132,241)' style='stroke:#00CDCD;fill:#00CDCD'/>
35
+ <rect x='119' y='189' width='3' height='3' transform='rotate(-315,120,190)' style='stroke:#00CDCD;fill:#00CDCD'/>
36
+ <rect x='150' y='185' width='3' height='3' transform='rotate(-315,151,186)' style='stroke:#00CDCD;fill:#00CDCD'/>
37
+ <rect x='126' y='146' width='3' height='3' transform='rotate(-315,127,148)' style='stroke:#00CDCD;fill:#00CDCD'/>
38
+ <rect x='151' y='234' width='3' height='3' transform='rotate(-315,152,236)' style='stroke:#00CDCD;fill:#00CDCD'/>
39
+ <rect x='150' y='162' width='3' height='3' transform='rotate(-315,151,163)' style='stroke:#00CDCD;fill:#00CDCD'/>
40
+ <rect x='144' y='154' width='3' height='3' transform='rotate(-315,145,155)' style='stroke:#00CDCD;fill:#00CDCD'/>
41
+ <rect x='109' y='217' width='3' height='3' transform='rotate(-315,111,219)' style='stroke:#00CDCD;fill:#00CDCD'/>
42
+ <rect x='147' y='311' width='3' height='3' transform='rotate(-315,148,313)' style='stroke:#00CDCD;fill:#00CDCD'/>
43
+ <rect x='126' y='133' width='3' height='3' transform='rotate(-315,128,135)' style='stroke:#00CDCD;fill:#00CDCD'/>
44
+ <rect x='198' y='158' width='3' height='3' transform='rotate(-315,200,160)' style='stroke:#00CDCD;fill:#00CDCD'/>
45
+ <rect x='173' y='146' width='3' height='3' transform='rotate(-315,175,148)' style='stroke:#00CDCD;fill:#00CDCD'/>
46
+ <rect x='217' y='201' width='3' height='3' transform='rotate(-315,218,203)' style='stroke:#00CDCD;fill:#00CDCD'/>
47
+ <rect x='205' y='172' width='3' height='3' transform='rotate(-315,207,174)' style='stroke:#00CDCD;fill:#00CDCD'/>
48
+ <rect x='177' y='168' width='3' height='3' transform='rotate(-315,178,170)' style='stroke:#00CDCD;fill:#00CDCD'/>
49
+ <rect x='212' y='83' width='3' height='3' transform='rotate(-315,214,85)' style='stroke:#00CDCD;fill:#00CDCD'/>
50
+ <rect x='211' y='146' width='3' height='3' transform='rotate(-315,213,147)' style='stroke:#00CDCD;fill:#00CDCD'/>
51
+ <rect x='206' y='133' width='3' height='3' transform='rotate(-315,207,135)' style='stroke:#00CDCD;fill:#00CDCD'/>
52
+ <rect x='200' y='104' width='3' height='3' transform='rotate(-315,202,106)' style='stroke:#00CDCD;fill:#00CDCD'/>
53
+ <rect x='186' y='193' width='3' height='3' transform='rotate(-315,188,195)' style='stroke:#00CDCD;fill:#00CDCD'/>
54
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
55
+ <rect x='238' y='23' width='198' height='453' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#EBEBEB'/>
56
+ </g><g style='stroke-width:0.7113188976377953;stroke-linejoin:round;stroke-linecap:butt'>
57
+ <polyline points='238,444 436,444' style='stroke:#FFFFFF'/>
58
+ <polyline points='238,305 436,305' style='stroke:#FFFFFF'/>
59
+ <polyline points='238,167 436,167' style='stroke:#FFFFFF'/>
60
+ <polyline points='238,28 436,28' style='stroke:#FFFFFF'/>
61
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
62
+ <polyline points='238,375 436,375' style='stroke:#FFFFFF'/>
63
+ <polyline points='238,236 436,236' style='stroke:#FFFFFF'/>
64
+ <polyline points='238,97 436,97' style='stroke:#FFFFFF'/>
65
+ <polyline points='275,476 275,23' style='stroke:#FFFFFF'/>
66
+ <polyline points='337,476 337,23' style='stroke:#FFFFFF'/>
67
+ <polyline points='399,476 399,23' style='stroke:#FFFFFF'/>
68
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
69
+ <polyline points='264,455 264,455 263,455 263,455 263,454 263,454 263,454 263,454 263,454 263,453 263,453 263,453 263,453 263,453 263,452 262,452 262,452 262,452 262,452 262,451 262,451 262,451 262,451 262,451 262,450 262,450 262,450 262,450 262,450 261,449 261,449 261,449 261,449 261,449 261,448 261,448 261,448 261,448 261,448 261,447 261,447 261,447 261,447 261,447 260,446 260,446 260,446 260,446 260,446 260,445 260,445 260,445 260,445 260,445 260,444 260,444 260,444 260,444 260,444 260,443 259,443 259,443 259,443 259,443 259,442 259,442 259,442 259,442 259,442 259,441 259,441 259,441 259,441 259,441 259,440 259,440 259,440 259,440 258,440 258,440 258,439 258,439 258,439 258,439 258,439 258,438 258,438 258,438 258,438 258,438 258,437 258,437 258,437 258,437 258,437 258,436 258,436 258,436 258,436 258,436 258,435 258,435 258,435 258,435 257,435 257,434 257,434 257,434 257,434 257,434 257,433 257,433 257,433 257,433 257,433 257,432 257,432 257,432 257,432 257,432 257,431 257,431 257,431 257,431 257,431 257,430 257,430 257,430 257,430 257,430 257,429 257,429 257,429 257,429 257,429 257,428 257,428 257,428 257,428 257,428 257,427 257,427 257,427 257,427 257,427 257,426 257,426 257,426 257,426 257,426 257,425 257,425 257,425 257,425 257,425 257,424 257,424 257,424 257,424 257,424 257,423 257,423 257,423 257,423 257,423 257,422 257,422 257,422 257,422 257,422 257,421 257,421 257,421 257,421 257,421 258,420 258,420 258,420 258,420 258,420 258,419 258,419 258,419 258,419 258,419 258,418 258,418 258,418 258,418 258,418 258,418 258,417 258,417 258,417 258,417 258,417 258,416 258,416 258,416 258,416 258,416 258,415 258,415 259,415 259,415 259,415 259,414 259,414 259,414 259,414 259,414 259,413 259,413 259,413 259,413 259,413 259,412 259,412 259,412 259,412 259,412 259,411 259,411 259,411 259,411 260,411 260,410 260,410 260,410 260,410 260,410 260,409 260,409 260,409 260,409 260,409 260,408 260,408 260,408 260,408 260,408 260,407 260,407 260,407 260,407 261,407 261,406 261,406 261,406 261,406 261,406 261,405 261,405 261,405 261,405 261,405 261,404 261,404 261,404 261,404 261,404 261,403 261,403 261,403 261,403 261,403 261,402 262,402 262,402 262,402 262,402 262,401 262,401 262,401 262,401 262,401 262,400 262,400 262,400 262,400 262,400 262,399 262,399 262,399 262,399 262,399 262,398 262,398 262,398 262,398 262,398 262,397 262,397 262,397 263,397 263,397 263,397 263,396 263,396 263,396 263,396 263,396 263,395 263,395 263,395 263,395 263,395 263,394 263,394 263,394 263,394 263,394 263,393 263,393 263,393 263,393 263,393 263,392 263,392 263,392 263,392 263,392 263,391 263,391 263,391 263,391 263,391 263,390 263,390 263,390 263,390 263,390 263,389 263,389 263,389 263,389 263,389 263,388 263,388 263,388 263,388 263,388 263,387 263,387 263,387 263,387 263,387 263,386 263,386 263,386 263,386 263,386 263,385 263,385 263,385 263,385 263,385 263,384 263,384 263,384 263,384 263,384 263,383 263,383 263,383 263,383 263,383 263,382 263,382 263,382 263,382 263,382 263,381 263,381 263,381 263,381 263,381 263,380 263,380 263,380 262,380 262,380 262,379 262,379 262,379 262,379 262,379 262,378 262,378 262,378 262,378 262,378 262,377 262,377 262,377 262,377 262,377 262,376 262,376 262,376 262,376 262,376 262,376 262,375 262,375 262,375 262,375 262,375 262,374 262,374 262,374 262,374 262,374 262,373 262,373 262,373 262,373 262,373 262,372 261,372 261,372 261,372 261,372 261,371 261,371 261,371 261,371 261,371 261,370 261,370 261,370 261,370 261,370 261,369 261,369 261,369 261,369 261,369 261,368 261,368 261,368 261,368 261,368 261,367 261,367 261,367 261,367 261,367 261,366 261,366 261,366 261,366 261,366 261,365 261,365 261,365 261,365 261,365 261,364 261,364 261,364 261,364 261,364 261,363 261,363 261,363 261,363 261,363 261,362 261,362 261,362 261,362 261,362 261,361 261,361 261,361 261,361 261,361 261,360 261,360 261,360 261,360 261,360 261,359 261,359 261,359 261,359 261,359 261,358 261,358 261,358 261,358 261,358 261,357 261,357 261,357 261,357 261,357 261,356 261,356 261,356 261,356 261,356 261,355 261,355 261,355 262,355 262,355 262,355 262,354 262,354 262,354 288,354 288,354 288,354 288,355 288,355 288,355 288,355 288,355 288,355 288,356 288,356 289,356 289,356 289,356 289,357 289,357 289,357 289,357 289,357 289,358 289,358 289,358 289,358 289,358 289,359 289,359 289,359 289,359 289,359 289,360 289,360 289,360 289,360 289,360 289,361 289,361 289,361 289,361 289,361 289,362 289,362 289,362 289,362 289,362 289,363 289,363 289,363 289,363 289,363 289,364 289,364 289,364 289,364 289,364 289,365 289,365 289,365 289,365 289,365 289,366 289,366 289,366 289,366 289,366 289,367 289,367 289,367 289,367 289,367 289,368 289,368 289,368 289,368 289,368 289,369 289,369 289,369 289,369 289,369 289,370 289,370 289,370 289,370 289,370 289,371 289,371 289,371 288,371 288,371 288,372 288,372 288,372 288,372 288,372 288,373 288,373 288,373 288,373 288,373 288,374 288,374 288,374 288,374 288,374 288,375 288,375 288,375 288,375 288,375 288,376 288,376 288,376 288,376 288,376 288,376 288,377 288,377 288,377 288,377 288,377 288,378 288,378 288,378 288,378 288,378 288,379 287,379 287,379 287,379 287,379 287,380 287,380 287,380 287,380 287,380 287,381 287,381 287,381 287,381 287,381 287,382 287,382 287,382 287,382 287,382 287,383 287,383 287,383 287,383 287,383 287,384 287,384 287,384 287,384 287,384 287,385 287,385 287,385 287,385 287,385 287,386 287,386 287,386 287,386 287,386 287,387 287,387 287,387 287,387 287,387 287,388 287,388 287,388 287,388 287,388 287,389 287,389 287,389 287,389 287,389 287,390 287,390 287,390 287,390 287,390 287,391 287,391 287,391 287,391 287,391 287,392 287,392 287,392 287,392 287,392 287,393 287,393 287,393 287,393 287,393 287,394 287,394 287,394 287,394 287,394 287,395 287,395 287,395 287,395 287,395 287,396 287,396 287,396 287,396 287,396 287,397 287,397 287,397 287,397 287,397 287,397 287,398 287,398 288,398 288,398 288,398 288,399 288,399 288,399 288,399 288,399 288,400 288,400 288,400 288,400 288,400 288,401 288,401 288,401 288,401 288,401 288,402 288,402 288,402 288,402 288,402 288,403 288,403 288,403 289,403 289,403 289,404 289,404 289,404 289,404 289,404 289,405 289,405 289,405 289,405 289,405 289,406 289,406 289,406 289,406 289,406 289,407 289,407 289,407 289,407 290,407 290,408 290,408 290,408 290,408 290,408 290,409 290,409 290,409 290,409 290,409 290,410 290,410 290,410 290,410 290,410 290,411 290,411 290,411 290,411 291,411 291,412 291,412 291,412 291,412 291,412 291,413 291,413 291,413 291,413 291,413 291,414 291,414 291,414 291,414 291,414 291,415 291,415 291,415 291,415 291,415 291,416 291,416 292,416 292,416 292,416 292,417 292,417 292,417 292,417 292,417 292,418 292,418 292,418 292,418 292,418 292,418 292,419 292,419 292,419 292,419 292,419 292,420 292,420 292,420 292,420 292,420 292,421 292,421 292,421 292,421 292,421 292,422 293,422 293,422 293,422 293,422 293,423 293,423 293,423 293,423 293,423 293,424 293,424 293,424 293,424 293,424 293,425 293,425 293,425 293,425 293,425 293,426 293,426 293,426 293,426 293,426 293,427 293,427 293,427 293,427 293,427 293,428 293,428 293,428 293,428 293,428 293,429 293,429 293,429 293,429 293,429 293,430 293,430 293,430 293,430 293,430 293,431 293,431 293,431 293,431 293,431 293,432 293,432 293,432 293,432 293,432 293,433 293,433 293,433 293,433 293,433 292,434 292,434 292,434 292,434 292,434 292,435 292,435 292,435 292,435 292,435 292,436 292,436 292,436 292,436 292,436 292,437 292,437 292,437 292,437 292,437 292,438 292,438 292,438 292,438 292,438 292,439 292,439 292,439 292,439 291,439 291,440 291,440 291,440 291,440 291,440 291,440 291,441 291,441 291,441 291,441 291,441 291,442 291,442 291,442 291,442 291,442 291,443 291,443 290,443 290,443 290,443 290,444 290,444 290,444 290,444 290,444 290,445 290,445 290,445 290,445 290,445 290,446 290,446 290,446 289,446 289,446 289,447 289,447 289,447 289,447 289,447 289,448 289,448 289,448 289,448 289,448 289,449 289,449 289,449 288,449 288,449 288,450 288,450 288,450 288,450 288,450 288,451 288,451 288,451 288,451 288,451 288,452 288,452 287,452 287,452 287,452 287,453 287,453 287,453 287,453 287,453 287,454 287,454 287,454 287,454 287,454 286,455 286,455 286,455 286,455 264,455 264,455' style='stroke:#333333;fill:#00FFFF'/>
70
+ <polyline points='325,325 324,325 324,324 324,324 324,324 324,324 324,323 324,323 323,323 323,323 323,322 323,322 323,322 323,322 323,321 322,321 322,321 322,321 322,320 322,320 322,320 321,320 321,319 321,319 321,319 321,319 321,319 321,318 320,318 320,318 320,318 320,317 320,317 320,317 320,317 320,316 319,316 319,316 319,316 319,315 319,315 319,315 319,315 318,314 318,314 318,314 318,314 318,313 318,313 318,313 318,313 317,312 317,312 317,312 317,312 317,312 317,311 317,311 317,311 317,311 316,310 316,310 316,310 316,310 316,309 316,309 316,309 316,309 316,308 315,308 315,308 315,308 315,307 315,307 315,307 315,307 315,306 315,306 315,306 314,306 314,305 314,305 314,305 314,305 314,305 314,304 314,304 314,304 314,304 313,303 313,303 313,303 313,303 313,302 313,302 313,302 313,302 313,301 313,301 313,301 313,301 313,300 312,300 312,300 312,300 312,299 312,299 312,299 312,299 312,298 312,298 312,298 312,298 312,297 312,297 311,297 311,297 311,297 311,296 311,296 311,296 311,296 311,295 311,295 311,295 311,295 311,294 311,294 311,294 311,294 311,293 310,293 310,293 310,293 310,292 310,292 310,292 310,292 310,291 310,291 310,291 310,291 310,290 310,290 310,290 310,290 310,290 310,289 310,289 309,289 309,289 309,288 309,288 309,288 309,288 309,287 309,287 309,287 309,287 309,286 309,286 309,286 309,286 309,285 309,285 309,285 309,285 309,284 309,284 309,284 309,284 309,283 309,283 309,283 309,283 309,283 309,282 309,282 309,282 309,282 309,281 309,281 309,281 309,281 309,280 309,280 310,280 310,280 310,279 310,279 310,279 310,279 310,278 310,278 310,278 310,278 310,277 310,277 311,277 311,277 311,276 311,276 311,276 311,276 311,276 311,275 312,275 312,275 312,275 312,274 312,274 312,274 312,274 313,273 313,273 313,273 313,273 313,272 313,272 314,272 314,272 314,271 314,271 314,271 315,271 315,270 315,270 315,270 315,270 316,269 316,269 316,269 316,269 316,269 316,268 317,268 317,268 317,268 317,267 317,267 318,267 318,267 318,266 318,266 318,266 319,266 319,265 319,265 319,265 319,265 320,264 320,264 320,264 320,264 320,263 321,263 321,263 321,263 321,262 321,262 321,262 322,262 322,262 322,261 322,261 322,261 322,261 323,260 323,260 323,260 323,260 323,259 323,259 324,259 324,259 324,258 324,258 324,258 324,258 324,257 325,257 325,257 325,257 325,256 325,256 325,256 325,256 326,255 326,255 326,255 326,255 326,255 326,254 326,254 326,254 327,254 327,253 327,253 327,253 327,253 327,252 327,252 327,252 328,252 328,251 328,251 328,251 328,251 328,250 328,250 328,250 328,250 329,249 329,249 329,249 329,249 329,248 329,248 329,248 329,248 329,247 330,247 330,247 330,247 330,247 330,246 330,246 330,246 330,246 330,245 331,245 331,245 331,245 331,244 331,244 331,244 331,244 331,243 331,243 332,243 332,243 332,242 332,242 332,242 332,242 332,241 332,241 332,241 332,241 333,240 333,240 333,240 333,240 333,240 333,239 333,239 333,239 333,239 333,238 333,238 334,238 334,238 334,237 334,237 334,237 334,237 334,236 334,236 334,236 334,236 334,235 334,235 334,235 335,235 335,234 335,234 335,234 335,234 335,233 335,233 335,233 335,233 335,233 335,232 335,232 335,232 335,232 335,231 335,231 335,231 335,231 335,230 335,230 335,230 335,230 335,229 335,229 335,229 335,229 335,228 335,228 336,228 336,228 336,227 336,227 336,227 336,227 336,226 336,226 336,226 335,226 335,226 335,225 335,225 335,225 335,225 335,224 335,224 335,224 335,224 335,223 335,223 335,223 335,223 335,222 335,222 335,222 335,222 335,221 335,221 335,221 335,221 335,220 335,220 335,220 335,220 335,219 335,219 334,219 334,219 334,219 334,218 334,218 334,218 334,218 334,217 334,217 334,217 334,217 334,216 334,216 334,216 334,216 333,215 333,215 333,215 333,215 333,214 333,214 333,214 333,214 333,213 333,213 333,213 333,213 333,212 332,212 332,212 332,212 332,212 332,211 332,211 332,211 332,211 332,210 332,210 332,210 332,210 332,209 331,209 331,209 331,209 331,208 331,208 331,208 331,208 331,207 331,207 331,207 331,207 331,206 331,206 331,206 331,206 331,205 331,205 331,205 330,205 330,205 330,204 330,204 330,204 330,204 330,203 330,203 330,203 330,203 330,202 330,202 330,202 330,202 330,201 343,201 343,202 343,202 343,202 343,202 343,203 343,203 343,203 343,203 343,204 343,204 343,204 343,204 343,205 343,205 343,205 343,205 343,205 343,206 343,206 343,206 343,206 343,207 343,207 343,207 343,207 343,208 343,208 342,208 342,208 342,209 342,209 342,209 342,209 342,210 342,210 342,210 342,210 342,211 342,211 342,211 342,211 341,212 341,212 341,212 341,212 341,212 341,213 341,213 341,213 341,213 341,214 341,214 341,214 340,214 340,215 340,215 340,215 340,215 340,216 340,216 340,216 340,216 340,217 340,217 340,217 340,217 340,218 339,218 339,218 339,218 339,219 339,219 339,219 339,219 339,219 339,220 339,220 339,220 339,220 339,221 339,221 339,221 339,221 339,222 339,222 339,222 338,222 338,223 338,223 338,223 338,223 338,224 338,224 338,224 338,224 338,225 338,225 338,225 338,225 338,226 338,226 338,226 338,226 338,226 338,227 338,227 338,227 338,227 338,228 338,228 338,228 338,228 338,229 338,229 338,229 338,229 338,230 338,230 338,230 338,230 338,231 338,231 338,231 338,231 338,232 339,232 339,232 339,232 339,233 339,233 339,233 339,233 339,233 339,234 339,234 339,234 339,234 339,235 339,235 339,235 339,235 339,236 339,236 340,236 340,236 340,237 340,237 340,237 340,237 340,238 340,238 340,238 340,238 340,239 340,239 341,239 341,239 341,240 341,240 341,240 341,240 341,240 341,241 341,241 341,241 341,241 342,242 342,242 342,242 342,242 342,243 342,243 342,243 342,243 342,244 343,244 343,244 343,244 343,245 343,245 343,245 343,245 343,246 343,246 343,246 344,246 344,247 344,247 344,247 344,247 344,247 344,248 344,248 345,248 345,248 345,249 345,249 345,249 345,249 345,250 345,250 345,250 346,250 346,251 346,251 346,251 346,251 346,252 346,252 346,252 346,252 347,253 347,253 347,253 347,253 347,254 347,254 347,254 347,254 348,255 348,255 348,255 348,255 348,255 348,256 348,256 349,256 349,256 349,257 349,257 349,257 349,257 349,258 350,258 350,258 350,258 350,259 350,259 350,259 350,259 351,260 351,260 351,260 351,260 351,261 351,261 352,261 352,261 352,262 352,262 352,262 352,262 353,262 353,263 353,263 353,263 353,263 354,264 354,264 354,264 354,264 354,265 354,265 355,265 355,265 355,266 355,266 355,266 356,266 356,267 356,267 356,267 356,267 357,268 357,268 357,268 357,268 357,269 358,269 358,269 358,269 358,269 358,270 359,270 359,270 359,270 359,271 359,271 359,271 360,271 360,272 360,272 360,272 360,272 361,273 361,273 361,273 361,273 361,274 361,274 362,274 362,274 362,275 362,275 362,275 362,275 362,276 362,276 363,276 363,276 363,276 363,277 363,277 363,277 363,277 363,278 364,278 364,278 364,278 364,279 364,279 364,279 364,279 364,280 364,280 364,280 364,280 364,281 364,281 364,281 364,281 364,282 365,282 365,282 365,282 365,283 365,283 365,283 365,283 365,283 365,284 365,284 365,284 365,284 365,285 365,285 365,285 365,285 365,286 365,286 365,286 365,286 365,287 365,287 364,287 364,287 364,288 364,288 364,288 364,288 364,289 364,289 364,289 364,289 364,290 364,290 364,290 364,290 364,290 364,291 364,291 364,291 364,291 364,292 364,292 363,292 363,292 363,293 363,293 363,293 363,293 363,294 363,294 363,294 363,294 363,295 363,295 363,295 363,295 363,296 362,296 362,296 362,296 362,297 362,297 362,297 362,297 362,297 362,298 362,298 362,298 362,298 362,299 362,299 362,299 361,299 361,300 361,300 361,300 361,300 361,301 361,301 361,301 361,301 361,302 361,302 361,302 360,302 360,303 360,303 360,303 360,303 360,304 360,304 360,304 360,304 360,305 360,305 360,305 359,305 359,305 359,306 359,306 359,306 359,306 359,307 359,307 359,307 359,307 358,308 358,308 358,308 358,308 358,309 358,309 358,309 358,309 358,310 357,310 357,310 357,310 357,311 357,311 357,311 357,311 357,312 357,312 356,312 356,312 356,312 356,313 356,313 356,313 356,313 356,314 355,314 355,314 355,314 355,315 355,315 355,315 355,315 355,316 354,316 354,316 354,316 354,317 354,317 354,317 354,317 353,318 353,318 353,318 353,318 353,319 353,319 353,319 352,319 352,319 352,320 352,320 352,320 352,320 352,321 351,321 351,321 351,321 351,322 351,322 351,322 351,322 350,323 350,323 350,323 350,323 350,324 350,324 349,324 349,324 349,325 349,325 325,325 325,325' style='stroke:#333333;fill:#00BFFF'/>
71
+ <polyline points='395,257 395,256 395,256 395,256 395,255 395,255 394,254 394,254 394,253 394,253 394,253 394,252 394,252 394,251 394,251 394,251 394,250 394,250 394,249 394,249 394,248 394,248 394,248 394,247 394,247 394,246 394,246 394,246 394,245 394,245 394,244 394,244 394,243 394,243 394,243 393,242 393,242 393,241 393,241 393,241 393,240 393,240 393,239 393,239 393,238 393,238 393,238 393,237 393,237 393,236 393,236 393,236 393,235 393,235 393,234 393,234 393,233 393,233 393,233 393,232 392,232 392,231 392,231 392,231 392,230 392,230 392,229 392,229 392,228 392,228 392,228 392,227 392,227 392,226 392,226 392,225 392,225 392,225 392,224 392,224 392,223 392,223 392,223 392,222 391,222 391,221 391,221 391,220 391,220 391,220 391,219 391,219 391,218 391,218 391,218 391,217 391,217 391,216 391,216 391,215 391,215 391,215 391,214 391,214 391,213 391,213 390,213 390,212 390,212 390,211 390,211 390,210 390,210 390,210 390,209 390,209 390,208 390,208 390,208 390,207 390,207 390,206 390,206 390,205 390,205 390,205 390,204 390,204 389,203 389,203 389,203 389,202 389,202 389,201 389,201 389,200 389,200 389,200 389,199 389,199 389,198 389,198 389,197 389,197 389,197 389,196 389,196 389,195 389,195 389,195 389,194 389,194 389,193 388,193 388,192 388,192 388,192 388,191 388,191 388,190 388,190 388,190 388,189 388,189 388,188 388,188 388,187 388,187 388,187 388,186 388,186 388,185 388,185 388,185 388,184 388,184 388,183 388,183 388,182 388,182 388,182 388,181 388,181 388,180 388,180 388,180 388,179 388,179 388,178 388,178 387,177 387,177 387,177 387,176 387,176 387,175 387,175 387,175 387,174 387,174 387,173 387,173 387,172 387,172 387,172 387,171 387,171 387,170 387,170 387,169 387,169 387,169 387,168 387,168 387,167 387,167 387,167 387,166 387,166 387,165 387,165 387,164 387,164 387,164 387,163 387,163 387,162 387,162 387,162 387,161 387,161 387,160 387,160 387,159 387,159 387,159 387,158 387,158 387,157 387,157 387,157 388,156 388,156 388,155 388,155 388,154 388,154 388,154 388,153 388,153 388,152 388,152 388,152 388,151 388,151 388,150 388,150 388,149 388,149 388,149 388,148 388,148 388,147 388,147 388,147 388,146 388,146 388,145 388,145 388,144 388,144 388,144 388,143 388,143 388,142 388,142 388,141 389,141 389,141 389,140 389,140 389,139 389,139 389,139 389,138 389,138 389,137 389,137 389,136 389,136 389,136 389,135 389,135 389,134 389,134 389,134 389,133 389,133 389,132 389,132 389,131 390,131 390,131 390,130 390,130 390,129 390,129 390,129 390,128 390,128 390,127 390,127 390,126 390,126 390,126 390,125 390,125 390,124 390,124 390,124 390,123 390,123 390,122 390,122 391,121 391,121 391,121 391,120 391,120 391,119 391,119 391,118 391,118 391,118 391,117 391,117 391,116 391,116 391,116 391,115 391,115 391,114 391,114 391,113 391,113 391,113 391,112 391,112 391,111 391,111 391,111 392,110 392,110 392,109 392,109 392,108 392,108 392,108 392,107 392,107 392,106 392,106 392,106 392,105 392,105 392,104 392,104 392,103 392,103 392,103 392,102 392,102 392,101 392,101 392,101 392,100 392,100 392,99 392,99 392,98 392,98 392,98 392,97 392,97 392,96 392,96 392,96 392,95 392,95 392,94 392,94 392,93 392,93 392,93 393,92 393,92 393,91 393,91 393,90 393,90 393,90 393,89 393,89 393,88 393,88 393,88 393,87 393,87 393,86 393,86 393,85 393,85 393,85 393,84 393,84 393,83 393,83 393,83 393,82 393,82 393,81 393,81 393,80 393,80 393,80 393,79 393,79 393,78 393,78 393,78 393,77 393,77 393,76 393,76 393,75 393,75 393,75 393,74 393,74 393,73 393,73 393,73 393,72 393,72 393,71 393,71 393,70 393,70 393,70 393,69 393,69 393,68 393,68 393,68 393,67 393,67 393,66 393,66 393,65 393,65 393,65 393,64 393,64 393,63 393,63 393,62 393,62 393,62 393,61 393,61 393,60 393,60 393,60 393,59 393,59 393,58 393,58 393,57 393,57 393,57 393,56 393,56 393,55 393,55 393,55 393,54 393,54 393,53 393,53 393,52 393,52 393,52 393,51 393,51 393,50 393,50 393,50 393,49 393,49 393,48 394,48 394,47 394,47 394,47 394,46 394,46 394,45 394,45 394,45 394,44 394,44 394,43 404,43 404,44 404,44 404,45 404,45 404,45 404,46 404,46 404,47 404,47 404,47 404,48 404,48 404,49 404,49 404,50 404,50 404,50 404,51 404,51 404,52 404,52 404,52 404,53 404,53 404,54 404,54 404,55 404,55 404,55 404,56 404,56 404,57 404,57 404,57 404,58 404,58 404,59 404,59 404,60 404,60 404,60 404,61 404,61 404,62 404,62 404,62 404,63 405,63 405,64 405,64 405,65 405,65 405,65 405,66 405,66 405,67 405,67 405,68 405,68 405,68 405,69 405,69 405,70 405,70 405,70 405,71 405,71 405,72 405,72 405,73 405,73 405,73 405,74 405,74 405,75 405,75 405,75 405,76 405,76 405,77 405,77 405,78 405,78 405,78 405,79 405,79 405,80 405,80 405,80 405,81 405,81 405,82 405,82 405,83 405,83 405,83 405,84 405,84 405,85 405,85 405,85 405,86 405,86 405,87 405,87 405,88 405,88 405,88 405,89 405,89 405,90 405,90 405,90 405,91 405,91 405,92 405,92 405,93 405,93 405,93 405,94 405,94 405,95 405,95 405,96 405,96 405,96 405,97 405,97 405,98 405,98 405,98 405,99 405,99 405,100 405,100 405,101 405,101 405,101 405,102 405,102 405,103 405,103 405,103 405,104 406,104 406,105 406,105 406,106 406,106 406,106 406,107 406,107 406,108 406,108 406,108 406,109 406,109 406,110 406,110 406,111 406,111 406,111 406,112 406,112 406,113 406,113 406,113 406,114 406,114 406,115 406,115 406,116 406,116 406,116 407,117 407,117 407,118 407,118 407,118 407,119 407,119 407,120 407,120 407,121 407,121 407,121 407,122 407,122 407,123 407,123 407,124 407,124 407,124 407,125 407,125 407,126 407,126 407,126 408,127 408,127 408,128 408,128 408,129 408,129 408,129 408,130 408,130 408,131 408,131 408,131 408,132 408,132 408,133 408,133 408,134 408,134 408,134 408,135 408,135 408,136 408,136 408,136 409,137 409,137 409,138 409,138 409,139 409,139 409,139 409,140 409,140 409,141 409,141 409,141 409,142 409,142 409,143 409,143 409,144 409,144 409,144 409,145 409,145 409,146 409,146 409,147 409,147 409,147 409,148 409,148 410,149 410,149 410,149 410,150 410,150 410,151 410,151 410,152 410,152 410,152 410,153 410,153 410,154 410,154 410,154 410,155 410,155 410,156 410,156 410,157 410,157 410,157 410,158 410,158 410,159 410,159 410,159 410,160 410,160 410,161 410,161 410,162 410,162 410,162 410,163 410,163 410,164 410,164 410,164 410,165 410,165 410,166 410,166 410,167 410,167 410,167 410,168 410,168 410,169 410,169 410,169 410,170 410,170 410,171 410,171 410,172 410,172 410,172 410,173 410,173 410,174 410,174 410,175 410,175 410,175 410,176 410,176 410,177 410,177 410,177 410,178 410,178 410,179 410,179 410,180 410,180 410,180 410,181 410,181 410,182 410,182 410,182 410,183 410,183 410,184 410,184 410,185 410,185 410,185 410,186 409,186 409,187 409,187 409,187 409,188 409,188 409,189 409,189 409,190 409,190 409,190 409,191 409,191 409,192 409,192 409,192 409,193 409,193 409,194 409,194 409,195 409,195 409,195 409,196 409,196 409,197 409,197 409,197 409,198 408,198 408,199 408,199 408,200 408,200 408,200 408,201 408,201 408,202 408,202 408,203 408,203 408,203 408,204 408,204 408,205 408,205 408,205 408,206 408,206 408,207 408,207 408,208 407,208 407,208 407,209 407,209 407,210 407,210 407,210 407,211 407,211 407,212 407,212 407,213 407,213 407,213 407,214 407,214 407,215 407,215 407,215 407,216 407,216 407,217 406,217 406,218 406,218 406,218 406,219 406,219 406,220 406,220 406,220 406,221 406,221 406,222 406,222 406,223 406,223 406,223 406,224 406,224 406,225 406,225 406,225 406,226 406,226 405,227 405,227 405,228 405,228 405,228 405,229 405,229 405,230 405,230 405,231 405,231 405,231 405,232 405,232 405,233 405,233 405,233 405,234 405,234 405,235 405,235 405,236 405,236 405,236 404,237 404,237 404,238 404,238 404,238 404,239 404,239 404,240 404,240 404,241 404,241 404,241 404,242 404,242 404,243 404,243 404,243 404,244 404,244 404,245 404,245 404,246 404,246 404,246 404,247 404,247 404,248 403,248 403,248 403,249 403,249 403,250 403,250 403,251 403,251 403,251 403,252 403,252 403,253 403,253 403,253 403,254 403,254 403,255 403,255 403,256 403,256 403,256 403,257 395,257 395,257' style='stroke:#333333;fill:#00688B'/>
72
+ </g><g style='stroke-width:0.9448818897637796;stroke-linejoin:round;stroke-linecap:round'>
73
+ <rect x='294' y='454' width='3' height='3' transform='rotate(-315,296,455)' style='stroke:#00CDCD;fill:#00CDCD'/>
74
+ <rect x='270' y='352' width='3' height='3' transform='rotate(-315,271,354)' style='stroke:#00CDCD;fill:#00CDCD'/>
75
+ <rect x='249' y='411' width='3' height='3' transform='rotate(-315,250,412)' style='stroke:#00CDCD;fill:#00CDCD'/>
76
+ <rect x='296' y='432' width='3' height='3' transform='rotate(-315,298,433)' style='stroke:#00CDCD;fill:#00CDCD'/>
77
+ <rect x='258' y='423' width='3' height='3' transform='rotate(-315,259,424)' style='stroke:#00CDCD;fill:#00CDCD'/>
78
+ <rect x='273' y='374' width='3' height='3' transform='rotate(-315,275,375)' style='stroke:#00CDCD;fill:#00CDCD'/>
79
+ <rect x='294' y='357' width='3' height='3' transform='rotate(-315,295,358)' style='stroke:#00CDCD;fill:#00CDCD'/>
80
+ <rect x='284' y='356' width='3' height='3' transform='rotate(-315,286,358)' style='stroke:#00CDCD;fill:#00CDCD'/>
81
+ <rect x='279' y='440' width='3' height='3' transform='rotate(-315,280,441)' style='stroke:#00CDCD;fill:#00CDCD'/>
82
+ <rect x='268' y='415' width='3' height='3' transform='rotate(-315,270,416)' style='stroke:#00CDCD;fill:#00CDCD'/>
83
+ <rect x='329' y='284' width='3' height='3' transform='rotate(-315,330,285)' style='stroke:#00CDCD;fill:#00CDCD'/>
84
+ <rect x='356' y='283' width='3' height='3' transform='rotate(-315,358,285)' style='stroke:#00CDCD;fill:#00CDCD'/>
85
+ <rect x='346' y='301' width='3' height='3' transform='rotate(-315,347,303)' style='stroke:#00CDCD;fill:#00CDCD'/>
86
+ <rect x='342' y='272' width='3' height='3' transform='rotate(-315,343,273)' style='stroke:#00CDCD;fill:#00CDCD'/>
87
+ <rect x='359' y='200' width='3' height='3' transform='rotate(-315,360,201)' style='stroke:#00CDCD;fill:#00CDCD'/>
88
+ <rect x='328' y='273' width='3' height='3' transform='rotate(-315,329,274)' style='stroke:#00CDCD;fill:#00CDCD'/>
89
+ <rect x='332' y='323' width='3' height='3' transform='rotate(-315,334,324)' style='stroke:#00CDCD;fill:#00CDCD'/>
90
+ <rect x='356' y='311' width='3' height='3' transform='rotate(-315,357,312)' style='stroke:#00CDCD;fill:#00CDCD'/>
91
+ <rect x='326' y='251' width='3' height='3' transform='rotate(-315,328,252)' style='stroke:#00CDCD;fill:#00CDCD'/>
92
+ <rect x='340' y='298' width='3' height='3' transform='rotate(-315,341,299)' style='stroke:#00CDCD;fill:#00CDCD'/>
93
+ <rect x='410' y='185' width='3' height='3' transform='rotate(-315,411,186)' style='stroke:#00CDCD;fill:#00CDCD'/>
94
+ <rect x='421' y='255' width='3' height='3' transform='rotate(-315,422,257)' style='stroke:#00CDCD;fill:#00CDCD'/>
95
+ <rect x='405' y='42' width='3' height='3' transform='rotate(-315,407,43)' style='stroke:#00CDCD;fill:#00CDCD'/>
96
+ <rect x='415' y='159' width='3' height='3' transform='rotate(-315,417,160)' style='stroke:#00CDCD;fill:#00CDCD'/>
97
+ <rect x='408' y='145' width='3' height='3' transform='rotate(-315,409,147)' style='stroke:#00CDCD;fill:#00CDCD'/>
98
+ <rect x='396' y='61' width='3' height='3' transform='rotate(-315,397,62)' style='stroke:#00CDCD;fill:#00CDCD'/>
99
+ <rect x='418' y='141' width='3' height='3' transform='rotate(-315,419,143)' style='stroke:#00CDCD;fill:#00CDCD'/>
100
+ <rect x='399' y='213' width='3' height='3' transform='rotate(-315,400,215)' style='stroke:#00CDCD;fill:#00CDCD'/>
101
+ <rect x='394' y='189' width='3' height='3' transform='rotate(-315,395,190)' style='stroke:#00CDCD;fill:#00CDCD'/>
102
+ <rect x='394' y='103' width='3' height='3' transform='rotate(-315,395,105)' style='stroke:#00CDCD;fill:#00CDCD'/>
103
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
104
+ <rect x='34' y='6' width='198' height='17' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#D9D9D9'/>
105
+ </g><text x='128' y='17' lengthAdjust='spacingAndGlyphs' textLength='11px' style='font-size:8.8px;fill:#1A1A1A'>OJ</text>
106
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
107
+ <rect x='238' y='6' width='198' height='17' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#D9D9D9'/>
108
+ </g><text x='332' y='17' lengthAdjust='spacingAndGlyphs' textLength='11px' style='font-size:8.8px;fill:#1A1A1A'>VC</text>
109
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
110
+ <polyline points='71,479 71,476' style='stroke:#333333'/>
111
+ <polyline points='133,479 133,476' style='stroke:#333333'/>
112
+ <polyline points='195,479 195,476' style='stroke:#333333'/>
113
+ </g><text x='63' y='487' lengthAdjust='spacingAndGlyphs' textLength='16px' style='font-size:8.8px;fill:#4D4D4D'>0.5</text>
114
+ <text x='131' y='487' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#4D4D4D'>1</text>
115
+ <text x='193' y='487' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#4D4D4D'>2</text>
116
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
117
+ <polyline points='275,479 275,476' style='stroke:#333333'/>
118
+ <polyline points='337,479 337,476' style='stroke:#333333'/>
119
+ <polyline points='399,479 399,476' style='stroke:#333333'/>
120
+ </g><text x='267' y='487' lengthAdjust='spacingAndGlyphs' textLength='16px' style='font-size:8.8px;fill:#4D4D4D'>0.5</text>
121
+ <text x='334' y='487' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#4D4D4D'>1</text>
122
+ <text x='396' y='487' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#4D4D4D'>2</text>
123
+ <text x='19' y='378' lengthAdjust='spacingAndGlyphs' textLength='11px' style='font-size:8.8px;fill:#4D4D4D'>10</text>
124
+ <text x='19' y='239' lengthAdjust='spacingAndGlyphs' textLength='11px' style='font-size:8.8px;fill:#4D4D4D'>20</text>
125
+ <text x='19' y='100' lengthAdjust='spacingAndGlyphs' textLength='11px' style='font-size:8.8px;fill:#4D4D4D'>30</text>
126
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
127
+ <polyline points='31,375 34,375' style='stroke:#333333'/>
128
+ <polyline points='31,236 34,236' style='stroke:#333333'/>
129
+ <polyline points='31,97 34,97' style='stroke:#333333'/>
130
+ </g><text x='222' y='500' lengthAdjust='spacingAndGlyphs' textLength='26px' style='font-size:11.0px;fill:#000000'>dose</text>
131
+ <text x='13' y='259' lengthAdjust='spacingAndGlyphs' textLength='20px' style='font-size:11.0px;fill:#000000' transform='rotate(-90,13,259)'>len</text>
132
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
133
+ <rect x='447' y='202' width='53' height='94' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#FFFFFF'/>
134
+ </g><text x='453' y='216' lengthAdjust='spacingAndGlyphs' textLength='26px' style='font-size:11.0px;fill:#000000'>dose</text>
135
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
136
+ <rect x='453' y='222' width='23' height='23' style='stroke:#FFFFFF;fill:#F2F2F2'/>
137
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:miter;stroke-linecap:round;stroke-miterlimit:10.0'>
138
+ <rect x='454' y='222' width='22' height='22' style='stroke:#333333;fill:#00688B'/>
139
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
140
+ <rect x='453' y='245' width='23' height='23' style='stroke:#FFFFFF;fill:#F2F2F2'/>
141
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:miter;stroke-linecap:round;stroke-miterlimit:10.0'>
142
+ <rect x='454' y='245' width='22' height='22' style='stroke:#333333;fill:#00BFFF'/>
143
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
144
+ <rect x='453' y='268' width='23' height='23' style='stroke:#FFFFFF;fill:#F2F2F2'/>
145
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:miter;stroke-linecap:round;stroke-miterlimit:10.0'>
146
+ <rect x='454' y='268' width='22' height='22' style='stroke:#333333;fill:#00FFFF'/>
147
+ </g><text x='479' y='236' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#000000'>2</text>
148
+ <text x='479' y='259' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#000000'>1</text>
149
+ <text x='479' y='282' lengthAdjust='spacingAndGlyphs' textLength='16px' style='font-size:8.8px;fill:#000000'>0.5</text>
150
+ </svg>
@@ -61,36 +61,39 @@ context "ISLR" do
61
61
  it "should apply a function to all elements of the matrix: ex: sqrt" do
62
62
  x = R.matrix(data: R.c(1, 2, 3, 4), nrow: 2, ncol: 2, byrow: true)
63
63
  z = x.sqrt
64
- expect(z[1, 2] == 1.73).to eq true
65
- expect(z[2, 1] == 1.41).to eq true
64
+ expect(z[1, 2].all__equal(1.41421356)).to eq true
65
+ expect(z[2, 1].all__equal(1.73205080)).to eq true
66
66
  end
67
67
 
68
68
  it "should generate a vector of random normal variables using rnorm" do
69
+ R.set__seed(3)
69
70
  x = R.rnorm(50)
70
71
  y = x + R.rnorm(50, mean: 40, sd: 0.1)
71
- expect(R.cor(x, y) == 0.995).to eq true
72
+ expect(R.cor(x, y).all__equal(0.995717314227608)).to eq true
73
+ expect(x.cor(y).all__equal(0.995717314227608)).to eq true
72
74
  end
73
75
 
74
76
  it "should allow to setting the seed" do
75
77
  R.set__seed(1303)
76
78
  x = R.rnorm(50)
77
- expect(x[1] == -1.1440).to eq true
78
- expect(x[2] == 1.3421).to eq true
79
- expect(x[4] == 0.5364).to eq true
79
+ expect(x[1].all__equal(-1.14397631)).to eq true
80
+ expect(x[2].all__equal(1.34212936)).to eq true
81
+ expect(x[4].all__equal(0.53639251)).to eq true
80
82
  end
81
83
 
82
84
  it "should calculate the mean" do
83
85
  R.set__seed(3)
84
86
  y = R.rnorm(100)
85
- expect(y.mean == 0.0110).to eq true
87
+ expect(y.mean.all__equal(0.0110355710)).to eq true
86
88
  end
87
89
 
88
90
  it "should calculate the variance" do
89
91
  R.set__seed(3)
90
92
  y = R.rnorm(100)
91
- expect(y.var == 0.7329).to eq true
92
- expect(y.var.sqrt == 0.8561).to eq true
93
- expect(y.sd == 0.8561).to eq true
93
+
94
+ expect(y.var.all__equal(0.732867501277449)).to eq true
95
+ expect(y.var.sqrt.all__equal(0.856076808047881)).to eq true
96
+ expect(y.sd.all__equal(0.856076808047881)).to eq true
94
97
  end
95
98
 
96
99
  end
@@ -115,12 +118,10 @@ context "ISLR" do
115
118
  sleep(3)
116
119
  end
117
120
 
118
- # does not print anything... open issue!
119
121
  it "should create a jpeg file" do
120
- R.jpeg("/home/rbotafogo/desenv/galaaz/examples/islr/Figure.jpg")
121
- x = R.rnorm(100)
122
- y = R.rnorm(100)
123
- plot = R.qplot(x, y, col: "green")
122
+ R.jpeg("/home/rbotafogo/desenv/galaaz/examples/islr/x_y_rnorm.jpg")
123
+ R.df = R.data__frame(x: R.rnorm(100), y: R.rnorm(100))
124
+ puts R.qplot(:df.x, :df.y, col: "green")
124
125
  R.dev__off
125
126
  end
126
127
 
@@ -128,10 +129,11 @@ context "ISLR" do
128
129
  x = R.seq(1, 10)
129
130
  expect(x[5] == 5).to eq true
130
131
  y = R.seq(-~:pi, ~:pi, length: 50)
131
- expect(y[1] == -3.14159265).to eq true
132
- expect(y[7] == -2.37222302).to eq true
133
- expect(y[26] == 0.06411414).to eq true
132
+ expect(y[1].all__equal(-3.1415926535)).to eq true
133
+ expect(y[7].all__equal(-2.3722230241)).to eq true
134
+ expect(y[26].all__equal(0.0641141357875465)).to eq true
134
135
  end
136
+
135
137
  =begin
136
138
  it "creates contour plots with ggplot" do
137
139
  x = y = R.seq(-R.pi, R.pi, length: 50)
@@ -140,6 +142,7 @@ context "ISLR" do
140
142
 
141
143
  R.awt
142
144
  print R.ggplot(df, E.aes(:x, :y, z: f))
145
+ R.dev__off
143
146
  end
144
147
  =end
145
148
  end
@@ -26,13 +26,15 @@ require 'ggplot'
26
26
  R.install_and_loads('ISLR', 'MASS')
27
27
 
28
28
  # Simple linear regression from ISLR book. Chapter 3 Lab
29
+ # We are using qplot for plotting. It would be better to use
30
+ # ggplot2, but this is just to show simple ploting.
29
31
 
30
32
  # load boston data frame on variable boston
31
33
  boston = ~:Boston
32
34
 
33
35
  puts boston.names
34
36
 
35
- boston_lm = R.lm(+:medv =~ +:lstat, data: :Boston)
37
+ boston_lm = R.lm((:medv.til :lstat), data: :Boston)
36
38
  # puts boston_lm.str
37
39
  # puts boston_lm.summary
38
40
  puts boston_lm.names
@@ -40,12 +42,16 @@ puts boston_lm.coef
40
42
  puts boston_lm.confint
41
43
  conf = R.predict(boston_lm, R.data__frame(lstat: (R.c(5, 10, 15))), interval: "confidence")
42
44
  puts conf
45
+
43
46
  pred = R.predict(boston_lm, R.data__frame(lstat: (R.c(5, 10, 15))), interval: "prediction")
44
47
  puts pred
45
48
 
49
+ puts boston.lstat
50
+ puts boston.medv
51
+
46
52
  R.awt
47
53
 
48
- puts R.qplot(boston.lstat, boston.medv, col: "red") +
54
+ puts R.qplot(:Boston.lstat, :Boston.medv, col: "red") +
49
55
  R.geom_abline(intercept: boston_lm.coef[1],
50
56
  slope: boston_lm.coef[2],
51
57
  color: "blue",
@@ -59,19 +65,22 @@ puts R.qplot(boston.lstat, boston.medv, col: "red") +
59
65
  sleep(2)
60
66
  R.grid__newpage
61
67
 
62
- puts R.qplot(R.predict(boston_lm), R.residuals(boston_lm))
68
+ R.my_data = R.data__frame(pred: R.predict(boston_lm), res: R.residuals(boston_lm))
69
+ puts R.qplot(:my_data.pred, :my_data.res)
63
70
 
64
71
  sleep(2)
65
72
  R.grid__newpage
66
73
 
67
- puts R.qplot(R.predict(boston_lm), R.rstudent(boston_lm))
74
+ R.my_data = R.data__frame(pred: R.predict(boston_lm), res: R.rstudent(boston_lm))
75
+ puts R.qplot(:my_data.pred, :my_data.res)
68
76
 
69
77
  sleep(2)
70
78
  R.grid__newpage
71
79
 
72
80
  vals = R.hatvalues(boston_lm)
81
+ R.my_data = R.data__frame(size: (1..vals.size), values: vals)
73
82
  # method size returns a Numeric... size is equivalent to 'length << 0'
74
- puts R.qplot((1..vals.size), vals)
83
+ puts R.qplot(:my_data.size, :my_data.values)
75
84
 
76
85
  sleep(2)
77
86
  R.grid__newpage
@@ -27,10 +27,9 @@ require 'ggplot'
27
27
  R.install_and_loads('ISLR', 'MASS')
28
28
 
29
29
  # Multiple linear regression from ISLR book. Chapter 3 Lab, pg 113
30
- lm_fit = R.lm(+:medv =~ +:lstat + +:age, data: :Boston)
30
+ lm_fit = R.lm((:medv.til :lstat + :age), data: :Boston)
31
31
  puts lm_fit.summary
32
32
 
33
33
  # Non-linear Transformations of the Predictors
34
- # Creating a more complex formula requires the use of R.formula
35
- lm_fit5 = R.lm(R.formula("medv ~ poly(lstat, 5)"), data: :Boston)
34
+ lm_fit5 = R.lm((:medv.til E.poly(:lstat, 5)), data: :Boston)
36
35
  puts lm_fit5.summary
@@ -50,7 +50,7 @@ context "ISLR" do
50
50
  # every element and check if they are na or not. Note that the return os
51
51
  # is__na is an R::Vector, so we need to 'pop' the value to a Ruby value in
52
52
  # ordet to apply the '?' method
53
- expect(@hitters.Salary.sum { |e| ((e.is__na == true).pop) ? 1 : 0 }).to eq 59
53
+ expect(@hitters.Salary.sum { |e| (e.is__na == true)? 1 : 0 }).to eq 59
54
54
  end
55
55
 
56
56
  it "should remove missing values with na__omit" do