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,236 @@
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,306 232,306' 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
+ <polyline points='71,289 71,215' style='stroke:#333333'/>
20
+ <polyline points='71,379 71,400' style='stroke:#333333'/>
21
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
22
+ <polyline points='48,289 48,379 95,379 95,289 48,289 48,289' style='stroke:#333333;fill:#FFFFFF'/>
23
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
24
+ <polyline points='48,344 95,344' style='stroke:#333333'/>
25
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
26
+ <polyline points='133,158 133,135' style='stroke:#333333'/>
27
+ <polyline points='133,232 133,313' style='stroke:#333333'/>
28
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
29
+ <polyline points='110,158 110,232 156,232 156,158 110,158 110,158' style='stroke:#333333;fill:#FFFFFF'/>
30
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
31
+ <polyline points='110,188 156,188' style='stroke:#333333'/>
32
+ </g><g style='stroke-width:0.9448818897637796;stroke-linejoin:round;stroke-linecap:round'>
33
+ <circle cx='195' cy='85' r='2' style='stroke:#333333;fill:#333333'/>
34
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
35
+ <polyline points='195,138 195,106' style='stroke:#333333'/>
36
+ <polyline points='195,173 195,203' style='stroke:#333333'/>
37
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
38
+ <polyline points='172,138 172,173 218,173 218,138 172,138 172,138' style='stroke:#333333;fill:#FFFFFF'/>
39
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
40
+ <polyline points='172,154 218,154' style='stroke:#333333'/>
41
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
42
+ <polyline points='71,289 71,215' style='stroke:#333333'/>
43
+ <polyline points='71,379 71,400' style='stroke:#333333'/>
44
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
45
+ <polyline points='48,289 48,379 95,379 95,289 48,289 48,289' style='stroke:#333333;fill:#00FFFF'/>
46
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
47
+ <polyline points='48,344 95,344' style='stroke:#333333'/>
48
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
49
+ <polyline points='133,158 133,135' style='stroke:#333333'/>
50
+ <polyline points='133,232 133,313' style='stroke:#333333'/>
51
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
52
+ <polyline points='110,158 110,232 156,232 156,158 110,158 110,158' style='stroke:#333333;fill:#00BFFF'/>
53
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
54
+ <polyline points='110,188 156,188' style='stroke:#333333'/>
55
+ </g><g style='stroke-width:0.9448818897637796;stroke-linejoin:round;stroke-linecap:round'>
56
+ <circle cx='195' cy='85' r='2' style='stroke:#333333;fill:#333333'/>
57
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
58
+ <polyline points='195,138 195,106' style='stroke:#333333'/>
59
+ <polyline points='195,173 195,203' style='stroke:#333333'/>
60
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
61
+ <polyline points='172,138 172,173 218,173 218,138 172,138 172,138' style='stroke:#333333;fill:#00688B'/>
62
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
63
+ <polyline points='172,154 218,154' style='stroke:#333333'/>
64
+ </g><g style='stroke-width:0.9448818897637796;stroke-linejoin:round;stroke-linecap:round'>
65
+ <circle cx='71' cy='303' r='2' style='stroke:#000000;fill:#000000'/>
66
+ <circle cx='71' cy='215' r='2' style='stroke:#000000;fill:#000000'/>
67
+ <circle cx='71' cy='269' r='2' style='stroke:#000000;fill:#000000'/>
68
+ <circle cx='71' cy='379' r='2' style='stroke:#000000;fill:#000000'/>
69
+ <circle cx='71' cy='313' r='2' style='stroke:#000000;fill:#000000'/>
70
+ <circle cx='71' cy='375' r='2' style='stroke:#000000;fill:#000000'/>
71
+ <circle cx='71' cy='400' r='2' style='stroke:#000000;fill:#000000'/>
72
+ <circle cx='71' cy='383' r='2' style='stroke:#000000;fill:#000000'/>
73
+ <circle cx='71' cy='285' r='2' style='stroke:#000000;fill:#000000'/>
74
+ <circle cx='71' cy='379' r='2' style='stroke:#000000;fill:#000000'/>
75
+ <circle cx='133' cy='240' r='2' style='stroke:#000000;fill:#000000'/>
76
+ <circle cx='133' cy='190' r='2' style='stroke:#000000;fill:#000000'/>
77
+ <circle cx='133' cy='186' r='2' style='stroke:#000000;fill:#000000'/>
78
+ <circle cx='133' cy='147' r='2' style='stroke:#000000;fill:#000000'/>
79
+ <circle cx='133' cy='236' r='2' style='stroke:#000000;fill:#000000'/>
80
+ <circle cx='133' cy='164' r='2' style='stroke:#000000;fill:#000000'/>
81
+ <circle cx='133' cy='156' r='2' style='stroke:#000000;fill:#000000'/>
82
+ <circle cx='133' cy='220' r='2' style='stroke:#000000;fill:#000000'/>
83
+ <circle cx='133' cy='313' r='2' style='stroke:#000000;fill:#000000'/>
84
+ <circle cx='133' cy='135' r='2' style='stroke:#000000;fill:#000000'/>
85
+ <circle cx='195' cy='160' r='2' style='stroke:#000000;fill:#000000'/>
86
+ <circle cx='195' cy='147' r='2' style='stroke:#000000;fill:#000000'/>
87
+ <circle cx='195' cy='203' r='2' style='stroke:#000000;fill:#000000'/>
88
+ <circle cx='195' cy='174' r='2' style='stroke:#000000;fill:#000000'/>
89
+ <circle cx='195' cy='170' r='2' style='stroke:#000000;fill:#000000'/>
90
+ <circle cx='195' cy='85' r='2' style='stroke:#000000;fill:#000000'/>
91
+ <circle cx='195' cy='147' r='2' style='stroke:#000000;fill:#000000'/>
92
+ <circle cx='195' cy='135' r='2' style='stroke:#000000;fill:#000000'/>
93
+ <circle cx='195' cy='106' r='2' style='stroke:#000000;fill:#000000'/>
94
+ <circle cx='195' cy='195' r='2' style='stroke:#000000;fill:#000000'/>
95
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
96
+ <rect x='238' y='23' width='198' height='453' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#EBEBEB'/>
97
+ </g><g style='stroke-width:0.7113188976377953;stroke-linejoin:round;stroke-linecap:butt'>
98
+ <polyline points='238,444 436,444' style='stroke:#FFFFFF'/>
99
+ <polyline points='238,306 436,306' style='stroke:#FFFFFF'/>
100
+ <polyline points='238,167 436,167' style='stroke:#FFFFFF'/>
101
+ <polyline points='238,28 436,28' style='stroke:#FFFFFF'/>
102
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
103
+ <polyline points='238,375 436,375' style='stroke:#FFFFFF'/>
104
+ <polyline points='238,236 436,236' style='stroke:#FFFFFF'/>
105
+ <polyline points='238,97 436,97' style='stroke:#FFFFFF'/>
106
+ <polyline points='275,476 275,23' style='stroke:#FFFFFF'/>
107
+ <polyline points='337,476 337,23' style='stroke:#FFFFFF'/>
108
+ <polyline points='399,476 399,23' style='stroke:#FFFFFF'/>
109
+ <polyline points='275,362 275,354' style='stroke:#333333'/>
110
+ <polyline points='275,431 275,455' style='stroke:#333333'/>
111
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
112
+ <polyline points='252,362 252,431 298,431 298,362 252,362 252,362' style='stroke:#333333;fill:#FFFFFF'/>
113
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
114
+ <polyline points='252,415 298,415' style='stroke:#333333'/>
115
+ </g><g style='stroke-width:0.9448818897637796;stroke-linejoin:round;stroke-linecap:round'>
116
+ <circle cx='337' cy='201' r='2' style='stroke:#333333;fill:#333333'/>
117
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
118
+ <polyline points='337,274 337,253' style='stroke:#333333'/>
119
+ <polyline points='337,302 337,325' style='stroke:#333333'/>
120
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
121
+ <polyline points='314,274 314,302 360,302 360,274 314,274 314,274' style='stroke:#333333;fill:#FFFFFF'/>
122
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
123
+ <polyline points='314,285 360,285' style='stroke:#333333'/>
124
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
125
+ <polyline points='399,114 399,43' style='stroke:#333333'/>
126
+ <polyline points='399,189 399,257' style='stroke:#333333'/>
127
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
128
+ <polyline points='376,114 376,189 422,189 422,114 376,114 376,114' style='stroke:#333333;fill:#FFFFFF'/>
129
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
130
+ <polyline points='376,154 422,154' style='stroke:#333333'/>
131
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
132
+ <polyline points='275,362 275,354' style='stroke:#333333'/>
133
+ <polyline points='275,431 275,455' style='stroke:#333333'/>
134
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
135
+ <polyline points='252,362 252,431 298,431 298,362 252,362 252,362' style='stroke:#333333;fill:#00FFFF'/>
136
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
137
+ <polyline points='252,415 298,415' style='stroke:#333333'/>
138
+ </g><g style='stroke-width:0.9448818897637796;stroke-linejoin:round;stroke-linecap:round'>
139
+ <circle cx='337' cy='201' r='2' style='stroke:#333333;fill:#333333'/>
140
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
141
+ <polyline points='337,274 337,253' style='stroke:#333333'/>
142
+ <polyline points='337,302 337,325' style='stroke:#333333'/>
143
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
144
+ <polyline points='314,274 314,302 360,302 360,274 314,274 314,274' style='stroke:#333333;fill:#00BFFF'/>
145
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
146
+ <polyline points='314,285 360,285' style='stroke:#333333'/>
147
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
148
+ <polyline points='399,114 399,43' style='stroke:#333333'/>
149
+ <polyline points='399,189 399,257' style='stroke:#333333'/>
150
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
151
+ <polyline points='376,114 376,189 422,189 422,114 376,114 376,114' style='stroke:#333333;fill:#00688B'/>
152
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
153
+ <polyline points='376,154 422,154' style='stroke:#333333'/>
154
+ </g><g style='stroke-width:0.9448818897637796;stroke-linejoin:round;stroke-linecap:round'>
155
+ <circle cx='275' cy='455' r='2' style='stroke:#000000;fill:#000000'/>
156
+ <circle cx='275' cy='354' r='2' style='stroke:#000000;fill:#000000'/>
157
+ <circle cx='275' cy='412' r='2' style='stroke:#000000;fill:#000000'/>
158
+ <circle cx='275' cy='433' r='2' style='stroke:#000000;fill:#000000'/>
159
+ <circle cx='275' cy='425' r='2' style='stroke:#000000;fill:#000000'/>
160
+ <circle cx='275' cy='375' r='2' style='stroke:#000000;fill:#000000'/>
161
+ <circle cx='275' cy='358' r='2' style='stroke:#000000;fill:#000000'/>
162
+ <circle cx='275' cy='358' r='2' style='stroke:#000000;fill:#000000'/>
163
+ <circle cx='275' cy='442' r='2' style='stroke:#000000;fill:#000000'/>
164
+ <circle cx='275' cy='417' r='2' style='stroke:#000000;fill:#000000'/>
165
+ <circle cx='337' cy='285' r='2' style='stroke:#000000;fill:#000000'/>
166
+ <circle cx='337' cy='285' r='2' style='stroke:#000000;fill:#000000'/>
167
+ <circle cx='337' cy='303' r='2' style='stroke:#000000;fill:#000000'/>
168
+ <circle cx='337' cy='274' r='2' style='stroke:#000000;fill:#000000'/>
169
+ <circle cx='337' cy='201' r='2' style='stroke:#000000;fill:#000000'/>
170
+ <circle cx='337' cy='274' r='2' style='stroke:#000000;fill:#000000'/>
171
+ <circle cx='337' cy='325' r='2' style='stroke:#000000;fill:#000000'/>
172
+ <circle cx='337' cy='313' r='2' style='stroke:#000000;fill:#000000'/>
173
+ <circle cx='337' cy='253' r='2' style='stroke:#000000;fill:#000000'/>
174
+ <circle cx='337' cy='299' r='2' style='stroke:#000000;fill:#000000'/>
175
+ <circle cx='399' cy='186' r='2' style='stroke:#000000;fill:#000000'/>
176
+ <circle cx='399' cy='257' r='2' style='stroke:#000000;fill:#000000'/>
177
+ <circle cx='399' cy='43' r='2' style='stroke:#000000;fill:#000000'/>
178
+ <circle cx='399' cy='160' r='2' style='stroke:#000000;fill:#000000'/>
179
+ <circle cx='399' cy='147' r='2' style='stroke:#000000;fill:#000000'/>
180
+ <circle cx='399' cy='63' r='2' style='stroke:#000000;fill:#000000'/>
181
+ <circle cx='399' cy='143' r='2' style='stroke:#000000;fill:#000000'/>
182
+ <circle cx='399' cy='215' r='2' style='stroke:#000000;fill:#000000'/>
183
+ <circle cx='399' cy='190' r='2' style='stroke:#000000;fill:#000000'/>
184
+ <circle cx='399' cy='104' r='2' style='stroke:#000000;fill:#000000'/>
185
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
186
+ <rect x='34' y='6' width='198' height='17' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#D9D9D9'/>
187
+ </g><text x='128' y='17' lengthAdjust='spacingAndGlyphs' textLength='11px' style='font-size:8.8px;fill:#1A1A1A'>OJ</text>
188
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
189
+ <rect x='238' y='6' width='198' height='17' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#D9D9D9'/>
190
+ </g><text x='332' y='17' lengthAdjust='spacingAndGlyphs' textLength='11px' style='font-size:8.8px;fill:#1A1A1A'>VC</text>
191
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
192
+ <polyline points='71,479 71,476' style='stroke:#333333'/>
193
+ <polyline points='133,479 133,476' style='stroke:#333333'/>
194
+ <polyline points='195,479 195,476' style='stroke:#333333'/>
195
+ </g><text x='63' y='487' lengthAdjust='spacingAndGlyphs' textLength='16px' style='font-size:8.8px;fill:#4D4D4D'>0.5</text>
196
+ <text x='131' y='487' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#4D4D4D'>1</text>
197
+ <text x='193' y='487' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#4D4D4D'>2</text>
198
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
199
+ <polyline points='275,479 275,476' style='stroke:#333333'/>
200
+ <polyline points='337,479 337,476' style='stroke:#333333'/>
201
+ <polyline points='399,479 399,476' style='stroke:#333333'/>
202
+ </g><text x='267' y='487' lengthAdjust='spacingAndGlyphs' textLength='16px' style='font-size:8.8px;fill:#4D4D4D'>0.5</text>
203
+ <text x='334' y='487' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#4D4D4D'>1</text>
204
+ <text x='396' y='487' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#4D4D4D'>2</text>
205
+ <text x='19' y='378' lengthAdjust='spacingAndGlyphs' textLength='11px' style='font-size:8.8px;fill:#4D4D4D'>10</text>
206
+ <text x='19' y='239' lengthAdjust='spacingAndGlyphs' textLength='11px' style='font-size:8.8px;fill:#4D4D4D'>20</text>
207
+ <text x='19' y='100' lengthAdjust='spacingAndGlyphs' textLength='11px' style='font-size:8.8px;fill:#4D4D4D'>30</text>
208
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
209
+ <polyline points='31,375 34,375' style='stroke:#333333'/>
210
+ <polyline points='31,236 34,236' style='stroke:#333333'/>
211
+ <polyline points='31,97 34,97' style='stroke:#333333'/>
212
+ </g><text x='222' y='500' lengthAdjust='spacingAndGlyphs' textLength='26px' style='font-size:11.0px;fill:#000000'>dose</text>
213
+ <text x='13' y='259' lengthAdjust='spacingAndGlyphs' textLength='20px' style='font-size:11.0px;fill:#000000' transform='rotate(-90,13,259)'>len</text>
214
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
215
+ <rect x='447' y='202' width='53' height='94' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#FFFFFF'/>
216
+ </g><text x='453' y='216' lengthAdjust='spacingAndGlyphs' textLength='26px' style='font-size:11.0px;fill:#000000'>dose</text>
217
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
218
+ <rect x='453' y='222' width='23' height='23' style='stroke:#FFFFFF;fill:#F2F2F2'/>
219
+ <polyline points='464,242 464,239' style='stroke:#333333'/>
220
+ <polyline points='464,227 464,224' style='stroke:#333333'/>
221
+ <rect x='456' y='227' width='17' height='12' style='stroke:#333333;fill:#00688B'/>
222
+ <polyline points='456,233 473,233' style='stroke:#333333'/>
223
+ <rect x='453' y='245' width='23' height='23' style='stroke:#FFFFFF;fill:#F2F2F2'/>
224
+ <polyline points='464,265 464,262' style='stroke:#333333'/>
225
+ <polyline points='464,250 464,247' style='stroke:#333333'/>
226
+ <rect x='456' y='250' width='17' height='12' style='stroke:#333333;fill:#00BFFF'/>
227
+ <polyline points='456,256 473,256' style='stroke:#333333'/>
228
+ <rect x='453' y='268' width='23' height='23' style='stroke:#FFFFFF;fill:#F2F2F2'/>
229
+ <polyline points='464,288 464,285' style='stroke:#333333'/>
230
+ <polyline points='464,273 464,270' style='stroke:#333333'/>
231
+ <rect x='456' y='273' width='17' height='12' style='stroke:#333333;fill:#00FFFF'/>
232
+ <polyline points='456,279 473,279' style='stroke:#333333'/>
233
+ </g><text x='479' y='236' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#000000'>2</text>
234
+ <text x='479' y='259' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#000000'>1</text>
235
+ <text x='479' y='282' lengthAdjust='spacingAndGlyphs' textLength='16px' style='font-size:8.8px;fill:#000000'>0.5</text>
236
+ </svg>
@@ -0,0 +1,296 @@
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
+ <polyline points='71,289 71,215' style='stroke:#333333'/>
20
+ <polyline points='71,379 71,400' style='stroke:#333333'/>
21
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
22
+ <polyline points='48,289 48,379 95,379 95,289 48,289 48,289' style='stroke:#333333;fill:#FFFFFF'/>
23
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
24
+ <polyline points='48,343 95,343' style='stroke:#333333'/>
25
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
26
+ <polyline points='133,158 133,135' style='stroke:#333333'/>
27
+ <polyline points='133,232 133,312' style='stroke:#333333'/>
28
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
29
+ <polyline points='110,158 110,232 156,232 156,158 110,158 110,158' style='stroke:#333333;fill:#FFFFFF'/>
30
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
31
+ <polyline points='110,188 156,188' style='stroke:#333333'/>
32
+ </g><g style='stroke-width:0.9448818897637796;stroke-linejoin:round;stroke-linecap:round'>
33
+ <circle cx='195' cy='85' r='2' style='stroke:#333333;fill:#333333'/>
34
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
35
+ <polyline points='195,138 195,106' style='stroke:#333333'/>
36
+ <polyline points='195,173 195,203' style='stroke:#333333'/>
37
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
38
+ <polyline points='172,138 172,173 218,173 218,138 172,138 172,138' style='stroke:#333333;fill:#FFFFFF'/>
39
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
40
+ <polyline points='172,154 218,154' style='stroke:#333333'/>
41
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
42
+ <polyline points='71,289 71,215' style='stroke:#333333'/>
43
+ <polyline points='71,379 71,400' style='stroke:#333333'/>
44
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
45
+ <polyline points='48,289 48,379 95,379 95,289 48,289 48,289' style='stroke:#333333;fill:#F8766D'/>
46
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
47
+ <polyline points='48,343 95,343' style='stroke:#333333'/>
48
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
49
+ <polyline points='133,158 133,135' style='stroke:#333333'/>
50
+ <polyline points='133,232 133,312' style='stroke:#333333'/>
51
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
52
+ <polyline points='110,158 110,232 156,232 156,158 110,158 110,158' style='stroke:#333333;fill:#00BA38'/>
53
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
54
+ <polyline points='110,188 156,188' style='stroke:#333333'/>
55
+ </g><g style='stroke-width:0.9448818897637796;stroke-linejoin:round;stroke-linecap:round'>
56
+ <circle cx='195' cy='85' r='2' style='stroke:#333333;fill:#333333'/>
57
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
58
+ <polyline points='195,138 195,106' style='stroke:#333333'/>
59
+ <polyline points='195,173 195,203' style='stroke:#333333'/>
60
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
61
+ <polyline points='172,138 172,173 218,173 218,138 172,138 172,138' style='stroke:#333333;fill:#619CFF'/>
62
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
63
+ <polyline points='172,154 218,154' style='stroke:#333333'/>
64
+ </g><g style='stroke-width:0.9448818897637796;stroke-linejoin:round;stroke-linecap:round'>
65
+ <circle cx='71' cy='303' r='2' style='stroke:#000000;fill:#000000'/>
66
+ <circle cx='71' cy='215' r='2' style='stroke:#000000;fill:#000000'/>
67
+ <circle cx='71' cy='269' r='2' style='stroke:#000000;fill:#000000'/>
68
+ <circle cx='71' cy='379' r='2' style='stroke:#000000;fill:#000000'/>
69
+ <circle cx='71' cy='312' r='2' style='stroke:#000000;fill:#000000'/>
70
+ <circle cx='71' cy='375' r='2' style='stroke:#000000;fill:#000000'/>
71
+ <circle cx='71' cy='400' r='2' style='stroke:#000000;fill:#000000'/>
72
+ <circle cx='71' cy='383' r='2' style='stroke:#000000;fill:#000000'/>
73
+ <circle cx='71' cy='285' r='2' style='stroke:#000000;fill:#000000'/>
74
+ <circle cx='71' cy='379' r='2' style='stroke:#000000;fill:#000000'/>
75
+ <circle cx='133' cy='240' r='2' style='stroke:#000000;fill:#000000'/>
76
+ <circle cx='133' cy='190' r='2' style='stroke:#000000;fill:#000000'/>
77
+ <circle cx='133' cy='186' r='2' style='stroke:#000000;fill:#000000'/>
78
+ <circle cx='133' cy='147' r='2' style='stroke:#000000;fill:#000000'/>
79
+ <circle cx='133' cy='236' r='2' style='stroke:#000000;fill:#000000'/>
80
+ <circle cx='133' cy='164' r='2' style='stroke:#000000;fill:#000000'/>
81
+ <circle cx='133' cy='156' r='2' style='stroke:#000000;fill:#000000'/>
82
+ <circle cx='133' cy='219' r='2' style='stroke:#000000;fill:#000000'/>
83
+ <circle cx='133' cy='312' r='2' style='stroke:#000000;fill:#000000'/>
84
+ <circle cx='133' cy='135' r='2' style='stroke:#000000;fill:#000000'/>
85
+ <circle cx='195' cy='160' r='2' style='stroke:#000000;fill:#000000'/>
86
+ <circle cx='195' cy='147' r='2' style='stroke:#000000;fill:#000000'/>
87
+ <circle cx='195' cy='203' r='2' style='stroke:#000000;fill:#000000'/>
88
+ <circle cx='195' cy='174' r='2' style='stroke:#000000;fill:#000000'/>
89
+ <circle cx='195' cy='169' r='2' style='stroke:#000000;fill:#000000'/>
90
+ <circle cx='195' cy='85' r='2' style='stroke:#000000;fill:#000000'/>
91
+ <circle cx='195' cy='147' r='2' style='stroke:#000000;fill:#000000'/>
92
+ <circle cx='195' cy='135' r='2' style='stroke:#000000;fill:#000000'/>
93
+ <circle cx='195' cy='106' r='2' style='stroke:#000000;fill:#000000'/>
94
+ <circle cx='195' cy='194' r='2' style='stroke:#000000;fill:#000000'/>
95
+ <rect x='83' y='301' width='3' height='3' transform='rotate(-315,84,302)' style='stroke:#00CDCD;fill:#00CDCD'/>
96
+ <rect x='83' y='214' width='3' height='3' transform='rotate(-315,84,215)' style='stroke:#00CDCD;fill:#00CDCD'/>
97
+ <rect x='74' y='268' width='3' height='3' transform='rotate(-315,75,270)' style='stroke:#00CDCD;fill:#00CDCD'/>
98
+ <rect x='82' y='377' width='3' height='3' transform='rotate(-315,83,378)' style='stroke:#00CDCD;fill:#00CDCD'/>
99
+ <rect x='47' y='310' width='3' height='3' transform='rotate(-315,49,312)' style='stroke:#00CDCD;fill:#00CDCD'/>
100
+ <rect x='57' y='373' width='3' height='3' transform='rotate(-315,59,374)' style='stroke:#00CDCD;fill:#00CDCD'/>
101
+ <rect x='87' y='398' width='3' height='3' transform='rotate(-315,89,400)' style='stroke:#00CDCD;fill:#00CDCD'/>
102
+ <rect x='93' y='381' width='3' height='3' transform='rotate(-315,95,383)' style='stroke:#00CDCD;fill:#00CDCD'/>
103
+ <rect x='55' y='284' width='3' height='3' transform='rotate(-315,56,285)' style='stroke:#00CDCD;fill:#00CDCD'/>
104
+ <rect x='46' y='377' width='3' height='3' transform='rotate(-315,47,379)' style='stroke:#00CDCD;fill:#00CDCD'/>
105
+ <rect x='108' y='238' width='3' height='3' transform='rotate(-315,109,240)' style='stroke:#00CDCD;fill:#00CDCD'/>
106
+ <rect x='138' y='188' width='3' height='3' transform='rotate(-315,139,190)' style='stroke:#00CDCD;fill:#00CDCD'/>
107
+ <rect x='134' y='184' width='3' height='3' transform='rotate(-315,135,186)' style='stroke:#00CDCD;fill:#00CDCD'/>
108
+ <rect x='129' y='146' width='3' height='3' transform='rotate(-315,131,147)' style='stroke:#00CDCD;fill:#00CDCD'/>
109
+ <rect x='119' y='235' width='3' height='3' transform='rotate(-315,121,236)' style='stroke:#00CDCD;fill:#00CDCD'/>
110
+ <rect x='114' y='162' width='3' height='3' transform='rotate(-315,115,164)' style='stroke:#00CDCD;fill:#00CDCD'/>
111
+ <rect x='125' y='155' width='3' height='3' transform='rotate(-315,126,156)' style='stroke:#00CDCD;fill:#00CDCD'/>
112
+ <rect x='115' y='218' width='3' height='3' transform='rotate(-315,116,220)' style='stroke:#00CDCD;fill:#00CDCD'/>
113
+ <rect x='124' y='311' width='3' height='3' transform='rotate(-315,125,312)' style='stroke:#00CDCD;fill:#00CDCD'/>
114
+ <rect x='148' y='134' width='3' height='3' transform='rotate(-315,150,135)' style='stroke:#00CDCD;fill:#00CDCD'/>
115
+ <rect x='200' y='158' width='3' height='3' transform='rotate(-315,201,159)' style='stroke:#00CDCD;fill:#00CDCD'/>
116
+ <rect x='175' y='145' width='3' height='3' transform='rotate(-315,177,147)' style='stroke:#00CDCD;fill:#00CDCD'/>
117
+ <rect x='211' y='201' width='3' height='3' transform='rotate(-315,212,203)' style='stroke:#00CDCD;fill:#00CDCD'/>
118
+ <rect x='170' y='172' width='3' height='3' transform='rotate(-315,171,174)' style='stroke:#00CDCD;fill:#00CDCD'/>
119
+ <rect x='201' y='168' width='3' height='3' transform='rotate(-315,203,169)' style='stroke:#00CDCD;fill:#00CDCD'/>
120
+ <rect x='175' y='84' width='3' height='3' transform='rotate(-315,176,85)' style='stroke:#00CDCD;fill:#00CDCD'/>
121
+ <rect x='215' y='146' width='3' height='3' transform='rotate(-315,216,147)' style='stroke:#00CDCD;fill:#00CDCD'/>
122
+ <rect x='194' y='134' width='3' height='3' transform='rotate(-315,195,135)' style='stroke:#00CDCD;fill:#00CDCD'/>
123
+ <rect x='175' y='104' width='3' height='3' transform='rotate(-315,176,106)' style='stroke:#00CDCD;fill:#00CDCD'/>
124
+ <rect x='179' y='193' width='3' height='3' transform='rotate(-315,181,194)' style='stroke:#00CDCD;fill:#00CDCD'/>
125
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
126
+ <rect x='238' y='23' width='198' height='453' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#EBEBEB'/>
127
+ </g><g style='stroke-width:0.7113188976377953;stroke-linejoin:round;stroke-linecap:butt'>
128
+ <polyline points='238,444 436,444' style='stroke:#FFFFFF'/>
129
+ <polyline points='238,305 436,305' style='stroke:#FFFFFF'/>
130
+ <polyline points='238,167 436,167' style='stroke:#FFFFFF'/>
131
+ <polyline points='238,28 436,28' style='stroke:#FFFFFF'/>
132
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
133
+ <polyline points='238,375 436,375' style='stroke:#FFFFFF'/>
134
+ <polyline points='238,236 436,236' style='stroke:#FFFFFF'/>
135
+ <polyline points='238,97 436,97' style='stroke:#FFFFFF'/>
136
+ <polyline points='275,476 275,23' style='stroke:#FFFFFF'/>
137
+ <polyline points='337,476 337,23' style='stroke:#FFFFFF'/>
138
+ <polyline points='399,476 399,23' style='stroke:#FFFFFF'/>
139
+ <polyline points='275,362 275,354' style='stroke:#333333'/>
140
+ <polyline points='275,431 275,455' style='stroke:#333333'/>
141
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
142
+ <polyline points='252,362 252,431 298,431 298,362 252,362 252,362' style='stroke:#333333;fill:#FFFFFF'/>
143
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
144
+ <polyline points='252,414 298,414' style='stroke:#333333'/>
145
+ </g><g style='stroke-width:0.9448818897637796;stroke-linejoin:round;stroke-linecap:round'>
146
+ <circle cx='337' cy='201' r='2' style='stroke:#333333;fill:#333333'/>
147
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
148
+ <polyline points='337,273 337,253' style='stroke:#333333'/>
149
+ <polyline points='337,302 337,325' style='stroke:#333333'/>
150
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
151
+ <polyline points='314,273 314,302 360,302 360,273 314,273 314,273' style='stroke:#333333;fill:#FFFFFF'/>
152
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
153
+ <polyline points='314,285 360,285' style='stroke:#333333'/>
154
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
155
+ <polyline points='399,114 399,43' style='stroke:#333333'/>
156
+ <polyline points='399,189 399,257' style='stroke:#333333'/>
157
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
158
+ <polyline points='376,114 376,189 422,189 422,114 376,114 376,114' style='stroke:#333333;fill:#FFFFFF'/>
159
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
160
+ <polyline points='376,154 422,154' style='stroke:#333333'/>
161
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
162
+ <polyline points='275,362 275,354' style='stroke:#333333'/>
163
+ <polyline points='275,431 275,455' style='stroke:#333333'/>
164
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
165
+ <polyline points='252,362 252,431 298,431 298,362 252,362 252,362' style='stroke:#333333;fill:#F8766D'/>
166
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
167
+ <polyline points='252,414 298,414' style='stroke:#333333'/>
168
+ </g><g style='stroke-width:0.9448818897637796;stroke-linejoin:round;stroke-linecap:round'>
169
+ <circle cx='337' cy='201' r='2' style='stroke:#333333;fill:#333333'/>
170
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
171
+ <polyline points='337,273 337,253' style='stroke:#333333'/>
172
+ <polyline points='337,302 337,325' style='stroke:#333333'/>
173
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
174
+ <polyline points='314,273 314,302 360,302 360,273 314,273 314,273' style='stroke:#333333;fill:#00BA38'/>
175
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
176
+ <polyline points='314,285 360,285' style='stroke:#333333'/>
177
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
178
+ <polyline points='399,114 399,43' style='stroke:#333333'/>
179
+ <polyline points='399,189 399,257' style='stroke:#333333'/>
180
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
181
+ <polyline points='376,114 376,189 422,189 422,114 376,114 376,114' style='stroke:#333333;fill:#619CFF'/>
182
+ </g><g style='stroke-width:2.8452755905511813;stroke-linejoin:round;stroke-linecap:butt'>
183
+ <polyline points='376,154 422,154' style='stroke:#333333'/>
184
+ </g><g style='stroke-width:0.9448818897637796;stroke-linejoin:round;stroke-linecap:round'>
185
+ <circle cx='275' cy='455' r='2' style='stroke:#000000;fill:#000000'/>
186
+ <circle cx='275' cy='354' r='2' style='stroke:#000000;fill:#000000'/>
187
+ <circle cx='275' cy='412' r='2' style='stroke:#000000;fill:#000000'/>
188
+ <circle cx='275' cy='433' r='2' style='stroke:#000000;fill:#000000'/>
189
+ <circle cx='275' cy='425' r='2' style='stroke:#000000;fill:#000000'/>
190
+ <circle cx='275' cy='375' r='2' style='stroke:#000000;fill:#000000'/>
191
+ <circle cx='275' cy='358' r='2' style='stroke:#000000;fill:#000000'/>
192
+ <circle cx='275' cy='358' r='2' style='stroke:#000000;fill:#000000'/>
193
+ <circle cx='275' cy='441' r='2' style='stroke:#000000;fill:#000000'/>
194
+ <circle cx='275' cy='416' r='2' style='stroke:#000000;fill:#000000'/>
195
+ <circle cx='337' cy='285' r='2' style='stroke:#000000;fill:#000000'/>
196
+ <circle cx='337' cy='285' r='2' style='stroke:#000000;fill:#000000'/>
197
+ <circle cx='337' cy='303' r='2' style='stroke:#000000;fill:#000000'/>
198
+ <circle cx='337' cy='273' r='2' style='stroke:#000000;fill:#000000'/>
199
+ <circle cx='337' cy='201' r='2' style='stroke:#000000;fill:#000000'/>
200
+ <circle cx='337' cy='273' r='2' style='stroke:#000000;fill:#000000'/>
201
+ <circle cx='337' cy='325' r='2' style='stroke:#000000;fill:#000000'/>
202
+ <circle cx='337' cy='312' r='2' style='stroke:#000000;fill:#000000'/>
203
+ <circle cx='337' cy='253' r='2' style='stroke:#000000;fill:#000000'/>
204
+ <circle cx='337' cy='298' r='2' style='stroke:#000000;fill:#000000'/>
205
+ <circle cx='399' cy='186' r='2' style='stroke:#000000;fill:#000000'/>
206
+ <circle cx='399' cy='257' r='2' style='stroke:#000000;fill:#000000'/>
207
+ <circle cx='399' cy='43' r='2' style='stroke:#000000;fill:#000000'/>
208
+ <circle cx='399' cy='160' r='2' style='stroke:#000000;fill:#000000'/>
209
+ <circle cx='399' cy='147' r='2' style='stroke:#000000;fill:#000000'/>
210
+ <circle cx='399' cy='63' r='2' style='stroke:#000000;fill:#000000'/>
211
+ <circle cx='399' cy='143' r='2' style='stroke:#000000;fill:#000000'/>
212
+ <circle cx='399' cy='215' r='2' style='stroke:#000000;fill:#000000'/>
213
+ <circle cx='399' cy='190' r='2' style='stroke:#000000;fill:#000000'/>
214
+ <circle cx='399' cy='104' r='2' style='stroke:#000000;fill:#000000'/>
215
+ <rect x='280' y='454' width='3' height='3' transform='rotate(-315,282,455)' style='stroke:#00CDCD;fill:#00CDCD'/>
216
+ <rect x='284' y='352' width='3' height='3' transform='rotate(-315,285,353)' style='stroke:#00CDCD;fill:#00CDCD'/>
217
+ <rect x='277' y='411' width='3' height='3' transform='rotate(-315,279,412)' style='stroke:#00CDCD;fill:#00CDCD'/>
218
+ <rect x='251' y='431' width='3' height='3' transform='rotate(-315,252,432)' style='stroke:#00CDCD;fill:#00CDCD'/>
219
+ <rect x='252' y='424' width='3' height='3' transform='rotate(-315,253,425)' style='stroke:#00CDCD;fill:#00CDCD'/>
220
+ <rect x='254' y='373' width='3' height='3' transform='rotate(-315,255,374)' style='stroke:#00CDCD;fill:#00CDCD'/>
221
+ <rect x='294' y='356' width='3' height='3' transform='rotate(-315,295,358)' style='stroke:#00CDCD;fill:#00CDCD'/>
222
+ <rect x='269' y='357' width='3' height='3' transform='rotate(-315,270,359)' style='stroke:#00CDCD;fill:#00CDCD'/>
223
+ <rect x='273' y='440' width='3' height='3' transform='rotate(-315,274,442)' style='stroke:#00CDCD;fill:#00CDCD'/>
224
+ <rect x='293' y='415' width='3' height='3' transform='rotate(-315,294,416)' style='stroke:#00CDCD;fill:#00CDCD'/>
225
+ <rect x='312' y='283' width='3' height='3' transform='rotate(-315,313,284)' style='stroke:#00CDCD;fill:#00CDCD'/>
226
+ <rect x='340' y='283' width='3' height='3' transform='rotate(-315,342,285)' style='stroke:#00CDCD;fill:#00CDCD'/>
227
+ <rect x='322' y='301' width='3' height='3' transform='rotate(-315,324,302)' style='stroke:#00CDCD;fill:#00CDCD'/>
228
+ <rect x='322' y='272' width='3' height='3' transform='rotate(-315,324,274)' style='stroke:#00CDCD;fill:#00CDCD'/>
229
+ <rect x='313' y='200' width='3' height='3' transform='rotate(-315,314,202)' style='stroke:#00CDCD;fill:#00CDCD'/>
230
+ <rect x='327' y='272' width='3' height='3' transform='rotate(-315,329,274)' style='stroke:#00CDCD;fill:#00CDCD'/>
231
+ <rect x='355' y='323' width='3' height='3' transform='rotate(-315,357,324)' style='stroke:#00CDCD;fill:#00CDCD'/>
232
+ <rect x='358' y='311' width='3' height='3' transform='rotate(-315,359,313)' style='stroke:#00CDCD;fill:#00CDCD'/>
233
+ <rect x='345' y='252' width='3' height='3' transform='rotate(-315,346,253)' style='stroke:#00CDCD;fill:#00CDCD'/>
234
+ <rect x='313' y='296' width='3' height='3' transform='rotate(-315,314,298)' style='stroke:#00CDCD;fill:#00CDCD'/>
235
+ <rect x='399' y='185' width='3' height='3' transform='rotate(-315,401,187)' style='stroke:#00CDCD;fill:#00CDCD'/>
236
+ <rect x='402' y='256' width='3' height='3' transform='rotate(-315,404,257)' style='stroke:#00CDCD;fill:#00CDCD'/>
237
+ <rect x='407' y='42' width='3' height='3' transform='rotate(-315,408,43)' style='stroke:#00CDCD;fill:#00CDCD'/>
238
+ <rect x='417' y='158' width='3' height='3' transform='rotate(-315,418,159)' style='stroke:#00CDCD;fill:#00CDCD'/>
239
+ <rect x='406' y='145' width='3' height='3' transform='rotate(-315,408,147)' style='stroke:#00CDCD;fill:#00CDCD'/>
240
+ <rect x='417' y='62' width='3' height='3' transform='rotate(-315,418,63)' style='stroke:#00CDCD;fill:#00CDCD'/>
241
+ <rect x='387' y='142' width='3' height='3' transform='rotate(-315,389,143)' style='stroke:#00CDCD;fill:#00CDCD'/>
242
+ <rect x='384' y='214' width='3' height='3' transform='rotate(-315,386,215)' style='stroke:#00CDCD;fill:#00CDCD'/>
243
+ <rect x='400' y='188' width='3' height='3' transform='rotate(-315,401,190)' style='stroke:#00CDCD;fill:#00CDCD'/>
244
+ <rect x='407' y='103' width='3' height='3' transform='rotate(-315,408,104)' style='stroke:#00CDCD;fill:#00CDCD'/>
245
+ </g><g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
246
+ <rect x='34' y='6' width='198' height='17' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#D9D9D9'/>
247
+ </g><text x='128' y='17' lengthAdjust='spacingAndGlyphs' textLength='11px' style='font-size:8.8px;fill:#1A1A1A'>OJ</text>
248
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
249
+ <rect x='238' y='6' width='198' height='17' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#D9D9D9'/>
250
+ </g><text x='332' y='17' lengthAdjust='spacingAndGlyphs' textLength='11px' style='font-size:8.8px;fill:#1A1A1A'>VC</text>
251
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
252
+ <polyline points='71,479 71,476' style='stroke:#333333'/>
253
+ <polyline points='133,479 133,476' style='stroke:#333333'/>
254
+ <polyline points='195,479 195,476' style='stroke:#333333'/>
255
+ </g><text x='63' y='487' lengthAdjust='spacingAndGlyphs' textLength='16px' style='font-size:8.8px;fill:#4D4D4D'>0.5</text>
256
+ <text x='131' y='487' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#4D4D4D'>1</text>
257
+ <text x='193' y='487' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#4D4D4D'>2</text>
258
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
259
+ <polyline points='275,479 275,476' style='stroke:#333333'/>
260
+ <polyline points='337,479 337,476' style='stroke:#333333'/>
261
+ <polyline points='399,479 399,476' style='stroke:#333333'/>
262
+ </g><text x='267' y='487' lengthAdjust='spacingAndGlyphs' textLength='16px' style='font-size:8.8px;fill:#4D4D4D'>0.5</text>
263
+ <text x='334' y='487' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#4D4D4D'>1</text>
264
+ <text x='396' y='487' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#4D4D4D'>2</text>
265
+ <text x='19' y='378' lengthAdjust='spacingAndGlyphs' textLength='11px' style='font-size:8.8px;fill:#4D4D4D'>10</text>
266
+ <text x='19' y='239' lengthAdjust='spacingAndGlyphs' textLength='11px' style='font-size:8.8px;fill:#4D4D4D'>20</text>
267
+ <text x='19' y='100' lengthAdjust='spacingAndGlyphs' textLength='11px' style='font-size:8.8px;fill:#4D4D4D'>30</text>
268
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:butt'>
269
+ <polyline points='31,375 34,375' style='stroke:#333333'/>
270
+ <polyline points='31,236 34,236' style='stroke:#333333'/>
271
+ <polyline points='31,97 34,97' style='stroke:#333333'/>
272
+ </g><text x='222' y='500' lengthAdjust='spacingAndGlyphs' textLength='26px' style='font-size:11.0px;fill:#000000'>dose</text>
273
+ <text x='13' y='259' lengthAdjust='spacingAndGlyphs' textLength='20px' style='font-size:11.0px;fill:#000000' transform='rotate(-90,13,259)'>len</text>
274
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
275
+ <rect x='447' y='202' width='53' height='94' style='stroke:rgb(0,0,0);stroke-opacity:0.000;fill:#FFFFFF'/>
276
+ </g><text x='453' y='216' lengthAdjust='spacingAndGlyphs' textLength='26px' style='font-size:11.0px;fill:#000000'>dose</text>
277
+ <g style='stroke-width:1.4226377952755906;stroke-linejoin:round;stroke-linecap:round'>
278
+ <rect x='453' y='222' width='23' height='23' style='stroke:#FFFFFF;fill:#F2F2F2'/>
279
+ <polyline points='464,242 464,239' style='stroke:#333333'/>
280
+ <polyline points='464,227 464,224' style='stroke:#333333'/>
281
+ <rect x='456' y='227' width='17' height='12' style='stroke:#333333;fill:#F8766D'/>
282
+ <polyline points='456,233 473,233' style='stroke:#333333'/>
283
+ <rect x='453' y='245' width='23' height='23' style='stroke:#FFFFFF;fill:#F2F2F2'/>
284
+ <polyline points='464,265 464,262' style='stroke:#333333'/>
285
+ <polyline points='464,250 464,247' style='stroke:#333333'/>
286
+ <rect x='456' y='250' width='17' height='12' style='stroke:#333333;fill:#00BA38'/>
287
+ <polyline points='456,256 473,256' style='stroke:#333333'/>
288
+ <rect x='453' y='268' width='23' height='23' style='stroke:#FFFFFF;fill:#F2F2F2'/>
289
+ <polyline points='464,288 464,285' style='stroke:#333333'/>
290
+ <polyline points='464,273 464,270' style='stroke:#333333'/>
291
+ <rect x='456' y='273' width='17' height='12' style='stroke:#333333;fill:#619CFF'/>
292
+ <polyline points='456,279 473,279' style='stroke:#333333'/>
293
+ </g><text x='479' y='236' lengthAdjust='spacingAndGlyphs' textLength='16px' style='font-size:8.8px;fill:#000000'>0.5</text>
294
+ <text x='479' y='259' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#000000'>1</text>
295
+ <text x='479' y='282' lengthAdjust='spacingAndGlyphs' textLength='5px' style='font-size:8.8px;fill:#000000'>2</text>
296
+ </svg>