Skip to content
Snippets Groups Projects
Topology Optimization 3D.ipynb 972 KiB
Newer Older
Amira Abdel-Rahman's avatar
Amira Abdel-Rahman committed
4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000
       "<path clip-path=\"url(#clip7902)\" d=\"M579.022 968.524 L579.022 1000.52 L611.022 1000.52 L611.022 968.524 L579.022 968.524 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M598.91 954.307 L598.91 986.307 L630.91 986.307 L630.91 954.307 L598.91 954.307 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M561.672 1000.04 L561.672 1032.04 L593.672 1032.04 L593.672 1000.04 L561.672 1000.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M581.56 985.827 L581.56 1017.83 L613.56 1017.83 L613.56 985.827 L581.56 985.827 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M601.448 971.609 L601.448 1003.61 L633.448 1003.61 L633.448 971.609 L601.448 971.609 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M621.335 957.392 L621.335 989.392 L653.335 989.392 L653.335 957.392 L621.335 957.392 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M584.098 1003.13 L584.098 1035.13 L616.098 1035.13 L616.098 1003.13 L584.098 1003.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M603.986 988.912 L603.986 1020.91 L635.986 1020.91 L635.986 988.912 L603.986 988.912 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M623.873 974.694 L623.873 1006.69 L655.873 1006.69 L655.873 974.694 L623.873 974.694 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M643.761 960.477 L643.761 992.477 L675.761 992.477 L675.761 960.477 L643.761 960.477 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M606.524 1006.21 L606.524 1038.21 L638.524 1038.21 L638.524 1006.21 L606.524 1006.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M626.411 991.997 L626.411 1024 L658.411 1024 L658.411 991.997 L626.411 991.997 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M646.299 977.78 L646.299 1009.78 L678.299 1009.78 L678.299 977.78 L646.299 977.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M666.187 963.562 L666.187 995.562 L698.187 995.562 L698.187 963.562 L666.187 963.562 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M628.949 1009.3 L628.949 1041.3 L660.949 1041.3 L660.949 1009.3 L628.949 1009.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M648.837 995.082 L648.837 1027.08 L680.837 1027.08 L680.837 995.082 L648.837 995.082 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M668.725 980.865 L668.725 1012.87 L700.725 1012.87 L700.725 980.865 L668.725 980.865 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M688.613 966.648 L688.613 998.648 L720.613 998.648 L720.613 966.648 L688.613 966.648 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M651.375 1012.39 L651.375 1044.39 L683.375 1044.39 L683.375 1012.39 L651.375 1012.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M671.263 998.168 L671.263 1030.17 L703.263 1030.17 L703.263 998.168 L671.263 998.168 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M691.151 983.95 L691.151 1015.95 L723.151 1015.95 L723.151 983.95 L691.151 983.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M711.038 969.733 L711.038 1001.73 L743.038 1001.73 L743.038 969.733 L711.038 969.733 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M673.801 1015.47 L673.801 1047.47 L705.801 1047.47 L705.801 1015.47 L673.801 1015.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M693.688 1001.25 L693.688 1033.25 L725.688 1033.25 L725.688 1001.25 L693.688 1001.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M713.576 987.036 L713.576 1019.04 L745.576 1019.04 L745.576 987.036 L713.576 987.036 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M733.464 972.818 L733.464 1004.82 L765.464 1004.82 L765.464 972.818 L733.464 972.818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M696.226 1018.56 L696.226 1050.56 L728.226 1050.56 L728.226 1018.56 L696.226 1018.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M716.114 1004.34 L716.114 1036.34 L748.114 1036.34 L748.114 1004.34 L716.114 1004.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M736.002 990.121 L736.002 1022.12 L768.002 1022.12 L768.002 990.121 L736.002 990.121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M755.89 975.904 L755.89 1007.9 L787.89 1007.9 L787.89 975.904 L755.89 975.904 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M718.652 1021.64 L718.652 1053.64 L750.652 1053.64 L750.652 1021.64 L718.652 1021.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M738.54 1007.42 L738.54 1039.42 L770.54 1039.42 L770.54 1007.42 L738.54 1007.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M758.428 993.206 L758.428 1025.21 L790.428 1025.21 L790.428 993.206 L758.428 993.206 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M778.315 978.989 L778.315 1010.99 L810.315 1010.99 L810.315 978.989 L778.315 978.989 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M741.078 1024.73 L741.078 1056.73 L773.078 1056.73 L773.078 1024.73 L741.078 1024.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M760.966 1010.51 L760.966 1042.51 L792.966 1042.51 L792.966 1010.51 L760.966 1010.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M780.853 996.292 L780.853 1028.29 L812.853 1028.29 L812.853 996.292 L780.853 996.292 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M800.741 982.074 L800.741 1014.07 L832.741 1014.07 L832.741 982.074 L800.741 982.074 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M763.504 1027.81 L763.504 1059.81 L795.504 1059.81 L795.504 1027.81 L763.504 1027.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M783.391 1013.59 L783.391 1045.59 L815.391 1045.59 L815.391 1013.59 L783.391 1013.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M803.279 999.377 L803.279 1031.38 L835.279 1031.38 L835.279 999.377 L803.279 999.377 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M823.167 985.16 L823.167 1017.16 L855.167 1017.16 L855.167 985.16 L823.167 985.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M785.929 1030.9 L785.929 1062.9 L817.929 1062.9 L817.929 1030.9 L785.929 1030.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M805.817 1016.68 L805.817 1048.68 L837.817 1048.68 L837.817 1016.68 L805.817 1016.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M825.705 1002.46 L825.705 1034.46 L857.705 1034.46 L857.705 1002.46 L825.705 1002.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M845.592 988.245 L845.592 1020.24 L877.592 1020.24 L877.592 988.245 L845.592 988.245 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M808.355 1033.98 L808.355 1065.98 L840.355 1065.98 L840.355 1033.98 L808.355 1033.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M828.243 1019.76 L828.243 1051.76 L860.243 1051.76 L860.243 1019.76 L828.243 1019.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M848.13 1005.55 L848.13 1037.55 L880.13 1037.55 L880.13 1005.55 L848.13 1005.55 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M868.018 991.33 L868.018 1023.33 L900.018 1023.33 L900.018 991.33 L868.018 991.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M830.781 1037.07 L830.781 1069.07 L862.781 1069.07 L862.781 1037.07 L830.781 1037.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M850.668 1022.85 L850.668 1054.85 L882.668 1054.85 L882.668 1022.85 L850.668 1022.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M870.556 1008.63 L870.556 1040.63 L902.556 1040.63 L902.556 1008.63 L870.556 1008.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M890.444 994.415 L890.444 1026.42 L922.444 1026.42 L922.444 994.415 L890.444 994.415 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M853.206 1040.15 L853.206 1072.15 L885.206 1072.15 L885.206 1040.15 L853.206 1040.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M873.094 1025.94 L873.094 1057.94 L905.094 1057.94 L905.094 1025.94 L873.094 1025.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M892.982 1011.72 L892.982 1043.72 L924.982 1043.72 L924.982 1011.72 L892.982 1011.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M912.87 997.501 L912.87 1029.5 L944.87 1029.5 L944.87 997.501 L912.87 997.501 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M875.632 1043.24 L875.632 1075.24 L907.632 1075.24 L907.632 1043.24 L875.632 1043.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M895.52 1029.02 L895.52 1061.02 L927.52 1061.02 L927.52 1029.02 L895.52 1029.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M915.408 1014.8 L915.408 1046.8 L947.408 1046.8 L947.408 1014.8 L915.408 1014.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M935.295 1000.59 L935.295 1032.59 L967.295 1032.59 L967.295 1000.59 L935.295 1000.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M898.058 1046.32 L898.058 1078.32 L930.058 1078.32 L930.058 1046.32 L898.058 1046.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M917.946 1032.11 L917.946 1064.11 L949.946 1064.11 L949.946 1032.11 L917.946 1032.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M937.833 1017.89 L937.833 1049.89 L969.833 1049.89 L969.833 1017.89 L937.833 1017.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M957.721 1003.67 L957.721 1035.67 L989.721 1035.67 L989.721 1003.67 L957.721 1003.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M920.483 1049.41 L920.483 1081.41 L952.483 1081.41 L952.483 1049.41 L920.483 1049.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M940.371 1035.19 L940.371 1067.19 L972.371 1067.19 L972.371 1035.19 L940.371 1035.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M960.259 1020.97 L960.259 1052.97 L992.259 1052.97 L992.259 1020.97 L960.259 1020.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M980.147 1006.76 L980.147 1038.76 L1012.15 1038.76 L1012.15 1006.76 L980.147 1006.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M942.909 1052.49 L942.909 1084.49 L974.909 1084.49 L974.909 1052.49 L942.909 1052.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M962.797 1038.28 L962.797 1070.28 L994.797 1070.28 L994.797 1038.28 L962.797 1038.28 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M982.685 1024.06 L982.685 1056.06 L1014.68 1056.06 L1014.68 1024.06 L982.685 1024.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1002.57 1009.84 L1002.57 1041.84 L1034.57 1041.84 L1034.57 1009.84 L1002.57 1009.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M965.335 1055.58 L965.335 1087.58 L997.335 1087.58 L997.335 1055.58 L965.335 1055.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M985.223 1041.36 L985.223 1073.36 L1017.22 1073.36 L1017.22 1041.36 L985.223 1041.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1005.11 1027.14 L1005.11 1059.14 L1037.11 1059.14 L1037.11 1027.14 L1005.11 1027.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1025 1012.93 L1025 1044.93 L1057 1044.93 L1057 1012.93 L1025 1012.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M987.761 1058.66 L987.761 1090.66 L1019.76 1090.66 L1019.76 1058.66 L987.761 1058.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1007.65 1044.45 L1007.65 1076.45 L1039.65 1076.45 L1039.65 1044.45 L1007.65 1044.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1027.54 1030.23 L1027.54 1062.23 L1059.54 1062.23 L1059.54 1030.23 L1027.54 1030.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1047.42 1016.01 L1047.42 1048.01 L1079.42 1048.01 L1079.42 1016.01 L1047.42 1016.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1010.19 1061.75 L1010.19 1093.75 L1042.19 1093.75 L1042.19 1061.75 L1010.19 1061.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1030.07 1047.53 L1030.07 1079.53 L1062.07 1079.53 L1062.07 1047.53 L1030.07 1047.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1049.96 1033.32 L1049.96 1065.32 L1081.96 1065.32 L1081.96 1033.32 L1049.96 1033.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1069.85 1019.1 L1069.85 1051.1 L1101.85 1051.1 L1101.85 1019.1 L1069.85 1019.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1032.61 1064.84 L1032.61 1096.84 L1064.61 1096.84 L1064.61 1064.84 L1032.61 1064.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1052.5 1050.62 L1052.5 1082.62 L1084.5 1082.62 L1084.5 1050.62 L1052.5 1050.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1072.39 1036.4 L1072.39 1068.4 L1104.39 1068.4 L1104.39 1036.4 L1072.39 1036.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1092.28 1022.18 L1092.28 1054.18 L1124.28 1054.18 L1124.28 1022.18 L1092.28 1022.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1055.04 1067.92 L1055.04 1099.92 L1087.04 1099.92 L1087.04 1067.92 L1055.04 1067.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1074.93 1053.7 L1074.93 1085.7 L1106.93 1085.7 L1106.93 1053.7 L1074.93 1053.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1094.81 1039.49 L1094.81 1071.49 L1126.81 1071.49 L1126.81 1039.49 L1094.81 1039.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1114.7 1025.27 L1114.7 1057.27 L1146.7 1057.27 L1146.7 1025.27 L1114.7 1025.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1077.46 1071.01 L1077.46 1103.01 L1109.46 1103.01 L1109.46 1071.01 L1077.46 1071.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1097.35 1056.79 L1097.35 1088.79 L1129.35 1088.79 L1129.35 1056.79 L1097.35 1056.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1117.24 1042.57 L1117.24 1074.57 L1149.24 1074.57 L1149.24 1042.57 L1117.24 1042.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1137.13 1028.35 L1137.13 1060.35 L1169.13 1060.35 L1169.13 1028.35 L1137.13 1028.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1099.89 1074.09 L1099.89 1106.09 L1131.89 1106.09 L1131.89 1074.09 L1099.89 1074.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1119.78 1059.87 L1119.78 1091.87 L1151.78 1091.87 L1151.78 1059.87 L1119.78 1059.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1139.66 1045.66 L1139.66 1077.66 L1171.66 1077.66 L1171.66 1045.66 L1139.66 1045.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1159.55 1031.44 L1159.55 1063.44 L1191.55 1063.44 L1191.55 1031.44 L1159.55 1031.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1122.31 1077.18 L1122.31 1109.18 L1154.31 1109.18 L1154.31 1077.18 L1122.31 1077.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1142.2 1062.96 L1142.2 1094.96 L1174.2 1094.96 L1174.2 1062.96 L1142.2 1062.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1162.09 1048.74 L1162.09 1080.74 L1194.09 1080.74 L1194.09 1048.74 L1162.09 1048.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1181.98 1034.52 L1181.98 1066.52 L1213.98 1066.52 L1213.98 1034.52 L1181.98 1034.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1144.74 1080.26 L1144.74 1112.26 L1176.74 1112.26 L1176.74 1080.26 L1144.74 1080.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1164.63 1066.04 L1164.63 1098.04 L1196.63 1098.04 L1196.63 1066.04 L1164.63 1066.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1184.52 1051.83 L1184.52 1083.83 L1216.52 1083.83 L1216.52 1051.83 L1184.52 1051.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1204.4 1037.61 L1204.4 1069.61 L1236.4 1069.61 L1236.4 1037.61 L1204.4 1037.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1167.17 1083.35 L1167.17 1115.35 L1199.17 1115.35 L1199.17 1083.35 L1167.17 1083.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1187.05 1069.13 L1187.05 1101.13 L1219.05 1101.13 L1219.05 1069.13 L1187.05 1069.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1206.94 1054.91 L1206.94 1086.91 L1238.94 1086.91 L1238.94 1054.91 L1206.94 1054.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1226.83 1040.69 L1226.83 1072.69 L1258.83 1072.69 L1258.83 1040.69 L1226.83 1040.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1189.59 1086.43 L1189.59 1118.43 L1221.59 1118.43 L1221.59 1086.43 L1189.59 1086.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1209.48 1072.21 L1209.48 1104.21 L1241.48 1104.21 L1241.48 1072.21 L1209.48 1072.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1229.37 1058 L1229.37 1090 L1261.37 1090 L1261.37 1058 L1229.37 1058 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1249.26 1043.78 L1249.26 1075.78 L1281.26 1075.78 L1281.26 1043.78 L1249.26 1043.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1212.02 1089.52 L1212.02 1121.52 L1244.02 1121.52 L1244.02 1089.52 L1212.02 1089.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1231.91 1075.3 L1231.91 1107.3 L1263.91 1107.3 L1263.91 1075.3 L1231.91 1075.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1251.79 1061.08 L1251.79 1093.08 L1283.79 1093.08 L1283.79 1061.08 L1251.79 1061.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1271.68 1046.87 L1271.68 1078.87 L1303.68 1078.87 L1303.68 1046.87 L1271.68 1046.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1234.44 1092.6 L1234.44 1124.6 L1266.44 1124.6 L1266.44 1092.6 L1234.44 1092.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1254.33 1078.39 L1254.33 1110.39 L1286.33 1110.39 L1286.33 1078.39 L1254.33 1078.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1274.22 1064.17 L1274.22 1096.17 L1306.22 1096.17 L1306.22 1064.17 L1274.22 1064.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1294.11 1049.95 L1294.11 1081.95 L1326.11 1081.95 L1326.11 1049.95 L1294.11 1049.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1256.87 1095.69 L1256.87 1127.69 L1288.87 1127.69 L1288.87 1095.69 L1256.87 1095.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1276.76 1081.47 L1276.76 1113.47 L1308.76 1113.47 L1308.76 1081.47 L1276.76 1081.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1296.64 1067.25 L1296.64 1099.25 L1328.64 1099.25 L1328.64 1067.25 L1296.64 1067.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1316.53 1053.04 L1316.53 1085.04 L1348.53 1085.04 L1348.53 1053.04 L1316.53 1053.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1279.29 1098.77 L1279.29 1130.77 L1311.29 1130.77 L1311.29 1098.77 L1279.29 1098.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1299.18 1084.56 L1299.18 1116.56 L1331.18 1116.56 L1331.18 1084.56 L1299.18 1084.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1319.07 1070.34 L1319.07 1102.34 L1351.07 1102.34 L1351.07 1070.34 L1319.07 1070.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1338.96 1056.12 L1338.96 1088.12 L1370.96 1088.12 L1370.96 1056.12 L1338.96 1056.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1301.72 1101.86 L1301.72 1133.86 L1333.72 1133.86 L1333.72 1101.86 L1301.72 1101.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1321.61 1087.64 L1321.61 1119.64 L1353.61 1119.64 L1353.61 1087.64 L1321.61 1087.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1341.5 1073.42 L1341.5 1105.42 L1373.5 1105.42 L1373.5 1073.42 L1341.5 1073.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1361.38 1059.21 L1361.38 1091.21 L1393.38 1091.21 L1393.38 1059.21 L1361.38 1059.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1324.15 1104.94 L1324.15 1136.94 L1356.15 1136.94 L1356.15 1104.94 L1324.15 1104.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1344.03 1090.73 L1344.03 1122.73 L1376.03 1122.73 L1376.03 1090.73 L1344.03 1090.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1363.92 1076.51 L1363.92 1108.51 L1395.92 1108.51 L1395.92 1076.51 L1363.92 1076.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1383.81 1062.29 L1383.81 1094.29 L1415.81 1094.29 L1415.81 1062.29 L1383.81 1062.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1346.57 1108.03 L1346.57 1140.03 L1378.57 1140.03 L1378.57 1108.03 L1346.57 1108.03 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1366.46 1093.81 L1366.46 1125.81 L1398.46 1125.81 L1398.46 1093.81 L1366.46 1093.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1386.35 1079.59 L1386.35 1111.59 L1418.35 1111.59 L1418.35 1079.59 L1386.35 1079.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1406.24 1065.38 L1406.24 1097.38 L1438.24 1097.38 L1438.24 1065.38 L1406.24 1065.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1369 1111.11 L1369 1143.11 L1401 1143.11 L1401 1111.11 L1369 1111.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1388.89 1096.9 L1388.89 1128.9 L1420.89 1128.9 L1420.89 1096.9 L1388.89 1096.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1408.77 1082.68 L1408.77 1114.68 L1440.77 1114.68 L1440.77 1082.68 L1408.77 1082.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1428.66 1068.46 L1428.66 1100.46 L1460.66 1100.46 L1460.66 1068.46 L1428.66 1068.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1391.42 1114.2 L1391.42 1146.2 L1423.42 1146.2 L1423.42 1114.2 L1391.42 1114.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1411.31 1099.98 L1411.31 1131.98 L1443.31 1131.98 L1443.31 1099.98 L1411.31 1099.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1431.2 1085.77 L1431.2 1117.77 L1463.2 1117.77 L1463.2 1085.77 L1431.2 1085.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1451.09 1071.55 L1451.09 1103.55 L1483.09 1103.55 L1483.09 1071.55 L1451.09 1071.55 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1413.85 1117.29 L1413.85 1149.29 L1445.85 1149.29 L1445.85 1117.29 L1413.85 1117.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1433.74 1103.07 L1433.74 1135.07 L1465.74 1135.07 L1465.74 1103.07 L1433.74 1103.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1453.62 1088.85 L1453.62 1120.85 L1485.62 1120.85 L1485.62 1088.85 L1453.62 1088.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1473.51 1074.63 L1473.51 1106.63 L1505.51 1106.63 L1505.51 1074.63 L1473.51 1074.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1436.27 1120.37 L1436.27 1152.37 L1468.27 1152.37 L1468.27 1120.37 L1436.27 1120.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1456.16 1106.15 L1456.16 1138.15 L1488.16 1138.15 L1488.16 1106.15 L1456.16 1106.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1476.05 1091.94 L1476.05 1123.94 L1508.05 1123.94 L1508.05 1091.94 L1476.05 1091.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1495.94 1077.72 L1495.94 1109.72 L1527.94 1109.72 L1527.94 1077.72 L1495.94 1077.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1458.7 1123.46 L1458.7 1155.46 L1490.7 1155.46 L1490.7 1123.46 L1458.7 1123.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1478.59 1109.24 L1478.59 1141.24 L1510.59 1141.24 L1510.59 1109.24 L1478.59 1109.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1498.48 1095.02 L1498.48 1127.02 L1530.48 1127.02 L1530.48 1095.02 L1498.48 1095.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1518.36 1080.8 L1518.36 1112.8 L1550.36 1112.8 L1550.36 1080.8 L1518.36 1080.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1481.13 1126.54 L1481.13 1158.54 L1513.13 1158.54 L1513.13 1126.54 L1481.13 1126.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1501.01 1112.32 L1501.01 1144.32 L1533.01 1144.32 L1533.01 1112.32 L1501.01 1112.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1520.9 1098.11 L1520.9 1130.11 L1552.9 1130.11 L1552.9 1098.11 L1520.9 1098.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1540.79 1083.89 L1540.79 1115.89 L1572.79 1115.89 L1572.79 1083.89 L1540.79 1083.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1503.55 1129.63 L1503.55 1161.63 L1535.55 1161.63 L1535.55 1129.63 L1503.55 1129.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1563.21 1086.97 L1563.21 1118.97 L1595.21 1118.97 L1595.21 1086.97 L1563.21 1086.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M539.247 963.77 L539.247 995.77 L571.247 995.77 L571.247 963.77 L539.247 963.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M559.134 949.553 L559.134 981.553 L591.134 981.553 L591.134 949.553 L559.134 949.553 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M579.022 935.336 L579.022 967.336 L611.022 967.336 L611.022 935.336 L579.022 935.336 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M598.91 921.118 L598.91 953.118 L630.91 953.118 L630.91 921.118 L598.91 921.118 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M561.672 966.855 L561.672 998.855 L593.672 998.855 L593.672 966.855 L561.672 966.855 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M581.56 952.638 L581.56 984.638 L613.56 984.638 L613.56 952.638 L581.56 952.638 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M601.448 938.421 L601.448 970.421 L633.448 970.421 L633.448 938.421 L601.448 938.421 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M621.335 924.204 L621.335 956.204 L653.335 956.204 L653.335 924.204 L621.335 924.204 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M584.098 969.941 L584.098 1001.94 L616.098 1001.94 L616.098 969.941 L584.098 969.941 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M603.986 955.723 L603.986 987.723 L635.986 987.723 L635.986 955.723 L603.986 955.723 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M623.873 941.506 L623.873 973.506 L655.873 973.506 L655.873 941.506 L623.873 941.506 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M643.761 927.289 L643.761 959.289 L675.761 959.289 L675.761 927.289 L643.761 927.289 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M606.524 973.026 L606.524 1005.03 L638.524 1005.03 L638.524 973.026 L606.524 973.026 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M626.411 958.809 L626.411 990.809 L658.411 990.809 L658.411 958.809 L626.411 958.809 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M646.299 944.591 L646.299 976.591 L678.299 976.591 L678.299 944.591 L646.299 944.591 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M666.187 930.374 L666.187 962.374 L698.187 962.374 L698.187 930.374 L666.187 930.374 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M628.949 976.111 L628.949 1008.11 L660.949 1008.11 L660.949 976.111 L628.949 976.111 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M648.837 961.894 L648.837 993.894 L680.837 993.894 L680.837 961.894 L648.837 961.894 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M668.725 947.677 L668.725 979.677 L700.725 979.677 L700.725 947.677 L668.725 947.677 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M688.613 933.459 L688.613 965.459 L720.613 965.459 L720.613 933.459 L688.613 933.459 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M651.375 979.197 L651.375 1011.2 L683.375 1011.2 L683.375 979.197 L651.375 979.197 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M671.263 964.979 L671.263 996.979 L703.263 996.979 L703.263 964.979 L671.263 964.979 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M691.151 950.762 L691.151 982.762 L723.151 982.762 L723.151 950.762 L691.151 950.762 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M711.038 936.545 L711.038 968.545 L743.038 968.545 L743.038 936.545 L711.038 936.545 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M673.801 982.282 L673.801 1014.28 L705.801 1014.28 L705.801 982.282 L673.801 982.282 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M693.688 968.065 L693.688 1000.06 L725.688 1000.06 L725.688 968.065 L693.688 968.065 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M713.576 953.847 L713.576 985.847 L745.576 985.847 L745.576 953.847 L713.576 953.847 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M733.464 939.63 L733.464 971.63 L765.464 971.63 L765.464 939.63 L733.464 939.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M696.226 985.367 L696.226 1017.37 L728.226 1017.37 L728.226 985.367 L696.226 985.367 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M716.114 971.15 L716.114 1003.15 L748.114 1003.15 L748.114 971.15 L716.114 971.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M736.002 956.933 L736.002 988.933 L768.002 988.933 L768.002 956.933 L736.002 956.933 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M755.89 942.715 L755.89 974.715 L787.89 974.715 L787.89 942.715 L755.89 942.715 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M718.652 988.453 L718.652 1020.45 L750.652 1020.45 L750.652 988.453 L718.652 988.453 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M738.54 974.235 L738.54 1006.24 L770.54 1006.24 L770.54 974.235 L738.54 974.235 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M758.428 960.018 L758.428 992.018 L790.428 992.018 L790.428 960.018 L758.428 960.018 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M778.315 945.801 L778.315 977.801 L810.315 977.801 L810.315 945.801 L778.315 945.801 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M741.078 991.538 L741.078 1023.54 L773.078 1023.54 L773.078 991.538 L741.078 991.538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M760.966 977.321 L760.966 1009.32 L792.966 1009.32 L792.966 977.321 L760.966 977.321 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M780.853 963.103 L780.853 995.103 L812.853 995.103 L812.853 963.103 L780.853 963.103 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M800.741 948.886 L800.741 980.886 L832.741 980.886 L832.741 948.886 L800.741 948.886 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M763.504 994.623 L763.504 1026.62 L795.504 1026.62 L795.504 994.623 L763.504 994.623 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M783.391 980.406 L783.391 1012.41 L815.391 1012.41 L815.391 980.406 L783.391 980.406 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M803.279 966.188 L803.279 998.188 L835.279 998.188 L835.279 966.188 L803.279 966.188 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M823.167 951.971 L823.167 983.971 L855.167 983.971 L855.167 951.971 L823.167 951.971 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M785.929 997.708 L785.929 1029.71 L817.929 1029.71 L817.929 997.708 L785.929 997.708 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M805.817 983.491 L805.817 1015.49 L837.817 1015.49 L837.817 983.491 L805.817 983.491 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M825.705 969.274 L825.705 1001.27 L857.705 1001.27 L857.705 969.274 L825.705 969.274 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M845.592 955.056 L845.592 987.056 L877.592 987.056 L877.592 955.056 L845.592 955.056 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M808.355 1000.79 L808.355 1032.79 L840.355 1032.79 L840.355 1000.79 L808.355 1000.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M828.243 986.576 L828.243 1018.58 L860.243 1018.58 L860.243 986.576 L828.243 986.576 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M848.13 972.359 L848.13 1004.36 L880.13 1004.36 L880.13 972.359 L848.13 972.359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M868.018 958.142 L868.018 990.142 L900.018 990.142 L900.018 958.142 L868.018 958.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M830.781 1003.88 L830.781 1035.88 L862.781 1035.88 L862.781 1003.88 L830.781 1003.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M850.668 989.662 L850.668 1021.66 L882.668 1021.66 L882.668 989.662 L850.668 989.662 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M870.556 975.444 L870.556 1007.44 L902.556 1007.44 L902.556 975.444 L870.556 975.444 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M890.444 961.227 L890.444 993.227 L922.444 993.227 L922.444 961.227 L890.444 961.227 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M853.206 1006.96 L853.206 1038.96 L885.206 1038.96 L885.206 1006.96 L853.206 1006.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M873.094 992.747 L873.094 1024.75 L905.094 1024.75 L905.094 992.747 L873.094 992.747 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M892.982 978.53 L892.982 1010.53 L924.982 1010.53 L924.982 978.53 L892.982 978.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M912.87 964.312 L912.87 996.312 L944.87 996.312 L944.87 964.312 L912.87 964.312 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M875.632 1010.05 L875.632 1042.05 L907.632 1042.05 L907.632 1010.05 L875.632 1010.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M895.52 995.832 L895.52 1027.83 L927.52 1027.83 L927.52 995.832 L895.52 995.832 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M915.408 981.615 L915.408 1013.61 L947.408 1013.61 L947.408 981.615 L915.408 981.615 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M935.295 967.398 L935.295 999.398 L967.295 999.398 L967.295 967.398 L935.295 967.398 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M898.058 1013.13 L898.058 1045.13 L930.058 1045.13 L930.058 1013.13 L898.058 1013.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M917.946 998.918 L917.946 1030.92 L949.946 1030.92 L949.946 998.918 L917.946 998.918 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M937.833 984.7 L937.833 1016.7 L969.833 1016.7 L969.833 984.7 L937.833 984.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M957.721 970.483 L957.721 1002.48 L989.721 1002.48 L989.721 970.483 L957.721 970.483 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M920.483 1016.22 L920.483 1048.22 L952.483 1048.22 L952.483 1016.22 L920.483 1016.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M940.371 1002 L940.371 1034 L972.371 1034 L972.371 1002 L940.371 1002 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M960.259 987.786 L960.259 1019.79 L992.259 1019.79 L992.259 987.786 L960.259 987.786 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M980.147 973.568 L980.147 1005.57 L1012.15 1005.57 L1012.15 973.568 L980.147 973.568 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M942.909 1019.31 L942.909 1051.31 L974.909 1051.31 L974.909 1019.31 L942.909 1019.31 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M962.797 1005.09 L962.797 1037.09 L994.797 1037.09 L994.797 1005.09 L962.797 1005.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M982.685 990.871 L982.685 1022.87 L1014.68 1022.87 L1014.68 990.871 L982.685 990.871 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1002.57 976.654 L1002.57 1008.65 L1034.57 1008.65 L1034.57 976.654 L1002.57 976.654 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M965.335 1022.39 L965.335 1054.39 L997.335 1054.39 L997.335 1022.39 L965.335 1022.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M985.223 1008.17 L985.223 1040.17 L1017.22 1040.17 L1017.22 1008.17 L985.223 1008.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1005.11 993.956 L1005.11 1025.96 L1037.11 1025.96 L1037.11 993.956 L1005.11 993.956 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1025 979.739 L1025 1011.74 L1057 1011.74 L1057 979.739 L1025 979.739 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M987.761 1025.48 L987.761 1057.48 L1019.76 1057.48 L1019.76 1025.48 L987.761 1025.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1007.65 1011.26 L1007.65 1043.26 L1039.65 1043.26 L1039.65 1011.26 L1007.65 1011.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1027.54 997.041 L1027.54 1029.04 L1059.54 1029.04 L1059.54 997.041 L1027.54 997.041 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1047.42 982.824 L1047.42 1014.82 L1079.42 1014.82 L1079.42 982.824 L1047.42 982.824 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1010.19 1028.56 L1010.19 1060.56 L1042.19 1060.56 L1042.19 1028.56 L1010.19 1028.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1030.07 1014.34 L1030.07 1046.34 L1062.07 1046.34 L1062.07 1014.34 L1030.07 1014.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1049.96 1000.13 L1049.96 1032.13 L1081.96 1032.13 L1081.96 1000.13 L1049.96 1000.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1069.85 985.909 L1069.85 1017.91 L1101.85 1017.91 L1101.85 985.909 L1069.85 985.909 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1032.61 1031.65 L1032.61 1063.65 L1064.61 1063.65 L1064.61 1031.65 L1032.61 1031.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1052.5 1017.43 L1052.5 1049.43 L1084.5 1049.43 L1084.5 1017.43 L1052.5 1017.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1072.39 1003.21 L1072.39 1035.21 L1104.39 1035.21 L1104.39 1003.21 L1072.39 1003.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1092.28 988.995 L1092.28 1020.99 L1124.28 1020.99 L1124.28 988.995 L1092.28 988.995 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1055.04 1034.73 L1055.04 1066.73 L1087.04 1066.73 L1087.04 1034.73 L1055.04 1034.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1074.93 1020.51 L1074.93 1052.51 L1106.93 1052.51 L1106.93 1020.51 L1074.93 1020.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1094.81 1006.3 L1094.81 1038.3 L1126.81 1038.3 L1126.81 1006.3 L1094.81 1006.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1114.7 992.08 L1114.7 1024.08 L1146.7 1024.08 L1146.7 992.08 L1114.7 992.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1077.46 1037.82 L1077.46 1069.82 L1109.46 1069.82 L1109.46 1037.82 L1077.46 1037.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1097.35 1023.6 L1097.35 1055.6 L1129.35 1055.6 L1129.35 1023.6 L1097.35 1023.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1117.24 1009.38 L1117.24 1041.38 L1149.24 1041.38 L1149.24 1009.38 L1117.24 1009.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1137.13 995.165 L1137.13 1027.17 L1169.13 1027.17 L1169.13 995.165 L1137.13 995.165 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1099.89 1040.9 L1099.89 1072.9 L1131.89 1072.9 L1131.89 1040.9 L1099.89 1040.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1119.78 1026.69 L1119.78 1058.69 L1151.78 1058.69 L1151.78 1026.69 L1119.78 1026.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1139.66 1012.47 L1139.66 1044.47 L1171.66 1044.47 L1171.66 1012.47 L1139.66 1012.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1159.55 998.251 L1159.55 1030.25 L1191.55 1030.25 L1191.55 998.251 L1159.55 998.251 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1122.31 1043.99 L1122.31 1075.99 L1154.31 1075.99 L1154.31 1043.99 L1122.31 1043.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1142.2 1029.77 L1142.2 1061.77 L1174.2 1061.77 L1174.2 1029.77 L1142.2 1029.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1162.09 1015.55 L1162.09 1047.55 L1194.09 1047.55 L1194.09 1015.55 L1162.09 1015.55 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1181.98 1001.34 L1181.98 1033.34 L1213.98 1033.34 L1213.98 1001.34 L1181.98 1001.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1144.74 1047.07 L1144.74 1079.07 L1176.74 1079.07 L1176.74 1047.07 L1144.74 1047.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1164.63 1032.86 L1164.63 1064.86 L1196.63 1064.86 L1196.63 1032.86 L1164.63 1032.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1184.52 1018.64 L1184.52 1050.64 L1216.52 1050.64 L1216.52 1018.64 L1184.52 1018.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1204.4 1004.42 L1204.4 1036.42 L1236.4 1036.42 L1236.4 1004.42 L1204.4 1004.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1167.17 1050.16 L1167.17 1082.16 L1199.17 1082.16 L1199.17 1050.16 L1167.17 1050.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1187.05 1035.94 L1187.05 1067.94 L1219.05 1067.94 L1219.05 1035.94 L1187.05 1035.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1206.94 1021.72 L1206.94 1053.72 L1238.94 1053.72 L1238.94 1021.72 L1206.94 1021.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1226.83 1007.51 L1226.83 1039.51 L1258.83 1039.51 L1258.83 1007.51 L1226.83 1007.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1189.59 1053.24 L1189.59 1085.24 L1221.59 1085.24 L1221.59 1053.24 L1189.59 1053.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1209.48 1039.03 L1209.48 1071.03 L1241.48 1071.03 L1241.48 1039.03 L1209.48 1039.03 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1229.37 1024.81 L1229.37 1056.81 L1261.37 1056.81 L1261.37 1024.81 L1229.37 1024.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1249.26 1010.59 L1249.26 1042.59 L1281.26 1042.59 L1281.26 1010.59 L1249.26 1010.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1212.02 1056.33 L1212.02 1088.33 L1244.02 1088.33 L1244.02 1056.33 L1212.02 1056.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1231.91 1042.11 L1231.91 1074.11 L1263.91 1074.11 L1263.91 1042.11 L1231.91 1042.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1251.79 1027.89 L1251.79 1059.89 L1283.79 1059.89 L1283.79 1027.89 L1251.79 1027.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1271.68 1013.68 L1271.68 1045.68 L1303.68 1045.68 L1303.68 1013.68 L1271.68 1013.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1234.44 1059.41 L1234.44 1091.41 L1266.44 1091.41 L1266.44 1059.41 L1234.44 1059.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1254.33 1045.2 L1254.33 1077.2 L1286.33 1077.2 L1286.33 1045.2 L1254.33 1045.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1274.22 1030.98 L1274.22 1062.98 L1306.22 1062.98 L1306.22 1030.98 L1274.22 1030.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1294.11 1016.76 L1294.11 1048.76 L1326.11 1048.76 L1326.11 1016.76 L1294.11 1016.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1256.87 1062.5 L1256.87 1094.5 L1288.87 1094.5 L1288.87 1062.5 L1256.87 1062.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1276.76 1048.28 L1276.76 1080.28 L1308.76 1080.28 L1308.76 1048.28 L1276.76 1048.28 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1296.64 1034.06 L1296.64 1066.06 L1328.64 1066.06 L1328.64 1034.06 L1296.64 1034.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1316.53 1019.85 L1316.53 1051.85 L1348.53 1051.85 L1348.53 1019.85 L1316.53 1019.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1279.29 1065.58 L1279.29 1097.58 L1311.29 1097.58 L1311.29 1065.58 L1279.29 1065.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1299.18 1051.37 L1299.18 1083.37 L1331.18 1083.37 L1331.18 1051.37 L1299.18 1051.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1319.07 1037.15 L1319.07 1069.15 L1351.07 1069.15 L1351.07 1037.15 L1319.07 1037.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1338.96 1022.93 L1338.96 1054.93 L1370.96 1054.93 L1370.96 1022.93 L1338.96 1022.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1301.72 1068.67 L1301.72 1100.67 L1333.72 1100.67 L1333.72 1068.67 L1301.72 1068.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1321.61 1054.45 L1321.61 1086.45 L1353.61 1086.45 L1353.61 1054.45 L1321.61 1054.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1341.5 1040.24 L1341.5 1072.24 L1373.5 1072.24 L1373.5 1040.24 L1341.5 1040.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1361.38 1026.02 L1361.38 1058.02 L1393.38 1058.02 L1393.38 1026.02 L1361.38 1026.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1324.15 1071.76 L1324.15 1103.76 L1356.15 1103.76 L1356.15 1071.76 L1324.15 1071.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1344.03 1057.54 L1344.03 1089.54 L1376.03 1089.54 L1376.03 1057.54 L1344.03 1057.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1363.92 1043.32 L1363.92 1075.32 L1395.92 1075.32 L1395.92 1043.32 L1363.92 1043.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1383.81 1029.1 L1383.81 1061.1 L1415.81 1061.1 L1415.81 1029.1 L1383.81 1029.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1346.57 1074.84 L1346.57 1106.84 L1378.57 1106.84 L1378.57 1074.84 L1346.57 1074.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1366.46 1060.62 L1366.46 1092.62 L1398.46 1092.62 L1398.46 1060.62 L1366.46 1060.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1386.35 1046.41 L1386.35 1078.41 L1418.35 1078.41 L1418.35 1046.41 L1386.35 1046.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1406.24 1032.19 L1406.24 1064.19 L1438.24 1064.19 L1438.24 1032.19 L1406.24 1032.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1369 1077.93 L1369 1109.93 L1401 1109.93 L1401 1077.93 L1369 1077.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1388.89 1063.71 L1388.89 1095.71 L1420.89 1095.71 L1420.89 1063.71 L1388.89 1063.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1408.77 1049.49 L1408.77 1081.49 L1440.77 1081.49 L1440.77 1049.49 L1408.77 1049.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1428.66 1035.27 L1428.66 1067.27 L1460.66 1067.27 L1460.66 1035.27 L1428.66 1035.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1391.42 1081.01 L1391.42 1113.01 L1423.42 1113.01 L1423.42 1081.01 L1391.42 1081.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1411.31 1066.79 L1411.31 1098.79 L1443.31 1098.79 L1443.31 1066.79 L1411.31 1066.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1431.2 1052.58 L1431.2 1084.58 L1463.2 1084.58 L1463.2 1052.58 L1431.2 1052.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1451.09 1038.36 L1451.09 1070.36 L1483.09 1070.36 L1483.09 1038.36 L1451.09 1038.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1413.85 1084.1 L1413.85 1116.1 L1445.85 1116.1 L1445.85 1084.1 L1413.85 1084.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1433.74 1069.88 L1433.74 1101.88 L1465.74 1101.88 L1465.74 1069.88 L1433.74 1069.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1453.62 1055.66 L1453.62 1087.66 L1485.62 1087.66 L1485.62 1055.66 L1453.62 1055.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1473.51 1041.44 L1473.51 1073.44 L1505.51 1073.44 L1505.51 1041.44 L1473.51 1041.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1436.27 1087.18 L1436.27 1119.18 L1468.27 1119.18 L1468.27 1087.18 L1436.27 1087.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1456.16 1072.96 L1456.16 1104.96 L1488.16 1104.96 L1488.16 1072.96 L1456.16 1072.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1476.05 1058.75 L1476.05 1090.75 L1508.05 1090.75 L1508.05 1058.75 L1476.05 1058.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1495.94 1044.53 L1495.94 1076.53 L1527.94 1076.53 L1527.94 1044.53 L1495.94 1044.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1458.7 1090.27 L1458.7 1122.27 L1490.7 1122.27 L1490.7 1090.27 L1458.7 1090.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1478.59 1076.05 L1478.59 1108.05 L1510.59 1108.05 L1510.59 1076.05 L1478.59 1076.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1498.48 1061.83 L1498.48 1093.83 L1530.48 1093.83 L1530.48 1061.83 L1498.48 1061.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1518.36 1047.62 L1518.36 1079.62 L1550.36 1079.62 L1550.36 1047.62 L1518.36 1047.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1481.13 1093.35 L1481.13 1125.35 L1513.13 1125.35 L1513.13 1093.35 L1481.13 1093.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1501.01 1079.14 L1501.01 1111.14 L1533.01 1111.14 L1533.01 1079.14 L1501.01 1079.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1520.9 1064.92 L1520.9 1096.92 L1552.9 1096.92 L1552.9 1064.92 L1520.9 1064.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1540.79 1050.7 L1540.79 1082.7 L1572.79 1082.7 L1572.79 1050.7 L1540.79 1050.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1503.55 1096.44 L1503.55 1128.44 L1535.55 1128.44 L1535.55 1096.44 L1503.55 1096.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1523.44 1082.22 L1523.44 1114.22 L1555.44 1114.22 L1555.44 1082.22 L1523.44 1082.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1543.33 1068 L1543.33 1100 L1575.33 1100 L1575.33 1068 L1543.33 1068 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1563.21 1053.79 L1563.21 1085.79 L1595.21 1085.79 L1595.21 1053.79 L1563.21 1053.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1525.98 1099.52 L1525.98 1131.52 L1557.98 1131.52 L1557.98 1099.52 L1525.98 1099.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1545.87 1085.31 L1545.87 1117.31 L1577.87 1117.31 L1577.87 1085.31 L1545.87 1085.31 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1565.75 1071.09 L1565.75 1103.09 L1597.75 1103.09 L1597.75 1071.09 L1565.75 1071.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1585.64 1056.87 L1585.64 1088.87 L1617.64 1088.87 L1617.64 1056.87 L1585.64 1056.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1548.4 1102.61 L1548.4 1134.61 L1580.4 1134.61 L1580.4 1102.61 L1548.4 1102.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1608.07 1059.96 L1608.07 1091.96 L1640.07 1091.96 L1640.07 1059.96 L1608.07 1059.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M539.247 930.582 L539.247 962.582 L571.247 962.582 L571.247 930.582 L539.247 930.582 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M559.134 916.365 L559.134 948.365 L591.134 948.365 L591.134 916.365 L559.134 916.365 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M579.022 902.147 L579.022 934.147 L611.022 934.147 L611.022 902.147 L579.022 902.147 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M598.91 887.93 L598.91 919.93 L630.91 919.93 L630.91 887.93 L598.91 887.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M561.672 933.667 L561.672 965.667 L593.672 965.667 L593.672 933.667 L561.672 933.667 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M581.56 919.45 L581.56 951.45 L613.56 951.45 L613.56 919.45 L581.56 919.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M601.448 905.232 L601.448 937.232 L633.448 937.232 L633.448 905.232 L601.448 905.232 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M621.335 891.015 L621.335 923.015 L653.335 923.015 L653.335 891.015 L621.335 891.015 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M584.098 936.752 L584.098 968.752 L616.098 968.752 L616.098 936.752 L584.098 936.752 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M603.986 922.535 L603.986 954.535 L635.986 954.535 L635.986 922.535 L603.986 922.535 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M623.873 908.318 L623.873 940.318 L655.873 940.318 L655.873 908.318 L623.873 908.318 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M643.761 894.1 L643.761 926.1 L675.761 926.1 L675.761 894.1 L643.761 894.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M606.524 939.838 L606.524 971.838 L638.524 971.838 L638.524 939.838 L606.524 939.838 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M666.187 897.186 L666.187 929.186 L698.187 929.186 L698.187 897.186 L666.187 897.186 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M628.949 942.923 L628.949 974.923 L660.949 974.923 L660.949 942.923 L628.949 942.923 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M648.837 928.706 L648.837 960.706 L680.837 960.706 L680.837 928.706 L648.837 928.706 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M668.725 914.488 L668.725 946.488 L700.725 946.488 L700.725 914.488 L668.725 914.488 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M688.613 900.271 L688.613 932.271 L720.613 932.271 L720.613 900.271 L688.613 900.271 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M651.375 946.008 L651.375 978.008 L683.375 978.008 L683.375 946.008 L651.375 946.008 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M671.263 931.791 L671.263 963.791 L703.263 963.791 L703.263 931.791 L671.263 931.791 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M691.151 917.574 L691.151 949.574 L723.151 949.574 L723.151 917.574 L691.151 917.574 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M711.038 903.356 L711.038 935.356 L743.038 935.356 L743.038 903.356 L711.038 903.356 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M673.801 949.094 L673.801 981.094 L705.801 981.094 L705.801 949.094 L673.801 949.094 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M693.688 934.876 L693.688 966.876 L725.688 966.876 L725.688 934.876 L693.688 934.876 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M713.576 920.659 L713.576 952.659 L745.576 952.659 L745.576 920.659 L713.576 920.659 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M733.464 906.442 L733.464 938.442 L765.464 938.442 L765.464 906.442 L733.464 906.442 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M696.226 952.179 L696.226 984.179 L728.226 984.179 L728.226 952.179 L696.226 952.179 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M716.114 937.962 L716.114 969.962 L748.114 969.962 L748.114 937.962 L716.114 937.962 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M736.002 923.744 L736.002 955.744 L768.002 955.744 L768.002 923.744 L736.002 923.744 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M755.89 909.527 L755.89 941.527 L787.89 941.527 L787.89 909.527 L755.89 909.527 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M718.652 955.264 L718.652 987.264 L750.652 987.264 L750.652 955.264 L718.652 955.264 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M738.54 941.047 L738.54 973.047 L770.54 973.047 L770.54 941.047 L738.54 941.047 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M758.428 926.83 L758.428 958.83 L790.428 958.83 L790.428 926.83 L758.428 926.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M778.315 912.612 L778.315 944.612 L810.315 944.612 L810.315 912.612 L778.315 912.612 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M741.078 958.349 L741.078 990.349 L773.078 990.349 L773.078 958.349 L741.078 958.349 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M800.741 915.698 L800.741 947.698 L832.741 947.698 L832.741 915.698 L800.741 915.698 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1346.57 1041.65 L1346.57 1073.65 L1378.57 1073.65 L1378.57 1041.65 L1346.57 1041.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1406.24 999 L1406.24 1031 L1438.24 1031 L1438.24 999 L1406.24 999 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1369 1044.74 L1369 1076.74 L1401 1076.74 L1401 1044.74 L1369 1044.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1388.89 1030.52 L1388.89 1062.52 L1420.89 1062.52 L1420.89 1030.52 L1388.89 1030.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1408.77 1016.3 L1408.77 1048.3 L1440.77 1048.3 L1440.77 1016.3 L1408.77 1016.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1428.66 1002.09 L1428.66 1034.09 L1460.66 1034.09 L1460.66 1002.09 L1428.66 1002.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1391.42 1047.82 L1391.42 1079.82 L1423.42 1079.82 L1423.42 1047.82 L1391.42 1047.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1411.31 1033.61 L1411.31 1065.61 L1443.31 1065.61 L1443.31 1033.61 L1411.31 1033.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1431.2 1019.39 L1431.2 1051.39 L1463.2 1051.39 L1463.2 1019.39 L1431.2 1019.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1451.09 1005.17 L1451.09 1037.17 L1483.09 1037.17 L1483.09 1005.17 L1451.09 1005.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1413.85 1050.91 L1413.85 1082.91 L1445.85 1082.91 L1445.85 1050.91 L1413.85 1050.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1433.74 1036.69 L1433.74 1068.69 L1465.74 1068.69 L1465.74 1036.69 L1433.74 1036.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1453.62 1022.47 L1453.62 1054.47 L1485.62 1054.47 L1485.62 1022.47 L1453.62 1022.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1473.51 1008.26 L1473.51 1040.26 L1505.51 1040.26 L1505.51 1008.26 L1473.51 1008.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1436.27 1053.99 L1436.27 1085.99 L1468.27 1085.99 L1468.27 1053.99 L1436.27 1053.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1456.16 1039.78 L1456.16 1071.78 L1488.16 1071.78 L1488.16 1039.78 L1456.16 1039.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1476.05 1025.56 L1476.05 1057.56 L1508.05 1057.56 L1508.05 1025.56 L1476.05 1025.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1495.94 1011.34 L1495.94 1043.34 L1527.94 1043.34 L1527.94 1011.34 L1495.94 1011.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1458.7 1057.08 L1458.7 1089.08 L1490.7 1089.08 L1490.7 1057.08 L1458.7 1057.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1478.59 1042.86 L1478.59 1074.86 L1510.59 1074.86 L1510.59 1042.86 L1478.59 1042.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1498.48 1028.64 L1498.48 1060.64 L1530.48 1060.64 L1530.48 1028.64 L1498.48 1028.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1518.36 1014.43 L1518.36 1046.43 L1550.36 1046.43 L1550.36 1014.43 L1518.36 1014.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1481.13 1060.16 L1481.13 1092.16 L1513.13 1092.16 L1513.13 1060.16 L1481.13 1060.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1501.01 1045.95 L1501.01 1077.95 L1533.01 1077.95 L1533.01 1045.95 L1501.01 1045.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1520.9 1031.73 L1520.9 1063.73 L1552.9 1063.73 L1552.9 1031.73 L1520.9 1031.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1540.79 1017.51 L1540.79 1049.51 L1572.79 1049.51 L1572.79 1017.51 L1540.79 1017.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1503.55 1063.25 L1503.55 1095.25 L1535.55 1095.25 L1535.55 1063.25 L1503.55 1063.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1523.44 1049.03 L1523.44 1081.03 L1555.44 1081.03 L1555.44 1049.03 L1523.44 1049.03 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1543.33 1034.81 L1543.33 1066.81 L1575.33 1066.81 L1575.33 1034.81 L1543.33 1034.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1563.21 1020.6 L1563.21 1052.6 L1595.21 1052.6 L1595.21 1020.6 L1563.21 1020.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1525.98 1066.33 L1525.98 1098.33 L1557.98 1098.33 L1557.98 1066.33 L1525.98 1066.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1545.87 1052.12 L1545.87 1084.12 L1577.87 1084.12 L1577.87 1052.12 L1545.87 1052.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1565.75 1037.9 L1565.75 1069.9 L1597.75 1069.9 L1597.75 1037.9 L1565.75 1037.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1585.64 1023.68 L1585.64 1055.68 L1617.64 1055.68 L1617.64 1023.68 L1585.64 1023.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1548.4 1069.42 L1548.4 1101.42 L1580.4 1101.42 L1580.4 1069.42 L1548.4 1069.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1568.29 1055.2 L1568.29 1087.2 L1600.29 1087.2 L1600.29 1055.2 L1568.29 1055.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1588.18 1040.99 L1588.18 1072.99 L1620.18 1072.99 L1620.18 1040.99 L1588.18 1040.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1608.07 1026.77 L1608.07 1058.77 L1640.07 1058.77 L1640.07 1026.77 L1608.07 1026.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1570.83 1072.51 L1570.83 1104.51 L1602.83 1104.51 L1602.83 1072.51 L1570.83 1072.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1630.49 1029.85 L1630.49 1061.85 L1662.49 1061.85 L1662.49 1029.85 L1630.49 1029.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M628.949 909.735 L628.949 941.735 L660.949 941.735 L660.949 909.735 L628.949 909.735 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M688.613 867.083 L688.613 899.083 L720.613 899.083 L720.613 867.083 L688.613 867.083 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M651.375 912.82 L651.375 944.82 L683.375 944.82 L683.375 912.82 L651.375 912.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M671.263 898.603 L671.263 930.603 L703.263 930.603 L703.263 898.603 L671.263 898.603 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M691.151 884.385 L691.151 916.385 L723.151 916.385 L723.151 884.385 L691.151 884.385 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M711.038 870.168 L711.038 902.168 L743.038 902.168 L743.038 870.168 L711.038 870.168 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M673.801 915.905 L673.801 947.905 L705.801 947.905 L705.801 915.905 L673.801 915.905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M693.688 901.688 L693.688 933.688 L725.688 933.688 L725.688 901.688 L693.688 901.688 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M713.576 887.471 L713.576 919.471 L745.576 919.471 L745.576 887.471 L713.576 887.471 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M733.464 873.253 L733.464 905.253 L765.464 905.253 L765.464 873.253 L733.464 873.253 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M696.226 918.991 L696.226 950.991 L728.226 950.991 L728.226 918.991 L696.226 918.991 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M716.114 904.773 L716.114 936.773 L748.114 936.773 L748.114 904.773 L716.114 904.773 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M736.002 890.556 L736.002 922.556 L768.002 922.556 L768.002 890.556 L736.002 890.556 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M755.89 876.339 L755.89 908.339 L787.89 908.339 L787.89 876.339 L755.89 876.339 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M718.652 922.076 L718.652 954.076 L750.652 954.076 L750.652 922.076 L718.652 922.076 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M738.54 907.859 L738.54 939.859 L770.54 939.859 L770.54 907.859 L738.54 907.859 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M758.428 893.641 L758.428 925.641 L790.428 925.641 L790.428 893.641 L758.428 893.641 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M778.315 879.424 L778.315 911.424 L810.315 911.424 L810.315 879.424 L778.315 879.424 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M741.078 925.161 L741.078 957.161 L773.078 957.161 L773.078 925.161 L741.078 925.161 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M760.966 910.944 L760.966 942.944 L792.966 942.944 L792.966 910.944 L760.966 910.944 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M780.853 896.726 L780.853 928.726 L812.853 928.726 L812.853 896.726 L780.853 896.726 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M800.741 882.509 L800.741 914.509 L832.741 914.509 L832.741 882.509 L800.741 882.509 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M763.504 928.246 L763.504 960.246 L795.504 960.246 L795.504 928.246 L763.504 928.246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M823.167 885.594 L823.167 917.594 L855.167 917.594 L855.167 885.594 L823.167 885.594 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1324.15 1005.38 L1324.15 1037.38 L1356.15 1037.38 L1356.15 1005.38 L1324.15 1005.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1383.81 962.727 L1383.81 994.727 L1415.81 994.727 L1415.81 962.727 L1383.81 962.727 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1346.57 1008.46 L1346.57 1040.46 L1378.57 1040.46 L1378.57 1008.46 L1346.57 1008.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1366.46 994.247 L1366.46 1026.25 L1398.46 1026.25 L1398.46 994.247 L1366.46 994.247 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1386.35 980.029 L1386.35 1012.03 L1418.35 1012.03 L1418.35 980.029 L1386.35 980.029 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1406.24 965.812 L1406.24 997.812 L1438.24 997.812 L1438.24 965.812 L1406.24 965.812 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1369 1011.55 L1369 1043.55 L1401 1043.55 L1401 1011.55 L1369 1011.55 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1388.89 997.332 L1388.89 1029.33 L1420.89 1029.33 L1420.89 997.332 L1388.89 997.332 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1408.77 983.115 L1408.77 1015.11 L1440.77 1015.11 L1440.77 983.115 L1408.77 983.115 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1428.66 968.897 L1428.66 1000.9 L1460.66 1000.9 L1460.66 968.897 L1428.66 968.897 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1391.42 1014.63 L1391.42 1046.63 L1423.42 1046.63 L1423.42 1014.63 L1391.42 1014.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1411.31 1000.42 L1411.31 1032.42 L1443.31 1032.42 L1443.31 1000.42 L1411.31 1000.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1431.2 986.2 L1431.2 1018.2 L1463.2 1018.2 L1463.2 986.2 L1431.2 986.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1451.09 971.983 L1451.09 1003.98 L1483.09 1003.98 L1483.09 971.983 L1451.09 971.983 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1413.85 1017.72 L1413.85 1049.72 L1445.85 1049.72 L1445.85 1017.72 L1413.85 1017.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1433.74 1003.5 L1433.74 1035.5 L1465.74 1035.5 L1465.74 1003.5 L1433.74 1003.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1453.62 989.285 L1453.62 1021.29 L1485.62 1021.29 L1485.62 989.285 L1453.62 989.285 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1473.51 975.068 L1473.51 1007.07 L1505.51 1007.07 L1505.51 975.068 L1473.51 975.068 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1436.27 1020.81 L1436.27 1052.81 L1468.27 1052.81 L1468.27 1020.81 L1436.27 1020.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1456.16 1006.59 L1456.16 1038.59 L1488.16 1038.59 L1488.16 1006.59 L1456.16 1006.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1476.05 992.371 L1476.05 1024.37 L1508.05 1024.37 L1508.05 992.371 L1476.05 992.371 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1495.94 978.153 L1495.94 1010.15 L1527.94 1010.15 L1527.94 978.153 L1495.94 978.153 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1458.7 1023.89 L1458.7 1055.89 L1490.7 1055.89 L1490.7 1023.89 L1458.7 1023.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1478.59 1009.67 L1478.59 1041.67 L1510.59 1041.67 L1510.59 1009.67 L1478.59 1009.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1498.48 995.456 L1498.48 1027.46 L1530.48 1027.46 L1530.48 995.456 L1498.48 995.456 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1518.36 981.239 L1518.36 1013.24 L1550.36 1013.24 L1550.36 981.239 L1518.36 981.239 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1481.13 1026.98 L1481.13 1058.98 L1513.13 1058.98 L1513.13 1026.98 L1481.13 1026.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1501.01 1012.76 L1501.01 1044.76 L1533.01 1044.76 L1533.01 1012.76 L1501.01 1012.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1520.9 998.541 L1520.9 1030.54 L1552.9 1030.54 L1552.9 998.541 L1520.9 998.541 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1540.79 984.324 L1540.79 1016.32 L1572.79 1016.32 L1572.79 984.324 L1540.79 984.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1503.55 1030.06 L1503.55 1062.06 L1535.55 1062.06 L1535.55 1030.06 L1503.55 1030.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1523.44 1015.84 L1523.44 1047.84 L1555.44 1047.84 L1555.44 1015.84 L1523.44 1015.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1543.33 1001.63 L1543.33 1033.63 L1575.33 1033.63 L1575.33 1001.63 L1543.33 1001.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1563.21 987.409 L1563.21 1019.41 L1595.21 1019.41 L1595.21 987.409 L1563.21 987.409 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1525.98 1033.15 L1525.98 1065.15 L1557.98 1065.15 L1557.98 1033.15 L1525.98 1033.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1545.87 1018.93 L1545.87 1050.93 L1577.87 1050.93 L1577.87 1018.93 L1545.87 1018.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1565.75 1004.71 L1565.75 1036.71 L1597.75 1036.71 L1597.75 1004.71 L1565.75 1004.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1585.64 990.494 L1585.64 1022.49 L1617.64 1022.49 L1617.64 990.494 L1585.64 990.494 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1548.4 1036.23 L1548.4 1068.23 L1580.4 1068.23 L1580.4 1036.23 L1548.4 1036.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1568.29 1022.01 L1568.29 1054.01 L1600.29 1054.01 L1600.29 1022.01 L1568.29 1022.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1588.18 1007.8 L1588.18 1039.8 L1620.18 1039.8 L1620.18 1007.8 L1588.18 1007.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1608.07 993.58 L1608.07 1025.58 L1640.07 1025.58 L1640.07 993.58 L1608.07 993.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1570.83 1039.32 L1570.83 1071.32 L1602.83 1071.32 L1602.83 1039.32 L1570.83 1039.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1590.72 1025.1 L1590.72 1057.1 L1622.72 1057.1 L1622.72 1025.1 L1590.72 1025.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1610.6 1010.88 L1610.6 1042.88 L1642.6 1042.88 L1642.6 1010.88 L1610.6 1010.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1630.49 996.665 L1630.49 1028.67 L1662.49 1028.67 L1662.49 996.665 L1630.49 996.665 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1593.25 1042.4 L1593.25 1074.4 L1625.25 1074.4 L1625.25 1042.4 L1593.25 1042.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1652.92 999.75 L1652.92 1031.75 L1684.92 1031.75 L1684.92 999.75 L1652.92 999.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M651.375 879.632 L651.375 911.632 L683.375 911.632 L683.375 879.632 L651.375 879.632 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M711.038 836.98 L711.038 868.98 L743.038 868.98 L743.038 836.98 L711.038 836.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M673.801 882.717 L673.801 914.717 L705.801 914.717 L705.801 882.717 L673.801 882.717 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M693.688 868.5 L693.688 900.5 L725.688 900.5 L725.688 868.5 L693.688 868.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M713.576 854.282 L713.576 886.282 L745.576 886.282 L745.576 854.282 L713.576 854.282 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M733.464 840.065 L733.464 872.065 L765.464 872.065 L765.464 840.065 L733.464 840.065 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M696.226 885.802 L696.226 917.802 L728.226 917.802 L728.226 885.802 L696.226 885.802 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M716.114 871.585 L716.114 903.585 L748.114 903.585 L748.114 871.585 L716.114 871.585 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M736.002 857.368 L736.002 889.368 L768.002 889.368 L768.002 857.368 L736.002 857.368 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M755.89 843.15 L755.89 875.15 L787.89 875.15 L787.89 843.15 L755.89 843.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M718.652 888.887 L718.652 920.887 L750.652 920.887 L750.652 888.887 L718.652 888.887 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M738.54 874.67 L738.54 906.67 L770.54 906.67 L770.54 874.67 L738.54 874.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M758.428 860.453 L758.428 892.453 L790.428 892.453 L790.428 860.453 L758.428 860.453 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M778.315 846.236 L778.315 878.236 L810.315 878.236 L810.315 846.236 L778.315 846.236 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M741.078 891.973 L741.078 923.973 L773.078 923.973 L773.078 891.973 L741.078 891.973 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M760.966 877.755 L760.966 909.755 L792.966 909.755 L792.966 877.755 L760.966 877.755 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M780.853 863.538 L780.853 895.538 L812.853 895.538 L812.853 863.538 L780.853 863.538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M800.741 849.321 L800.741 881.321 L832.741 881.321 L832.741 849.321 L800.741 849.321 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M763.504 895.058 L763.504 927.058 L795.504 927.058 L795.504 895.058 L763.504 895.058 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M783.391 880.841 L783.391 912.841 L815.391 912.841 L815.391 880.841 L783.391 880.841 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M803.279 866.623 L803.279 898.623 L835.279 898.623 L835.279 866.623 L803.279 866.623 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M823.167 852.406 L823.167 884.406 L855.167 884.406 L855.167 852.406 L823.167 852.406 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M785.929 898.143 L785.929 930.143 L817.929 930.143 L817.929 898.143 L785.929 898.143 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M845.592 855.491 L845.592 887.491 L877.592 887.491 L877.592 855.491 L845.592 855.491 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1301.72 969.105 L1301.72 1001.11 L1333.72 1001.11 L1333.72 969.105 L1301.72 969.105 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1361.38 926.453 L1361.38 958.453 L1393.38 958.453 L1393.38 926.453 L1361.38 926.453 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1324.15 972.19 L1324.15 1004.19 L1356.15 1004.19 L1356.15 972.19 L1324.15 972.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1344.03 957.973 L1344.03 989.973 L1376.03 989.973 L1376.03 957.973 L1344.03 957.973 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1363.92 943.756 L1363.92 975.756 L1395.92 975.756 L1395.92 943.756 L1363.92 943.756 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1383.81 929.538 L1383.81 961.538 L1415.81 961.538 L1415.81 929.538 L1383.81 929.538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1346.57 975.276 L1346.57 1007.28 L1378.57 1007.28 L1378.57 975.276 L1346.57 975.276 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1366.46 961.058 L1366.46 993.058 L1398.46 993.058 L1398.46 961.058 L1366.46 961.058 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1386.35 946.841 L1386.35 978.841 L1418.35 978.841 L1418.35 946.841 L1386.35 946.841 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1406.24 932.624 L1406.24 964.624 L1438.24 964.624 L1438.24 932.624 L1406.24 932.624 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1369 978.361 L1369 1010.36 L1401 1010.36 L1401 978.361 L1369 978.361 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1388.89 964.144 L1388.89 996.144 L1420.89 996.144 L1420.89 964.144 L1388.89 964.144 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1408.77 949.926 L1408.77 981.926 L1440.77 981.926 L1440.77 949.926 L1408.77 949.926 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1428.66 935.709 L1428.66 967.709 L1460.66 967.709 L1460.66 935.709 L1428.66 935.709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1391.42 981.446 L1391.42 1013.45 L1423.42 1013.45 L1423.42 981.446 L1391.42 981.446 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1411.31 967.229 L1411.31 999.229 L1443.31 999.229 L1443.31 967.229 L1411.31 967.229 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1431.2 953.012 L1431.2 985.012 L1463.2 985.012 L1463.2 953.012 L1431.2 953.012 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1451.09 938.794 L1451.09 970.794 L1483.09 970.794 L1483.09 938.794 L1451.09 938.794 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1413.85 984.532 L1413.85 1016.53 L1445.85 1016.53 L1445.85 984.532 L1413.85 984.532 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1473.51 941.88 L1473.51 973.88 L1505.51 973.88 L1505.51 941.88 L1473.51 941.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1503.55 996.873 L1503.55 1028.87 L1535.55 1028.87 L1535.55 996.873 L1503.55 996.873 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1563.21 954.221 L1563.21 986.221 L1595.21 986.221 L1595.21 954.221 L1563.21 954.221 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1525.98 999.958 L1525.98 1031.96 L1557.98 1031.96 L1557.98 999.958 L1525.98 999.958 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1545.87 985.741 L1545.87 1017.74 L1577.87 1017.74 L1577.87 985.741 L1545.87 985.741 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1565.75 971.523 L1565.75 1003.52 L1597.75 1003.52 L1597.75 971.523 L1565.75 971.523 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1585.64 957.306 L1585.64 989.306 L1617.64 989.306 L1617.64 957.306 L1585.64 957.306 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1548.4 1003.04 L1548.4 1035.04 L1580.4 1035.04 L1580.4 1003.04 L1548.4 1003.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1568.29 988.826 L1568.29 1020.83 L1600.29 1020.83 L1600.29 988.826 L1568.29 988.826 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1588.18 974.609 L1588.18 1006.61 L1620.18 1006.61 L1620.18 974.609 L1588.18 974.609 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1608.07 960.391 L1608.07 992.391 L1640.07 992.391 L1640.07 960.391 L1608.07 960.391 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1570.83 1006.13 L1570.83 1038.13 L1602.83 1038.13 L1602.83 1006.13 L1570.83 1006.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1590.72 991.911 L1590.72 1023.91 L1622.72 1023.91 L1622.72 991.911 L1590.72 991.911 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1610.6 977.694 L1610.6 1009.69 L1642.6 1009.69 L1642.6 977.694 L1610.6 977.694 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1630.49 963.477 L1630.49 995.477 L1662.49 995.477 L1662.49 963.477 L1630.49 963.477 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1593.25 1009.21 L1593.25 1041.21 L1625.25 1041.21 L1625.25 1009.21 L1593.25 1009.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1613.14 994.997 L1613.14 1027 L1645.14 1027 L1645.14 994.997 L1613.14 994.997 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1633.03 980.779 L1633.03 1012.78 L1665.03 1012.78 L1665.03 980.779 L1633.03 980.779 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1652.92 966.562 L1652.92 998.562 L1684.92 998.562 L1684.92 966.562 L1652.92 966.562 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1615.68 1012.3 L1615.68 1044.3 L1647.68 1044.3 L1647.68 1012.3 L1615.68 1012.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1675.34 969.647 L1675.34 1001.65 L1707.34 1001.65 L1707.34 969.647 L1675.34 969.647 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M696.226 852.614 L696.226 884.614 L728.226 884.614 L728.226 852.614 L696.226 852.614 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M755.89 809.962 L755.89 841.962 L787.89 841.962 L787.89 809.962 L755.89 809.962 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M718.652 855.699 L718.652 887.699 L750.652 887.699 L750.652 855.699 L718.652 855.699 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M738.54 841.482 L738.54 873.482 L770.54 873.482 L770.54 841.482 L738.54 841.482 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M758.428 827.264 L758.428 859.264 L790.428 859.264 L790.428 827.264 L758.428 827.264 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M778.315 813.047 L778.315 845.047 L810.315 845.047 L810.315 813.047 L778.315 813.047 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M741.078 858.784 L741.078 890.784 L773.078 890.784 L773.078 858.784 L741.078 858.784 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M760.966 844.567 L760.966 876.567 L792.966 876.567 L792.966 844.567 L760.966 844.567 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M780.853 830.35 L780.853 862.35 L812.853 862.35 L812.853 830.35 L780.853 830.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M800.741 816.132 L800.741 848.132 L832.741 848.132 L832.741 816.132 L800.741 816.132 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M763.504 861.87 L763.504 893.87 L795.504 893.87 L795.504 861.87 L763.504 861.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M783.391 847.652 L783.391 879.652 L815.391 879.652 L815.391 847.652 L783.391 847.652 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M803.279 833.435 L803.279 865.435 L835.279 865.435 L835.279 833.435 L803.279 833.435 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M823.167 819.218 L823.167 851.218 L855.167 851.218 L855.167 819.218 L823.167 819.218 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M785.929 864.955 L785.929 896.955 L817.929 896.955 L817.929 864.955 L785.929 864.955 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M805.817 850.738 L805.817 882.738 L837.817 882.738 L837.817 850.738 L805.817 850.738 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M825.705 836.52 L825.705 868.52 L857.705 868.52 L857.705 836.52 L825.705 836.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M845.592 822.303 L845.592 854.303 L877.592 854.303 L877.592 822.303 L845.592 822.303 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M808.355 868.04 L808.355 900.04 L840.355 900.04 L840.355 868.04 L808.355 868.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M828.243 853.823 L828.243 885.823 L860.243 885.823 L860.243 853.823 L828.243 853.823 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M848.13 839.606 L848.13 871.606 L880.13 871.606 L880.13 839.606 L848.13 839.606 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M868.018 825.388 L868.018 857.388 L900.018 857.388 L900.018 825.388 L868.018 825.388 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M830.781 871.126 L830.781 903.126 L862.781 903.126 L862.781 871.126 L830.781 871.126 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M890.444 828.474 L890.444 860.474 L922.444 860.474 L922.444 828.474 L890.444 828.474 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1279.29 932.832 L1279.29 964.832 L1311.29 964.832 L1311.29 932.832 L1279.29 932.832 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1338.96 890.18 L1338.96 922.18 L1370.96 922.18 L1370.96 890.18 L1338.96 890.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1301.72 935.917 L1301.72 967.917 L1333.72 967.917 L1333.72 935.917 L1301.72 935.917 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1321.61 921.699 L1321.61 953.699 L1353.61 953.699 L1353.61 921.699 L1321.61 921.699 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1341.5 907.482 L1341.5 939.482 L1373.5 939.482 L1373.5 907.482 L1341.5 907.482 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1361.38 893.265 L1361.38 925.265 L1393.38 925.265 L1393.38 893.265 L1361.38 893.265 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1324.15 939.002 L1324.15 971.002 L1356.15 971.002 L1356.15 939.002 L1324.15 939.002 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1344.03 924.785 L1344.03 956.785 L1376.03 956.785 L1376.03 924.785 L1344.03 924.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1363.92 910.567 L1363.92 942.567 L1395.92 942.567 L1395.92 910.567 L1363.92 910.567 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1383.81 896.35 L1383.81 928.35 L1415.81 928.35 L1415.81 896.35 L1383.81 896.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1346.57 942.087 L1346.57 974.087 L1378.57 974.087 L1378.57 942.087 L1346.57 942.087 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1366.46 927.87 L1366.46 959.87 L1398.46 959.87 L1398.46 927.87 L1366.46 927.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1386.35 913.653 L1386.35 945.653 L1418.35 945.653 L1418.35 913.653 L1386.35 913.653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1406.24 899.435 L1406.24 931.435 L1438.24 931.435 L1438.24 899.435 L1406.24 899.435 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1369 945.173 L1369 977.173 L1401 977.173 L1401 945.173 L1369 945.173 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1388.89 930.955 L1388.89 962.955 L1420.89 962.955 L1420.89 930.955 L1388.89 930.955 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1408.77 916.738 L1408.77 948.738 L1440.77 948.738 L1440.77 916.738 L1408.77 916.738 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1428.66 902.521 L1428.66 934.521 L1460.66 934.521 L1460.66 902.521 L1428.66 902.521 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1391.42 948.258 L1391.42 980.258 L1423.42 980.258 L1423.42 948.258 L1391.42 948.258 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1451.09 905.606 L1451.09 937.606 L1483.09 937.606 L1483.09 905.606 L1451.09 905.606 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1525.98 966.77 L1525.98 998.77 L1557.98 998.77 L1557.98 966.77 L1525.98 966.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1585.64 924.118 L1585.64 956.118 L1617.64 956.118 L1617.64 924.118 L1585.64 924.118 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1548.4 969.855 L1548.4 1001.86 L1580.4 1001.86 L1580.4 969.855 L1548.4 969.855 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1568.29 955.638 L1568.29 987.638 L1600.29 987.638 L1600.29 955.638 L1568.29 955.638 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1588.18 941.42 L1588.18 973.42 L1620.18 973.42 L1620.18 941.42 L1588.18 941.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1608.07 927.203 L1608.07 959.203 L1640.07 959.203 L1640.07 927.203 L1608.07 927.203 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1570.83 972.94 L1570.83 1004.94 L1602.83 1004.94 L1602.83 972.94 L1570.83 972.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1590.72 958.723 L1590.72 990.723 L1622.72 990.723 L1622.72 958.723 L1590.72 958.723 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1610.6 944.506 L1610.6 976.506 L1642.6 976.506 L1642.6 944.506 L1610.6 944.506 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1630.49 930.288 L1630.49 962.288 L1662.49 962.288 L1662.49 930.288 L1630.49 930.288 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1593.25 976.026 L1593.25 1008.03 L1625.25 1008.03 L1625.25 976.026 L1593.25 976.026 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1613.14 961.808 L1613.14 993.808 L1645.14 993.808 L1645.14 961.808 L1613.14 961.808 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1633.03 947.591 L1633.03 979.591 L1665.03 979.591 L1665.03 947.591 L1633.03 947.591 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1652.92 933.374 L1652.92 965.374 L1684.92 965.374 L1684.92 933.374 L1652.92 933.374 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1615.68 979.111 L1615.68 1011.11 L1647.68 1011.11 L1647.68 979.111 L1615.68 979.111 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1635.57 964.894 L1635.57 996.894 L1667.57 996.894 L1667.57 964.894 L1635.57 964.894 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1655.46 950.676 L1655.46 982.676 L1687.46 982.676 L1687.46 950.676 L1655.46 950.676 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1675.34 936.459 L1675.34 968.459 L1707.34 968.459 L1707.34 936.459 L1675.34 936.459 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1638.11 982.196 L1638.11 1014.2 L1670.11 1014.2 L1670.11 982.196 L1638.11 982.196 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1657.99 967.979 L1657.99 999.979 L1689.99 999.979 L1689.99 967.979 L1657.99 967.979 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1677.88 953.762 L1677.88 985.762 L1709.88 985.762 L1709.88 953.762 L1677.88 953.762 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1697.77 939.544 L1697.77 971.544 L1729.77 971.544 L1729.77 939.544 L1697.77 939.544 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1660.53 985.282 L1660.53 1017.28 L1692.53 1017.28 L1692.53 985.282 L1660.53 985.282 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1720.19 942.63 L1720.19 974.63 L1752.19 974.63 L1752.19 942.63 L1720.19 942.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M718.652 822.511 L718.652 854.511 L750.652 854.511 L750.652 822.511 L718.652 822.511 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M778.315 779.859 L778.315 811.859 L810.315 811.859 L810.315 779.859 L778.315 779.859 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M741.078 825.596 L741.078 857.596 L773.078 857.596 L773.078 825.596 L741.078 825.596 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M760.966 811.379 L760.966 843.379 L792.966 843.379 L792.966 811.379 L760.966 811.379 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M780.853 797.161 L780.853 829.161 L812.853 829.161 L812.853 797.161 L780.853 797.161 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M800.741 782.944 L800.741 814.944 L832.741 814.944 L832.741 782.944 L800.741 782.944 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M763.504 828.681 L763.504 860.681 L795.504 860.681 L795.504 828.681 L763.504 828.681 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M783.391 814.464 L783.391 846.464 L815.391 846.464 L815.391 814.464 L783.391 814.464 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M803.279 800.247 L803.279 832.247 L835.279 832.247 L835.279 800.247 L803.279 800.247 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M823.167 786.029 L823.167 818.029 L855.167 818.029 L855.167 786.029 L823.167 786.029 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M785.929 831.767 L785.929 863.767 L817.929 863.767 L817.929 831.767 L785.929 831.767 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M805.817 817.549 L805.817 849.549 L837.817 849.549 L837.817 817.549 L805.817 817.549 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M825.705 803.332 L825.705 835.332 L857.705 835.332 L857.705 803.332 L825.705 803.332 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M845.592 789.115 L845.592 821.115 L877.592 821.115 L877.592 789.115 L845.592 789.115 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M808.355 834.852 L808.355 866.852 L840.355 866.852 L840.355 834.852 L808.355 834.852 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M828.243 820.635 L828.243 852.635 L860.243 852.635 L860.243 820.635 L828.243 820.635 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M848.13 806.417 L848.13 838.417 L880.13 838.417 L880.13 806.417 L848.13 806.417 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M868.018 792.2 L868.018 824.2 L900.018 824.2 L900.018 792.2 L868.018 792.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M830.781 837.937 L830.781 869.937 L862.781 869.937 L862.781 837.937 L830.781 837.937 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M850.668 823.72 L850.668 855.72 L882.668 855.72 L882.668 823.72 L850.668 823.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M870.556 809.503 L870.556 841.503 L902.556 841.503 L902.556 809.503 L870.556 809.503 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M890.444 795.285 L890.444 827.285 L922.444 827.285 L922.444 795.285 L890.444 795.285 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M853.206 841.023 L853.206 873.023 L885.206 873.023 L885.206 841.023 L853.206 841.023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M912.87 798.371 L912.87 830.371 L944.87 830.371 L944.87 798.371 L912.87 798.371 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1256.87 896.558 L1256.87 928.558 L1288.87 928.558 L1288.87 896.558 L1256.87 896.558 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1316.53 853.906 L1316.53 885.906 L1348.53 885.906 L1348.53 853.906 L1316.53 853.906 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1279.29 899.643 L1279.29 931.643 L1311.29 931.643 L1311.29 899.643 L1279.29 899.643 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1299.18 885.426 L1299.18 917.426 L1331.18 917.426 L1331.18 885.426 L1299.18 885.426 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1319.07 871.209 L1319.07 903.209 L1351.07 903.209 L1351.07 871.209 L1319.07 871.209 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1338.96 856.991 L1338.96 888.991 L1370.96 888.991 L1370.96 856.991 L1338.96 856.991 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1301.72 902.728 L1301.72 934.728 L1333.72 934.728 L1333.72 902.728 L1301.72 902.728 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1321.61 888.511 L1321.61 920.511 L1353.61 920.511 L1353.61 888.511 L1321.61 888.511 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1341.5 874.294 L1341.5 906.294 L1373.5 906.294 L1373.5 874.294 L1341.5 874.294 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1361.38 860.076 L1361.38 892.076 L1393.38 892.076 L1393.38 860.076 L1361.38 860.076 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1324.15 905.814 L1324.15 937.814 L1356.15 937.814 L1356.15 905.814 L1324.15 905.814 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1344.03 891.596 L1344.03 923.596 L1376.03 923.596 L1376.03 891.596 L1344.03 891.596 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1363.92 877.379 L1363.92 909.379 L1395.92 909.379 L1395.92 877.379 L1363.92 877.379 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1383.81 863.162 L1383.81 895.162 L1415.81 895.162 L1415.81 863.162 L1383.81 863.162 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1346.57 908.899 L1346.57 940.899 L1378.57 940.899 L1378.57 908.899 L1346.57 908.899 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1366.46 894.682 L1366.46 926.682 L1398.46 926.682 L1398.46 894.682 L1366.46 894.682 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1386.35 880.464 L1386.35 912.464 L1418.35 912.464 L1418.35 880.464 L1386.35 880.464 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1406.24 866.247 L1406.24 898.247 L1438.24 898.247 L1438.24 866.247 L1406.24 866.247 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1369 911.984 L1369 943.984 L1401 943.984 L1401 911.984 L1369 911.984 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1428.66 869.332 L1428.66 901.332 L1460.66 901.332 L1460.66 869.332 L1428.66 869.332 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1548.4 936.667 L1548.4 968.667 L1580.4 968.667 L1580.4 936.667 L1548.4 936.667 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1608.07 894.015 L1608.07 926.015 L1640.07 926.015 L1640.07 894.015 L1608.07 894.015 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1570.83 939.752 L1570.83 971.752 L1602.83 971.752 L1602.83 939.752 L1570.83 939.752 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1590.72 925.535 L1590.72 957.535 L1622.72 957.535 L1622.72 925.535 L1590.72 925.535 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1610.6 911.317 L1610.6 943.317 L1642.6 943.317 L1642.6 911.317 L1610.6 911.317 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1630.49 897.1 L1630.49 929.1 L1662.49 929.1 L1662.49 897.1 L1630.49 897.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1593.25 942.837 L1593.25 974.837 L1625.25 974.837 L1625.25 942.837 L1593.25 942.837 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1613.14 928.62 L1613.14 960.62 L1645.14 960.62 L1645.14 928.62 L1613.14 928.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1633.03 914.403 L1633.03 946.403 L1665.03 946.403 L1665.03 914.403 L1633.03 914.403 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1652.92 900.185 L1652.92 932.185 L1684.92 932.185 L1684.92 900.185 L1652.92 900.185 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1615.68 945.923 L1615.68 977.923 L1647.68 977.923 L1647.68 945.923 L1615.68 945.923 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1635.57 931.705 L1635.57 963.705 L1667.57 963.705 L1667.57 931.705 L1635.57 931.705 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1655.46 917.488 L1655.46 949.488 L1687.46 949.488 L1687.46 917.488 L1655.46 917.488 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1675.34 903.271 L1675.34 935.271 L1707.34 935.271 L1707.34 903.271 L1675.34 903.271 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1638.11 949.008 L1638.11 981.008 L1670.11 981.008 L1670.11 949.008 L1638.11 949.008 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1657.99 934.791 L1657.99 966.791 L1689.99 966.791 L1689.99 934.791 L1657.99 934.791 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1677.88 920.573 L1677.88 952.573 L1709.88 952.573 L1709.88 920.573 L1677.88 920.573 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1697.77 906.356 L1697.77 938.356 L1729.77 938.356 L1729.77 906.356 L1697.77 906.356 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1660.53 952.093 L1660.53 984.093 L1692.53 984.093 L1692.53 952.093 L1660.53 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1680.42 937.876 L1680.42 969.876 L1712.42 969.876 L1712.42 937.876 L1680.42 937.876 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1700.31 923.659 L1700.31 955.659 L1732.31 955.659 L1732.31 923.659 L1700.31 923.659 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1720.19 909.441 L1720.19 941.441 L1752.19 941.441 L1752.19 909.441 L1720.19 909.441 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1682.96 955.178 L1682.96 987.178 L1714.96 987.178 L1714.96 955.178 L1682.96 955.178 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1742.62 912.526 L1742.62 944.526 L1774.62 944.526 L1774.62 912.526 L1742.62 912.526 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M741.078 792.408 L741.078 824.408 L773.078 824.408 L773.078 792.408 L741.078 792.408 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M800.741 749.756 L800.741 781.756 L832.741 781.756 L832.741 749.756 L800.741 749.756 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M763.504 795.493 L763.504 827.493 L795.504 827.493 L795.504 795.493 L763.504 795.493 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M783.391 781.276 L783.391 813.276 L815.391 813.276 L815.391 781.276 L783.391 781.276 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M803.279 767.058 L803.279 799.058 L835.279 799.058 L835.279 767.058 L803.279 767.058 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M823.167 752.841 L823.167 784.841 L855.167 784.841 L855.167 752.841 L823.167 752.841 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M785.929 798.578 L785.929 830.578 L817.929 830.578 L817.929 798.578 L785.929 798.578 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M805.817 784.361 L805.817 816.361 L837.817 816.361 L837.817 784.361 L805.817 784.361 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M825.705 770.144 L825.705 802.144 L857.705 802.144 L857.705 770.144 L825.705 770.144 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M845.592 755.926 L845.592 787.926 L877.592 787.926 L877.592 755.926 L845.592 755.926 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M808.355 801.664 L808.355 833.664 L840.355 833.664 L840.355 801.664 L808.355 801.664 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M828.243 787.446 L828.243 819.446 L860.243 819.446 L860.243 787.446 L828.243 787.446 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M848.13 773.229 L848.13 805.229 L880.13 805.229 L880.13 773.229 L848.13 773.229 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M868.018 759.012 L868.018 791.012 L900.018 791.012 L900.018 759.012 L868.018 759.012 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M830.781 804.749 L830.781 836.749 L862.781 836.749 L862.781 804.749 L830.781 804.749 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M850.668 790.532 L850.668 822.532 L882.668 822.532 L882.668 790.532 L850.668 790.532 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M870.556 776.314 L870.556 808.314 L902.556 808.314 L902.556 776.314 L870.556 776.314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M890.444 762.097 L890.444 794.097 L922.444 794.097 L922.444 762.097 L890.444 762.097 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M853.206 807.834 L853.206 839.834 L885.206 839.834 L885.206 807.834 L853.206 807.834 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M873.094 793.617 L873.094 825.617 L905.094 825.617 L905.094 793.617 L873.094 793.617 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M892.982 779.4 L892.982 811.4 L924.982 811.4 L924.982 779.4 L892.982 779.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M912.87 765.182 L912.87 797.182 L944.87 797.182 L944.87 765.182 L912.87 765.182 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M875.632 810.92 L875.632 842.92 L907.632 842.92 L907.632 810.92 L875.632 810.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M935.295 768.268 L935.295 800.268 L967.295 800.268 L967.295 768.268 L935.295 768.268 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1234.44 860.284 L1234.44 892.284 L1266.44 892.284 L1266.44 860.284 L1234.44 860.284 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1294.11 817.632 L1294.11 849.632 L1326.11 849.632 L1326.11 817.632 L1294.11 817.632 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1256.87 863.37 L1256.87 895.37 L1288.87 895.37 L1288.87 863.37 L1256.87 863.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1276.76 849.152 L1276.76 881.152 L1308.76 881.152 L1308.76 849.152 L1276.76 849.152 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1296.64 834.935 L1296.64 866.935 L1328.64 866.935 L1328.64 834.935 L1296.64 834.935 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1316.53 820.718 L1316.53 852.718 L1348.53 852.718 L1348.53 820.718 L1316.53 820.718 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1279.29 866.455 L1279.29 898.455 L1311.29 898.455 L1311.29 866.455 L1279.29 866.455 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1299.18 852.237 L1299.18 884.237 L1331.18 884.237 L1331.18 852.237 L1299.18 852.237 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1319.07 838.02 L1319.07 870.02 L1351.07 870.02 L1351.07 838.02 L1319.07 838.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1338.96 823.803 L1338.96 855.803 L1370.96 855.803 L1370.96 823.803 L1338.96 823.803 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1301.72 869.54 L1301.72 901.54 L1333.72 901.54 L1333.72 869.54 L1301.72 869.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1321.61 855.323 L1321.61 887.323 L1353.61 887.323 L1353.61 855.323 L1321.61 855.323 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1341.5 841.105 L1341.5 873.105 L1373.5 873.105 L1373.5 841.105 L1341.5 841.105 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1361.38 826.888 L1361.38 858.888 L1393.38 858.888 L1393.38 826.888 L1361.38 826.888 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1324.15 872.625 L1324.15 904.625 L1356.15 904.625 L1356.15 872.625 L1324.15 872.625 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1344.03 858.408 L1344.03 890.408 L1376.03 890.408 L1376.03 858.408 L1344.03 858.408 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1363.92 844.191 L1363.92 876.191 L1395.92 876.191 L1395.92 844.191 L1363.92 844.191 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1383.81 829.973 L1383.81 861.973 L1415.81 861.973 L1415.81 829.973 L1383.81 829.973 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1346.57 875.711 L1346.57 907.711 L1378.57 907.711 L1378.57 875.711 L1346.57 875.711 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1366.46 861.493 L1366.46 893.493 L1398.46 893.493 L1398.46 861.493 L1366.46 861.493 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1386.35 847.276 L1386.35 879.276 L1418.35 879.276 L1418.35 847.276 L1386.35 847.276 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1406.24 833.059 L1406.24 865.059 L1438.24 865.059 L1438.24 833.059 L1406.24 833.059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1369 878.796 L1369 910.796 L1401 910.796 L1401 878.796 L1369 878.796 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1428.66 836.144 L1428.66 868.144 L1460.66 868.144 L1460.66 836.144 L1428.66 836.144 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1593.25 909.649 L1593.25 941.649 L1625.25 941.649 L1625.25 909.649 L1593.25 909.649 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1652.92 866.997 L1652.92 898.997 L1684.92 898.997 L1684.92 866.997 L1652.92 866.997 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1615.68 912.734 L1615.68 944.734 L1647.68 944.734 L1647.68 912.734 L1615.68 912.734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1635.57 898.517 L1635.57 930.517 L1667.57 930.517 L1667.57 898.517 L1635.57 898.517 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1655.46 884.3 L1655.46 916.3 L1687.46 916.3 L1687.46 884.3 L1655.46 884.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1675.34 870.082 L1675.34 902.082 L1707.34 902.082 L1707.34 870.082 L1675.34 870.082 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1638.11 915.82 L1638.11 947.82 L1670.11 947.82 L1670.11 915.82 L1638.11 915.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1657.99 901.602 L1657.99 933.602 L1689.99 933.602 L1689.99 901.602 L1657.99 901.602 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1677.88 887.385 L1677.88 919.385 L1709.88 919.385 L1709.88 887.385 L1677.88 887.385 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1697.77 873.168 L1697.77 905.168 L1729.77 905.168 L1729.77 873.168 L1697.77 873.168 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1660.53 918.905 L1660.53 950.905 L1692.53 950.905 L1692.53 918.905 L1660.53 918.905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1680.42 904.687 L1680.42 936.687 L1712.42 936.687 L1712.42 904.687 L1680.42 904.687 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1700.31 890.47 L1700.31 922.47 L1732.31 922.47 L1732.31 890.47 L1700.31 890.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1720.19 876.253 L1720.19 908.253 L1752.19 908.253 L1752.19 876.253 L1720.19 876.253 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1682.96 921.99 L1682.96 953.99 L1714.96 953.99 L1714.96 921.99 L1682.96 921.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1702.85 907.773 L1702.85 939.773 L1734.85 939.773 L1734.85 907.773 L1702.85 907.773 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1722.73 893.555 L1722.73 925.555 L1754.73 925.555 L1754.73 893.555 L1722.73 893.555 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1742.62 879.338 L1742.62 911.338 L1774.62 911.338 L1774.62 879.338 L1742.62 879.338 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1705.38 925.075 L1705.38 957.075 L1737.38 957.075 L1737.38 925.075 L1705.38 925.075 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1765.05 882.423 L1765.05 914.423 L1797.05 914.423 L1797.05 882.423 L1765.05 882.423 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M785.929 765.39 L785.929 797.39 L817.929 797.39 L817.929 765.39 L785.929 765.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M845.592 722.738 L845.592 754.738 L877.592 754.738 L877.592 722.738 L845.592 722.738 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M808.355 768.475 L808.355 800.475 L840.355 800.475 L840.355 768.475 L808.355 768.475 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M828.243 754.258 L828.243 786.258 L860.243 786.258 L860.243 754.258 L828.243 754.258 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M848.13 740.041 L848.13 772.041 L880.13 772.041 L880.13 740.041 L848.13 740.041 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M868.018 725.823 L868.018 757.823 L900.018 757.823 L900.018 725.823 L868.018 725.823 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M830.781 771.561 L830.781 803.561 L862.781 803.561 L862.781 771.561 L830.781 771.561 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M850.668 757.343 L850.668 789.343 L882.668 789.343 L882.668 757.343 L850.668 757.343 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M870.556 743.126 L870.556 775.126 L902.556 775.126 L902.556 743.126 L870.556 743.126 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M890.444 728.909 L890.444 760.909 L922.444 760.909 L922.444 728.909 L890.444 728.909 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M853.206 774.646 L853.206 806.646 L885.206 806.646 L885.206 774.646 L853.206 774.646 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M873.094 760.429 L873.094 792.429 L905.094 792.429 L905.094 760.429 L873.094 760.429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M892.982 746.211 L892.982 778.211 L924.982 778.211 L924.982 746.211 L892.982 746.211 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M912.87 731.994 L912.87 763.994 L944.87 763.994 L944.87 731.994 L912.87 731.994 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M875.632 777.731 L875.632 809.731 L907.632 809.731 L907.632 777.731 L875.632 777.731 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M895.52 763.514 L895.52 795.514 L927.52 795.514 L927.52 763.514 L895.52 763.514 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M915.408 749.297 L915.408 781.297 L947.408 781.297 L947.408 749.297 L915.408 749.297 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M935.295 735.079 L935.295 767.079 L967.295 767.079 L967.295 735.079 L935.295 735.079 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M898.058 780.816 L898.058 812.816 L930.058 812.816 L930.058 780.816 L898.058 780.816 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M957.721 738.164 L957.721 770.164 L989.721 770.164 L989.721 738.164 L957.721 738.164 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1212.02 824.011 L1212.02 856.011 L1244.02 856.011 L1244.02 824.011 L1212.02 824.011 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1271.68 781.359 L1271.68 813.359 L1303.68 813.359 L1303.68 781.359 L1271.68 781.359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1234.44 827.096 L1234.44 859.096 L1266.44 859.096 L1266.44 827.096 L1234.44 827.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1254.33 812.879 L1254.33 844.879 L1286.33 844.879 L1286.33 812.879 L1254.33 812.879 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1274.22 798.661 L1274.22 830.661 L1306.22 830.661 L1306.22 798.661 L1274.22 798.661 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1294.11 784.444 L1294.11 816.444 L1326.11 816.444 L1326.11 784.444 L1294.11 784.444 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1256.87 830.181 L1256.87 862.181 L1288.87 862.181 L1288.87 830.181 L1256.87 830.181 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1276.76 815.964 L1276.76 847.964 L1308.76 847.964 L1308.76 815.964 L1276.76 815.964 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1296.64 801.747 L1296.64 833.747 L1328.64 833.747 L1328.64 801.747 L1296.64 801.747 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1316.53 787.529 L1316.53 819.529 L1348.53 819.529 L1348.53 787.529 L1316.53 787.529 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1279.29 833.266 L1279.29 865.266 L1311.29 865.266 L1311.29 833.266 L1279.29 833.266 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1299.18 819.049 L1299.18 851.049 L1331.18 851.049 L1331.18 819.049 L1299.18 819.049 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1319.07 804.832 L1319.07 836.832 L1351.07 836.832 L1351.07 804.832 L1319.07 804.832 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1338.96 790.614 L1338.96 822.614 L1370.96 822.614 L1370.96 790.614 L1338.96 790.614 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1301.72 836.352 L1301.72 868.352 L1333.72 868.352 L1333.72 836.352 L1301.72 836.352 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1321.61 822.134 L1321.61 854.134 L1353.61 854.134 L1353.61 822.134 L1321.61 822.134 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1341.5 807.917 L1341.5 839.917 L1373.5 839.917 L1373.5 807.917 L1341.5 807.917 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1361.38 793.7 L1361.38 825.7 L1393.38 825.7 L1393.38 793.7 L1361.38 793.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1324.15 839.437 L1324.15 871.437 L1356.15 871.437 L1356.15 839.437 L1324.15 839.437 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1344.03 825.22 L1344.03 857.22 L1376.03 857.22 L1376.03 825.22 L1344.03 825.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1363.92 811.002 L1363.92 843.002 L1395.92 843.002 L1395.92 811.002 L1363.92 811.002 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1383.81 796.785 L1383.81 828.785 L1415.81 828.785 L1415.81 796.785 L1383.81 796.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1346.57 842.522 L1346.57 874.522 L1378.57 874.522 L1378.57 842.522 L1346.57 842.522 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1366.46 828.305 L1366.46 860.305 L1398.46 860.305 L1398.46 828.305 L1366.46 828.305 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1386.35 814.088 L1386.35 846.088 L1418.35 846.088 L1418.35 814.088 L1386.35 814.088 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1406.24 799.87 L1406.24 831.87 L1438.24 831.87 L1438.24 799.87 L1406.24 799.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1369 845.608 L1369 877.608 L1401 877.608 L1401 845.608 L1369 845.608 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1388.89 831.39 L1388.89 863.39 L1420.89 863.39 L1420.89 831.39 L1388.89 831.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1408.77 817.173 L1408.77 849.173 L1440.77 849.173 L1440.77 817.173 L1408.77 817.173 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1428.66 802.956 L1428.66 834.956 L1460.66 834.956 L1460.66 802.956 L1428.66 802.956 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1615.68 879.546 L1615.68 911.546 L1647.68 911.546 L1647.68 879.546 L1615.68 879.546 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1675.34 836.894 L1675.34 868.894 L1707.34 868.894 L1707.34 836.894 L1675.34 836.894 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1638.11 882.631 L1638.11 914.631 L1670.11 914.631 L1670.11 882.631 L1638.11 882.631 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1657.99 868.414 L1657.99 900.414 L1689.99 900.414 L1689.99 868.414 L1657.99 868.414 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1677.88 854.197 L1677.88 886.197 L1709.88 886.197 L1709.88 854.197 L1677.88 854.197 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1697.77 839.979 L1697.77 871.979 L1729.77 871.979 L1729.77 839.979 L1697.77 839.979 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1660.53 885.716 L1660.53 917.716 L1692.53 917.716 L1692.53 885.716 L1660.53 885.716 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1680.42 871.499 L1680.42 903.499 L1712.42 903.499 L1712.42 871.499 L1680.42 871.499 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1700.31 857.282 L1700.31 889.282 L1732.31 889.282 L1732.31 857.282 L1700.31 857.282 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1720.19 843.064 L1720.19 875.064 L1752.19 875.064 L1752.19 843.064 L1720.19 843.064 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1682.96 888.802 L1682.96 920.802 L1714.96 920.802 L1714.96 888.802 L1682.96 888.802 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1702.85 874.584 L1702.85 906.584 L1734.85 906.584 L1734.85 874.584 L1702.85 874.584 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1722.73 860.367 L1722.73 892.367 L1754.73 892.367 L1754.73 860.367 L1722.73 860.367 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1742.62 846.15 L1742.62 878.15 L1774.62 878.15 L1774.62 846.15 L1742.62 846.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1705.38 891.887 L1705.38 923.887 L1737.38 923.887 L1737.38 891.887 L1705.38 891.887 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1725.27 877.67 L1725.27 909.67 L1757.27 909.67 L1757.27 877.67 L1725.27 877.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1745.16 863.452 L1745.16 895.452 L1777.16 895.452 L1777.16 863.452 L1745.16 863.452 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1765.05 849.235 L1765.05 881.235 L1797.05 881.235 L1797.05 849.235 L1765.05 849.235 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1727.81 894.972 L1727.81 926.972 L1759.81 926.972 L1759.81 894.972 L1727.81 894.972 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1787.47 852.32 L1787.47 884.32 L1819.47 884.32 L1819.47 852.32 L1787.47 852.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M808.355 735.287 L808.355 767.287 L840.355 767.287 L840.355 735.287 L808.355 735.287 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M868.018 692.635 L868.018 724.635 L900.018 724.635 L900.018 692.635 L868.018 692.635 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M830.781 738.372 L830.781 770.372 L862.781 770.372 L862.781 738.372 L830.781 738.372 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M850.668 724.155 L850.668 756.155 L882.668 756.155 L882.668 724.155 L850.668 724.155 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M870.556 709.938 L870.556 741.938 L902.556 741.938 L902.556 709.938 L870.556 709.938 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M890.444 695.72 L890.444 727.72 L922.444 727.72 L922.444 695.72 L890.444 695.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M853.206 741.458 L853.206 773.458 L885.206 773.458 L885.206 741.458 L853.206 741.458 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M873.094 727.24 L873.094 759.24 L905.094 759.24 L905.094 727.24 L873.094 727.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M892.982 713.023 L892.982 745.023 L924.982 745.023 L924.982 713.023 L892.982 713.023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M912.87 698.806 L912.87 730.806 L944.87 730.806 L944.87 698.806 L912.87 698.806 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M875.632 744.543 L875.632 776.543 L907.632 776.543 L907.632 744.543 L875.632 744.543 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M895.52 730.325 L895.52 762.325 L927.52 762.325 L927.52 730.325 L895.52 730.325 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M915.408 716.108 L915.408 748.108 L947.408 748.108 L947.408 716.108 L915.408 716.108 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M935.295 701.891 L935.295 733.891 L967.295 733.891 L967.295 701.891 L935.295 701.891 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M898.058 747.628 L898.058 779.628 L930.058 779.628 L930.058 747.628 L898.058 747.628 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M917.946 733.411 L917.946 765.411 L949.946 765.411 L949.946 733.411 L917.946 733.411 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M937.833 719.193 L937.833 751.193 L969.833 751.193 L969.833 719.193 L937.833 719.193 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M957.721 704.976 L957.721 736.976 L989.721 736.976 L989.721 704.976 L957.721 704.976 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M920.483 750.713 L920.483 782.713 L952.483 782.713 L952.483 750.713 L920.483 750.713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M980.147 708.061 L980.147 740.061 L1012.15 740.061 L1012.15 708.061 L980.147 708.061 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1212.02 790.822 L1212.02 822.822 L1244.02 822.822 L1244.02 790.822 L1212.02 790.822 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1231.91 776.605 L1231.91 808.605 L1263.91 808.605 L1263.91 776.605 L1231.91 776.605 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1251.79 762.388 L1251.79 794.388 L1283.79 794.388 L1283.79 762.388 L1251.79 762.388 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1271.68 748.17 L1271.68 780.17 L1303.68 780.17 L1303.68 748.17 L1271.68 748.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1234.44 793.908 L1234.44 825.908 L1266.44 825.908 L1266.44 793.908 L1234.44 793.908 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1254.33 779.69 L1254.33 811.69 L1286.33 811.69 L1286.33 779.69 L1254.33 779.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1274.22 765.473 L1274.22 797.473 L1306.22 797.473 L1306.22 765.473 L1274.22 765.473 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1294.11 751.256 L1294.11 783.256 L1326.11 783.256 L1326.11 751.256 L1294.11 751.256 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1256.87 796.993 L1256.87 828.993 L1288.87 828.993 L1288.87 796.993 L1256.87 796.993 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1276.76 782.775 L1276.76 814.775 L1308.76 814.775 L1308.76 782.775 L1276.76 782.775 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1296.64 768.558 L1296.64 800.558 L1328.64 800.558 L1328.64 768.558 L1296.64 768.558 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1316.53 754.341 L1316.53 786.341 L1348.53 786.341 L1348.53 754.341 L1316.53 754.341 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1279.29 800.078 L1279.29 832.078 L1311.29 832.078 L1311.29 800.078 L1279.29 800.078 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1299.18 785.861 L1299.18 817.861 L1331.18 817.861 L1331.18 785.861 L1299.18 785.861 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1319.07 771.643 L1319.07 803.643 L1351.07 803.643 L1351.07 771.643 L1319.07 771.643 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1338.96 757.426 L1338.96 789.426 L1370.96 789.426 L1370.96 757.426 L1338.96 757.426 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1301.72 803.163 L1301.72 835.163 L1333.72 835.163 L1333.72 803.163 L1301.72 803.163 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1361.38 760.511 L1361.38 792.511 L1393.38 792.511 L1393.38 760.511 L1361.38 760.511 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1324.15 806.249 L1324.15 838.249 L1356.15 838.249 L1356.15 806.249 L1324.15 806.249 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1344.03 792.031 L1344.03 824.031 L1376.03 824.031 L1376.03 792.031 L1344.03 792.031 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1363.92 777.814 L1363.92 809.814 L1395.92 809.814 L1395.92 777.814 L1363.92 777.814 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1383.81 763.597 L1383.81 795.597 L1415.81 795.597 L1415.81 763.597 L1383.81 763.597 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1346.57 809.334 L1346.57 841.334 L1378.57 841.334 L1378.57 809.334 L1346.57 809.334 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1366.46 795.117 L1366.46 827.117 L1398.46 827.117 L1398.46 795.117 L1366.46 795.117 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1386.35 780.899 L1386.35 812.899 L1418.35 812.899 L1418.35 780.899 L1386.35 780.899 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1406.24 766.682 L1406.24 798.682 L1438.24 798.682 L1438.24 766.682 L1406.24 766.682 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1369 812.419 L1369 844.419 L1401 844.419 L1401 812.419 L1369 812.419 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1388.89 798.202 L1388.89 830.202 L1420.89 830.202 L1420.89 798.202 L1388.89 798.202 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1408.77 783.985 L1408.77 815.985 L1440.77 815.985 L1440.77 783.985 L1408.77 783.985 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1428.66 769.767 L1428.66 801.767 L1460.66 801.767 L1460.66 769.767 L1428.66 769.767 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1391.42 815.505 L1391.42 847.505 L1423.42 847.505 L1423.42 815.505 L1391.42 815.505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1451.09 772.853 L1451.09 804.853 L1483.09 804.853 L1483.09 772.853 L1451.09 772.853 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1638.11 849.443 L1638.11 881.443 L1670.11 881.443 L1670.11 849.443 L1638.11 849.443 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1697.77 806.791 L1697.77 838.791 L1729.77 838.791 L1729.77 806.791 L1697.77 806.791 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1660.53 852.528 L1660.53 884.528 L1692.53 884.528 L1692.53 852.528 L1660.53 852.528 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1680.42 838.311 L1680.42 870.311 L1712.42 870.311 L1712.42 838.311 L1680.42 838.311 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1700.31 824.093 L1700.31 856.093 L1732.31 856.093 L1732.31 824.093 L1700.31 824.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1720.19 809.876 L1720.19 841.876 L1752.19 841.876 L1752.19 809.876 L1720.19 809.876 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1682.96 855.613 L1682.96 887.613 L1714.96 887.613 L1714.96 855.613 L1682.96 855.613 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1702.85 841.396 L1702.85 873.396 L1734.85 873.396 L1734.85 841.396 L1702.85 841.396 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1722.73 827.179 L1722.73 859.179 L1754.73 859.179 L1754.73 827.179 L1722.73 827.179 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1742.62 812.961 L1742.62 844.961 L1774.62 844.961 L1774.62 812.961 L1742.62 812.961 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1705.38 858.699 L1705.38 890.699 L1737.38 890.699 L1737.38 858.699 L1705.38 858.699 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1725.27 844.481 L1725.27 876.481 L1757.27 876.481 L1757.27 844.481 L1725.27 844.481 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1745.16 830.264 L1745.16 862.264 L1777.16 862.264 L1777.16 830.264 L1745.16 830.264 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1765.05 816.047 L1765.05 848.047 L1797.05 848.047 L1797.05 816.047 L1765.05 816.047 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1727.81 861.784 L1727.81 893.784 L1759.81 893.784 L1759.81 861.784 L1727.81 861.784 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1747.7 847.567 L1747.7 879.567 L1779.7 879.567 L1779.7 847.567 L1747.7 847.567 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1767.58 833.349 L1767.58 865.349 L1799.58 865.349 L1799.58 833.349 L1767.58 833.349 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1787.47 819.132 L1787.47 851.132 L1819.47 851.132 L1819.47 819.132 L1787.47 819.132 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1750.23 864.869 L1750.23 896.869 L1782.23 896.869 L1782.23 864.869 L1750.23 864.869 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1770.12 850.652 L1770.12 882.652 L1802.12 882.652 L1802.12 850.652 L1770.12 850.652 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1790.01 836.435 L1790.01 868.435 L1822.01 868.435 L1822.01 836.435 L1790.01 836.435 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1809.9 822.217 L1809.9 854.217 L1841.9 854.217 L1841.9 822.217 L1809.9 822.217 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1772.66 867.955 L1772.66 899.955 L1804.66 899.955 L1804.66 867.955 L1772.66 867.955 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1832.32 825.303 L1832.32 857.303 L1864.32 857.303 L1864.32 825.303 L1832.32 825.303 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M808.355 702.099 L808.355 734.099 L840.355 734.099 L840.355 702.099 L808.355 702.099 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M868.018 659.447 L868.018 691.447 L900.018 691.447 L900.018 659.447 L868.018 659.447 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M830.781 705.184 L830.781 737.184 L862.781 737.184 L862.781 705.184 L830.781 705.184 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M850.668 690.967 L850.668 722.967 L882.668 722.967 L882.668 690.967 L850.668 690.967 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M870.556 676.749 L870.556 708.749 L902.556 708.749 L902.556 676.749 L870.556 676.749 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M890.444 662.532 L890.444 694.532 L922.444 694.532 L922.444 662.532 L890.444 662.532 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M853.206 708.269 L853.206 740.269 L885.206 740.269 L885.206 708.269 L853.206 708.269 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M873.094 694.052 L873.094 726.052 L905.094 726.052 L905.094 694.052 L873.094 694.052 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M892.982 679.835 L892.982 711.835 L924.982 711.835 L924.982 679.835 L892.982 679.835 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M912.87 665.617 L912.87 697.617 L944.87 697.617 L944.87 665.617 L912.87 665.617 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M875.632 711.354 L875.632 743.354 L907.632 743.354 L907.632 711.354 L875.632 711.354 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M895.52 697.137 L895.52 729.137 L927.52 729.137 L927.52 697.137 L895.52 697.137 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M915.408 682.92 L915.408 714.92 L947.408 714.92 L947.408 682.92 L915.408 682.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M935.295 668.702 L935.295 700.702 L967.295 700.702 L967.295 668.702 L935.295 668.702 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M898.058 714.44 L898.058 746.44 L930.058 746.44 L930.058 714.44 L898.058 714.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M917.946 700.222 L917.946 732.222 L949.946 732.222 L949.946 700.222 L917.946 700.222 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M937.833 686.005 L937.833 718.005 L969.833 718.005 L969.833 686.005 L937.833 686.005 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M957.721 671.788 L957.721 703.788 L989.721 703.788 L989.721 671.788 L957.721 671.788 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M920.483 717.525 L920.483 749.525 L952.483 749.525 L952.483 717.525 L920.483 717.525 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M940.371 703.308 L940.371 735.308 L972.371 735.308 L972.371 703.308 L940.371 703.308 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M960.259 689.09 L960.259 721.09 L992.259 721.09 L992.259 689.09 L960.259 689.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M980.147 674.873 L980.147 706.873 L1012.15 706.873 L1012.15 674.873 L980.147 674.873 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M942.909 720.61 L942.909 752.61 L974.909 752.61 L974.909 720.61 L942.909 720.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1002.57 677.958 L1002.57 709.958 L1034.57 709.958 L1034.57 677.958 L1002.57 677.958 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1189.59 754.549 L1189.59 786.549 L1221.59 786.549 L1221.59 754.549 L1189.59 754.549 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1249.26 711.897 L1249.26 743.897 L1281.26 743.897 L1281.26 711.897 L1249.26 711.897 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1212.02 757.634 L1212.02 789.634 L1244.02 789.634 L1244.02 757.634 L1212.02 757.634 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1231.91 743.417 L1231.91 775.417 L1263.91 775.417 L1263.91 743.417 L1231.91 743.417 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1251.79 729.199 L1251.79 761.199 L1283.79 761.199 L1283.79 729.199 L1251.79 729.199 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1271.68 714.982 L1271.68 746.982 L1303.68 746.982 L1303.68 714.982 L1271.68 714.982 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1234.44 760.719 L1234.44 792.719 L1266.44 792.719 L1266.44 760.719 L1234.44 760.719 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1254.33 746.502 L1254.33 778.502 L1286.33 778.502 L1286.33 746.502 L1254.33 746.502 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1274.22 732.285 L1274.22 764.285 L1306.22 764.285 L1306.22 732.285 L1274.22 732.285 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1294.11 718.067 L1294.11 750.067 L1326.11 750.067 L1326.11 718.067 L1294.11 718.067 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1256.87 763.804 L1256.87 795.804 L1288.87 795.804 L1288.87 763.804 L1256.87 763.804 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1276.76 749.587 L1276.76 781.587 L1308.76 781.587 L1308.76 749.587 L1276.76 749.587 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1296.64 735.37 L1296.64 767.37 L1328.64 767.37 L1328.64 735.37 L1296.64 735.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1316.53 721.152 L1316.53 753.152 L1348.53 753.152 L1348.53 721.152 L1316.53 721.152 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1279.29 766.89 L1279.29 798.89 L1311.29 798.89 L1311.29 766.89 L1279.29 766.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1338.96 724.238 L1338.96 756.238 L1370.96 756.238 L1370.96 724.238 L1338.96 724.238 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1324.15 773.06 L1324.15 805.06 L1356.15 805.06 L1356.15 773.06 L1324.15 773.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1383.81 730.408 L1383.81 762.408 L1415.81 762.408 L1415.81 730.408 L1383.81 730.408 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1346.57 776.146 L1346.57 808.146 L1378.57 808.146 L1378.57 776.146 L1346.57 776.146 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1366.46 761.928 L1366.46 793.928 L1398.46 793.928 L1398.46 761.928 L1366.46 761.928 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1386.35 747.711 L1386.35 779.711 L1418.35 779.711 L1418.35 747.711 L1386.35 747.711 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1406.24 733.494 L1406.24 765.494 L1438.24 765.494 L1438.24 733.494 L1406.24 733.494 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1369 779.231 L1369 811.231 L1401 811.231 L1401 779.231 L1369 779.231 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1388.89 765.014 L1388.89 797.014 L1420.89 797.014 L1420.89 765.014 L1388.89 765.014 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1408.77 750.796 L1408.77 782.796 L1440.77 782.796 L1440.77 750.796 L1408.77 750.796 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1428.66 736.579 L1428.66 768.579 L1460.66 768.579 L1460.66 736.579 L1428.66 736.579 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1391.42 782.316 L1391.42 814.316 L1423.42 814.316 L1423.42 782.316 L1391.42 782.316 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1411.31 768.099 L1411.31 800.099 L1443.31 800.099 L1443.31 768.099 L1411.31 768.099 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1431.2 753.882 L1431.2 785.882 L1463.2 785.882 L1463.2 753.882 L1431.2 753.882 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1451.09 739.664 L1451.09 771.664 L1483.09 771.664 L1483.09 739.664 L1451.09 739.664 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1660.53 819.34 L1660.53 851.34 L1692.53 851.34 L1692.53 819.34 L1660.53 819.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1720.19 776.688 L1720.19 808.688 L1752.19 808.688 L1752.19 776.688 L1720.19 776.688 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1682.96 822.425 L1682.96 854.425 L1714.96 854.425 L1714.96 822.425 L1682.96 822.425 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1702.85 808.208 L1702.85 840.208 L1734.85 840.208 L1734.85 808.208 L1702.85 808.208 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1722.73 793.99 L1722.73 825.99 L1754.73 825.99 L1754.73 793.99 L1722.73 793.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1742.62 779.773 L1742.62 811.773 L1774.62 811.773 L1774.62 779.773 L1742.62 779.773 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1705.38 825.51 L1705.38 857.51 L1737.38 857.51 L1737.38 825.51 L1705.38 825.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1725.27 811.293 L1725.27 843.293 L1757.27 843.293 L1757.27 811.293 L1725.27 811.293 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1745.16 797.076 L1745.16 829.076 L1777.16 829.076 L1777.16 797.076 L1745.16 797.076 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1765.05 782.858 L1765.05 814.858 L1797.05 814.858 L1797.05 782.858 L1765.05 782.858 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1727.81 828.596 L1727.81 860.596 L1759.81 860.596 L1759.81 828.596 L1727.81 828.596 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1747.7 814.378 L1747.7 846.378 L1779.7 846.378 L1779.7 814.378 L1747.7 814.378 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1767.58 800.161 L1767.58 832.161 L1799.58 832.161 L1799.58 800.161 L1767.58 800.161 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1787.47 785.944 L1787.47 817.944 L1819.47 817.944 L1819.47 785.944 L1787.47 785.944 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1750.23 831.681 L1750.23 863.681 L1782.23 863.681 L1782.23 831.681 L1750.23 831.681 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1770.12 817.464 L1770.12 849.464 L1802.12 849.464 L1802.12 817.464 L1770.12 817.464 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1790.01 803.246 L1790.01 835.246 L1822.01 835.246 L1822.01 803.246 L1790.01 803.246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1809.9 789.029 L1809.9 821.029 L1841.9 821.029 L1841.9 789.029 L1809.9 789.029 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1772.66 834.766 L1772.66 866.766 L1804.66 866.766 L1804.66 834.766 L1772.66 834.766 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1792.55 820.549 L1792.55 852.549 L1824.55 852.549 L1824.55 820.549 L1792.55 820.549 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1812.44 806.332 L1812.44 838.332 L1844.44 838.332 L1844.44 806.332 L1812.44 806.332 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1832.32 792.114 L1832.32 824.114 L1864.32 824.114 L1864.32 792.114 L1832.32 792.114 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1795.09 837.852 L1795.09 869.852 L1827.09 869.852 L1827.09 837.852 L1795.09 837.852 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M1854.75 795.2 L1854.75 827.2 L1886.75 827.2 L1886.75 795.2 L1854.75 795.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M785.929 665.825 L785.929 697.825 L817.929 697.825 L817.929 665.825 L785.929 665.825 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M845.592 623.173 L845.592 655.173 L877.592 655.173 L877.592 623.173 L845.592 623.173 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M808.355 668.91 L808.355 700.91 L840.355 700.91 L840.355 668.91 L808.355 668.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M828.243 654.693 L828.243 686.693 L860.243 686.693 L860.243 654.693 L828.243 654.693 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M848.13 640.476 L848.13 672.476 L880.13 672.476 L880.13 640.476 L848.13 640.476 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",
       "<path clip-path=\"url(#clip7902)\" d=\"M868.018 626.258 L868.018 658.258 L900.018 658.258 L900.018 626.258 L868.018 626.258 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0.6\" stroke=\"none\"/>\n",