@primer/components 29.1.0 → 29.1.1-rc.cea79543

Sign up to get free protection for your applications and to get access to all the features.
Files changed (753) hide show
  1. package/.changeset/README.md +8 -0
  2. package/.changeset/config.json +10 -0
  3. package/.devcontainer/devcontainer.json +8 -0
  4. package/.eslintrc.json +106 -0
  5. package/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
  6. package/.github/ISSUE_TEMPLATE/new_component_proposal_template.md +41 -0
  7. package/.github/dependabot.yml +18 -0
  8. package/.github/pull_request_template.md +18 -0
  9. package/.github/workflows/ci.yml +31 -0
  10. package/.github/workflows/deploy_preview.yml +47 -0
  11. package/.github/workflows/deploy_production.yml +70 -0
  12. package/.github/workflows/release.yml +35 -0
  13. package/.github/workflows/release_canary.yml +70 -0
  14. package/.github/workflows/release_candidate.yml +60 -0
  15. package/.github/workflows/size.yml +13 -0
  16. package/.github/workflows/stale.yml +26 -0
  17. package/.gitignore +10 -0
  18. package/.npmrc +4 -0
  19. package/.nvmrc +1 -0
  20. package/.storybook/main.js +11 -0
  21. package/.storybook/preview.js +69 -0
  22. package/.vscode/launch.json +21 -0
  23. package/.vscode/settings.json +13 -0
  24. package/@types/@styled-system/index.d.ts +0 -0
  25. package/@types/@styled-system/prop-types/index.d.ts +1 -0
  26. package/@types/@styled-system/props/index.d.ts +1 -0
  27. package/@types/jest-styled-components/index.d.ts +1 -0
  28. package/CHANGELOG.md +6 -0
  29. package/CODEOWNERS +2 -0
  30. package/babel-defines.js +13 -0
  31. package/babel.config.js +39 -0
  32. package/contributor-docs/CODE_OF_CONDUCT.md +76 -0
  33. package/contributor-docs/CONTRIBUTING.md +274 -0
  34. package/contributor-docs/adrs/adr-001-typescript.md +23 -0
  35. package/contributor-docs/adrs/adr-002-behavior-isolation.md +106 -0
  36. package/contributor-docs/behaviors.md +132 -0
  37. package/contributor-docs/component-contents-api-patterns.md +315 -0
  38. package/contributor-docs/principles.md +39 -0
  39. package/docs/.eslintrc +0 -0
  40. package/docs/.gitignore +91 -0
  41. package/docs/components/PropsList.js +5 -0
  42. package/docs/components/State.js +9 -0
  43. package/docs/components/constants.js +34 -0
  44. package/docs/components/index.js +2 -0
  45. package/docs/content/ActionList.mdx +72 -0
  46. package/docs/content/ActionMenu.mdx +80 -0
  47. package/docs/content/AnchoredOverlay.mdx +37 -0
  48. package/docs/content/Avatar.mdx +33 -0
  49. package/docs/content/AvatarStack.mdx +43 -0
  50. package/docs/content/BorderBox.md +46 -0
  51. package/docs/content/Box.md +74 -0
  52. package/docs/content/BranchName.md +18 -0
  53. package/docs/content/Breadcrumbs.md +52 -0
  54. package/docs/content/Buttons.md +54 -0
  55. package/docs/content/CircleBadge.md +45 -0
  56. package/docs/content/CircleOcticon.md +18 -0
  57. package/docs/content/CounterLabel.md +30 -0
  58. package/docs/content/Details.md +105 -0
  59. package/docs/content/Dialog.md +108 -0
  60. package/docs/content/Dialog2.mdx +179 -0
  61. package/docs/content/Dropdown.md +72 -0
  62. package/docs/content/DropdownMenu.mdx +49 -0
  63. package/docs/content/FilterList.md +44 -0
  64. package/docs/content/FilteredSearch.md +39 -0
  65. package/docs/content/Flash.md +42 -0
  66. package/docs/content/Flex.md +58 -0
  67. package/docs/content/FormGroup.md +44 -0
  68. package/docs/content/Grid.md +59 -0
  69. package/docs/content/Header.md +79 -0
  70. package/docs/content/Heading.md +22 -0
  71. package/docs/content/Label.md +40 -0
  72. package/docs/content/LabelGroup.md +31 -0
  73. package/docs/content/Link.md +37 -0
  74. package/docs/content/Overlay.mdx +94 -0
  75. package/docs/content/Pagehead.md +27 -0
  76. package/docs/content/Pagination.md +187 -0
  77. package/docs/content/PointerBox.md +81 -0
  78. package/docs/content/Popover.md +137 -0
  79. package/docs/content/Portal.mdx +73 -0
  80. package/docs/content/Position.md +97 -0
  81. package/docs/content/ProgressBar.mdx +29 -0
  82. package/docs/content/SelectMenu.md +433 -0
  83. package/docs/content/SelectPanel.mdx +67 -0
  84. package/docs/content/SideNav.md +179 -0
  85. package/docs/content/Spinner.mdx +32 -0
  86. package/docs/content/StateLabel.md +33 -0
  87. package/docs/content/StyledOcticon.md +34 -0
  88. package/docs/content/SubNav.md +102 -0
  89. package/docs/content/TabNav.md +50 -0
  90. package/docs/content/Text.md +29 -0
  91. package/docs/content/TextInput.md +32 -0
  92. package/docs/content/Timeline.md +138 -0
  93. package/docs/content/Tooltip.md +41 -0
  94. package/docs/content/Truncate.md +65 -0
  95. package/docs/content/UnderlineNav.md +53 -0
  96. package/docs/content/anchoredPosition.mdx +163 -0
  97. package/docs/content/core-concepts.md +70 -0
  98. package/docs/content/focusTrap.mdx +103 -0
  99. package/docs/content/focusZone.mdx +145 -0
  100. package/docs/content/getting-started.md +134 -0
  101. package/docs/content/index.md +33 -0
  102. package/docs/content/linting.md +35 -0
  103. package/docs/content/overriding-styles.mdx +79 -0
  104. package/docs/content/philosophy.md +23 -0
  105. package/docs/content/primer-theme.md +89 -0
  106. package/docs/content/ssr.mdx +43 -0
  107. package/docs/content/system-props.mdx +37 -0
  108. package/docs/content/theme-reference.md +16 -0
  109. package/docs/content/theming.md +249 -0
  110. package/docs/content/useOnEscapePress.mdx +56 -0
  111. package/docs/content/useOnOutsideClick.mdx +57 -0
  112. package/docs/content/useOpenAndCloseFocus.mdx +49 -0
  113. package/docs/content/useOverlay.mdx +62 -0
  114. package/docs/content/useSafeTimeout.mdx +32 -0
  115. package/docs/gatsby-config.js +30 -0
  116. package/docs/gatsby-node.js +101 -0
  117. package/docs/package-lock.json +20979 -0
  118. package/docs/package.json +35 -0
  119. package/docs/src/@primer/gatsby-theme-doctocat/components/hero.js +21 -0
  120. package/docs/src/@primer/gatsby-theme-doctocat/components/live-code.js +84 -0
  121. package/docs/src/@primer/gatsby-theme-doctocat/components/live-preview-wrapper.js +39 -0
  122. package/docs/src/@primer/gatsby-theme-doctocat/components/nav-dropdown.js +48 -0
  123. package/docs/src/@primer/gatsby-theme-doctocat/components/wrap-page-element.js +25 -0
  124. package/docs/src/@primer/gatsby-theme-doctocat/live-code-scope.js +54 -0
  125. package/docs/src/@primer/gatsby-theme-doctocat/nav.yml +127 -0
  126. package/docs/src/@primer/gatsby-theme-doctocat/primer-components-hero.svg +1411 -0
  127. package/docs/src/props.js +77 -0
  128. package/jest.config.js +13 -0
  129. package/lib/Button/Button.d.ts +0 -1
  130. package/lib/Button/ButtonClose.d.ts +1 -2
  131. package/lib/Button/ButtonDanger.d.ts +0 -1
  132. package/lib/Button/ButtonInvisible.d.ts +0 -1
  133. package/lib/Button/ButtonOutline.d.ts +0 -1
  134. package/lib/Button/ButtonPrimary.d.ts +0 -1
  135. package/lib/CircleOcticon.d.ts +0 -1
  136. package/lib/Dialog.d.ts +2 -3
  137. package/lib/Dropdown.d.ts +0 -4
  138. package/lib/DropdownMenu/DropdownButton.d.ts +1 -2
  139. package/lib/FilterList.d.ts +0 -1
  140. package/lib/Position.d.ts +4 -4
  141. package/lib/SelectMenu/SelectMenu.d.ts +4 -10
  142. package/lib/SelectMenu/SelectMenuItem.d.ts +1 -1
  143. package/lib/SelectMenu/SelectMenuModal.d.ts +1 -1
  144. package/lib/Timeline.d.ts +0 -1
  145. package/lib/__tests__/ActionList.d.ts +1 -0
  146. package/lib/__tests__/ActionList.js +67 -0
  147. package/lib/__tests__/ActionMenu.d.ts +1 -0
  148. package/lib/__tests__/ActionMenu.js +154 -0
  149. package/lib/__tests__/AnchoredOverlay.d.ts +1 -0
  150. package/lib/__tests__/AnchoredOverlay.js +161 -0
  151. package/lib/__tests__/Avatar.d.ts +1 -0
  152. package/lib/__tests__/Avatar.js +70 -0
  153. package/lib/__tests__/AvatarStack.d.ts +1 -0
  154. package/lib/__tests__/AvatarStack.js +71 -0
  155. package/lib/__tests__/BorderBox.d.ts +1 -0
  156. package/lib/__tests__/BorderBox.js +61 -0
  157. package/lib/__tests__/Box.d.ts +1 -0
  158. package/lib/__tests__/Box.js +81 -0
  159. package/lib/__tests__/BranchName.d.ts +1 -0
  160. package/lib/__tests__/BranchName.js +39 -0
  161. package/lib/__tests__/Breadcrumb.d.ts +1 -0
  162. package/lib/__tests__/Breadcrumb.js +42 -0
  163. package/lib/__tests__/BreadcrumbItem.d.ts +1 -0
  164. package/lib/__tests__/BreadcrumbItem.js +52 -0
  165. package/lib/__tests__/Button.d.ts +1 -0
  166. package/lib/__tests__/Button.js +152 -0
  167. package/lib/__tests__/Caret.d.ts +1 -0
  168. package/lib/__tests__/Caret.js +52 -0
  169. package/lib/__tests__/CircleBadge.d.ts +1 -0
  170. package/lib/__tests__/CircleBadge.js +87 -0
  171. package/lib/__tests__/CircleOcticon.d.ts +1 -0
  172. package/lib/__tests__/CircleOcticon.js +74 -0
  173. package/lib/__tests__/CounterLabel.d.ts +1 -0
  174. package/lib/__tests__/CounterLabel.js +61 -0
  175. package/lib/__tests__/Details.d.ts +1 -0
  176. package/lib/__tests__/Details.js +120 -0
  177. package/lib/__tests__/Dialog.d.ts +1 -0
  178. package/lib/__tests__/Dialog.js +188 -0
  179. package/lib/__tests__/Dropdown.d.ts +1 -0
  180. package/lib/__tests__/Dropdown.js +70 -0
  181. package/lib/__tests__/DropdownMenu.d.ts +1 -0
  182. package/lib/__tests__/DropdownMenu.js +153 -0
  183. package/lib/__tests__/FilterList.d.ts +1 -0
  184. package/lib/__tests__/FilterList.js +39 -0
  185. package/lib/__tests__/FilterListItem.d.ts +1 -0
  186. package/lib/__tests__/FilterListItem.js +49 -0
  187. package/lib/__tests__/FilteredSearch.d.ts +1 -0
  188. package/lib/__tests__/FilteredSearch.js +39 -0
  189. package/lib/__tests__/Flash.d.ts +1 -0
  190. package/lib/__tests__/Flash.js +65 -0
  191. package/lib/__tests__/Flex.d.ts +1 -0
  192. package/lib/__tests__/Flex.js +77 -0
  193. package/lib/__tests__/FormGroup.d.ts +1 -0
  194. package/lib/__tests__/FormGroup.js +58 -0
  195. package/lib/__tests__/Grid.d.ts +1 -0
  196. package/lib/__tests__/Grid.js +107 -0
  197. package/lib/__tests__/Header.d.ts +1 -0
  198. package/lib/__tests__/Header.js +63 -0
  199. package/lib/__tests__/Heading.d.ts +1 -0
  200. package/lib/__tests__/Heading.js +112 -0
  201. package/lib/__tests__/Label.d.ts +1 -0
  202. package/lib/__tests__/Label.js +49 -0
  203. package/lib/__tests__/LabelGroup.d.ts +1 -0
  204. package/lib/__tests__/LabelGroup.js +41 -0
  205. package/lib/__tests__/Link.d.ts +1 -0
  206. package/lib/__tests__/Link.js +73 -0
  207. package/lib/__tests__/Overlay.d.ts +1 -0
  208. package/lib/__tests__/Overlay.js +145 -0
  209. package/lib/__tests__/Pagehead.d.ts +1 -0
  210. package/lib/__tests__/Pagehead.js +40 -0
  211. package/lib/__tests__/Pagination/Pagination.d.ts +1 -0
  212. package/lib/__tests__/Pagination/Pagination.js +50 -0
  213. package/lib/__tests__/Pagination/PaginationModel.d.ts +1 -0
  214. package/lib/__tests__/Pagination/PaginationModel.js +186 -0
  215. package/lib/__tests__/PointerBox.d.ts +1 -0
  216. package/lib/__tests__/PointerBox.js +49 -0
  217. package/lib/__tests__/Popover.d.ts +1 -0
  218. package/lib/__tests__/Popover.js +70 -0
  219. package/lib/__tests__/Portal.d.ts +1 -0
  220. package/lib/__tests__/Portal.js +124 -0
  221. package/lib/__tests__/Position.d.ts +1 -0
  222. package/lib/__tests__/Position.js +149 -0
  223. package/lib/__tests__/ProgressBar.d.ts +1 -0
  224. package/lib/__tests__/ProgressBar.js +71 -0
  225. package/lib/__tests__/SelectMenu.d.ts +1 -0
  226. package/lib/__tests__/SelectMenu.js +155 -0
  227. package/lib/__tests__/SelectPanel.d.ts +1 -0
  228. package/lib/__tests__/SelectPanel.js +83 -0
  229. package/lib/__tests__/SideNav.d.ts +1 -0
  230. package/lib/__tests__/SideNav.js +75 -0
  231. package/lib/__tests__/Spinner.d.ts +1 -0
  232. package/lib/__tests__/Spinner.js +56 -0
  233. package/lib/__tests__/StateLabel.d.ts +1 -0
  234. package/lib/__tests__/StateLabel.js +74 -0
  235. package/lib/__tests__/StyledOcticon.d.ts +1 -0
  236. package/lib/__tests__/StyledOcticon.js +43 -0
  237. package/lib/__tests__/SubNav.d.ts +1 -0
  238. package/lib/__tests__/SubNav.js +65 -0
  239. package/lib/__tests__/SubNavLink.d.ts +1 -0
  240. package/lib/__tests__/SubNavLink.js +52 -0
  241. package/lib/__tests__/TabNav.d.ts +1 -0
  242. package/lib/__tests__/TabNav.js +53 -0
  243. package/lib/__tests__/Text.d.ts +1 -0
  244. package/lib/__tests__/Text.js +108 -0
  245. package/lib/__tests__/TextInput.d.ts +1 -0
  246. package/lib/__tests__/TextInput.js +81 -0
  247. package/lib/__tests__/ThemeProvider.d.ts +1 -0
  248. package/lib/__tests__/ThemeProvider.js +444 -0
  249. package/lib/__tests__/Timeline.d.ts +1 -0
  250. package/lib/__tests__/Timeline.js +80 -0
  251. package/lib/__tests__/Tooltip.d.ts +1 -0
  252. package/lib/__tests__/Tooltip.js +72 -0
  253. package/lib/__tests__/Truncate.d.ts +1 -0
  254. package/lib/__tests__/Truncate.js +66 -0
  255. package/lib/__tests__/UnderlineNav.d.ts +1 -0
  256. package/lib/__tests__/UnderlineNav.js +75 -0
  257. package/lib/__tests__/UnderlineNavLink.d.ts +1 -0
  258. package/lib/__tests__/UnderlineNavLink.js +54 -0
  259. package/lib/__tests__/behaviors/anchoredPosition.d.ts +1 -0
  260. package/lib/__tests__/behaviors/anchoredPosition.js +390 -0
  261. package/lib/__tests__/behaviors/focusTrap.d.ts +1 -0
  262. package/lib/__tests__/behaviors/focusTrap.js +234 -0
  263. package/lib/__tests__/behaviors/focusZone.d.ts +1 -0
  264. package/lib/__tests__/behaviors/focusZone.js +570 -0
  265. package/lib/__tests__/behaviors/iterateFocusableElements.d.ts +1 -0
  266. package/lib/__tests__/behaviors/iterateFocusableElements.js +55 -0
  267. package/lib/__tests__/filterObject.d.ts +1 -0
  268. package/lib/__tests__/filterObject.js +30 -0
  269. package/lib/__tests__/hooks/useAnchoredPosition.d.ts +1 -0
  270. package/lib/__tests__/hooks/useAnchoredPosition.js +54 -0
  271. package/lib/__tests__/hooks/useOnEscapePress.d.ts +1 -0
  272. package/lib/__tests__/hooks/useOnEscapePress.js +32 -0
  273. package/lib/__tests__/hooks/useOnOutsideClick.d.ts +1 -0
  274. package/lib/__tests__/hooks/useOnOutsideClick.js +87 -0
  275. package/lib/__tests__/hooks/useOpenAndCloseFocus.d.ts +1 -0
  276. package/lib/__tests__/hooks/useOpenAndCloseFocus.js +60 -0
  277. package/lib/__tests__/hooks/useProvidedStateOrCreate.d.ts +1 -0
  278. package/lib/__tests__/hooks/useProvidedStateOrCreate.js +45 -0
  279. package/lib/__tests__/theme.d.ts +1 -0
  280. package/lib/__tests__/theme.js +36 -0
  281. package/lib/__tests__/themeGet.d.ts +1 -0
  282. package/lib/__tests__/themeGet.js +25 -0
  283. package/lib/__tests__/useSafeTimeout.d.ts +1 -0
  284. package/lib/__tests__/useSafeTimeout.js +45 -0
  285. package/lib/stories/ActionList.stories.js +382 -0
  286. package/lib/stories/ActionMenu.stories.js +338 -0
  287. package/lib/stories/AnchoredOverlay.stories.js +127 -0
  288. package/lib/stories/AvatarStack.stories.js +49 -0
  289. package/lib/stories/Button.stories.js +114 -0
  290. package/lib/stories/ConfirmationDialog.stories.js +111 -0
  291. package/lib/stories/Dialog.stories.js +265 -0
  292. package/lib/stories/DropdownMenu.stories.js +122 -0
  293. package/lib/stories/Overlay.stories.js +185 -0
  294. package/lib/stories/Portal.stories.js +104 -0
  295. package/lib/stories/SelectPanel.stories.js +342 -0
  296. package/lib/stories/ThemeProvider.stories.js +102 -0
  297. package/lib/stories/useAnchoredPosition.stories.js +351 -0
  298. package/lib/stories/useFocusTrap.stories.js +356 -0
  299. package/lib/stories/useFocusZone.stories.js +599 -0
  300. package/lib-esm/Button/Button.d.ts +0 -1
  301. package/lib-esm/Button/ButtonClose.d.ts +1 -2
  302. package/lib-esm/Button/ButtonDanger.d.ts +0 -1
  303. package/lib-esm/Button/ButtonInvisible.d.ts +0 -1
  304. package/lib-esm/Button/ButtonOutline.d.ts +0 -1
  305. package/lib-esm/Button/ButtonPrimary.d.ts +0 -1
  306. package/lib-esm/CircleOcticon.d.ts +0 -1
  307. package/lib-esm/Dialog.d.ts +2 -3
  308. package/lib-esm/Dropdown.d.ts +0 -4
  309. package/lib-esm/DropdownMenu/DropdownButton.d.ts +1 -2
  310. package/lib-esm/FilterList.d.ts +0 -1
  311. package/lib-esm/Position.d.ts +4 -4
  312. package/lib-esm/SelectMenu/SelectMenu.d.ts +4 -10
  313. package/lib-esm/SelectMenu/SelectMenuItem.d.ts +1 -1
  314. package/lib-esm/SelectMenu/SelectMenuModal.d.ts +1 -1
  315. package/lib-esm/Timeline.d.ts +0 -1
  316. package/lib-esm/__tests__/ActionList.d.ts +1 -0
  317. package/lib-esm/__tests__/ActionList.js +54 -0
  318. package/lib-esm/__tests__/ActionMenu.d.ts +1 -0
  319. package/lib-esm/__tests__/ActionMenu.js +141 -0
  320. package/lib-esm/__tests__/AnchoredOverlay.d.ts +1 -0
  321. package/lib-esm/__tests__/AnchoredOverlay.js +135 -0
  322. package/lib-esm/__tests__/Avatar.d.ts +1 -0
  323. package/lib-esm/__tests__/Avatar.js +58 -0
  324. package/lib-esm/__tests__/AvatarStack.d.ts +1 -0
  325. package/lib-esm/__tests__/AvatarStack.js +57 -0
  326. package/lib-esm/__tests__/BorderBox.d.ts +1 -0
  327. package/lib-esm/__tests__/BorderBox.js +49 -0
  328. package/lib-esm/__tests__/Box.d.ts +1 -0
  329. package/lib-esm/__tests__/Box.js +69 -0
  330. package/lib-esm/__tests__/BranchName.d.ts +1 -0
  331. package/lib-esm/__tests__/BranchName.js +28 -0
  332. package/lib-esm/__tests__/Breadcrumb.d.ts +1 -0
  333. package/lib-esm/__tests__/Breadcrumb.js +31 -0
  334. package/lib-esm/__tests__/BreadcrumbItem.d.ts +1 -0
  335. package/lib-esm/__tests__/BreadcrumbItem.js +41 -0
  336. package/lib-esm/__tests__/Button.d.ts +1 -0
  337. package/lib-esm/__tests__/Button.js +141 -0
  338. package/lib-esm/__tests__/Caret.d.ts +1 -0
  339. package/lib-esm/__tests__/Caret.js +42 -0
  340. package/lib-esm/__tests__/CircleBadge.d.ts +1 -0
  341. package/lib-esm/__tests__/CircleBadge.js +73 -0
  342. package/lib-esm/__tests__/CircleOcticon.d.ts +1 -0
  343. package/lib-esm/__tests__/CircleOcticon.js +61 -0
  344. package/lib-esm/__tests__/CounterLabel.d.ts +1 -0
  345. package/lib-esm/__tests__/CounterLabel.js +49 -0
  346. package/lib-esm/__tests__/Details.d.ts +1 -0
  347. package/lib-esm/__tests__/Details.js +109 -0
  348. package/lib-esm/__tests__/Dialog.d.ts +1 -0
  349. package/lib-esm/__tests__/Dialog.js +174 -0
  350. package/lib-esm/__tests__/Dropdown.d.ts +1 -0
  351. package/lib-esm/__tests__/Dropdown.js +59 -0
  352. package/lib-esm/__tests__/DropdownMenu.d.ts +1 -0
  353. package/lib-esm/__tests__/DropdownMenu.js +139 -0
  354. package/lib-esm/__tests__/FilterList.d.ts +1 -0
  355. package/lib-esm/__tests__/FilterList.js +28 -0
  356. package/lib-esm/__tests__/FilterListItem.d.ts +1 -0
  357. package/lib-esm/__tests__/FilterListItem.js +38 -0
  358. package/lib-esm/__tests__/FilteredSearch.d.ts +1 -0
  359. package/lib-esm/__tests__/FilteredSearch.js +28 -0
  360. package/lib-esm/__tests__/Flash.d.ts +1 -0
  361. package/lib-esm/__tests__/Flash.js +53 -0
  362. package/lib-esm/__tests__/Flex.d.ts +1 -0
  363. package/lib-esm/__tests__/Flex.js +66 -0
  364. package/lib-esm/__tests__/FormGroup.d.ts +1 -0
  365. package/lib-esm/__tests__/FormGroup.js +47 -0
  366. package/lib-esm/__tests__/Grid.d.ts +1 -0
  367. package/lib-esm/__tests__/Grid.js +96 -0
  368. package/lib-esm/__tests__/Header.d.ts +1 -0
  369. package/lib-esm/__tests__/Header.js +52 -0
  370. package/lib-esm/__tests__/Heading.d.ts +1 -0
  371. package/lib-esm/__tests__/Heading.js +101 -0
  372. package/lib-esm/__tests__/Label.d.ts +1 -0
  373. package/lib-esm/__tests__/Label.js +38 -0
  374. package/lib-esm/__tests__/LabelGroup.d.ts +1 -0
  375. package/lib-esm/__tests__/LabelGroup.js +28 -0
  376. package/lib-esm/__tests__/Link.d.ts +1 -0
  377. package/lib-esm/__tests__/Link.js +62 -0
  378. package/lib-esm/__tests__/Overlay.d.ts +1 -0
  379. package/lib-esm/__tests__/Overlay.js +123 -0
  380. package/lib-esm/__tests__/Pagehead.d.ts +1 -0
  381. package/lib-esm/__tests__/Pagehead.js +28 -0
  382. package/lib-esm/__tests__/Pagination/Pagination.d.ts +1 -0
  383. package/lib-esm/__tests__/Pagination/Pagination.js +37 -0
  384. package/lib-esm/__tests__/Pagination/PaginationModel.d.ts +1 -0
  385. package/lib-esm/__tests__/Pagination/PaginationModel.js +182 -0
  386. package/lib-esm/__tests__/PointerBox.d.ts +1 -0
  387. package/lib-esm/__tests__/PointerBox.js +38 -0
  388. package/lib-esm/__tests__/Popover.d.ts +1 -0
  389. package/lib-esm/__tests__/Popover.js +56 -0
  390. package/lib-esm/__tests__/Portal.d.ts +1 -0
  391. package/lib-esm/__tests__/Portal.js +104 -0
  392. package/lib-esm/__tests__/Position.d.ts +1 -0
  393. package/lib-esm/__tests__/Position.js +138 -0
  394. package/lib-esm/__tests__/ProgressBar.d.ts +1 -0
  395. package/lib-esm/__tests__/ProgressBar.js +60 -0
  396. package/lib-esm/__tests__/SelectMenu.d.ts +1 -0
  397. package/lib-esm/__tests__/SelectMenu.js +145 -0
  398. package/lib-esm/__tests__/SelectPanel.d.ts +1 -0
  399. package/lib-esm/__tests__/SelectPanel.js +67 -0
  400. package/lib-esm/__tests__/SideNav.d.ts +1 -0
  401. package/lib-esm/__tests__/SideNav.js +63 -0
  402. package/lib-esm/__tests__/Spinner.d.ts +1 -0
  403. package/lib-esm/__tests__/Spinner.js +45 -0
  404. package/lib-esm/__tests__/StateLabel.d.ts +1 -0
  405. package/lib-esm/__tests__/StateLabel.js +63 -0
  406. package/lib-esm/__tests__/StyledOcticon.d.ts +1 -0
  407. package/lib-esm/__tests__/StyledOcticon.js +31 -0
  408. package/lib-esm/__tests__/SubNav.d.ts +1 -0
  409. package/lib-esm/__tests__/SubNav.js +52 -0
  410. package/lib-esm/__tests__/SubNavLink.d.ts +1 -0
  411. package/lib-esm/__tests__/SubNavLink.js +41 -0
  412. package/lib-esm/__tests__/TabNav.d.ts +1 -0
  413. package/lib-esm/__tests__/TabNav.js +42 -0
  414. package/lib-esm/__tests__/Text.d.ts +1 -0
  415. package/lib-esm/__tests__/Text.js +95 -0
  416. package/lib-esm/__tests__/TextInput.d.ts +1 -0
  417. package/lib-esm/__tests__/TextInput.js +70 -0
  418. package/lib-esm/__tests__/ThemeProvider.d.ts +1 -0
  419. package/lib-esm/__tests__/ThemeProvider.js +408 -0
  420. package/lib-esm/__tests__/Timeline.d.ts +1 -0
  421. package/lib-esm/__tests__/Timeline.js +69 -0
  422. package/lib-esm/__tests__/Tooltip.d.ts +1 -0
  423. package/lib-esm/__tests__/Tooltip.js +61 -0
  424. package/lib-esm/__tests__/Truncate.d.ts +1 -0
  425. package/lib-esm/__tests__/Truncate.js +55 -0
  426. package/lib-esm/__tests__/UnderlineNav.d.ts +1 -0
  427. package/lib-esm/__tests__/UnderlineNav.js +62 -0
  428. package/lib-esm/__tests__/UnderlineNavLink.d.ts +1 -0
  429. package/lib-esm/__tests__/UnderlineNavLink.js +43 -0
  430. package/lib-esm/__tests__/behaviors/anchoredPosition.d.ts +1 -0
  431. package/lib-esm/__tests__/behaviors/anchoredPosition.js +388 -0
  432. package/lib-esm/__tests__/behaviors/focusTrap.d.ts +1 -0
  433. package/lib-esm/__tests__/behaviors/focusTrap.js +227 -0
  434. package/lib-esm/__tests__/behaviors/focusZone.d.ts +1 -0
  435. package/lib-esm/__tests__/behaviors/focusZone.js +487 -0
  436. package/lib-esm/__tests__/behaviors/iterateFocusableElements.d.ts +1 -0
  437. package/lib-esm/__tests__/behaviors/iterateFocusableElements.js +48 -0
  438. package/lib-esm/__tests__/filterObject.d.ts +1 -0
  439. package/lib-esm/__tests__/filterObject.js +27 -0
  440. package/lib-esm/__tests__/hooks/useAnchoredPosition.d.ts +1 -0
  441. package/lib-esm/__tests__/hooks/useAnchoredPosition.js +46 -0
  442. package/lib-esm/__tests__/hooks/useOnEscapePress.d.ts +1 -0
  443. package/lib-esm/__tests__/hooks/useOnEscapePress.js +23 -0
  444. package/lib-esm/__tests__/hooks/useOnOutsideClick.d.ts +1 -0
  445. package/lib-esm/__tests__/hooks/useOnOutsideClick.js +68 -0
  446. package/lib-esm/__tests__/hooks/useOpenAndCloseFocus.d.ts +1 -0
  447. package/lib-esm/__tests__/hooks/useOpenAndCloseFocus.js +52 -0
  448. package/lib-esm/__tests__/hooks/useProvidedStateOrCreate.d.ts +1 -0
  449. package/lib-esm/__tests__/hooks/useProvidedStateOrCreate.js +36 -0
  450. package/lib-esm/__tests__/theme.d.ts +1 -0
  451. package/lib-esm/__tests__/theme.js +33 -0
  452. package/lib-esm/__tests__/themeGet.d.ts +1 -0
  453. package/lib-esm/__tests__/themeGet.js +22 -0
  454. package/lib-esm/__tests__/useSafeTimeout.d.ts +1 -0
  455. package/lib-esm/__tests__/useSafeTimeout.js +39 -0
  456. package/lib-esm/stories/ActionList.stories.js +334 -0
  457. package/lib-esm/stories/ActionMenu.stories.js +293 -0
  458. package/lib-esm/stories/AnchoredOverlay.stories.js +101 -0
  459. package/lib-esm/stories/AvatarStack.stories.js +32 -0
  460. package/lib-esm/stories/Button.stories.js +78 -0
  461. package/lib-esm/stories/ConfirmationDialog.stories.js +86 -0
  462. package/lib-esm/stories/Dialog.stories.js +240 -0
  463. package/lib-esm/stories/DropdownMenu.stories.js +94 -0
  464. package/lib-esm/stories/Overlay.stories.js +154 -0
  465. package/lib-esm/stories/Portal.stories.js +68 -0
  466. package/lib-esm/stories/SelectPanel.stories.js +284 -0
  467. package/lib-esm/stories/ThemeProvider.stories.js +83 -0
  468. package/lib-esm/stories/useAnchoredPosition.stories.js +313 -0
  469. package/lib-esm/stories/useFocusTrap.stories.js +309 -0
  470. package/lib-esm/stories/useFocusZone.stories.js +554 -0
  471. package/migrating.md +250 -0
  472. package/now.json +17 -0
  473. package/package-lock.json +28661 -0
  474. package/package.json +2 -2
  475. package/rollup.config.js +36 -0
  476. package/script/build +19 -0
  477. package/script/setup +12 -0
  478. package/src/ActionList/Divider.tsx +25 -0
  479. package/src/ActionList/Group.tsx +45 -0
  480. package/src/ActionList/Header.tsx +74 -0
  481. package/src/ActionList/Item.tsx +460 -0
  482. package/src/ActionList/List.tsx +253 -0
  483. package/src/ActionList/index.ts +21 -0
  484. package/src/ActionMenu.tsx +106 -0
  485. package/src/AnchoredOverlay/AnchoredOverlay.tsx +180 -0
  486. package/src/AnchoredOverlay/index.ts +2 -0
  487. package/src/Avatar.tsx +46 -0
  488. package/src/AvatarPair.tsx +35 -0
  489. package/src/AvatarStack.tsx +161 -0
  490. package/src/BaseStyles.tsx +53 -0
  491. package/src/BorderBox.tsx +18 -0
  492. package/src/Box.tsx +54 -0
  493. package/src/BranchName.tsx +19 -0
  494. package/src/Breadcrumb.tsx +87 -0
  495. package/src/Button/Button.tsx +40 -0
  496. package/src/Button/ButtonBase.tsx +43 -0
  497. package/src/Button/ButtonClose.tsx +40 -0
  498. package/src/Button/ButtonDanger.tsx +43 -0
  499. package/src/Button/ButtonGroup.tsx +55 -0
  500. package/src/Button/ButtonInvisible.tsx +27 -0
  501. package/src/Button/ButtonOutline.tsx +43 -0
  502. package/src/Button/ButtonPrimary.tsx +41 -0
  503. package/src/Button/ButtonStyles.tsx +36 -0
  504. package/src/Button/ButtonTableList.tsx +58 -0
  505. package/src/Button/index.ts +16 -0
  506. package/src/Caret.tsx +133 -0
  507. package/src/CircleBadge.tsx +55 -0
  508. package/src/CircleOcticon.tsx +37 -0
  509. package/src/CounterLabel.tsx +52 -0
  510. package/src/Details.tsx +23 -0
  511. package/src/Dialog/ConfirmationDialog.tsx +184 -0
  512. package/src/Dialog/Dialog.tsx +419 -0
  513. package/src/Dialog.tsx +149 -0
  514. package/src/Dropdown.tsx +158 -0
  515. package/src/DropdownMenu/DropdownButton.tsx +15 -0
  516. package/src/DropdownMenu/DropdownMenu.tsx +115 -0
  517. package/src/DropdownMenu/index.ts +4 -0
  518. package/src/DropdownStyles.ts +128 -0
  519. package/src/FilterList.tsx +81 -0
  520. package/src/FilteredActionList/FilteredActionList.tsx +152 -0
  521. package/src/FilteredActionList/index.ts +2 -0
  522. package/src/FilteredSearch.tsx +28 -0
  523. package/src/Flash.tsx +77 -0
  524. package/src/Flex.tsx +15 -0
  525. package/src/FormGroup.tsx +27 -0
  526. package/src/Grid.tsx +15 -0
  527. package/src/Header.tsx +84 -0
  528. package/src/Heading.tsx +21 -0
  529. package/src/Label.tsx +75 -0
  530. package/src/LabelGroup.tsx +18 -0
  531. package/src/Link.tsx +46 -0
  532. package/src/Overlay.tsx +194 -0
  533. package/src/Pagehead.tsx +17 -0
  534. package/src/Pagination/Pagination.tsx +214 -0
  535. package/src/Pagination/index.ts +4 -0
  536. package/src/Pagination/model.tsx +187 -0
  537. package/src/PointerBox.tsx +31 -0
  538. package/src/Popover.tsx +236 -0
  539. package/src/Portal/Portal.tsx +96 -0
  540. package/src/Portal/index.ts +5 -0
  541. package/src/Position.tsx +63 -0
  542. package/src/ProgressBar.tsx +52 -0
  543. package/src/SelectMenu/SelectMenu.tsx +125 -0
  544. package/src/SelectMenu/SelectMenuContext.tsx +9 -0
  545. package/src/SelectMenu/SelectMenuDivider.tsx +25 -0
  546. package/src/SelectMenu/SelectMenuFilter.tsx +51 -0
  547. package/src/SelectMenu/SelectMenuFooter.tsx +28 -0
  548. package/src/SelectMenu/SelectMenuHeader.tsx +50 -0
  549. package/src/SelectMenu/SelectMenuItem.tsx +137 -0
  550. package/src/SelectMenu/SelectMenuList.tsx +42 -0
  551. package/src/SelectMenu/SelectMenuLoadingAnimation.tsx +24 -0
  552. package/src/SelectMenu/SelectMenuModal.tsx +121 -0
  553. package/src/SelectMenu/SelectMenuTab.tsx +88 -0
  554. package/src/SelectMenu/SelectMenuTabPanel.tsx +30 -0
  555. package/src/SelectMenu/SelectMenuTabs.tsx +44 -0
  556. package/src/SelectMenu/hooks/useKeyboardNav.js +90 -0
  557. package/src/SelectMenu/index.ts +15 -0
  558. package/src/SelectPanel/SelectPanel.tsx +173 -0
  559. package/src/SelectPanel/index.ts +2 -0
  560. package/src/SideNav.tsx +193 -0
  561. package/src/Spinner.tsx +59 -0
  562. package/src/StateLabel.tsx +110 -0
  563. package/src/StyledOcticon.tsx +24 -0
  564. package/src/SubNav.tsx +129 -0
  565. package/src/TabNav.tsx +77 -0
  566. package/src/Text.tsx +13 -0
  567. package/src/TextInput.tsx +183 -0
  568. package/src/ThemeProvider.tsx +176 -0
  569. package/src/Timeline.tsx +141 -0
  570. package/src/Tooltip.tsx +263 -0
  571. package/src/Truncate.tsx +36 -0
  572. package/src/UnderlineNav.tsx +110 -0
  573. package/src/__tests__/.eslintrc.json +11 -0
  574. package/src/__tests__/ActionList.tsx +49 -0
  575. package/src/__tests__/ActionMenu.tsx +138 -0
  576. package/src/__tests__/AnchoredOverlay.tsx +151 -0
  577. package/src/__tests__/Avatar.tsx +45 -0
  578. package/src/__tests__/AvatarStack.tsx +45 -0
  579. package/src/__tests__/BorderBox.tsx +44 -0
  580. package/src/__tests__/Box.tsx +43 -0
  581. package/src/__tests__/BranchName.tsx +27 -0
  582. package/src/__tests__/Breadcrumb.tsx +31 -0
  583. package/src/__tests__/BreadcrumbItem.tsx +32 -0
  584. package/src/__tests__/Button.tsx +129 -0
  585. package/src/__tests__/Caret.tsx +36 -0
  586. package/src/__tests__/CircleBadge.tsx +69 -0
  587. package/src/__tests__/CircleOcticon.tsx +52 -0
  588. package/src/__tests__/CounterLabel.tsx +51 -0
  589. package/src/__tests__/Details.tsx +116 -0
  590. package/src/__tests__/Dialog.tsx +157 -0
  591. package/src/__tests__/Dropdown.tsx +57 -0
  592. package/src/__tests__/DropdownMenu.tsx +138 -0
  593. package/src/__tests__/FilterList.tsx +27 -0
  594. package/src/__tests__/FilterListItem.tsx +32 -0
  595. package/src/__tests__/FilteredSearch.tsx +27 -0
  596. package/src/__tests__/Flash.tsx +46 -0
  597. package/src/__tests__/Flex.tsx +59 -0
  598. package/src/__tests__/FormGroup.tsx +39 -0
  599. package/src/__tests__/Grid.tsx +83 -0
  600. package/src/__tests__/Header.tsx +50 -0
  601. package/src/__tests__/Heading.tsx +92 -0
  602. package/src/__tests__/Label.tsx +35 -0
  603. package/src/__tests__/LabelGroup.tsx +31 -0
  604. package/src/__tests__/Link.tsx +48 -0
  605. package/src/__tests__/Overlay.tsx +103 -0
  606. package/src/__tests__/Pagehead.tsx +24 -0
  607. package/src/__tests__/Pagination/Pagination.tsx +31 -0
  608. package/src/__tests__/Pagination/PaginationModel.tsx +133 -0
  609. package/src/__tests__/Pagination/__snapshots__/Pagination.tsx.snap +184 -0
  610. package/src/__tests__/PointerBox.tsx +35 -0
  611. package/src/__tests__/Popover.tsx +69 -0
  612. package/src/__tests__/Portal.tsx +103 -0
  613. package/src/__tests__/Position.tsx +118 -0
  614. package/src/__tests__/ProgressBar.tsx +41 -0
  615. package/src/__tests__/SelectMenu.tsx +142 -0
  616. package/src/__tests__/SelectPanel.tsx +65 -0
  617. package/src/__tests__/SideNav.tsx +63 -0
  618. package/src/__tests__/Spinner.tsx +44 -0
  619. package/src/__tests__/StateLabel.tsx +50 -0
  620. package/src/__tests__/StyledOcticon.tsx +28 -0
  621. package/src/__tests__/SubNav.tsx +51 -0
  622. package/src/__tests__/SubNavLink.tsx +32 -0
  623. package/src/__tests__/TabNav.tsx +33 -0
  624. package/src/__tests__/Text.tsx +79 -0
  625. package/src/__tests__/TextInput.tsx +50 -0
  626. package/src/__tests__/ThemeProvider.tsx +441 -0
  627. package/src/__tests__/Timeline.tsx +59 -0
  628. package/src/__tests__/Tooltip.tsx +53 -0
  629. package/src/__tests__/Truncate.tsx +45 -0
  630. package/src/__tests__/UnderlineNav.tsx +59 -0
  631. package/src/__tests__/UnderlineNavLink.tsx +32 -0
  632. package/src/__tests__/__snapshots__/ActionList.tsx.snap +27 -0
  633. package/src/__tests__/__snapshots__/ActionMenu.tsx.snap +80 -0
  634. package/src/__tests__/__snapshots__/AnchoredOverlay.tsx.snap +332 -0
  635. package/src/__tests__/__snapshots__/Avatar.tsx.snap +19 -0
  636. package/src/__tests__/__snapshots__/AvatarStack.tsx.snap +377 -0
  637. package/src/__tests__/__snapshots__/BorderBox.tsx.snap +14 -0
  638. package/src/__tests__/__snapshots__/Box.tsx.snap +201 -0
  639. package/src/__tests__/__snapshots__/BranchName.tsx.snap +17 -0
  640. package/src/__tests__/__snapshots__/Breadcrumb.tsx.snap +29 -0
  641. package/src/__tests__/__snapshots__/BreadcrumbItem.tsx.snap +79 -0
  642. package/src/__tests__/__snapshots__/Button.tsx.snap +832 -0
  643. package/src/__tests__/__snapshots__/Caret.tsx.snap +373 -0
  644. package/src/__tests__/__snapshots__/CircleBadge.tsx.snap +141 -0
  645. package/src/__tests__/__snapshots__/CircleOcticon.tsx.snap +64 -0
  646. package/src/__tests__/__snapshots__/CounterLabel.tsx.snap +22 -0
  647. package/src/__tests__/__snapshots__/Details.tsx.snap +15 -0
  648. package/src/__tests__/__snapshots__/Dialog.tsx.snap +200 -0
  649. package/src/__tests__/__snapshots__/Dropdown.tsx.snap +249 -0
  650. package/src/__tests__/__snapshots__/DropdownMenu.tsx.snap +106 -0
  651. package/src/__tests__/__snapshots__/FilterList.tsx.snap +13 -0
  652. package/src/__tests__/__snapshots__/FilterListItem.tsx.snap +80 -0
  653. package/src/__tests__/__snapshots__/FilteredSearch.tsx.snap +32 -0
  654. package/src/__tests__/__snapshots__/Flash.tsx.snap +32 -0
  655. package/src/__tests__/__snapshots__/Flex.tsx.snap +130 -0
  656. package/src/__tests__/__snapshots__/FormGroup.tsx.snap +25 -0
  657. package/src/__tests__/__snapshots__/Grid.tsx.snap +178 -0
  658. package/src/__tests__/__snapshots__/Header.tsx.snap +79 -0
  659. package/src/__tests__/__snapshots__/Heading.tsx.snap +13 -0
  660. package/src/__tests__/__snapshots__/Label.tsx.snap +74 -0
  661. package/src/__tests__/__snapshots__/LabelGroup.tsx.snap +15 -0
  662. package/src/__tests__/__snapshots__/Link.tsx.snap +213 -0
  663. package/src/__tests__/__snapshots__/Pagehead.tsx.snap +15 -0
  664. package/src/__tests__/__snapshots__/PointerBox.tsx.snap +174 -0
  665. package/src/__tests__/__snapshots__/Popover.tsx.snap +4687 -0
  666. package/src/__tests__/__snapshots__/Position.tsx.snap +44 -0
  667. package/src/__tests__/__snapshots__/ProgressBar.tsx.snap +53 -0
  668. package/src/__tests__/__snapshots__/SelectMenu.tsx.snap +469 -0
  669. package/src/__tests__/__snapshots__/SelectPanel.tsx.snap +123 -0
  670. package/src/__tests__/__snapshots__/SideNav.tsx.snap +143 -0
  671. package/src/__tests__/__snapshots__/Spinner.tsx.snap +33 -0
  672. package/src/__tests__/__snapshots__/StateLabel.tsx.snap +409 -0
  673. package/src/__tests__/__snapshots__/StyledOcticon.tsx.snap +25 -0
  674. package/src/__tests__/__snapshots__/SubNav.tsx.snap +44 -0
  675. package/src/__tests__/__snapshots__/SubNavLink.tsx.snap +199 -0
  676. package/src/__tests__/__snapshots__/TabNav.tsx.snap +58 -0
  677. package/src/__tests__/__snapshots__/Text.tsx.snap +7 -0
  678. package/src/__tests__/__snapshots__/TextInput.tsx.snap +440 -0
  679. package/src/__tests__/__snapshots__/ThemeProvider.tsx.snap +15 -0
  680. package/src/__tests__/__snapshots__/Timeline.tsx.snap +159 -0
  681. package/src/__tests__/__snapshots__/Tooltip.tsx.snap +227 -0
  682. package/src/__tests__/__snapshots__/Truncate.tsx.snap +17 -0
  683. package/src/__tests__/__snapshots__/UnderlineNav.tsx.snap +59 -0
  684. package/src/__tests__/__snapshots__/UnderlineNavLink.tsx.snap +130 -0
  685. package/src/__tests__/behaviors/anchoredPosition.ts +295 -0
  686. package/src/__tests__/behaviors/focusTrap.tsx +236 -0
  687. package/src/__tests__/behaviors/focusZone.tsx +549 -0
  688. package/src/__tests__/behaviors/iterateFocusableElements.tsx +61 -0
  689. package/src/__tests__/filterObject.ts +54 -0
  690. package/src/__tests__/hooks/useAnchoredPosition.tsx +31 -0
  691. package/src/__tests__/hooks/useOnEscapePress.tsx +16 -0
  692. package/src/__tests__/hooks/useOnOutsideClick.tsx +48 -0
  693. package/src/__tests__/hooks/useOpenAndCloseFocus.tsx +48 -0
  694. package/src/__tests__/hooks/useProvidedStateOrCreate.tsx +39 -0
  695. package/src/__tests__/theme.ts +41 -0
  696. package/src/__tests__/themeGet.ts +15 -0
  697. package/src/__tests__/useSafeTimeout.tsx +36 -0
  698. package/src/behaviors/anchoredPosition.ts +442 -0
  699. package/src/behaviors/focusTrap.ts +184 -0
  700. package/src/behaviors/focusZone.ts +713 -0
  701. package/src/constants.ts +62 -0
  702. package/src/hooks/index.ts +11 -0
  703. package/src/hooks/useAnchoredPosition.ts +53 -0
  704. package/src/hooks/useCombinedRefs.ts +40 -0
  705. package/src/hooks/useDetails.tsx +54 -0
  706. package/src/hooks/useDialog.ts +121 -0
  707. package/src/hooks/useFocusTrap.ts +80 -0
  708. package/src/hooks/useFocusZone.ts +64 -0
  709. package/src/hooks/useOnEscapePress.ts +63 -0
  710. package/src/hooks/useOnOutsideClick.tsx +82 -0
  711. package/src/hooks/useOpenAndCloseFocus.ts +27 -0
  712. package/src/hooks/useOverlay.tsx +32 -0
  713. package/src/hooks/useProvidedRefOrCreate.ts +14 -0
  714. package/src/hooks/useProvidedStateOrCreate.ts +27 -0
  715. package/src/hooks/useRenderForcingRef.ts +22 -0
  716. package/src/hooks/useResizeObserver.ts +11 -0
  717. package/src/hooks/useSafeTimeout.ts +38 -0
  718. package/src/hooks/useScrollFlash.ts +21 -0
  719. package/src/index.ts +165 -0
  720. package/src/polyfills/eventListenerSignal.ts +66 -0
  721. package/src/stories/ActionList.stories.tsx +364 -0
  722. package/src/stories/ActionMenu.stories.tsx +322 -0
  723. package/src/stories/AnchoredOverlay.stories.tsx +117 -0
  724. package/src/stories/AvatarStack.stories.tsx +37 -0
  725. package/src/stories/Button.stories.tsx +88 -0
  726. package/src/stories/ConfirmationDialog.stories.tsx +105 -0
  727. package/src/stories/Dialog.stories.tsx +240 -0
  728. package/src/stories/DropdownMenu.stories.tsx +84 -0
  729. package/src/stories/Overlay.stories.tsx +186 -0
  730. package/src/stories/Portal.stories.tsx +109 -0
  731. package/src/stories/SelectPanel.stories.tsx +300 -0
  732. package/src/stories/ThemeProvider.stories.tsx +104 -0
  733. package/src/stories/useAnchoredPosition.stories.tsx +320 -0
  734. package/src/stories/useFocusTrap.stories.tsx +400 -0
  735. package/src/stories/useFocusZone.stories.tsx +663 -0
  736. package/src/sx.ts +9 -0
  737. package/src/theme-preval.js +136 -0
  738. package/src/theme.ts +3 -0
  739. package/src/utils/deprecate.tsx +73 -0
  740. package/src/utils/isNumeric.tsx +4 -0
  741. package/src/utils/iterateFocusableElements.ts +121 -0
  742. package/src/utils/ssr.tsx +1 -0
  743. package/src/utils/test-deprecations.tsx +19 -0
  744. package/src/utils/test-helpers.tsx +7 -0
  745. package/src/utils/test-matchers.tsx +109 -0
  746. package/src/utils/testing.tsx +243 -0
  747. package/src/utils/theme.js +64 -0
  748. package/src/utils/types.ts +90 -0
  749. package/src/utils/uniqueId.ts +6 -0
  750. package/src/utils/userAgent.ts +7 -0
  751. package/stats.html +3279 -0
  752. package/tsconfig.build.json +7 -0
  753. package/tsconfig.json +20 -0
@@ -0,0 +1,1411 @@
1
+ <svg width="1068" height="426" viewBox="0 0 1068 426" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0)">
3
+ <rect width="276" height="276" transform="translate(782 77)" fill="#1B1F23"/>
4
+ <g clip-path="url(#clip1)">
5
+ <circle cx="828" cy="279" r="2" fill="#044289"/>
6
+ <circle cx="840" cy="279" r="2" fill="#044289"/>
7
+ <circle cx="852" cy="279" r="2" fill="#044289"/>
8
+ <circle cx="864" cy="279" r="2" fill="#044289"/>
9
+ <circle cx="876" cy="279" r="2" fill="#044289"/>
10
+ <circle cx="828" cy="291" r="2" fill="#044289"/>
11
+ <circle cx="840" cy="291" r="2" fill="#044289"/>
12
+ <circle cx="852" cy="291" r="2" fill="#044289"/>
13
+ <circle cx="864" cy="291" r="2" fill="#044289"/>
14
+ <circle cx="876" cy="291" r="2" fill="#044289"/>
15
+ <circle cx="828" cy="303" r="2" fill="#044289"/>
16
+ <circle cx="840" cy="303" r="2" fill="#044289"/>
17
+ <circle cx="852" cy="303" r="2" fill="#044289"/>
18
+ <circle cx="864" cy="303" r="2" fill="#044289"/>
19
+ <circle cx="876" cy="303" r="2" fill="#044289"/>
20
+ <circle cx="816" cy="279" r="2" fill="#044289"/>
21
+ <circle cx="816" cy="291" r="2" fill="#044289"/>
22
+ <circle cx="816" cy="303" r="2" fill="#044289"/>
23
+ <circle cx="828" cy="315" r="2" fill="#044289"/>
24
+ <circle cx="840" cy="315" r="2" fill="#044289"/>
25
+ <circle cx="852" cy="315" r="2" fill="#044289"/>
26
+ <circle cx="864" cy="315" r="2" fill="#044289"/>
27
+ <circle cx="876" cy="315" r="2" fill="#044289"/>
28
+ <circle cx="816" cy="315" r="2" fill="#044289"/>
29
+ <circle cx="828" cy="327" r="2" fill="#044289"/>
30
+ <circle cx="840" cy="327" r="2" fill="#044289"/>
31
+ <circle cx="852" cy="327" r="2" fill="#044289"/>
32
+ <circle cx="864" cy="327" r="2" fill="#044289"/>
33
+ <circle cx="876" cy="327" r="2" fill="#044289"/>
34
+ <circle cx="816" cy="327" r="2" fill="#044289"/>
35
+ <circle cx="828" cy="339" r="2" fill="#044289"/>
36
+ <circle cx="840" cy="339" r="2" fill="#044289"/>
37
+ <circle cx="852" cy="339" r="2" fill="#044289"/>
38
+ <circle cx="864" cy="339" r="2" fill="#044289"/>
39
+ <circle cx="876" cy="339" r="2" fill="#044289"/>
40
+ <circle cx="816" cy="339" r="2" fill="#044289"/>
41
+ <circle cx="828" cy="351" r="2" fill="#044289"/>
42
+ <circle cx="840" cy="351" r="2" fill="#044289"/>
43
+ <circle cx="852" cy="351" r="2" fill="#044289"/>
44
+ <circle cx="864" cy="351" r="2" fill="#044289"/>
45
+ <circle cx="876" cy="351" r="2" fill="#044289"/>
46
+ <circle cx="816" cy="351" r="2" fill="#044289"/>
47
+ <circle cx="888" cy="279" r="2" fill="#044289"/>
48
+ <circle cx="888" cy="291" r="2" fill="#044289"/>
49
+ <circle cx="888" cy="303" r="2" fill="#044289"/>
50
+ <circle cx="888" cy="315" r="2" fill="#044289"/>
51
+ <circle cx="888" cy="327" r="2" fill="#044289"/>
52
+ <circle cx="888" cy="339" r="2" fill="#044289"/>
53
+ <circle cx="888" cy="351" r="2" fill="#044289"/>
54
+ <circle cx="900" cy="279" r="2" fill="#044289"/>
55
+ <circle cx="900" cy="291" r="2" fill="#044289"/>
56
+ <circle cx="900" cy="303" r="2" fill="#044289"/>
57
+ <circle cx="900" cy="315" r="2" fill="#044289"/>
58
+ <circle cx="900" cy="327" r="2" fill="#044289"/>
59
+ <circle cx="900" cy="339" r="2" fill="#044289"/>
60
+ <circle cx="900" cy="351" r="2" fill="#044289"/>
61
+ <circle cx="912" cy="279" r="2" fill="#044289"/>
62
+ <circle cx="912" cy="291" r="2" fill="#044289"/>
63
+ <circle cx="912" cy="303" r="2" fill="#044289"/>
64
+ <circle cx="912" cy="315" r="2" fill="#044289"/>
65
+ <circle cx="912" cy="327" r="2" fill="#044289"/>
66
+ <circle cx="912" cy="339" r="2" fill="#044289"/>
67
+ <circle cx="912" cy="351" r="2" fill="#044289"/>
68
+ <circle cx="924" cy="279" r="2" fill="#044289"/>
69
+ <circle cx="924" cy="291" r="2" fill="#044289"/>
70
+ <circle cx="924" cy="303" r="2" fill="#044289"/>
71
+ <circle cx="924" cy="315" r="2" fill="#044289"/>
72
+ <circle cx="924" cy="327" r="2" fill="#044289"/>
73
+ <circle cx="924" cy="339" r="2" fill="#044289"/>
74
+ <circle cx="924" cy="351" r="2" fill="#044289"/>
75
+ <circle cx="936" cy="279" r="2" fill="#044289"/>
76
+ <circle cx="936" cy="291" r="2" fill="#044289"/>
77
+ <circle cx="936" cy="303" r="2" fill="#044289"/>
78
+ <circle cx="936" cy="315" r="2" fill="#044289"/>
79
+ <circle cx="936" cy="327" r="2" fill="#044289"/>
80
+ <circle cx="936" cy="339" r="2" fill="#044289"/>
81
+ <circle cx="936" cy="351" r="2" fill="#044289"/>
82
+ <circle cx="948" cy="279" r="2" fill="#044289"/>
83
+ <circle cx="948" cy="291" r="2" fill="#044289"/>
84
+ <circle cx="948" cy="303" r="2" fill="#044289"/>
85
+ <circle cx="948" cy="315" r="2" fill="#044289"/>
86
+ <circle cx="948" cy="327" r="2" fill="#044289"/>
87
+ <circle cx="948" cy="339" r="2" fill="#044289"/>
88
+ <circle cx="948" cy="351" r="2" fill="#044289"/>
89
+ <circle cx="960" cy="279" r="2" fill="#044289"/>
90
+ <circle cx="972" cy="279" r="2" fill="#044289"/>
91
+ <circle cx="972" cy="291" r="2" fill="#044289"/>
92
+ <circle cx="972" cy="303" r="2" fill="#044289"/>
93
+ <circle cx="972" cy="315" r="2" fill="#044289"/>
94
+ <circle cx="972" cy="327" r="2" fill="#044289"/>
95
+ <circle cx="972" cy="339" r="2" fill="#044289"/>
96
+ <circle cx="972" cy="351" r="2" fill="#044289"/>
97
+ <circle cx="960" cy="291" r="2" fill="#044289"/>
98
+ <circle cx="960" cy="303" r="2" fill="#044289"/>
99
+ <circle cx="960" cy="315" r="2" fill="#044289"/>
100
+ <circle cx="960" cy="327" r="2" fill="#044289"/>
101
+ <circle cx="960" cy="339" r="2" fill="#044289"/>
102
+ <circle cx="960" cy="351" r="2" fill="#044289"/>
103
+ <circle cx="996" cy="279" r="2" fill="#044289"/>
104
+ <circle cx="1008" cy="279" r="2" fill="#044289"/>
105
+ <circle cx="1020" cy="279" r="2" fill="#044289"/>
106
+ <circle cx="1032" cy="279" r="2" fill="#044289"/>
107
+ <circle cx="1044" cy="279" r="2" fill="#044289"/>
108
+ <circle cx="996" cy="291" r="2" fill="#044289"/>
109
+ <circle cx="1008" cy="291" r="2" fill="#044289"/>
110
+ <circle cx="1020" cy="291" r="2" fill="#044289"/>
111
+ <circle cx="1032" cy="291" r="2" fill="#044289"/>
112
+ <circle cx="1044" cy="291" r="2" fill="#044289"/>
113
+ <circle cx="996" cy="303" r="2" fill="#044289"/>
114
+ <circle cx="1008" cy="303" r="2" fill="#044289"/>
115
+ <circle cx="1020" cy="303" r="2" fill="#044289"/>
116
+ <circle cx="1032" cy="303" r="2" fill="#044289"/>
117
+ <circle cx="1044" cy="303" r="2" fill="#044289"/>
118
+ <circle cx="984" cy="279" r="2" fill="#044289"/>
119
+ <circle cx="984" cy="291" r="2" fill="#044289"/>
120
+ <circle cx="984" cy="303" r="2" fill="#044289"/>
121
+ <circle cx="996" cy="315" r="2" fill="#044289"/>
122
+ <circle cx="1008" cy="315" r="2" fill="#044289"/>
123
+ <circle cx="1020" cy="315" r="2" fill="#044289"/>
124
+ <circle cx="1032" cy="315" r="2" fill="#044289"/>
125
+ <circle cx="1044" cy="315" r="2" fill="#044289"/>
126
+ <circle cx="984" cy="315" r="2" fill="#044289"/>
127
+ <circle cx="996" cy="327" r="2" fill="#044289"/>
128
+ <circle cx="1008" cy="327" r="2" fill="#044289"/>
129
+ <circle cx="1020" cy="327" r="2" fill="#044289"/>
130
+ <circle cx="1032" cy="327" r="2" fill="#044289"/>
131
+ <circle cx="1044" cy="327" r="2" fill="#044289"/>
132
+ <circle cx="984" cy="327" r="2" fill="#044289"/>
133
+ <circle cx="996" cy="339" r="2" fill="#044289"/>
134
+ <circle cx="1008" cy="339" r="2" fill="#044289"/>
135
+ <circle cx="1020" cy="339" r="2" fill="#044289"/>
136
+ <circle cx="1032" cy="339" r="2" fill="#044289"/>
137
+ <circle cx="1044" cy="339" r="2" fill="#044289"/>
138
+ <circle cx="984" cy="339" r="2" fill="#044289"/>
139
+ <circle cx="996" cy="351" r="2" fill="#044289"/>
140
+ <circle cx="1008" cy="351" r="2" fill="#044289"/>
141
+ <circle cx="1020" cy="351" r="2" fill="#044289"/>
142
+ <circle cx="1032" cy="351" r="2" fill="#044289"/>
143
+ <circle cx="1044" cy="351" r="2" fill="#044289"/>
144
+ <circle cx="984" cy="351" r="2" fill="#044289"/>
145
+ <circle cx="1056" cy="279" r="2" fill="#044289"/>
146
+ <circle cx="1056" cy="291" r="2" fill="#044289"/>
147
+ <circle cx="1056" cy="303" r="2" fill="#044289"/>
148
+ <circle cx="1056" cy="315" r="2" fill="#044289"/>
149
+ <circle cx="1056" cy="327" r="2" fill="#044289"/>
150
+ <circle cx="1056" cy="339" r="2" fill="#044289"/>
151
+ <circle cx="1056" cy="351" r="2" fill="#044289"/>
152
+ <circle cx="828" cy="111" r="2" fill="#044289"/>
153
+ <circle cx="840" cy="111" r="2" fill="#044289"/>
154
+ <circle cx="852" cy="111" r="2" fill="#044289"/>
155
+ <circle cx="864" cy="111" r="2" fill="#044289"/>
156
+ <circle cx="876" cy="111" r="2" fill="#044289"/>
157
+ <circle cx="828" cy="123" r="2" fill="#044289"/>
158
+ <circle cx="840" cy="123" r="2" fill="#044289"/>
159
+ <circle cx="852" cy="123" r="2" fill="#044289"/>
160
+ <circle cx="864" cy="123" r="2" fill="#044289"/>
161
+ <circle cx="876" cy="123" r="2" fill="#044289"/>
162
+ <circle cx="828" cy="135" r="2" fill="#044289"/>
163
+ <circle cx="840" cy="135" r="2" fill="#044289"/>
164
+ <circle cx="852" cy="135" r="2" fill="#044289"/>
165
+ <circle cx="864" cy="135" r="2" fill="#044289"/>
166
+ <circle cx="876" cy="135" r="2" fill="#044289"/>
167
+ <circle cx="816" cy="111" r="2" fill="#044289"/>
168
+ <circle cx="816" cy="123" r="2" fill="#044289"/>
169
+ <circle cx="816" cy="135" r="2" fill="#044289"/>
170
+ <circle cx="828" cy="147" r="2" fill="#044289"/>
171
+ <circle cx="840" cy="147" r="2" fill="#044289"/>
172
+ <circle cx="852" cy="147" r="2" fill="#044289"/>
173
+ <circle cx="864" cy="147" r="2" fill="#044289"/>
174
+ <circle cx="876" cy="147" r="2" fill="#044289"/>
175
+ <circle cx="816" cy="147" r="2" fill="#044289"/>
176
+ <circle cx="828" cy="159" r="2" fill="#044289"/>
177
+ <circle cx="840" cy="159" r="2" fill="#044289"/>
178
+ <circle cx="852" cy="159" r="2" fill="#044289"/>
179
+ <circle cx="864" cy="159" r="2" fill="#044289"/>
180
+ <circle cx="876" cy="159" r="2" fill="#044289"/>
181
+ <circle cx="816" cy="159" r="2" fill="#044289"/>
182
+ <circle cx="828" cy="171" r="2" fill="#044289"/>
183
+ <circle cx="840" cy="171" r="2" fill="#044289"/>
184
+ <circle cx="852" cy="171" r="2" fill="#044289"/>
185
+ <circle cx="864" cy="171" r="2" fill="#044289"/>
186
+ <circle cx="876" cy="171" r="2" fill="#044289"/>
187
+ <circle cx="816" cy="171" r="2" fill="#044289"/>
188
+ <circle cx="828" cy="183" r="2" fill="#044289"/>
189
+ <circle cx="840" cy="183" r="2" fill="#044289"/>
190
+ <circle cx="852" cy="183" r="2" fill="#044289"/>
191
+ <circle cx="864" cy="183" r="2" fill="#044289"/>
192
+ <circle cx="876" cy="183" r="2" fill="#044289"/>
193
+ <circle cx="816" cy="183" r="2" fill="#044289"/>
194
+ <circle cx="828" cy="195" r="2" fill="#044289"/>
195
+ <circle cx="840" cy="195" r="2" fill="#044289"/>
196
+ <circle cx="852" cy="195" r="2" fill="#044289"/>
197
+ <circle cx="864" cy="195" r="2" fill="#044289"/>
198
+ <circle cx="876" cy="195" r="2" fill="#044289"/>
199
+ <circle cx="816" cy="195" r="2" fill="#044289"/>
200
+ <circle cx="828" cy="207" r="2" fill="#044289"/>
201
+ <circle cx="840" cy="207" r="2" fill="#044289"/>
202
+ <circle cx="852" cy="207" r="2" fill="#044289"/>
203
+ <circle cx="864" cy="207" r="2" fill="#044289"/>
204
+ <circle cx="876" cy="207" r="2" fill="#044289"/>
205
+ <circle cx="816" cy="207" r="2" fill="#044289"/>
206
+ <circle cx="828" cy="219" r="2" fill="#044289"/>
207
+ <circle cx="840" cy="219" r="2" fill="#044289"/>
208
+ <circle cx="852" cy="219" r="2" fill="#044289"/>
209
+ <circle cx="864" cy="219" r="2" fill="#044289"/>
210
+ <circle cx="876" cy="219" r="2" fill="#044289"/>
211
+ <circle cx="816" cy="219" r="2" fill="#044289"/>
212
+ <circle cx="828" cy="231" r="2" fill="#044289"/>
213
+ <circle cx="840" cy="231" r="2" fill="#044289"/>
214
+ <circle cx="852" cy="231" r="2" fill="#044289"/>
215
+ <circle cx="864" cy="231" r="2" fill="#044289"/>
216
+ <circle cx="876" cy="231" r="2" fill="#044289"/>
217
+ <circle cx="816" cy="231" r="2" fill="#044289"/>
218
+ <circle cx="828" cy="243" r="2" fill="#044289"/>
219
+ <circle cx="840" cy="243" r="2" fill="#044289"/>
220
+ <circle cx="852" cy="243" r="2" fill="#044289"/>
221
+ <circle cx="864" cy="243" r="2" fill="#044289"/>
222
+ <circle cx="876" cy="243" r="2" fill="#044289"/>
223
+ <circle cx="816" cy="243" r="2" fill="#044289"/>
224
+ <circle cx="828" cy="255" r="2" fill="#044289"/>
225
+ <circle cx="840" cy="255" r="2" fill="#044289"/>
226
+ <circle cx="852" cy="255" r="2" fill="#044289"/>
227
+ <circle cx="864" cy="255" r="2" fill="#044289"/>
228
+ <circle cx="876" cy="255" r="2" fill="#044289"/>
229
+ <circle cx="816" cy="255" r="2" fill="#044289"/>
230
+ <circle cx="888" cy="111" r="2" fill="#044289"/>
231
+ <circle cx="888" cy="123" r="2" fill="#044289"/>
232
+ <circle cx="888" cy="135" r="2" fill="#044289"/>
233
+ <circle cx="888" cy="147" r="2" fill="#044289"/>
234
+ <circle cx="888" cy="159" r="2" fill="#044289"/>
235
+ <circle cx="888" cy="171" r="2" fill="#044289"/>
236
+ <circle cx="888" cy="183" r="2" fill="#044289"/>
237
+ <circle cx="888" cy="195" r="2" fill="#044289"/>
238
+ <circle cx="888" cy="207" r="2" fill="#044289"/>
239
+ <circle cx="888" cy="219" r="2" fill="#044289"/>
240
+ <circle cx="888" cy="231" r="2" fill="#044289"/>
241
+ <circle cx="888" cy="243" r="2" fill="#044289"/>
242
+ <circle cx="888" cy="255" r="2" fill="#044289"/>
243
+ <circle cx="900" cy="111" r="2" fill="#044289"/>
244
+ <circle cx="900" cy="123" r="2" fill="#044289"/>
245
+ <circle cx="900" cy="135" r="2" fill="#044289"/>
246
+ <circle cx="900" cy="147" r="2" fill="#044289"/>
247
+ <circle cx="900" cy="159" r="2" fill="#044289"/>
248
+ <circle cx="900" cy="171" r="2" fill="#044289"/>
249
+ <circle cx="900" cy="183" r="2" fill="#044289"/>
250
+ <circle cx="900" cy="195" r="2" fill="#044289"/>
251
+ <circle cx="900" cy="207" r="2" fill="#044289"/>
252
+ <circle cx="900" cy="219" r="2" fill="#044289"/>
253
+ <circle cx="900" cy="231" r="2" fill="#044289"/>
254
+ <circle cx="900" cy="243" r="2" fill="#044289"/>
255
+ <circle cx="900" cy="255" r="2" fill="#044289"/>
256
+ <circle cx="912" cy="111" r="2" fill="#044289"/>
257
+ <circle cx="912" cy="123" r="2" fill="#044289"/>
258
+ <circle cx="912" cy="135" r="2" fill="#044289"/>
259
+ <circle cx="912" cy="147" r="2" fill="#044289"/>
260
+ <circle cx="912" cy="159" r="2" fill="#044289"/>
261
+ <circle cx="912" cy="171" r="2" fill="#044289"/>
262
+ <circle cx="912" cy="183" r="2" fill="#044289"/>
263
+ <circle cx="912" cy="195" r="2" fill="#044289"/>
264
+ <circle cx="912" cy="207" r="2" fill="#044289"/>
265
+ <circle cx="912" cy="219" r="2" fill="#044289"/>
266
+ <circle cx="912" cy="231" r="2" fill="#044289"/>
267
+ <circle cx="912" cy="243" r="2" fill="#044289"/>
268
+ <circle cx="912" cy="255" r="2" fill="#044289"/>
269
+ <circle cx="924" cy="111" r="2" fill="#044289"/>
270
+ <circle cx="924" cy="123" r="2" fill="#044289"/>
271
+ <circle cx="924" cy="135" r="2" fill="#044289"/>
272
+ <circle cx="924" cy="147" r="2" fill="#044289"/>
273
+ <circle cx="924" cy="159" r="2" fill="#044289"/>
274
+ <circle cx="924" cy="171" r="2" fill="#044289"/>
275
+ <circle cx="924" cy="183" r="2" fill="#044289"/>
276
+ <circle cx="924" cy="195" r="2" fill="#044289"/>
277
+ <circle cx="924" cy="207" r="2" fill="#044289"/>
278
+ <circle cx="924" cy="219" r="2" fill="#044289"/>
279
+ <circle cx="924" cy="231" r="2" fill="#044289"/>
280
+ <circle cx="924" cy="243" r="2" fill="#044289"/>
281
+ <circle cx="924" cy="255" r="2" fill="#044289"/>
282
+ <circle cx="936" cy="111" r="2" fill="#044289"/>
283
+ <circle cx="936" cy="123" r="2" fill="#044289"/>
284
+ <circle cx="936" cy="135" r="2" fill="#044289"/>
285
+ <circle cx="936" cy="147" r="2" fill="#044289"/>
286
+ <circle cx="936" cy="159" r="2" fill="#044289"/>
287
+ <circle cx="936" cy="171" r="2" fill="#044289"/>
288
+ <circle cx="936" cy="183" r="2" fill="#044289"/>
289
+ <circle cx="936" cy="195" r="2" fill="#044289"/>
290
+ <circle cx="936" cy="207" r="2" fill="#044289"/>
291
+ <circle cx="936" cy="219" r="2" fill="#044289"/>
292
+ <circle cx="936" cy="231" r="2" fill="#044289"/>
293
+ <circle cx="936" cy="243" r="2" fill="#044289"/>
294
+ <circle cx="936" cy="255" r="2" fill="#044289"/>
295
+ <circle cx="948" cy="111" r="2" fill="#044289"/>
296
+ <circle cx="948" cy="123" r="2" fill="#044289"/>
297
+ <circle cx="948" cy="135" r="2" fill="#044289"/>
298
+ <circle cx="948" cy="147" r="2" fill="#044289"/>
299
+ <circle cx="948" cy="159" r="2" fill="#044289"/>
300
+ <circle cx="948" cy="171" r="2" fill="#044289"/>
301
+ <circle cx="948" cy="183" r="2" fill="#044289"/>
302
+ <circle cx="948" cy="195" r="2" fill="#044289"/>
303
+ <circle cx="948" cy="207" r="2" fill="#044289"/>
304
+ <circle cx="948" cy="219" r="2" fill="#044289"/>
305
+ <circle cx="948" cy="231" r="2" fill="#044289"/>
306
+ <circle cx="948" cy="243" r="2" fill="#044289"/>
307
+ <circle cx="948" cy="255" r="2" fill="#044289"/>
308
+ <circle cx="960" cy="111" r="2" fill="#044289"/>
309
+ <circle cx="972" cy="111" r="2" fill="#044289"/>
310
+ <circle cx="972" cy="123" r="2" fill="#044289"/>
311
+ <circle cx="972" cy="135" r="2" fill="#044289"/>
312
+ <circle cx="972" cy="147" r="2" fill="#044289"/>
313
+ <circle cx="972" cy="159" r="2" fill="#044289"/>
314
+ <circle cx="972" cy="171" r="2" fill="#044289"/>
315
+ <circle cx="972" cy="183" r="2" fill="#044289"/>
316
+ <circle cx="972" cy="195" r="2" fill="#044289"/>
317
+ <circle cx="972" cy="207" r="2" fill="#044289"/>
318
+ <circle cx="972" cy="219" r="2" fill="#044289"/>
319
+ <circle cx="972" cy="231" r="2" fill="#044289"/>
320
+ <circle cx="972" cy="243" r="2" fill="#044289"/>
321
+ <circle cx="972" cy="255" r="2" fill="#044289"/>
322
+ <circle cx="960" cy="123" r="2" fill="#044289"/>
323
+ <circle cx="960" cy="135" r="2" fill="#044289"/>
324
+ <circle cx="960" cy="147" r="2" fill="#044289"/>
325
+ <circle cx="960" cy="159" r="2" fill="#044289"/>
326
+ <circle cx="960" cy="171" r="2" fill="#044289"/>
327
+ <circle cx="960" cy="183" r="2" fill="#044289"/>
328
+ <circle cx="960" cy="195" r="2" fill="#044289"/>
329
+ <circle cx="960" cy="207" r="2" fill="#044289"/>
330
+ <circle cx="960" cy="219" r="2" fill="#044289"/>
331
+ <circle cx="960" cy="231" r="2" fill="#044289"/>
332
+ <circle cx="960" cy="243" r="2" fill="#044289"/>
333
+ <circle cx="960" cy="255" r="2" fill="#044289"/>
334
+ <circle cx="828" cy="267" r="2" fill="#044289"/>
335
+ <circle cx="840" cy="267" r="2" fill="#044289"/>
336
+ <circle cx="852" cy="267" r="2" fill="#044289"/>
337
+ <circle cx="864" cy="267" r="2" fill="#044289"/>
338
+ <circle cx="876" cy="267" r="2" fill="#044289"/>
339
+ <circle cx="816" cy="267" r="2" fill="#044289"/>
340
+ <circle cx="888" cy="267" r="2" fill="#044289"/>
341
+ <circle cx="900" cy="267" r="2" fill="#044289"/>
342
+ <circle cx="912" cy="267" r="2" fill="#044289"/>
343
+ <circle cx="924" cy="267" r="2" fill="#044289"/>
344
+ <circle cx="936" cy="267" r="2" fill="#044289"/>
345
+ <circle cx="948" cy="267" r="2" fill="#044289"/>
346
+ <circle cx="972" cy="267" r="2" fill="#044289"/>
347
+ <circle cx="960" cy="267" r="2" fill="#044289"/>
348
+ <circle cx="996" cy="111" r="2" fill="#044289"/>
349
+ <circle cx="1008" cy="111" r="2" fill="#044289"/>
350
+ <circle cx="1020" cy="111" r="2" fill="#044289"/>
351
+ <circle cx="1032" cy="111" r="2" fill="#044289"/>
352
+ <circle cx="1044" cy="111" r="2" fill="#044289"/>
353
+ <circle cx="996" cy="123" r="2" fill="#044289"/>
354
+ <circle cx="1008" cy="123" r="2" fill="#044289"/>
355
+ <circle cx="1020" cy="123" r="2" fill="#044289"/>
356
+ <circle cx="1032" cy="123" r="2" fill="#044289"/>
357
+ <circle cx="1044" cy="123" r="2" fill="#044289"/>
358
+ <circle cx="996" cy="135" r="2" fill="#044289"/>
359
+ <circle cx="1008" cy="135" r="2" fill="#044289"/>
360
+ <circle cx="1020" cy="135" r="2" fill="#044289"/>
361
+ <circle cx="1032" cy="135" r="2" fill="#044289"/>
362
+ <circle cx="1044" cy="135" r="2" fill="#044289"/>
363
+ <circle cx="984" cy="111" r="2" fill="#044289"/>
364
+ <circle cx="984" cy="123" r="2" fill="#044289"/>
365
+ <circle cx="984" cy="135" r="2" fill="#044289"/>
366
+ <circle cx="996" cy="147" r="2" fill="#044289"/>
367
+ <circle cx="1008" cy="147" r="2" fill="#044289"/>
368
+ <circle cx="1020" cy="147" r="2" fill="#044289"/>
369
+ <circle cx="1032" cy="147" r="2" fill="#044289"/>
370
+ <circle cx="1044" cy="147" r="2" fill="#044289"/>
371
+ <circle cx="984" cy="147" r="2" fill="#044289"/>
372
+ <circle cx="996" cy="159" r="2" fill="#044289"/>
373
+ <circle cx="1008" cy="159" r="2" fill="#044289"/>
374
+ <circle cx="1020" cy="159" r="2" fill="#044289"/>
375
+ <circle cx="1032" cy="159" r="2" fill="#044289"/>
376
+ <circle cx="1044" cy="159" r="2" fill="#044289"/>
377
+ <circle cx="984" cy="159" r="2" fill="#044289"/>
378
+ <circle cx="996" cy="171" r="2" fill="#044289"/>
379
+ <circle cx="1008" cy="171" r="2" fill="#044289"/>
380
+ <circle cx="1020" cy="171" r="2" fill="#044289"/>
381
+ <circle cx="1032" cy="171" r="2" fill="#044289"/>
382
+ <circle cx="1044" cy="171" r="2" fill="#044289"/>
383
+ <circle cx="984" cy="171" r="2" fill="#044289"/>
384
+ <circle cx="996" cy="183" r="2" fill="#044289"/>
385
+ <circle cx="1008" cy="183" r="2" fill="#044289"/>
386
+ <circle cx="1020" cy="183" r="2" fill="#044289"/>
387
+ <circle cx="1032" cy="183" r="2" fill="#044289"/>
388
+ <circle cx="1044" cy="183" r="2" fill="#044289"/>
389
+ <circle cx="984" cy="183" r="2" fill="#044289"/>
390
+ <circle cx="996" cy="195" r="2" fill="#044289"/>
391
+ <circle cx="1008" cy="195" r="2" fill="#044289"/>
392
+ <circle cx="1020" cy="195" r="2" fill="#044289"/>
393
+ <circle cx="1032" cy="195" r="2" fill="#044289"/>
394
+ <circle cx="1044" cy="195" r="2" fill="#044289"/>
395
+ <circle cx="984" cy="195" r="2" fill="#044289"/>
396
+ <circle cx="996" cy="207" r="2" fill="#044289"/>
397
+ <circle cx="1008" cy="207" r="2" fill="#044289"/>
398
+ <circle cx="1020" cy="207" r="2" fill="#044289"/>
399
+ <circle cx="1032" cy="207" r="2" fill="#044289"/>
400
+ <circle cx="1044" cy="207" r="2" fill="#044289"/>
401
+ <circle cx="984" cy="207" r="2" fill="#044289"/>
402
+ <circle cx="996" cy="219" r="2" fill="#044289"/>
403
+ <circle cx="1008" cy="219" r="2" fill="#044289"/>
404
+ <circle cx="1020" cy="219" r="2" fill="#044289"/>
405
+ <circle cx="1032" cy="219" r="2" fill="#044289"/>
406
+ <circle cx="1044" cy="219" r="2" fill="#044289"/>
407
+ <circle cx="984" cy="219" r="2" fill="#044289"/>
408
+ <circle cx="996" cy="231" r="2" fill="#044289"/>
409
+ <circle cx="1008" cy="231" r="2" fill="#044289"/>
410
+ <circle cx="1020" cy="231" r="2" fill="#044289"/>
411
+ <circle cx="1032" cy="231" r="2" fill="#044289"/>
412
+ <circle cx="1044" cy="231" r="2" fill="#044289"/>
413
+ <circle cx="984" cy="231" r="2" fill="#044289"/>
414
+ <circle cx="996" cy="243" r="2" fill="#044289"/>
415
+ <circle cx="1008" cy="243" r="2" fill="#044289"/>
416
+ <circle cx="1020" cy="243" r="2" fill="#044289"/>
417
+ <circle cx="1032" cy="243" r="2" fill="#044289"/>
418
+ <circle cx="1044" cy="243" r="2" fill="#044289"/>
419
+ <circle cx="984" cy="243" r="2" fill="#044289"/>
420
+ <circle cx="996" cy="255" r="2" fill="#044289"/>
421
+ <circle cx="1008" cy="255" r="2" fill="#044289"/>
422
+ <circle cx="1020" cy="255" r="2" fill="#044289"/>
423
+ <circle cx="1032" cy="255" r="2" fill="#044289"/>
424
+ <circle cx="1044" cy="255" r="2" fill="#044289"/>
425
+ <circle cx="984" cy="255" r="2" fill="#044289"/>
426
+ <circle cx="1056" cy="111" r="2" fill="#044289"/>
427
+ <circle cx="1056" cy="123" r="2" fill="#044289"/>
428
+ <circle cx="1056" cy="135" r="2" fill="#044289"/>
429
+ <circle cx="1056" cy="147" r="2" fill="#044289"/>
430
+ <circle cx="1056" cy="159" r="2" fill="#044289"/>
431
+ <circle cx="1056" cy="171" r="2" fill="#044289"/>
432
+ <circle cx="1056" cy="183" r="2" fill="#044289"/>
433
+ <circle cx="1056" cy="195" r="2" fill="#044289"/>
434
+ <circle cx="1056" cy="207" r="2" fill="#044289"/>
435
+ <circle cx="1056" cy="219" r="2" fill="#044289"/>
436
+ <circle cx="1056" cy="231" r="2" fill="#044289"/>
437
+ <circle cx="1056" cy="243" r="2" fill="#044289"/>
438
+ <circle cx="1056" cy="255" r="2" fill="#044289"/>
439
+ <circle cx="996" cy="267" r="2" fill="#044289"/>
440
+ <circle cx="1008" cy="267" r="2" fill="#044289"/>
441
+ <circle cx="1020" cy="267" r="2" fill="#044289"/>
442
+ <circle cx="1032" cy="267" r="2" fill="#044289"/>
443
+ <circle cx="1044" cy="267" r="2" fill="#044289"/>
444
+ <circle cx="984" cy="267" r="2" fill="#044289"/>
445
+ <circle cx="1056" cy="267" r="2" fill="#044289"/>
446
+ </g>
447
+ <rect x="782.5" y="77.5" width="255" height="255" fill="#1B1F23" stroke="#79B8FF"/>
448
+ </g>
449
+ <path d="M968 10L964 16.9282H956L952 10L956 3.0718L964 3.0718L968 10Z" stroke="#2188FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
450
+ <ellipse cx="58" cy="18.0541" rx="6" ry="6.01408" stroke="#2188FF" stroke-width="2"/>
451
+ <g clip-path="url(#clip2)">
452
+ <rect width="276" height="276" transform="matrix(-1 0 0 1 286 37)" fill="#1B1F23"/>
453
+ <g clip-path="url(#clip3)">
454
+ <circle r="2" transform="matrix(-1 0 0 1 240 239)" fill="#044289"/>
455
+ <circle r="2" transform="matrix(-1 0 0 1 228 239)" fill="#044289"/>
456
+ <circle r="2" transform="matrix(-1 0 0 1 216 239)" fill="#044289"/>
457
+ <circle r="2" transform="matrix(-1 0 0 1 204 239)" fill="#044289"/>
458
+ <circle r="2" transform="matrix(-1 0 0 1 192 239)" fill="#044289"/>
459
+ <circle r="2" transform="matrix(-1 0 0 1 240 251)" fill="#044289"/>
460
+ <circle r="2" transform="matrix(-1 0 0 1 228 251)" fill="#044289"/>
461
+ <circle r="2" transform="matrix(-1 0 0 1 216 251)" fill="#044289"/>
462
+ <circle r="2" transform="matrix(-1 0 0 1 204 251)" fill="#044289"/>
463
+ <circle r="2" transform="matrix(-1 0 0 1 192 251)" fill="#044289"/>
464
+ <circle r="2" transform="matrix(-1 0 0 1 240 263)" fill="#044289"/>
465
+ <circle r="2" transform="matrix(-1 0 0 1 228 263)" fill="#044289"/>
466
+ <circle r="2" transform="matrix(-1 0 0 1 216 263)" fill="#044289"/>
467
+ <circle r="2" transform="matrix(-1 0 0 1 204 263)" fill="#044289"/>
468
+ <circle r="2" transform="matrix(-1 0 0 1 192 263)" fill="#044289"/>
469
+ <circle r="2" transform="matrix(-1 0 0 1 252 239)" fill="#044289"/>
470
+ <circle r="2" transform="matrix(-1 0 0 1 252 251)" fill="#044289"/>
471
+ <circle r="2" transform="matrix(-1 0 0 1 252 263)" fill="#044289"/>
472
+ <circle r="2" transform="matrix(-1 0 0 1 240 275)" fill="#044289"/>
473
+ <circle r="2" transform="matrix(-1 0 0 1 228 275)" fill="#044289"/>
474
+ <circle r="2" transform="matrix(-1 0 0 1 216 275)" fill="#044289"/>
475
+ <circle r="2" transform="matrix(-1 0 0 1 204 275)" fill="#044289"/>
476
+ <circle r="2" transform="matrix(-1 0 0 1 192 275)" fill="#044289"/>
477
+ <circle r="2" transform="matrix(-1 0 0 1 252 275)" fill="#044289"/>
478
+ <circle r="2" transform="matrix(-1 0 0 1 240 287)" fill="#044289"/>
479
+ <circle r="2" transform="matrix(-1 0 0 1 228 287)" fill="#044289"/>
480
+ <circle r="2" transform="matrix(-1 0 0 1 216 287)" fill="#044289"/>
481
+ <circle r="2" transform="matrix(-1 0 0 1 204 287)" fill="#044289"/>
482
+ <circle r="2" transform="matrix(-1 0 0 1 192 287)" fill="#044289"/>
483
+ <circle r="2" transform="matrix(-1 0 0 1 252 287)" fill="#044289"/>
484
+ <circle r="2" transform="matrix(-1 0 0 1 240 299)" fill="#044289"/>
485
+ <circle r="2" transform="matrix(-1 0 0 1 228 299)" fill="#044289"/>
486
+ <circle r="2" transform="matrix(-1 0 0 1 216 299)" fill="#044289"/>
487
+ <circle r="2" transform="matrix(-1 0 0 1 204 299)" fill="#044289"/>
488
+ <circle r="2" transform="matrix(-1 0 0 1 192 299)" fill="#044289"/>
489
+ <circle r="2" transform="matrix(-1 0 0 1 252 299)" fill="#044289"/>
490
+ <circle r="2" transform="matrix(-1 0 0 1 240 311)" fill="#044289"/>
491
+ <circle r="2" transform="matrix(-1 0 0 1 228 311)" fill="#044289"/>
492
+ <circle r="2" transform="matrix(-1 0 0 1 216 311)" fill="#044289"/>
493
+ <circle r="2" transform="matrix(-1 0 0 1 204 311)" fill="#044289"/>
494
+ <circle r="2" transform="matrix(-1 0 0 1 192 311)" fill="#044289"/>
495
+ <circle r="2" transform="matrix(-1 0 0 1 252 311)" fill="#044289"/>
496
+ <circle r="2" transform="matrix(-1 0 0 1 180 239)" fill="#044289"/>
497
+ <circle r="2" transform="matrix(-1 0 0 1 180 251)" fill="#044289"/>
498
+ <circle r="2" transform="matrix(-1 0 0 1 180 263)" fill="#044289"/>
499
+ <circle r="2" transform="matrix(-1 0 0 1 180 275)" fill="#044289"/>
500
+ <circle r="2" transform="matrix(-1 0 0 1 180 287)" fill="#044289"/>
501
+ <circle r="2" transform="matrix(-1 0 0 1 180 299)" fill="#044289"/>
502
+ <circle r="2" transform="matrix(-1 0 0 1 180 311)" fill="#044289"/>
503
+ <circle r="2" transform="matrix(-1 0 0 1 168 239)" fill="#044289"/>
504
+ <circle r="2" transform="matrix(-1 0 0 1 168 251)" fill="#044289"/>
505
+ <circle r="2" transform="matrix(-1 0 0 1 168 263)" fill="#044289"/>
506
+ <circle r="2" transform="matrix(-1 0 0 1 168 275)" fill="#044289"/>
507
+ <circle r="2" transform="matrix(-1 0 0 1 168 287)" fill="#044289"/>
508
+ <circle r="2" transform="matrix(-1 0 0 1 168 299)" fill="#044289"/>
509
+ <circle r="2" transform="matrix(-1 0 0 1 168 311)" fill="#044289"/>
510
+ <circle r="2" transform="matrix(-1 0 0 1 156 239)" fill="#044289"/>
511
+ <circle r="2" transform="matrix(-1 0 0 1 156 251)" fill="#044289"/>
512
+ <circle r="2" transform="matrix(-1 0 0 1 156 263)" fill="#044289"/>
513
+ <circle r="2" transform="matrix(-1 0 0 1 156 275)" fill="#044289"/>
514
+ <circle r="2" transform="matrix(-1 0 0 1 156 287)" fill="#044289"/>
515
+ <circle r="2" transform="matrix(-1 0 0 1 156 299)" fill="#044289"/>
516
+ <circle r="2" transform="matrix(-1 0 0 1 156 311)" fill="#044289"/>
517
+ <circle r="2" transform="matrix(-1 0 0 1 144 239)" fill="#044289"/>
518
+ <circle r="2" transform="matrix(-1 0 0 1 144 251)" fill="#044289"/>
519
+ <circle r="2" transform="matrix(-1 0 0 1 144 263)" fill="#044289"/>
520
+ <circle r="2" transform="matrix(-1 0 0 1 144 275)" fill="#044289"/>
521
+ <circle r="2" transform="matrix(-1 0 0 1 144 287)" fill="#044289"/>
522
+ <circle r="2" transform="matrix(-1 0 0 1 144 299)" fill="#044289"/>
523
+ <circle r="2" transform="matrix(-1 0 0 1 144 311)" fill="#044289"/>
524
+ <circle r="2" transform="matrix(-1 0 0 1 132 239)" fill="#044289"/>
525
+ <circle r="2" transform="matrix(-1 0 0 1 132 251)" fill="#044289"/>
526
+ <circle r="2" transform="matrix(-1 0 0 1 132 263)" fill="#044289"/>
527
+ <circle r="2" transform="matrix(-1 0 0 1 132 275)" fill="#044289"/>
528
+ <circle r="2" transform="matrix(-1 0 0 1 132 287)" fill="#044289"/>
529
+ <circle r="2" transform="matrix(-1 0 0 1 132 299)" fill="#044289"/>
530
+ <circle r="2" transform="matrix(-1 0 0 1 132 311)" fill="#044289"/>
531
+ <circle r="2" transform="matrix(-1 0 0 1 120 239)" fill="#044289"/>
532
+ <circle r="2" transform="matrix(-1 0 0 1 120 251)" fill="#044289"/>
533
+ <circle r="2" transform="matrix(-1 0 0 1 120 263)" fill="#044289"/>
534
+ <circle r="2" transform="matrix(-1 0 0 1 120 275)" fill="#044289"/>
535
+ <circle r="2" transform="matrix(-1 0 0 1 120 287)" fill="#044289"/>
536
+ <circle r="2" transform="matrix(-1 0 0 1 120 299)" fill="#044289"/>
537
+ <circle r="2" transform="matrix(-1 0 0 1 120 311)" fill="#044289"/>
538
+ <circle r="2" transform="matrix(-1 0 0 1 108 239)" fill="#044289"/>
539
+ <circle r="2" transform="matrix(-1 0 0 1 96 239)" fill="#044289"/>
540
+ <circle r="2" transform="matrix(-1 0 0 1 96 251)" fill="#044289"/>
541
+ <circle r="2" transform="matrix(-1 0 0 1 96 263)" fill="#044289"/>
542
+ <circle r="2" transform="matrix(-1 0 0 1 96 275)" fill="#044289"/>
543
+ <circle r="2" transform="matrix(-1 0 0 1 96 287)" fill="#044289"/>
544
+ <circle r="2" transform="matrix(-1 0 0 1 96 299)" fill="#044289"/>
545
+ <circle r="2" transform="matrix(-1 0 0 1 96 311)" fill="#044289"/>
546
+ <circle r="2" transform="matrix(-1 0 0 1 108 251)" fill="#044289"/>
547
+ <circle r="2" transform="matrix(-1 0 0 1 108 263)" fill="#044289"/>
548
+ <circle r="2" transform="matrix(-1 0 0 1 108 275)" fill="#044289"/>
549
+ <circle r="2" transform="matrix(-1 0 0 1 108 287)" fill="#044289"/>
550
+ <circle r="2" transform="matrix(-1 0 0 1 108 299)" fill="#044289"/>
551
+ <circle r="2" transform="matrix(-1 0 0 1 108 311)" fill="#044289"/>
552
+ <circle r="2" transform="matrix(-1 0 0 1 72 239)" fill="#044289"/>
553
+ <circle r="2" transform="matrix(-1 0 0 1 60 239)" fill="#044289"/>
554
+ <circle r="2" transform="matrix(-1 0 0 1 48 239)" fill="#044289"/>
555
+ <circle r="2" transform="matrix(-1 0 0 1 36 239)" fill="#044289"/>
556
+ <circle r="2" transform="matrix(-1 0 0 1 24 239)" fill="#044289"/>
557
+ <circle r="2" transform="matrix(-1 0 0 1 72 251)" fill="#044289"/>
558
+ <circle r="2" transform="matrix(-1 0 0 1 60 251)" fill="#044289"/>
559
+ <circle r="2" transform="matrix(-1 0 0 1 48 251)" fill="#044289"/>
560
+ <circle r="2" transform="matrix(-1 0 0 1 36 251)" fill="#044289"/>
561
+ <circle r="2" transform="matrix(-1 0 0 1 24 251)" fill="#044289"/>
562
+ <circle r="2" transform="matrix(-1 0 0 1 72 263)" fill="#044289"/>
563
+ <circle r="2" transform="matrix(-1 0 0 1 60 263)" fill="#044289"/>
564
+ <circle r="2" transform="matrix(-1 0 0 1 48 263)" fill="#044289"/>
565
+ <circle r="2" transform="matrix(-1 0 0 1 36 263)" fill="#044289"/>
566
+ <circle r="2" transform="matrix(-1 0 0 1 24 263)" fill="#044289"/>
567
+ <circle r="2" transform="matrix(-1 0 0 1 84 239)" fill="#044289"/>
568
+ <circle r="2" transform="matrix(-1 0 0 1 84 251)" fill="#044289"/>
569
+ <circle r="2" transform="matrix(-1 0 0 1 84 263)" fill="#044289"/>
570
+ <circle r="2" transform="matrix(-1 0 0 1 72 275)" fill="#044289"/>
571
+ <circle r="2" transform="matrix(-1 0 0 1 60 275)" fill="#044289"/>
572
+ <circle r="2" transform="matrix(-1 0 0 1 48 275)" fill="#044289"/>
573
+ <circle r="2" transform="matrix(-1 0 0 1 36 275)" fill="#044289"/>
574
+ <circle r="2" transform="matrix(-1 0 0 1 24 275)" fill="#044289"/>
575
+ <circle r="2" transform="matrix(-1 0 0 1 84 275)" fill="#044289"/>
576
+ <circle r="2" transform="matrix(-1 0 0 1 72 287)" fill="#044289"/>
577
+ <circle r="2" transform="matrix(-1 0 0 1 60 287)" fill="#044289"/>
578
+ <circle r="2" transform="matrix(-1 0 0 1 48 287)" fill="#044289"/>
579
+ <circle r="2" transform="matrix(-1 0 0 1 36 287)" fill="#044289"/>
580
+ <circle r="2" transform="matrix(-1 0 0 1 24 287)" fill="#044289"/>
581
+ <circle r="2" transform="matrix(-1 0 0 1 84 287)" fill="#044289"/>
582
+ <circle r="2" transform="matrix(-1 0 0 1 72 299)" fill="#044289"/>
583
+ <circle r="2" transform="matrix(-1 0 0 1 60 299)" fill="#044289"/>
584
+ <circle r="2" transform="matrix(-1 0 0 1 48 299)" fill="#044289"/>
585
+ <circle r="2" transform="matrix(-1 0 0 1 36 299)" fill="#044289"/>
586
+ <circle r="2" transform="matrix(-1 0 0 1 24 299)" fill="#044289"/>
587
+ <circle r="2" transform="matrix(-1 0 0 1 84 299)" fill="#044289"/>
588
+ <circle r="2" transform="matrix(-1 0 0 1 72 311)" fill="#044289"/>
589
+ <circle r="2" transform="matrix(-1 0 0 1 60 311)" fill="#044289"/>
590
+ <circle r="2" transform="matrix(-1 0 0 1 48 311)" fill="#044289"/>
591
+ <circle r="2" transform="matrix(-1 0 0 1 36 311)" fill="#044289"/>
592
+ <circle r="2" transform="matrix(-1 0 0 1 24 311)" fill="#044289"/>
593
+ <circle r="2" transform="matrix(-1 0 0 1 84 311)" fill="#044289"/>
594
+ <circle r="2" transform="matrix(-1 0 0 1 12 239)" fill="#044289"/>
595
+ <circle r="2" transform="matrix(-1 0 0 1 12 251)" fill="#044289"/>
596
+ <circle r="2" transform="matrix(-1 0 0 1 12 263)" fill="#044289"/>
597
+ <circle r="2" transform="matrix(-1 0 0 1 12 275)" fill="#044289"/>
598
+ <circle r="2" transform="matrix(-1 0 0 1 12 287)" fill="#044289"/>
599
+ <circle r="2" transform="matrix(-1 0 0 1 12 299)" fill="#044289"/>
600
+ <circle r="2" transform="matrix(-1 0 0 1 12 311)" fill="#044289"/>
601
+ <circle r="2" transform="matrix(-1 0 0 1 240 71)" fill="#044289"/>
602
+ <circle r="2" transform="matrix(-1 0 0 1 228 71)" fill="#044289"/>
603
+ <circle r="2" transform="matrix(-1 0 0 1 216 71)" fill="#044289"/>
604
+ <circle r="2" transform="matrix(-1 0 0 1 204 71)" fill="#044289"/>
605
+ <circle r="2" transform="matrix(-1 0 0 1 192 71)" fill="#044289"/>
606
+ <circle r="2" transform="matrix(-1 0 0 1 240 83)" fill="#044289"/>
607
+ <circle r="2" transform="matrix(-1 0 0 1 228 83)" fill="#044289"/>
608
+ <circle r="2" transform="matrix(-1 0 0 1 216 83)" fill="#044289"/>
609
+ <circle r="2" transform="matrix(-1 0 0 1 204 83)" fill="#044289"/>
610
+ <circle r="2" transform="matrix(-1 0 0 1 192 83)" fill="#044289"/>
611
+ <circle r="2" transform="matrix(-1 0 0 1 240 95)" fill="#044289"/>
612
+ <circle r="2" transform="matrix(-1 0 0 1 228 95)" fill="#044289"/>
613
+ <circle r="2" transform="matrix(-1 0 0 1 216 95)" fill="#044289"/>
614
+ <circle r="2" transform="matrix(-1 0 0 1 204 95)" fill="#044289"/>
615
+ <circle r="2" transform="matrix(-1 0 0 1 192 95)" fill="#044289"/>
616
+ <circle r="2" transform="matrix(-1 0 0 1 252 71)" fill="#044289"/>
617
+ <circle r="2" transform="matrix(-1 0 0 1 252 83)" fill="#044289"/>
618
+ <circle r="2" transform="matrix(-1 0 0 1 252 95)" fill="#044289"/>
619
+ <circle r="2" transform="matrix(-1 0 0 1 240 107)" fill="#044289"/>
620
+ <circle r="2" transform="matrix(-1 0 0 1 228 107)" fill="#044289"/>
621
+ <circle r="2" transform="matrix(-1 0 0 1 216 107)" fill="#044289"/>
622
+ <circle r="2" transform="matrix(-1 0 0 1 204 107)" fill="#044289"/>
623
+ <circle r="2" transform="matrix(-1 0 0 1 192 107)" fill="#044289"/>
624
+ <circle r="2" transform="matrix(-1 0 0 1 252 107)" fill="#044289"/>
625
+ <circle r="2" transform="matrix(-1 0 0 1 240 119)" fill="#044289"/>
626
+ <circle r="2" transform="matrix(-1 0 0 1 228 119)" fill="#044289"/>
627
+ <circle r="2" transform="matrix(-1 0 0 1 216 119)" fill="#044289"/>
628
+ <circle r="2" transform="matrix(-1 0 0 1 204 119)" fill="#044289"/>
629
+ <circle r="2" transform="matrix(-1 0 0 1 192 119)" fill="#044289"/>
630
+ <circle r="2" transform="matrix(-1 0 0 1 252 119)" fill="#044289"/>
631
+ <circle r="2" transform="matrix(-1 0 0 1 240 131)" fill="#044289"/>
632
+ <circle r="2" transform="matrix(-1 0 0 1 228 131)" fill="#044289"/>
633
+ <circle r="2" transform="matrix(-1 0 0 1 216 131)" fill="#044289"/>
634
+ <circle r="2" transform="matrix(-1 0 0 1 204 131)" fill="#044289"/>
635
+ <circle r="2" transform="matrix(-1 0 0 1 192 131)" fill="#044289"/>
636
+ <circle r="2" transform="matrix(-1 0 0 1 252 131)" fill="#044289"/>
637
+ <circle r="2" transform="matrix(-1 0 0 1 240 143)" fill="#044289"/>
638
+ <circle r="2" transform="matrix(-1 0 0 1 228 143)" fill="#044289"/>
639
+ <circle r="2" transform="matrix(-1 0 0 1 216 143)" fill="#044289"/>
640
+ <circle r="2" transform="matrix(-1 0 0 1 204 143)" fill="#044289"/>
641
+ <circle r="2" transform="matrix(-1 0 0 1 192 143)" fill="#044289"/>
642
+ <circle r="2" transform="matrix(-1 0 0 1 252 143)" fill="#044289"/>
643
+ <circle r="2" transform="matrix(-1 0 0 1 240 155)" fill="#044289"/>
644
+ <circle r="2" transform="matrix(-1 0 0 1 228 155)" fill="#044289"/>
645
+ <circle r="2" transform="matrix(-1 0 0 1 216 155)" fill="#044289"/>
646
+ <circle r="2" transform="matrix(-1 0 0 1 204 155)" fill="#044289"/>
647
+ <circle r="2" transform="matrix(-1 0 0 1 192 155)" fill="#044289"/>
648
+ <circle r="2" transform="matrix(-1 0 0 1 252 155)" fill="#044289"/>
649
+ <circle r="2" transform="matrix(-1 0 0 1 240 167)" fill="#044289"/>
650
+ <circle r="2" transform="matrix(-1 0 0 1 228 167)" fill="#044289"/>
651
+ <circle r="2" transform="matrix(-1 0 0 1 216 167)" fill="#044289"/>
652
+ <circle r="2" transform="matrix(-1 0 0 1 204 167)" fill="#044289"/>
653
+ <circle r="2" transform="matrix(-1 0 0 1 192 167)" fill="#044289"/>
654
+ <circle r="2" transform="matrix(-1 0 0 1 252 167)" fill="#044289"/>
655
+ <circle r="2" transform="matrix(-1 0 0 1 240 179)" fill="#044289"/>
656
+ <circle r="2" transform="matrix(-1 0 0 1 228 179)" fill="#044289"/>
657
+ <circle r="2" transform="matrix(-1 0 0 1 216 179)" fill="#044289"/>
658
+ <circle r="2" transform="matrix(-1 0 0 1 204 179)" fill="#044289"/>
659
+ <circle r="2" transform="matrix(-1 0 0 1 192 179)" fill="#044289"/>
660
+ <circle r="2" transform="matrix(-1 0 0 1 252 179)" fill="#044289"/>
661
+ <circle r="2" transform="matrix(-1 0 0 1 240 191)" fill="#044289"/>
662
+ <circle r="2" transform="matrix(-1 0 0 1 228 191)" fill="#044289"/>
663
+ <circle r="2" transform="matrix(-1 0 0 1 216 191)" fill="#044289"/>
664
+ <circle r="2" transform="matrix(-1 0 0 1 204 191)" fill="#044289"/>
665
+ <circle r="2" transform="matrix(-1 0 0 1 192 191)" fill="#044289"/>
666
+ <circle r="2" transform="matrix(-1 0 0 1 252 191)" fill="#044289"/>
667
+ <circle r="2" transform="matrix(-1 0 0 1 240 203)" fill="#044289"/>
668
+ <circle r="2" transform="matrix(-1 0 0 1 228 203)" fill="#044289"/>
669
+ <circle r="2" transform="matrix(-1 0 0 1 216 203)" fill="#044289"/>
670
+ <circle r="2" transform="matrix(-1 0 0 1 204 203)" fill="#044289"/>
671
+ <circle r="2" transform="matrix(-1 0 0 1 192 203)" fill="#044289"/>
672
+ <circle r="2" transform="matrix(-1 0 0 1 252 203)" fill="#044289"/>
673
+ <circle r="2" transform="matrix(-1 0 0 1 240 215)" fill="#044289"/>
674
+ <circle r="2" transform="matrix(-1 0 0 1 228 215)" fill="#044289"/>
675
+ <circle r="2" transform="matrix(-1 0 0 1 216 215)" fill="#044289"/>
676
+ <circle r="2" transform="matrix(-1 0 0 1 204 215)" fill="#044289"/>
677
+ <circle r="2" transform="matrix(-1 0 0 1 192 215)" fill="#044289"/>
678
+ <circle r="2" transform="matrix(-1 0 0 1 252 215)" fill="#044289"/>
679
+ <circle r="2" transform="matrix(-1 0 0 1 180 71)" fill="#044289"/>
680
+ <circle r="2" transform="matrix(-1 0 0 1 180 83)" fill="#044289"/>
681
+ <circle r="2" transform="matrix(-1 0 0 1 180 95)" fill="#044289"/>
682
+ <circle r="2" transform="matrix(-1 0 0 1 180 107)" fill="#044289"/>
683
+ <circle r="2" transform="matrix(-1 0 0 1 180 119)" fill="#044289"/>
684
+ <circle r="2" transform="matrix(-1 0 0 1 180 131)" fill="#044289"/>
685
+ <circle r="2" transform="matrix(-1 0 0 1 180 143)" fill="#044289"/>
686
+ <circle r="2" transform="matrix(-1 0 0 1 180 155)" fill="#044289"/>
687
+ <circle r="2" transform="matrix(-1 0 0 1 180 167)" fill="#044289"/>
688
+ <circle r="2" transform="matrix(-1 0 0 1 180 179)" fill="#044289"/>
689
+ <circle r="2" transform="matrix(-1 0 0 1 180 191)" fill="#044289"/>
690
+ <circle r="2" transform="matrix(-1 0 0 1 180 203)" fill="#044289"/>
691
+ <circle r="2" transform="matrix(-1 0 0 1 180 215)" fill="#044289"/>
692
+ <circle r="2" transform="matrix(-1 0 0 1 168 71)" fill="#044289"/>
693
+ <circle r="2" transform="matrix(-1 0 0 1 168 83)" fill="#044289"/>
694
+ <circle r="2" transform="matrix(-1 0 0 1 168 95)" fill="#044289"/>
695
+ <circle r="2" transform="matrix(-1 0 0 1 168 107)" fill="#044289"/>
696
+ <circle r="2" transform="matrix(-1 0 0 1 168 119)" fill="#044289"/>
697
+ <circle r="2" transform="matrix(-1 0 0 1 168 131)" fill="#044289"/>
698
+ <circle r="2" transform="matrix(-1 0 0 1 168 143)" fill="#044289"/>
699
+ <circle r="2" transform="matrix(-1 0 0 1 168 155)" fill="#044289"/>
700
+ <circle r="2" transform="matrix(-1 0 0 1 168 167)" fill="#044289"/>
701
+ <circle r="2" transform="matrix(-1 0 0 1 168 179)" fill="#044289"/>
702
+ <circle r="2" transform="matrix(-1 0 0 1 168 191)" fill="#044289"/>
703
+ <circle r="2" transform="matrix(-1 0 0 1 168 203)" fill="#044289"/>
704
+ <circle r="2" transform="matrix(-1 0 0 1 168 215)" fill="#044289"/>
705
+ <circle r="2" transform="matrix(-1 0 0 1 156 71)" fill="#044289"/>
706
+ <circle r="2" transform="matrix(-1 0 0 1 156 83)" fill="#044289"/>
707
+ <circle r="2" transform="matrix(-1 0 0 1 156 95)" fill="#044289"/>
708
+ <circle r="2" transform="matrix(-1 0 0 1 156 107)" fill="#044289"/>
709
+ <circle r="2" transform="matrix(-1 0 0 1 156 119)" fill="#044289"/>
710
+ <circle r="2" transform="matrix(-1 0 0 1 156 131)" fill="#044289"/>
711
+ <circle r="2" transform="matrix(-1 0 0 1 156 143)" fill="#044289"/>
712
+ <circle r="2" transform="matrix(-1 0 0 1 156 155)" fill="#044289"/>
713
+ <circle r="2" transform="matrix(-1 0 0 1 156 167)" fill="#044289"/>
714
+ <circle r="2" transform="matrix(-1 0 0 1 156 179)" fill="#044289"/>
715
+ <circle r="2" transform="matrix(-1 0 0 1 156 191)" fill="#044289"/>
716
+ <circle r="2" transform="matrix(-1 0 0 1 156 203)" fill="#044289"/>
717
+ <circle r="2" transform="matrix(-1 0 0 1 156 215)" fill="#044289"/>
718
+ <circle r="2" transform="matrix(-1 0 0 1 144 71)" fill="#044289"/>
719
+ <circle r="2" transform="matrix(-1 0 0 1 144 83)" fill="#044289"/>
720
+ <circle r="2" transform="matrix(-1 0 0 1 144 95)" fill="#044289"/>
721
+ <circle r="2" transform="matrix(-1 0 0 1 144 107)" fill="#044289"/>
722
+ <circle r="2" transform="matrix(-1 0 0 1 144 119)" fill="#044289"/>
723
+ <circle r="2" transform="matrix(-1 0 0 1 144 131)" fill="#044289"/>
724
+ <circle r="2" transform="matrix(-1 0 0 1 144 143)" fill="#044289"/>
725
+ <circle r="2" transform="matrix(-1 0 0 1 144 155)" fill="#044289"/>
726
+ <circle r="2" transform="matrix(-1 0 0 1 144 167)" fill="#044289"/>
727
+ <circle r="2" transform="matrix(-1 0 0 1 144 179)" fill="#044289"/>
728
+ <circle r="2" transform="matrix(-1 0 0 1 144 191)" fill="#044289"/>
729
+ <circle r="2" transform="matrix(-1 0 0 1 144 203)" fill="#044289"/>
730
+ <circle r="2" transform="matrix(-1 0 0 1 144 215)" fill="#044289"/>
731
+ <circle r="2" transform="matrix(-1 0 0 1 132 71)" fill="#044289"/>
732
+ <circle r="2" transform="matrix(-1 0 0 1 132 83)" fill="#044289"/>
733
+ <circle r="2" transform="matrix(-1 0 0 1 132 95)" fill="#044289"/>
734
+ <circle r="2" transform="matrix(-1 0 0 1 132 107)" fill="#044289"/>
735
+ <circle r="2" transform="matrix(-1 0 0 1 132 119)" fill="#044289"/>
736
+ <circle r="2" transform="matrix(-1 0 0 1 132 131)" fill="#044289"/>
737
+ <circle r="2" transform="matrix(-1 0 0 1 132 143)" fill="#044289"/>
738
+ <circle r="2" transform="matrix(-1 0 0 1 132 155)" fill="#044289"/>
739
+ <circle r="2" transform="matrix(-1 0 0 1 132 167)" fill="#044289"/>
740
+ <circle r="2" transform="matrix(-1 0 0 1 132 179)" fill="#044289"/>
741
+ <circle r="2" transform="matrix(-1 0 0 1 132 191)" fill="#044289"/>
742
+ <circle r="2" transform="matrix(-1 0 0 1 132 203)" fill="#044289"/>
743
+ <circle r="2" transform="matrix(-1 0 0 1 132 215)" fill="#044289"/>
744
+ <circle r="2" transform="matrix(-1 0 0 1 120 71)" fill="#044289"/>
745
+ <circle r="2" transform="matrix(-1 0 0 1 120 83)" fill="#044289"/>
746
+ <circle r="2" transform="matrix(-1 0 0 1 120 95)" fill="#044289"/>
747
+ <circle r="2" transform="matrix(-1 0 0 1 120 107)" fill="#044289"/>
748
+ <circle r="2" transform="matrix(-1 0 0 1 120 119)" fill="#044289"/>
749
+ <circle r="2" transform="matrix(-1 0 0 1 120 131)" fill="#044289"/>
750
+ <circle r="2" transform="matrix(-1 0 0 1 120 143)" fill="#044289"/>
751
+ <circle r="2" transform="matrix(-1 0 0 1 120 155)" fill="#044289"/>
752
+ <circle r="2" transform="matrix(-1 0 0 1 120 167)" fill="#044289"/>
753
+ <circle r="2" transform="matrix(-1 0 0 1 120 179)" fill="#044289"/>
754
+ <circle r="2" transform="matrix(-1 0 0 1 120 191)" fill="#044289"/>
755
+ <circle r="2" transform="matrix(-1 0 0 1 120 203)" fill="#044289"/>
756
+ <circle r="2" transform="matrix(-1 0 0 1 120 215)" fill="#044289"/>
757
+ <circle r="2" transform="matrix(-1 0 0 1 108 71)" fill="#044289"/>
758
+ <circle r="2" transform="matrix(-1 0 0 1 96 71)" fill="#044289"/>
759
+ <circle r="2" transform="matrix(-1 0 0 1 96 83)" fill="#044289"/>
760
+ <circle r="2" transform="matrix(-1 0 0 1 96 95)" fill="#044289"/>
761
+ <circle r="2" transform="matrix(-1 0 0 1 96 107)" fill="#044289"/>
762
+ <circle r="2" transform="matrix(-1 0 0 1 96 119)" fill="#044289"/>
763
+ <circle r="2" transform="matrix(-1 0 0 1 96 131)" fill="#044289"/>
764
+ <circle r="2" transform="matrix(-1 0 0 1 96 143)" fill="#044289"/>
765
+ <circle r="2" transform="matrix(-1 0 0 1 96 155)" fill="#044289"/>
766
+ <circle r="2" transform="matrix(-1 0 0 1 96 167)" fill="#044289"/>
767
+ <circle r="2" transform="matrix(-1 0 0 1 96 179)" fill="#044289"/>
768
+ <circle r="2" transform="matrix(-1 0 0 1 96 191)" fill="#044289"/>
769
+ <circle r="2" transform="matrix(-1 0 0 1 96 203)" fill="#044289"/>
770
+ <circle r="2" transform="matrix(-1 0 0 1 96 215)" fill="#044289"/>
771
+ <circle r="2" transform="matrix(-1 0 0 1 108 83)" fill="#044289"/>
772
+ <circle r="2" transform="matrix(-1 0 0 1 108 95)" fill="#044289"/>
773
+ <circle r="2" transform="matrix(-1 0 0 1 108 107)" fill="#044289"/>
774
+ <circle r="2" transform="matrix(-1 0 0 1 108 119)" fill="#044289"/>
775
+ <circle r="2" transform="matrix(-1 0 0 1 108 131)" fill="#044289"/>
776
+ <circle r="2" transform="matrix(-1 0 0 1 108 143)" fill="#044289"/>
777
+ <circle r="2" transform="matrix(-1 0 0 1 108 155)" fill="#044289"/>
778
+ <circle r="2" transform="matrix(-1 0 0 1 108 167)" fill="#044289"/>
779
+ <circle r="2" transform="matrix(-1 0 0 1 108 179)" fill="#044289"/>
780
+ <circle r="2" transform="matrix(-1 0 0 1 108 191)" fill="#044289"/>
781
+ <circle r="2" transform="matrix(-1 0 0 1 108 203)" fill="#044289"/>
782
+ <circle r="2" transform="matrix(-1 0 0 1 108 215)" fill="#044289"/>
783
+ <circle r="2" transform="matrix(-1 0 0 1 240 227)" fill="#044289"/>
784
+ <circle r="2" transform="matrix(-1 0 0 1 228 227)" fill="#044289"/>
785
+ <circle r="2" transform="matrix(-1 0 0 1 216 227)" fill="#044289"/>
786
+ <circle r="2" transform="matrix(-1 0 0 1 204 227)" fill="#044289"/>
787
+ <circle r="2" transform="matrix(-1 0 0 1 192 227)" fill="#044289"/>
788
+ <circle r="2" transform="matrix(-1 0 0 1 252 227)" fill="#044289"/>
789
+ <circle r="2" transform="matrix(-1 0 0 1 180 227)" fill="#044289"/>
790
+ <circle r="2" transform="matrix(-1 0 0 1 168 227)" fill="#044289"/>
791
+ <circle r="2" transform="matrix(-1 0 0 1 156 227)" fill="#044289"/>
792
+ <circle r="2" transform="matrix(-1 0 0 1 144 227)" fill="#044289"/>
793
+ <circle r="2" transform="matrix(-1 0 0 1 132 227)" fill="#044289"/>
794
+ <circle r="2" transform="matrix(-1 0 0 1 120 227)" fill="#044289"/>
795
+ <circle r="2" transform="matrix(-1 0 0 1 96 227)" fill="#044289"/>
796
+ <circle r="2" transform="matrix(-1 0 0 1 108 227)" fill="#044289"/>
797
+ <circle r="2" transform="matrix(-1 0 0 1 72 71)" fill="#044289"/>
798
+ <circle r="2" transform="matrix(-1 0 0 1 60 71)" fill="#044289"/>
799
+ <circle r="2" transform="matrix(-1 0 0 1 48 71)" fill="#044289"/>
800
+ <circle r="2" transform="matrix(-1 0 0 1 36 71)" fill="#044289"/>
801
+ <circle r="2" transform="matrix(-1 0 0 1 24 71)" fill="#044289"/>
802
+ <circle r="2" transform="matrix(-1 0 0 1 72 83)" fill="#044289"/>
803
+ <circle r="2" transform="matrix(-1 0 0 1 60 83)" fill="#044289"/>
804
+ <circle r="2" transform="matrix(-1 0 0 1 48 83)" fill="#044289"/>
805
+ <circle r="2" transform="matrix(-1 0 0 1 36 83)" fill="#044289"/>
806
+ <circle r="2" transform="matrix(-1 0 0 1 24 83)" fill="#044289"/>
807
+ <circle r="2" transform="matrix(-1 0 0 1 72 95)" fill="#044289"/>
808
+ <circle r="2" transform="matrix(-1 0 0 1 60 95)" fill="#044289"/>
809
+ <circle r="2" transform="matrix(-1 0 0 1 48 95)" fill="#044289"/>
810
+ <circle r="2" transform="matrix(-1 0 0 1 36 95)" fill="#044289"/>
811
+ <circle r="2" transform="matrix(-1 0 0 1 24 95)" fill="#044289"/>
812
+ <circle r="2" transform="matrix(-1 0 0 1 84 71)" fill="#044289"/>
813
+ <circle r="2" transform="matrix(-1 0 0 1 84 83)" fill="#044289"/>
814
+ <circle r="2" transform="matrix(-1 0 0 1 84 95)" fill="#044289"/>
815
+ <circle r="2" transform="matrix(-1 0 0 1 72 107)" fill="#044289"/>
816
+ <circle r="2" transform="matrix(-1 0 0 1 60 107)" fill="#044289"/>
817
+ <circle r="2" transform="matrix(-1 0 0 1 48 107)" fill="#044289"/>
818
+ <circle r="2" transform="matrix(-1 0 0 1 36 107)" fill="#044289"/>
819
+ <circle r="2" transform="matrix(-1 0 0 1 24 107)" fill="#044289"/>
820
+ <circle r="2" transform="matrix(-1 0 0 1 84 107)" fill="#044289"/>
821
+ <circle r="2" transform="matrix(-1 0 0 1 72 119)" fill="#044289"/>
822
+ <circle r="2" transform="matrix(-1 0 0 1 60 119)" fill="#044289"/>
823
+ <circle r="2" transform="matrix(-1 0 0 1 48 119)" fill="#044289"/>
824
+ <circle r="2" transform="matrix(-1 0 0 1 36 119)" fill="#044289"/>
825
+ <circle r="2" transform="matrix(-1 0 0 1 24 119)" fill="#044289"/>
826
+ <circle r="2" transform="matrix(-1 0 0 1 84 119)" fill="#044289"/>
827
+ <circle r="2" transform="matrix(-1 0 0 1 72 131)" fill="#044289"/>
828
+ <circle r="2" transform="matrix(-1 0 0 1 60 131)" fill="#044289"/>
829
+ <circle r="2" transform="matrix(-1 0 0 1 48 131)" fill="#044289"/>
830
+ <circle r="2" transform="matrix(-1 0 0 1 36 131)" fill="#044289"/>
831
+ <circle r="2" transform="matrix(-1 0 0 1 24 131)" fill="#044289"/>
832
+ <circle r="2" transform="matrix(-1 0 0 1 84 131)" fill="#044289"/>
833
+ <circle r="2" transform="matrix(-1 0 0 1 72 143)" fill="#044289"/>
834
+ <circle r="2" transform="matrix(-1 0 0 1 60 143)" fill="#044289"/>
835
+ <circle r="2" transform="matrix(-1 0 0 1 48 143)" fill="#044289"/>
836
+ <circle r="2" transform="matrix(-1 0 0 1 36 143)" fill="#044289"/>
837
+ <circle r="2" transform="matrix(-1 0 0 1 24 143)" fill="#044289"/>
838
+ <circle r="2" transform="matrix(-1 0 0 1 84 143)" fill="#044289"/>
839
+ <circle r="2" transform="matrix(-1 0 0 1 72 155)" fill="#044289"/>
840
+ <circle r="2" transform="matrix(-1 0 0 1 60 155)" fill="#044289"/>
841
+ <circle r="2" transform="matrix(-1 0 0 1 48 155)" fill="#044289"/>
842
+ <circle r="2" transform="matrix(-1 0 0 1 36 155)" fill="#044289"/>
843
+ <circle r="2" transform="matrix(-1 0 0 1 24 155)" fill="#044289"/>
844
+ <circle r="2" transform="matrix(-1 0 0 1 84 155)" fill="#044289"/>
845
+ <circle r="2" transform="matrix(-1 0 0 1 72 167)" fill="#044289"/>
846
+ <circle r="2" transform="matrix(-1 0 0 1 60 167)" fill="#044289"/>
847
+ <circle r="2" transform="matrix(-1 0 0 1 48 167)" fill="#044289"/>
848
+ <circle r="2" transform="matrix(-1 0 0 1 36 167)" fill="#044289"/>
849
+ <circle r="2" transform="matrix(-1 0 0 1 24 167)" fill="#044289"/>
850
+ <circle r="2" transform="matrix(-1 0 0 1 84 167)" fill="#044289"/>
851
+ <circle r="2" transform="matrix(-1 0 0 1 72 179)" fill="#044289"/>
852
+ <circle r="2" transform="matrix(-1 0 0 1 60 179)" fill="#044289"/>
853
+ <circle r="2" transform="matrix(-1 0 0 1 48 179)" fill="#044289"/>
854
+ <circle r="2" transform="matrix(-1 0 0 1 36 179)" fill="#044289"/>
855
+ <circle r="2" transform="matrix(-1 0 0 1 24 179)" fill="#044289"/>
856
+ <circle r="2" transform="matrix(-1 0 0 1 84 179)" fill="#044289"/>
857
+ <circle r="2" transform="matrix(-1 0 0 1 72 191)" fill="#044289"/>
858
+ <circle r="2" transform="matrix(-1 0 0 1 60 191)" fill="#044289"/>
859
+ <circle r="2" transform="matrix(-1 0 0 1 48 191)" fill="#044289"/>
860
+ <circle r="2" transform="matrix(-1 0 0 1 36 191)" fill="#044289"/>
861
+ <circle r="2" transform="matrix(-1 0 0 1 24 191)" fill="#044289"/>
862
+ <circle r="2" transform="matrix(-1 0 0 1 84 191)" fill="#044289"/>
863
+ <circle r="2" transform="matrix(-1 0 0 1 72 203)" fill="#044289"/>
864
+ <circle r="2" transform="matrix(-1 0 0 1 60 203)" fill="#044289"/>
865
+ <circle r="2" transform="matrix(-1 0 0 1 48 203)" fill="#044289"/>
866
+ <circle r="2" transform="matrix(-1 0 0 1 36 203)" fill="#044289"/>
867
+ <circle r="2" transform="matrix(-1 0 0 1 24 203)" fill="#044289"/>
868
+ <circle r="2" transform="matrix(-1 0 0 1 84 203)" fill="#044289"/>
869
+ <circle r="2" transform="matrix(-1 0 0 1 72 215)" fill="#044289"/>
870
+ <circle r="2" transform="matrix(-1 0 0 1 60 215)" fill="#044289"/>
871
+ <circle r="2" transform="matrix(-1 0 0 1 48 215)" fill="#044289"/>
872
+ <circle r="2" transform="matrix(-1 0 0 1 36 215)" fill="#044289"/>
873
+ <circle r="2" transform="matrix(-1 0 0 1 24 215)" fill="#044289"/>
874
+ <circle r="2" transform="matrix(-1 0 0 1 84 215)" fill="#044289"/>
875
+ <circle r="2" transform="matrix(-1 0 0 1 12 71)" fill="#044289"/>
876
+ <circle r="2" transform="matrix(-1 0 0 1 12 83)" fill="#044289"/>
877
+ <circle r="2" transform="matrix(-1 0 0 1 12 95)" fill="#044289"/>
878
+ <circle r="2" transform="matrix(-1 0 0 1 12 107)" fill="#044289"/>
879
+ <circle r="2" transform="matrix(-1 0 0 1 12 119)" fill="#044289"/>
880
+ <circle r="2" transform="matrix(-1 0 0 1 12 131)" fill="#044289"/>
881
+ <circle r="2" transform="matrix(-1 0 0 1 12 143)" fill="#044289"/>
882
+ <circle r="2" transform="matrix(-1 0 0 1 12 155)" fill="#044289"/>
883
+ <circle r="2" transform="matrix(-1 0 0 1 12 167)" fill="#044289"/>
884
+ <circle r="2" transform="matrix(-1 0 0 1 12 179)" fill="#044289"/>
885
+ <circle r="2" transform="matrix(-1 0 0 1 12 191)" fill="#044289"/>
886
+ <circle r="2" transform="matrix(-1 0 0 1 12 203)" fill="#044289"/>
887
+ <circle r="2" transform="matrix(-1 0 0 1 12 215)" fill="#044289"/>
888
+ <circle r="2" transform="matrix(-1 0 0 1 72 227)" fill="#044289"/>
889
+ <circle r="2" transform="matrix(-1 0 0 1 60 227)" fill="#044289"/>
890
+ <circle r="2" transform="matrix(-1 0 0 1 48 227)" fill="#044289"/>
891
+ <circle r="2" transform="matrix(-1 0 0 1 36 227)" fill="#044289"/>
892
+ <circle r="2" transform="matrix(-1 0 0 1 24 227)" fill="#044289"/>
893
+ <circle r="2" transform="matrix(-1 0 0 1 84 227)" fill="#044289"/>
894
+ <circle r="2" transform="matrix(-1 0 0 1 12 227)" fill="#044289"/>
895
+ </g>
896
+ <rect x="-0.5" y="0.5" width="255" height="255" transform="matrix(-1 0 0 1 285 37)" fill="#1B1F23" stroke="#79B8FF"/>
897
+ </g>
898
+ <path d="M156 255C148 255 148 239 140 239C132 239 132 255 124 255C116 255 116 239 108 239C100 239 100 255 92 255C84 255 84 239 76 239" stroke="#C8E1FF" stroke-linecap="round" stroke-linejoin="round"/>
899
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M596 303.709H588L594 289.676L576 307.718H584L578 321.751L596 303.709Z" fill="#C8E1FF"/>
900
+ <rect x="62" y="175.408" width="24" height="32.0751" fill="#044289"/>
901
+ <rect x="118" y="175.408" width="144" height="32.0751" fill="#044289"/>
902
+ <rect x="298" y="175.408" width="40" height="32.0751" fill="#044289"/>
903
+ <rect x="18" y="77.1784" width="24" height="48.1127" fill="#005CC5"/>
904
+ <rect x="66" y="77.1784" width="116" height="48.1127" fill="#005CC5"/>
905
+ <path d="M212 138.303L207 146.983H197L192 138.303L197 129.622H207L212 138.303Z" stroke="#C8E1FF" stroke-linecap="round" stroke-linejoin="round"/>
906
+ <rect width="16.0188" height="16.0188" transform="matrix(0.706277 0.707935 -0.706277 0.707935 215.314 348)" stroke="#C8E1FF" stroke-linejoin="round"/>
907
+ <g clip-path="url(#clip4)">
908
+ <rect width="276" height="276" transform="matrix(-1 0 0 1 662 139)" fill="#1B1F23"/>
909
+ <g clip-path="url(#clip5)">
910
+ <circle r="2" transform="matrix(-1 0 0 1 616 341)" fill="#044289"/>
911
+ <circle r="2" transform="matrix(-1 0 0 1 604 341)" fill="#044289"/>
912
+ <circle r="2" transform="matrix(-1 0 0 1 592 341)" fill="#044289"/>
913
+ <circle r="2" transform="matrix(-1 0 0 1 580 341)" fill="#044289"/>
914
+ <circle r="2" transform="matrix(-1 0 0 1 568 341)" fill="#044289"/>
915
+ <circle r="2" transform="matrix(-1 0 0 1 616 353)" fill="#044289"/>
916
+ <circle r="2" transform="matrix(-1 0 0 1 604 353)" fill="#044289"/>
917
+ <circle r="2" transform="matrix(-1 0 0 1 592 353)" fill="#044289"/>
918
+ <circle r="2" transform="matrix(-1 0 0 1 580 353)" fill="#044289"/>
919
+ <circle r="2" transform="matrix(-1 0 0 1 568 353)" fill="#044289"/>
920
+ <circle r="2" transform="matrix(-1 0 0 1 616 365)" fill="#044289"/>
921
+ <circle r="2" transform="matrix(-1 0 0 1 604 365)" fill="#044289"/>
922
+ <circle r="2" transform="matrix(-1 0 0 1 592 365)" fill="#044289"/>
923
+ <circle r="2" transform="matrix(-1 0 0 1 580 365)" fill="#044289"/>
924
+ <circle r="2" transform="matrix(-1 0 0 1 568 365)" fill="#044289"/>
925
+ <circle r="2" transform="matrix(-1 0 0 1 628 341)" fill="#044289"/>
926
+ <circle r="2" transform="matrix(-1 0 0 1 628 353)" fill="#044289"/>
927
+ <circle r="2" transform="matrix(-1 0 0 1 628 365)" fill="#044289"/>
928
+ <circle r="2" transform="matrix(-1 0 0 1 616 377)" fill="#044289"/>
929
+ <circle r="2" transform="matrix(-1 0 0 1 604 377)" fill="#044289"/>
930
+ <circle r="2" transform="matrix(-1 0 0 1 592 377)" fill="#044289"/>
931
+ <circle r="2" transform="matrix(-1 0 0 1 580 377)" fill="#044289"/>
932
+ <circle r="2" transform="matrix(-1 0 0 1 568 377)" fill="#044289"/>
933
+ <circle r="2" transform="matrix(-1 0 0 1 628 377)" fill="#044289"/>
934
+ <circle r="2" transform="matrix(-1 0 0 1 616 389)" fill="#044289"/>
935
+ <circle r="2" transform="matrix(-1 0 0 1 604 389)" fill="#044289"/>
936
+ <circle r="2" transform="matrix(-1 0 0 1 592 389)" fill="#044289"/>
937
+ <circle r="2" transform="matrix(-1 0 0 1 580 389)" fill="#044289"/>
938
+ <circle r="2" transform="matrix(-1 0 0 1 568 389)" fill="#044289"/>
939
+ <circle r="2" transform="matrix(-1 0 0 1 628 389)" fill="#044289"/>
940
+ <circle r="2" transform="matrix(-1 0 0 1 616 401)" fill="#044289"/>
941
+ <circle r="2" transform="matrix(-1 0 0 1 604 401)" fill="#044289"/>
942
+ <circle r="2" transform="matrix(-1 0 0 1 592 401)" fill="#044289"/>
943
+ <circle r="2" transform="matrix(-1 0 0 1 580 401)" fill="#044289"/>
944
+ <circle r="2" transform="matrix(-1 0 0 1 568 401)" fill="#044289"/>
945
+ <circle r="2" transform="matrix(-1 0 0 1 628 401)" fill="#044289"/>
946
+ <circle r="2" transform="matrix(-1 0 0 1 616 413)" fill="#044289"/>
947
+ <circle r="2" transform="matrix(-1 0 0 1 604 413)" fill="#044289"/>
948
+ <circle r="2" transform="matrix(-1 0 0 1 592 413)" fill="#044289"/>
949
+ <circle r="2" transform="matrix(-1 0 0 1 580 413)" fill="#044289"/>
950
+ <circle r="2" transform="matrix(-1 0 0 1 568 413)" fill="#044289"/>
951
+ <circle r="2" transform="matrix(-1 0 0 1 628 413)" fill="#044289"/>
952
+ <circle r="2" transform="matrix(-1 0 0 1 556 341)" fill="#044289"/>
953
+ <circle r="2" transform="matrix(-1 0 0 1 556 353)" fill="#044289"/>
954
+ <circle r="2" transform="matrix(-1 0 0 1 556 365)" fill="#044289"/>
955
+ <circle r="2" transform="matrix(-1 0 0 1 556 377)" fill="#044289"/>
956
+ <circle r="2" transform="matrix(-1 0 0 1 556 389)" fill="#044289"/>
957
+ <circle r="2" transform="matrix(-1 0 0 1 556 401)" fill="#044289"/>
958
+ <circle r="2" transform="matrix(-1 0 0 1 556 413)" fill="#044289"/>
959
+ <circle r="2" transform="matrix(-1 0 0 1 544 341)" fill="#044289"/>
960
+ <circle r="2" transform="matrix(-1 0 0 1 544 353)" fill="#044289"/>
961
+ <circle r="2" transform="matrix(-1 0 0 1 544 365)" fill="#044289"/>
962
+ <circle r="2" transform="matrix(-1 0 0 1 544 377)" fill="#044289"/>
963
+ <circle r="2" transform="matrix(-1 0 0 1 544 389)" fill="#044289"/>
964
+ <circle r="2" transform="matrix(-1 0 0 1 544 401)" fill="#044289"/>
965
+ <circle r="2" transform="matrix(-1 0 0 1 544 413)" fill="#044289"/>
966
+ <circle r="2" transform="matrix(-1 0 0 1 532 341)" fill="#044289"/>
967
+ <circle r="2" transform="matrix(-1 0 0 1 532 353)" fill="#044289"/>
968
+ <circle r="2" transform="matrix(-1 0 0 1 532 365)" fill="#044289"/>
969
+ <circle r="2" transform="matrix(-1 0 0 1 532 377)" fill="#044289"/>
970
+ <circle r="2" transform="matrix(-1 0 0 1 532 389)" fill="#044289"/>
971
+ <circle r="2" transform="matrix(-1 0 0 1 532 401)" fill="#044289"/>
972
+ <circle r="2" transform="matrix(-1 0 0 1 532 413)" fill="#044289"/>
973
+ <circle r="2" transform="matrix(-1 0 0 1 520 341)" fill="#044289"/>
974
+ <circle r="2" transform="matrix(-1 0 0 1 520 353)" fill="#044289"/>
975
+ <circle r="2" transform="matrix(-1 0 0 1 520 365)" fill="#044289"/>
976
+ <circle r="2" transform="matrix(-1 0 0 1 520 377)" fill="#044289"/>
977
+ <circle r="2" transform="matrix(-1 0 0 1 520 389)" fill="#044289"/>
978
+ <circle r="2" transform="matrix(-1 0 0 1 520 401)" fill="#044289"/>
979
+ <circle r="2" transform="matrix(-1 0 0 1 520 413)" fill="#044289"/>
980
+ <circle r="2" transform="matrix(-1 0 0 1 508 341)" fill="#044289"/>
981
+ <circle r="2" transform="matrix(-1 0 0 1 508 353)" fill="#044289"/>
982
+ <circle r="2" transform="matrix(-1 0 0 1 508 365)" fill="#044289"/>
983
+ <circle r="2" transform="matrix(-1 0 0 1 508 377)" fill="#044289"/>
984
+ <circle r="2" transform="matrix(-1 0 0 1 508 389)" fill="#044289"/>
985
+ <circle r="2" transform="matrix(-1 0 0 1 508 401)" fill="#044289"/>
986
+ <circle r="2" transform="matrix(-1 0 0 1 508 413)" fill="#044289"/>
987
+ <circle r="2" transform="matrix(-1 0 0 1 496 341)" fill="#044289"/>
988
+ <circle r="2" transform="matrix(-1 0 0 1 496 353)" fill="#044289"/>
989
+ <circle r="2" transform="matrix(-1 0 0 1 496 365)" fill="#044289"/>
990
+ <circle r="2" transform="matrix(-1 0 0 1 496 377)" fill="#044289"/>
991
+ <circle r="2" transform="matrix(-1 0 0 1 496 389)" fill="#044289"/>
992
+ <circle r="2" transform="matrix(-1 0 0 1 496 401)" fill="#044289"/>
993
+ <circle r="2" transform="matrix(-1 0 0 1 496 413)" fill="#044289"/>
994
+ <circle r="2" transform="matrix(-1 0 0 1 484 341)" fill="#044289"/>
995
+ <circle r="2" transform="matrix(-1 0 0 1 472 341)" fill="#044289"/>
996
+ <circle r="2" transform="matrix(-1 0 0 1 472 353)" fill="#044289"/>
997
+ <circle r="2" transform="matrix(-1 0 0 1 472 365)" fill="#044289"/>
998
+ <circle r="2" transform="matrix(-1 0 0 1 472 377)" fill="#044289"/>
999
+ <circle r="2" transform="matrix(-1 0 0 1 472 389)" fill="#044289"/>
1000
+ <circle r="2" transform="matrix(-1 0 0 1 472 401)" fill="#044289"/>
1001
+ <circle r="2" transform="matrix(-1 0 0 1 472 413)" fill="#044289"/>
1002
+ <circle r="2" transform="matrix(-1 0 0 1 484 353)" fill="#044289"/>
1003
+ <circle r="2" transform="matrix(-1 0 0 1 484 365)" fill="#044289"/>
1004
+ <circle r="2" transform="matrix(-1 0 0 1 484 377)" fill="#044289"/>
1005
+ <circle r="2" transform="matrix(-1 0 0 1 484 389)" fill="#044289"/>
1006
+ <circle r="2" transform="matrix(-1 0 0 1 484 401)" fill="#044289"/>
1007
+ <circle r="2" transform="matrix(-1 0 0 1 484 413)" fill="#044289"/>
1008
+ <circle r="2" transform="matrix(-1 0 0 1 448 341)" fill="#044289"/>
1009
+ <circle r="2" transform="matrix(-1 0 0 1 436 341)" fill="#044289"/>
1010
+ <circle r="2" transform="matrix(-1 0 0 1 424 341)" fill="#044289"/>
1011
+ <circle r="2" transform="matrix(-1 0 0 1 412 341)" fill="#044289"/>
1012
+ <circle r="2" transform="matrix(-1 0 0 1 400 341)" fill="#044289"/>
1013
+ <circle r="2" transform="matrix(-1 0 0 1 448 353)" fill="#044289"/>
1014
+ <circle r="2" transform="matrix(-1 0 0 1 436 353)" fill="#044289"/>
1015
+ <circle r="2" transform="matrix(-1 0 0 1 424 353)" fill="#044289"/>
1016
+ <circle r="2" transform="matrix(-1 0 0 1 412 353)" fill="#044289"/>
1017
+ <circle r="2" transform="matrix(-1 0 0 1 400 353)" fill="#044289"/>
1018
+ <circle r="2" transform="matrix(-1 0 0 1 448 365)" fill="#044289"/>
1019
+ <circle r="2" transform="matrix(-1 0 0 1 436 365)" fill="#044289"/>
1020
+ <circle r="2" transform="matrix(-1 0 0 1 424 365)" fill="#044289"/>
1021
+ <circle r="2" transform="matrix(-1 0 0 1 412 365)" fill="#044289"/>
1022
+ <circle r="2" transform="matrix(-1 0 0 1 400 365)" fill="#044289"/>
1023
+ <circle r="2" transform="matrix(-1 0 0 1 460 341)" fill="#044289"/>
1024
+ <circle r="2" transform="matrix(-1 0 0 1 460 353)" fill="#044289"/>
1025
+ <circle r="2" transform="matrix(-1 0 0 1 460 365)" fill="#044289"/>
1026
+ <circle r="2" transform="matrix(-1 0 0 1 448 377)" fill="#044289"/>
1027
+ <circle r="2" transform="matrix(-1 0 0 1 436 377)" fill="#044289"/>
1028
+ <circle r="2" transform="matrix(-1 0 0 1 424 377)" fill="#044289"/>
1029
+ <circle r="2" transform="matrix(-1 0 0 1 412 377)" fill="#044289"/>
1030
+ <circle r="2" transform="matrix(-1 0 0 1 400 377)" fill="#044289"/>
1031
+ <circle r="2" transform="matrix(-1 0 0 1 460 377)" fill="#044289"/>
1032
+ <circle r="2" transform="matrix(-1 0 0 1 448 389)" fill="#044289"/>
1033
+ <circle r="2" transform="matrix(-1 0 0 1 436 389)" fill="#044289"/>
1034
+ <circle r="2" transform="matrix(-1 0 0 1 424 389)" fill="#044289"/>
1035
+ <circle r="2" transform="matrix(-1 0 0 1 412 389)" fill="#044289"/>
1036
+ <circle r="2" transform="matrix(-1 0 0 1 400 389)" fill="#044289"/>
1037
+ <circle r="2" transform="matrix(-1 0 0 1 460 389)" fill="#044289"/>
1038
+ <circle r="2" transform="matrix(-1 0 0 1 448 401)" fill="#044289"/>
1039
+ <circle r="2" transform="matrix(-1 0 0 1 436 401)" fill="#044289"/>
1040
+ <circle r="2" transform="matrix(-1 0 0 1 424 401)" fill="#044289"/>
1041
+ <circle r="2" transform="matrix(-1 0 0 1 412 401)" fill="#044289"/>
1042
+ <circle r="2" transform="matrix(-1 0 0 1 400 401)" fill="#044289"/>
1043
+ <circle r="2" transform="matrix(-1 0 0 1 460 401)" fill="#044289"/>
1044
+ <circle r="2" transform="matrix(-1 0 0 1 448 413)" fill="#044289"/>
1045
+ <circle r="2" transform="matrix(-1 0 0 1 436 413)" fill="#044289"/>
1046
+ <circle r="2" transform="matrix(-1 0 0 1 424 413)" fill="#044289"/>
1047
+ <circle r="2" transform="matrix(-1 0 0 1 412 413)" fill="#044289"/>
1048
+ <circle r="2" transform="matrix(-1 0 0 1 400 413)" fill="#044289"/>
1049
+ <circle r="2" transform="matrix(-1 0 0 1 460 413)" fill="#044289"/>
1050
+ <circle r="2" transform="matrix(-1 0 0 1 388 341)" fill="#044289"/>
1051
+ <circle r="2" transform="matrix(-1 0 0 1 388 353)" fill="#044289"/>
1052
+ <circle r="2" transform="matrix(-1 0 0 1 388 365)" fill="#044289"/>
1053
+ <circle r="2" transform="matrix(-1 0 0 1 388 377)" fill="#044289"/>
1054
+ <circle r="2" transform="matrix(-1 0 0 1 388 389)" fill="#044289"/>
1055
+ <circle r="2" transform="matrix(-1 0 0 1 388 401)" fill="#044289"/>
1056
+ <circle r="2" transform="matrix(-1 0 0 1 388 413)" fill="#044289"/>
1057
+ <circle r="2" transform="matrix(-1 0 0 1 616 173)" fill="#044289"/>
1058
+ <circle r="2" transform="matrix(-1 0 0 1 604 173)" fill="#044289"/>
1059
+ <circle r="2" transform="matrix(-1 0 0 1 592 173)" fill="#044289"/>
1060
+ <circle r="2" transform="matrix(-1 0 0 1 580 173)" fill="#044289"/>
1061
+ <circle r="2" transform="matrix(-1 0 0 1 568 173)" fill="#044289"/>
1062
+ <circle r="2" transform="matrix(-1 0 0 1 616 185)" fill="#044289"/>
1063
+ <circle r="2" transform="matrix(-1 0 0 1 604 185)" fill="#044289"/>
1064
+ <circle r="2" transform="matrix(-1 0 0 1 592 185)" fill="#044289"/>
1065
+ <circle r="2" transform="matrix(-1 0 0 1 580 185)" fill="#044289"/>
1066
+ <circle r="2" transform="matrix(-1 0 0 1 568 185)" fill="#044289"/>
1067
+ <circle r="2" transform="matrix(-1 0 0 1 616 197)" fill="#044289"/>
1068
+ <circle r="2" transform="matrix(-1 0 0 1 604 197)" fill="#044289"/>
1069
+ <circle r="2" transform="matrix(-1 0 0 1 592 197)" fill="#044289"/>
1070
+ <circle r="2" transform="matrix(-1 0 0 1 580 197)" fill="#044289"/>
1071
+ <circle r="2" transform="matrix(-1 0 0 1 568 197)" fill="#044289"/>
1072
+ <circle r="2" transform="matrix(-1 0 0 1 628 173)" fill="#044289"/>
1073
+ <circle r="2" transform="matrix(-1 0 0 1 628 185)" fill="#044289"/>
1074
+ <circle r="2" transform="matrix(-1 0 0 1 628 197)" fill="#044289"/>
1075
+ <circle r="2" transform="matrix(-1 0 0 1 616 209)" fill="#044289"/>
1076
+ <circle r="2" transform="matrix(-1 0 0 1 604 209)" fill="#044289"/>
1077
+ <circle r="2" transform="matrix(-1 0 0 1 592 209)" fill="#044289"/>
1078
+ <circle r="2" transform="matrix(-1 0 0 1 580 209)" fill="#044289"/>
1079
+ <circle r="2" transform="matrix(-1 0 0 1 568 209)" fill="#044289"/>
1080
+ <circle r="2" transform="matrix(-1 0 0 1 628 209)" fill="#044289"/>
1081
+ <circle r="2" transform="matrix(-1 0 0 1 616 221)" fill="#044289"/>
1082
+ <circle r="2" transform="matrix(-1 0 0 1 604 221)" fill="#044289"/>
1083
+ <circle r="2" transform="matrix(-1 0 0 1 592 221)" fill="#044289"/>
1084
+ <circle r="2" transform="matrix(-1 0 0 1 580 221)" fill="#044289"/>
1085
+ <circle r="2" transform="matrix(-1 0 0 1 568 221)" fill="#044289"/>
1086
+ <circle r="2" transform="matrix(-1 0 0 1 628 221)" fill="#044289"/>
1087
+ <circle r="2" transform="matrix(-1 0 0 1 616 233)" fill="#044289"/>
1088
+ <circle r="2" transform="matrix(-1 0 0 1 604 233)" fill="#044289"/>
1089
+ <circle r="2" transform="matrix(-1 0 0 1 592 233)" fill="#044289"/>
1090
+ <circle r="2" transform="matrix(-1 0 0 1 580 233)" fill="#044289"/>
1091
+ <circle r="2" transform="matrix(-1 0 0 1 568 233)" fill="#044289"/>
1092
+ <circle r="2" transform="matrix(-1 0 0 1 628 233)" fill="#044289"/>
1093
+ <circle r="2" transform="matrix(-1 0 0 1 616 245)" fill="#044289"/>
1094
+ <circle r="2" transform="matrix(-1 0 0 1 604 245)" fill="#044289"/>
1095
+ <circle r="2" transform="matrix(-1 0 0 1 592 245)" fill="#044289"/>
1096
+ <circle r="2" transform="matrix(-1 0 0 1 580 245)" fill="#044289"/>
1097
+ <circle r="2" transform="matrix(-1 0 0 1 568 245)" fill="#044289"/>
1098
+ <circle r="2" transform="matrix(-1 0 0 1 628 245)" fill="#044289"/>
1099
+ <circle r="2" transform="matrix(-1 0 0 1 616 257)" fill="#044289"/>
1100
+ <circle r="2" transform="matrix(-1 0 0 1 604 257)" fill="#044289"/>
1101
+ <circle r="2" transform="matrix(-1 0 0 1 592 257)" fill="#044289"/>
1102
+ <circle r="2" transform="matrix(-1 0 0 1 580 257)" fill="#044289"/>
1103
+ <circle r="2" transform="matrix(-1 0 0 1 568 257)" fill="#044289"/>
1104
+ <circle r="2" transform="matrix(-1 0 0 1 628 257)" fill="#044289"/>
1105
+ <circle r="2" transform="matrix(-1 0 0 1 616 269)" fill="#044289"/>
1106
+ <circle r="2" transform="matrix(-1 0 0 1 604 269)" fill="#044289"/>
1107
+ <circle r="2" transform="matrix(-1 0 0 1 592 269)" fill="#044289"/>
1108
+ <circle r="2" transform="matrix(-1 0 0 1 580 269)" fill="#044289"/>
1109
+ <circle r="2" transform="matrix(-1 0 0 1 568 269)" fill="#044289"/>
1110
+ <circle r="2" transform="matrix(-1 0 0 1 628 269)" fill="#044289"/>
1111
+ <circle r="2" transform="matrix(-1 0 0 1 616 281)" fill="#044289"/>
1112
+ <circle r="2" transform="matrix(-1 0 0 1 604 281)" fill="#044289"/>
1113
+ <circle r="2" transform="matrix(-1 0 0 1 592 281)" fill="#044289"/>
1114
+ <circle r="2" transform="matrix(-1 0 0 1 580 281)" fill="#044289"/>
1115
+ <circle r="2" transform="matrix(-1 0 0 1 568 281)" fill="#044289"/>
1116
+ <circle r="2" transform="matrix(-1 0 0 1 628 281)" fill="#044289"/>
1117
+ <circle r="2" transform="matrix(-1 0 0 1 616 293)" fill="#044289"/>
1118
+ <circle r="2" transform="matrix(-1 0 0 1 604 293)" fill="#044289"/>
1119
+ <circle r="2" transform="matrix(-1 0 0 1 592 293)" fill="#044289"/>
1120
+ <circle r="2" transform="matrix(-1 0 0 1 580 293)" fill="#044289"/>
1121
+ <circle r="2" transform="matrix(-1 0 0 1 568 293)" fill="#044289"/>
1122
+ <circle r="2" transform="matrix(-1 0 0 1 628 293)" fill="#044289"/>
1123
+ <circle r="2" transform="matrix(-1 0 0 1 616 305)" fill="#044289"/>
1124
+ <circle r="2" transform="matrix(-1 0 0 1 604 305)" fill="#044289"/>
1125
+ <circle r="2" transform="matrix(-1 0 0 1 592 305)" fill="#044289"/>
1126
+ <circle r="2" transform="matrix(-1 0 0 1 580 305)" fill="#044289"/>
1127
+ <circle r="2" transform="matrix(-1 0 0 1 568 305)" fill="#044289"/>
1128
+ <circle r="2" transform="matrix(-1 0 0 1 628 305)" fill="#044289"/>
1129
+ <circle r="2" transform="matrix(-1 0 0 1 616 317)" fill="#044289"/>
1130
+ <circle r="2" transform="matrix(-1 0 0 1 604 317)" fill="#044289"/>
1131
+ <circle r="2" transform="matrix(-1 0 0 1 592 317)" fill="#044289"/>
1132
+ <circle r="2" transform="matrix(-1 0 0 1 580 317)" fill="#044289"/>
1133
+ <circle r="2" transform="matrix(-1 0 0 1 568 317)" fill="#044289"/>
1134
+ <circle r="2" transform="matrix(-1 0 0 1 628 317)" fill="#044289"/>
1135
+ <circle r="2" transform="matrix(-1 0 0 1 556 173)" fill="#044289"/>
1136
+ <circle r="2" transform="matrix(-1 0 0 1 556 185)" fill="#044289"/>
1137
+ <circle r="2" transform="matrix(-1 0 0 1 556 197)" fill="#044289"/>
1138
+ <circle r="2" transform="matrix(-1 0 0 1 556 209)" fill="#044289"/>
1139
+ <circle r="2" transform="matrix(-1 0 0 1 556 221)" fill="#044289"/>
1140
+ <circle r="2" transform="matrix(-1 0 0 1 556 233)" fill="#044289"/>
1141
+ <circle r="2" transform="matrix(-1 0 0 1 556 245)" fill="#044289"/>
1142
+ <circle r="2" transform="matrix(-1 0 0 1 556 257)" fill="#044289"/>
1143
+ <circle r="2" transform="matrix(-1 0 0 1 556 269)" fill="#044289"/>
1144
+ <circle r="2" transform="matrix(-1 0 0 1 556 281)" fill="#044289"/>
1145
+ <circle r="2" transform="matrix(-1 0 0 1 556 293)" fill="#044289"/>
1146
+ <circle r="2" transform="matrix(-1 0 0 1 556 305)" fill="#044289"/>
1147
+ <circle r="2" transform="matrix(-1 0 0 1 556 317)" fill="#044289"/>
1148
+ <circle r="2" transform="matrix(-1 0 0 1 544 173)" fill="#044289"/>
1149
+ <circle r="2" transform="matrix(-1 0 0 1 544 185)" fill="#044289"/>
1150
+ <circle r="2" transform="matrix(-1 0 0 1 544 197)" fill="#044289"/>
1151
+ <circle r="2" transform="matrix(-1 0 0 1 544 209)" fill="#044289"/>
1152
+ <circle r="2" transform="matrix(-1 0 0 1 544 221)" fill="#044289"/>
1153
+ <circle r="2" transform="matrix(-1 0 0 1 544 233)" fill="#044289"/>
1154
+ <circle r="2" transform="matrix(-1 0 0 1 544 245)" fill="#044289"/>
1155
+ <circle r="2" transform="matrix(-1 0 0 1 544 257)" fill="#044289"/>
1156
+ <circle r="2" transform="matrix(-1 0 0 1 544 269)" fill="#044289"/>
1157
+ <circle r="2" transform="matrix(-1 0 0 1 544 281)" fill="#044289"/>
1158
+ <circle r="2" transform="matrix(-1 0 0 1 544 293)" fill="#044289"/>
1159
+ <circle r="2" transform="matrix(-1 0 0 1 544 305)" fill="#044289"/>
1160
+ <circle r="2" transform="matrix(-1 0 0 1 544 317)" fill="#044289"/>
1161
+ <circle r="2" transform="matrix(-1 0 0 1 532 173)" fill="#044289"/>
1162
+ <circle r="2" transform="matrix(-1 0 0 1 532 185)" fill="#044289"/>
1163
+ <circle r="2" transform="matrix(-1 0 0 1 532 197)" fill="#044289"/>
1164
+ <circle r="2" transform="matrix(-1 0 0 1 532 209)" fill="#044289"/>
1165
+ <circle r="2" transform="matrix(-1 0 0 1 532 221)" fill="#044289"/>
1166
+ <circle r="2" transform="matrix(-1 0 0 1 532 233)" fill="#044289"/>
1167
+ <circle r="2" transform="matrix(-1 0 0 1 532 245)" fill="#044289"/>
1168
+ <circle r="2" transform="matrix(-1 0 0 1 532 257)" fill="#044289"/>
1169
+ <circle r="2" transform="matrix(-1 0 0 1 532 269)" fill="#044289"/>
1170
+ <circle r="2" transform="matrix(-1 0 0 1 532 281)" fill="#044289"/>
1171
+ <circle r="2" transform="matrix(-1 0 0 1 532 293)" fill="#044289"/>
1172
+ <circle r="2" transform="matrix(-1 0 0 1 532 305)" fill="#044289"/>
1173
+ <circle r="2" transform="matrix(-1 0 0 1 532 317)" fill="#044289"/>
1174
+ <circle r="2" transform="matrix(-1 0 0 1 520 173)" fill="#044289"/>
1175
+ <circle r="2" transform="matrix(-1 0 0 1 520 185)" fill="#044289"/>
1176
+ <circle r="2" transform="matrix(-1 0 0 1 520 197)" fill="#044289"/>
1177
+ <circle r="2" transform="matrix(-1 0 0 1 520 209)" fill="#044289"/>
1178
+ <circle r="2" transform="matrix(-1 0 0 1 520 221)" fill="#044289"/>
1179
+ <circle r="2" transform="matrix(-1 0 0 1 520 233)" fill="#044289"/>
1180
+ <circle r="2" transform="matrix(-1 0 0 1 520 245)" fill="#044289"/>
1181
+ <circle r="2" transform="matrix(-1 0 0 1 520 257)" fill="#044289"/>
1182
+ <circle r="2" transform="matrix(-1 0 0 1 520 269)" fill="#044289"/>
1183
+ <circle r="2" transform="matrix(-1 0 0 1 520 281)" fill="#044289"/>
1184
+ <circle r="2" transform="matrix(-1 0 0 1 520 293)" fill="#044289"/>
1185
+ <circle r="2" transform="matrix(-1 0 0 1 520 305)" fill="#044289"/>
1186
+ <circle r="2" transform="matrix(-1 0 0 1 520 317)" fill="#044289"/>
1187
+ <circle r="2" transform="matrix(-1 0 0 1 508 173)" fill="#044289"/>
1188
+ <circle r="2" transform="matrix(-1 0 0 1 508 185)" fill="#044289"/>
1189
+ <circle r="2" transform="matrix(-1 0 0 1 508 197)" fill="#044289"/>
1190
+ <circle r="2" transform="matrix(-1 0 0 1 508 209)" fill="#044289"/>
1191
+ <circle r="2" transform="matrix(-1 0 0 1 508 221)" fill="#044289"/>
1192
+ <circle r="2" transform="matrix(-1 0 0 1 508 233)" fill="#044289"/>
1193
+ <circle r="2" transform="matrix(-1 0 0 1 508 245)" fill="#044289"/>
1194
+ <circle r="2" transform="matrix(-1 0 0 1 508 257)" fill="#044289"/>
1195
+ <circle r="2" transform="matrix(-1 0 0 1 508 269)" fill="#044289"/>
1196
+ <circle r="2" transform="matrix(-1 0 0 1 508 281)" fill="#044289"/>
1197
+ <circle r="2" transform="matrix(-1 0 0 1 508 293)" fill="#044289"/>
1198
+ <circle r="2" transform="matrix(-1 0 0 1 508 305)" fill="#044289"/>
1199
+ <circle r="2" transform="matrix(-1 0 0 1 508 317)" fill="#044289"/>
1200
+ <circle r="2" transform="matrix(-1 0 0 1 496 173)" fill="#044289"/>
1201
+ <circle r="2" transform="matrix(-1 0 0 1 496 185)" fill="#044289"/>
1202
+ <circle r="2" transform="matrix(-1 0 0 1 496 197)" fill="#044289"/>
1203
+ <circle r="2" transform="matrix(-1 0 0 1 496 209)" fill="#044289"/>
1204
+ <circle r="2" transform="matrix(-1 0 0 1 496 221)" fill="#044289"/>
1205
+ <circle r="2" transform="matrix(-1 0 0 1 496 233)" fill="#044289"/>
1206
+ <circle r="2" transform="matrix(-1 0 0 1 496 245)" fill="#044289"/>
1207
+ <circle r="2" transform="matrix(-1 0 0 1 496 257)" fill="#044289"/>
1208
+ <circle r="2" transform="matrix(-1 0 0 1 496 269)" fill="#044289"/>
1209
+ <circle r="2" transform="matrix(-1 0 0 1 496 281)" fill="#044289"/>
1210
+ <circle r="2" transform="matrix(-1 0 0 1 496 293)" fill="#044289"/>
1211
+ <circle r="2" transform="matrix(-1 0 0 1 496 305)" fill="#044289"/>
1212
+ <circle r="2" transform="matrix(-1 0 0 1 496 317)" fill="#044289"/>
1213
+ <circle r="2" transform="matrix(-1 0 0 1 484 173)" fill="#044289"/>
1214
+ <circle r="2" transform="matrix(-1 0 0 1 472 173)" fill="#044289"/>
1215
+ <circle r="2" transform="matrix(-1 0 0 1 472 185)" fill="#044289"/>
1216
+ <circle r="2" transform="matrix(-1 0 0 1 472 197)" fill="#044289"/>
1217
+ <circle r="2" transform="matrix(-1 0 0 1 472 209)" fill="#044289"/>
1218
+ <circle r="2" transform="matrix(-1 0 0 1 472 221)" fill="#044289"/>
1219
+ <circle r="2" transform="matrix(-1 0 0 1 472 233)" fill="#044289"/>
1220
+ <circle r="2" transform="matrix(-1 0 0 1 472 245)" fill="#044289"/>
1221
+ <circle r="2" transform="matrix(-1 0 0 1 472 257)" fill="#044289"/>
1222
+ <circle r="2" transform="matrix(-1 0 0 1 472 269)" fill="#044289"/>
1223
+ <circle r="2" transform="matrix(-1 0 0 1 472 281)" fill="#044289"/>
1224
+ <circle r="2" transform="matrix(-1 0 0 1 472 293)" fill="#044289"/>
1225
+ <circle r="2" transform="matrix(-1 0 0 1 472 305)" fill="#044289"/>
1226
+ <circle r="2" transform="matrix(-1 0 0 1 472 317)" fill="#044289"/>
1227
+ <circle r="2" transform="matrix(-1 0 0 1 484 185)" fill="#044289"/>
1228
+ <circle r="2" transform="matrix(-1 0 0 1 484 197)" fill="#044289"/>
1229
+ <circle r="2" transform="matrix(-1 0 0 1 484 209)" fill="#044289"/>
1230
+ <circle r="2" transform="matrix(-1 0 0 1 484 221)" fill="#044289"/>
1231
+ <circle r="2" transform="matrix(-1 0 0 1 484 233)" fill="#044289"/>
1232
+ <circle r="2" transform="matrix(-1 0 0 1 484 245)" fill="#044289"/>
1233
+ <circle r="2" transform="matrix(-1 0 0 1 484 257)" fill="#044289"/>
1234
+ <circle r="2" transform="matrix(-1 0 0 1 484 269)" fill="#044289"/>
1235
+ <circle r="2" transform="matrix(-1 0 0 1 484 281)" fill="#044289"/>
1236
+ <circle r="2" transform="matrix(-1 0 0 1 484 293)" fill="#044289"/>
1237
+ <circle r="2" transform="matrix(-1 0 0 1 484 305)" fill="#044289"/>
1238
+ <circle r="2" transform="matrix(-1 0 0 1 484 317)" fill="#044289"/>
1239
+ <circle r="2" transform="matrix(-1 0 0 1 616 329)" fill="#044289"/>
1240
+ <circle r="2" transform="matrix(-1 0 0 1 604 329)" fill="#044289"/>
1241
+ <circle r="2" transform="matrix(-1 0 0 1 592 329)" fill="#044289"/>
1242
+ <circle r="2" transform="matrix(-1 0 0 1 580 329)" fill="#044289"/>
1243
+ <circle r="2" transform="matrix(-1 0 0 1 568 329)" fill="#044289"/>
1244
+ <circle r="2" transform="matrix(-1 0 0 1 628 329)" fill="#044289"/>
1245
+ <circle r="2" transform="matrix(-1 0 0 1 556 329)" fill="#044289"/>
1246
+ <circle r="2" transform="matrix(-1 0 0 1 544 329)" fill="#044289"/>
1247
+ <circle r="2" transform="matrix(-1 0 0 1 532 329)" fill="#044289"/>
1248
+ <circle r="2" transform="matrix(-1 0 0 1 520 329)" fill="#044289"/>
1249
+ <circle r="2" transform="matrix(-1 0 0 1 508 329)" fill="#044289"/>
1250
+ <circle r="2" transform="matrix(-1 0 0 1 496 329)" fill="#044289"/>
1251
+ <circle r="2" transform="matrix(-1 0 0 1 472 329)" fill="#044289"/>
1252
+ <circle r="2" transform="matrix(-1 0 0 1 484 329)" fill="#044289"/>
1253
+ <circle r="2" transform="matrix(-1 0 0 1 448 173)" fill="#044289"/>
1254
+ <circle r="2" transform="matrix(-1 0 0 1 436 173)" fill="#044289"/>
1255
+ <circle r="2" transform="matrix(-1 0 0 1 424 173)" fill="#044289"/>
1256
+ <circle r="2" transform="matrix(-1 0 0 1 412 173)" fill="#044289"/>
1257
+ <circle r="2" transform="matrix(-1 0 0 1 400 173)" fill="#044289"/>
1258
+ <circle r="2" transform="matrix(-1 0 0 1 448 185)" fill="#044289"/>
1259
+ <circle r="2" transform="matrix(-1 0 0 1 436 185)" fill="#044289"/>
1260
+ <circle r="2" transform="matrix(-1 0 0 1 424 185)" fill="#044289"/>
1261
+ <circle r="2" transform="matrix(-1 0 0 1 412 185)" fill="#044289"/>
1262
+ <circle r="2" transform="matrix(-1 0 0 1 400 185)" fill="#044289"/>
1263
+ <circle r="2" transform="matrix(-1 0 0 1 448 197)" fill="#044289"/>
1264
+ <circle r="2" transform="matrix(-1 0 0 1 436 197)" fill="#044289"/>
1265
+ <circle r="2" transform="matrix(-1 0 0 1 424 197)" fill="#044289"/>
1266
+ <circle r="2" transform="matrix(-1 0 0 1 412 197)" fill="#044289"/>
1267
+ <circle r="2" transform="matrix(-1 0 0 1 400 197)" fill="#044289"/>
1268
+ <circle r="2" transform="matrix(-1 0 0 1 460 173)" fill="#044289"/>
1269
+ <circle r="2" transform="matrix(-1 0 0 1 460 185)" fill="#044289"/>
1270
+ <circle r="2" transform="matrix(-1 0 0 1 460 197)" fill="#044289"/>
1271
+ <circle r="2" transform="matrix(-1 0 0 1 448 209)" fill="#044289"/>
1272
+ <circle r="2" transform="matrix(-1 0 0 1 436 209)" fill="#044289"/>
1273
+ <circle r="2" transform="matrix(-1 0 0 1 424 209)" fill="#044289"/>
1274
+ <circle r="2" transform="matrix(-1 0 0 1 412 209)" fill="#044289"/>
1275
+ <circle r="2" transform="matrix(-1 0 0 1 400 209)" fill="#044289"/>
1276
+ <circle r="2" transform="matrix(-1 0 0 1 460 209)" fill="#044289"/>
1277
+ <circle r="2" transform="matrix(-1 0 0 1 448 221)" fill="#044289"/>
1278
+ <circle r="2" transform="matrix(-1 0 0 1 436 221)" fill="#044289"/>
1279
+ <circle r="2" transform="matrix(-1 0 0 1 424 221)" fill="#044289"/>
1280
+ <circle r="2" transform="matrix(-1 0 0 1 412 221)" fill="#044289"/>
1281
+ <circle r="2" transform="matrix(-1 0 0 1 400 221)" fill="#044289"/>
1282
+ <circle r="2" transform="matrix(-1 0 0 1 460 221)" fill="#044289"/>
1283
+ <circle r="2" transform="matrix(-1 0 0 1 448 233)" fill="#044289"/>
1284
+ <circle r="2" transform="matrix(-1 0 0 1 436 233)" fill="#044289"/>
1285
+ <circle r="2" transform="matrix(-1 0 0 1 424 233)" fill="#044289"/>
1286
+ <circle r="2" transform="matrix(-1 0 0 1 412 233)" fill="#044289"/>
1287
+ <circle r="2" transform="matrix(-1 0 0 1 400 233)" fill="#044289"/>
1288
+ <circle r="2" transform="matrix(-1 0 0 1 460 233)" fill="#044289"/>
1289
+ <circle r="2" transform="matrix(-1 0 0 1 448 245)" fill="#044289"/>
1290
+ <circle r="2" transform="matrix(-1 0 0 1 436 245)" fill="#044289"/>
1291
+ <circle r="2" transform="matrix(-1 0 0 1 424 245)" fill="#044289"/>
1292
+ <circle r="2" transform="matrix(-1 0 0 1 412 245)" fill="#044289"/>
1293
+ <circle r="2" transform="matrix(-1 0 0 1 400 245)" fill="#044289"/>
1294
+ <circle r="2" transform="matrix(-1 0 0 1 460 245)" fill="#044289"/>
1295
+ <circle r="2" transform="matrix(-1 0 0 1 448 257)" fill="#044289"/>
1296
+ <circle r="2" transform="matrix(-1 0 0 1 436 257)" fill="#044289"/>
1297
+ <circle r="2" transform="matrix(-1 0 0 1 424 257)" fill="#044289"/>
1298
+ <circle r="2" transform="matrix(-1 0 0 1 412 257)" fill="#044289"/>
1299
+ <circle r="2" transform="matrix(-1 0 0 1 400 257)" fill="#044289"/>
1300
+ <circle r="2" transform="matrix(-1 0 0 1 460 257)" fill="#044289"/>
1301
+ <circle r="2" transform="matrix(-1 0 0 1 448 269)" fill="#044289"/>
1302
+ <circle r="2" transform="matrix(-1 0 0 1 436 269)" fill="#044289"/>
1303
+ <circle r="2" transform="matrix(-1 0 0 1 424 269)" fill="#044289"/>
1304
+ <circle r="2" transform="matrix(-1 0 0 1 412 269)" fill="#044289"/>
1305
+ <circle r="2" transform="matrix(-1 0 0 1 400 269)" fill="#044289"/>
1306
+ <circle r="2" transform="matrix(-1 0 0 1 460 269)" fill="#044289"/>
1307
+ <circle r="2" transform="matrix(-1 0 0 1 448 281)" fill="#044289"/>
1308
+ <circle r="2" transform="matrix(-1 0 0 1 436 281)" fill="#044289"/>
1309
+ <circle r="2" transform="matrix(-1 0 0 1 424 281)" fill="#044289"/>
1310
+ <circle r="2" transform="matrix(-1 0 0 1 412 281)" fill="#044289"/>
1311
+ <circle r="2" transform="matrix(-1 0 0 1 400 281)" fill="#044289"/>
1312
+ <circle r="2" transform="matrix(-1 0 0 1 460 281)" fill="#044289"/>
1313
+ <circle r="2" transform="matrix(-1 0 0 1 448 293)" fill="#044289"/>
1314
+ <circle r="2" transform="matrix(-1 0 0 1 436 293)" fill="#044289"/>
1315
+ <circle r="2" transform="matrix(-1 0 0 1 424 293)" fill="#044289"/>
1316
+ <circle r="2" transform="matrix(-1 0 0 1 412 293)" fill="#044289"/>
1317
+ <circle r="2" transform="matrix(-1 0 0 1 400 293)" fill="#044289"/>
1318
+ <circle r="2" transform="matrix(-1 0 0 1 460 293)" fill="#044289"/>
1319
+ <circle r="2" transform="matrix(-1 0 0 1 448 305)" fill="#044289"/>
1320
+ <circle r="2" transform="matrix(-1 0 0 1 436 305)" fill="#044289"/>
1321
+ <circle r="2" transform="matrix(-1 0 0 1 424 305)" fill="#044289"/>
1322
+ <circle r="2" transform="matrix(-1 0 0 1 412 305)" fill="#044289"/>
1323
+ <circle r="2" transform="matrix(-1 0 0 1 400 305)" fill="#044289"/>
1324
+ <circle r="2" transform="matrix(-1 0 0 1 460 305)" fill="#044289"/>
1325
+ <circle r="2" transform="matrix(-1 0 0 1 448 317)" fill="#044289"/>
1326
+ <circle r="2" transform="matrix(-1 0 0 1 436 317)" fill="#044289"/>
1327
+ <circle r="2" transform="matrix(-1 0 0 1 424 317)" fill="#044289"/>
1328
+ <circle r="2" transform="matrix(-1 0 0 1 412 317)" fill="#044289"/>
1329
+ <circle r="2" transform="matrix(-1 0 0 1 400 317)" fill="#044289"/>
1330
+ <circle r="2" transform="matrix(-1 0 0 1 460 317)" fill="#044289"/>
1331
+ <circle r="2" transform="matrix(-1 0 0 1 388 173)" fill="#044289"/>
1332
+ <circle r="2" transform="matrix(-1 0 0 1 388 185)" fill="#044289"/>
1333
+ <circle r="2" transform="matrix(-1 0 0 1 388 197)" fill="#044289"/>
1334
+ <circle r="2" transform="matrix(-1 0 0 1 388 209)" fill="#044289"/>
1335
+ <circle r="2" transform="matrix(-1 0 0 1 388 221)" fill="#044289"/>
1336
+ <circle r="2" transform="matrix(-1 0 0 1 388 233)" fill="#044289"/>
1337
+ <circle r="2" transform="matrix(-1 0 0 1 388 245)" fill="#044289"/>
1338
+ <circle r="2" transform="matrix(-1 0 0 1 388 257)" fill="#044289"/>
1339
+ <circle r="2" transform="matrix(-1 0 0 1 388 269)" fill="#044289"/>
1340
+ <circle r="2" transform="matrix(-1 0 0 1 388 281)" fill="#044289"/>
1341
+ <circle r="2" transform="matrix(-1 0 0 1 388 293)" fill="#044289"/>
1342
+ <circle r="2" transform="matrix(-1 0 0 1 388 305)" fill="#044289"/>
1343
+ <circle r="2" transform="matrix(-1 0 0 1 388 317)" fill="#044289"/>
1344
+ <circle r="2" transform="matrix(-1 0 0 1 448 329)" fill="#044289"/>
1345
+ <circle r="2" transform="matrix(-1 0 0 1 436 329)" fill="#044289"/>
1346
+ <circle r="2" transform="matrix(-1 0 0 1 424 329)" fill="#044289"/>
1347
+ <circle r="2" transform="matrix(-1 0 0 1 412 329)" fill="#044289"/>
1348
+ <circle r="2" transform="matrix(-1 0 0 1 400 329)" fill="#044289"/>
1349
+ <circle r="2" transform="matrix(-1 0 0 1 460 329)" fill="#044289"/>
1350
+ <circle r="2" transform="matrix(-1 0 0 1 388 329)" fill="#044289"/>
1351
+ </g>
1352
+ <rect x="-0.5" y="0.5" width="255" height="255" transform="matrix(-1 0 0 1 661 139)" fill="#1B1F23" stroke="#79B8FF"/>
1353
+ </g>
1354
+ <rect width="116" height="48.1127" transform="matrix(-1 0 0 1 938 125.291)" fill="#044289"/>
1355
+ <rect width="32" height="32.0751" transform="matrix(-1 0 0 1 854 189.441)" fill="#0366D6"/>
1356
+ <path d="M978 248.636L968 265.997H948L938 248.636L948 231.275H968L978 248.636Z" stroke="#C8E1FF" stroke-linecap="round" stroke-linejoin="round"/>
1357
+ <path d="M849.703 368.161L839.311 386.182L828.937 368.172L849.703 368.161Z" stroke="#C8E1FF" stroke-linecap="round" stroke-linejoin="round"/>
1358
+ <path d="M900 253C900 257 892 257 892 261C892 265 900 265 900 269C900 273 892 273 892 277C892 281 900 281 900 285C900 289 892 289 892 293" stroke="#C8E1FF" stroke-linecap="round" stroke-linejoin="round"/>
1359
+ <path d="M982 139C984 139 984.009 143 986.009 143C988.009 143 988 139 990 139C992 139 992.009 143 994.009 143C996.009 143 996 139 998 139C1000 139 1000.01 143 1002.01 143" stroke="#C8E1FF" stroke-linecap="round" stroke-linejoin="round"/>
1360
+ <path d="M151 58.1479C245 -41.0845 396.545 0.18 324.5 107C304.395 136.81 281.334 167.984 271.5 216.519C253.697 304.379 294 367.5 357 311.742C494.595 189.964 567.5 208.5 585 299.212C603.341 394.287 683.384 400.634 695 216.519C711 -37.075 1054.5 -29.5574 903 122.298" stroke="#C8E1FF"/>
1361
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M900 114.279V116.284L901.25 118.79L890 126.308H880.5C879.4 126.308 878.825 127.636 879.65 128.463L887.5 136.331L877.5 148.86L890 138.837L897.85 146.705C898.675 147.532 900 146.931 900 145.853V136.331L907.5 125.055L910 126.308H912C913.1 126.308 913.675 124.979 912.85 124.153L902.15 113.427C901.325 112.6 900 113.202 900 114.279Z" fill="#79B8FF"/>
1362
+ <ellipse rx="11.8044" ry="4.34198" transform="matrix(0.708436 -0.705746 0.704112 0.710118 363.305 305.61)" fill="#1B1F23"/>
1363
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M368.412 300.448C367.877 299.902 367.482 299.338 367.168 298.673C366.853 298.049 366.639 297.345 366.506 296.623C365.34 297.274 364.173 298.005 363.026 298.857C361.858 299.729 360.73 300.722 359.62 301.795C358.208 303.186 356.929 305.4 356.018 306.675L350.018 306.622L343.966 312.604L349.965 312.656L354 308.682C353.307 310.22 351.908 314.638 351.948 314.678L353.93 316.701C353.97 316.741 358.401 315.457 359.948 314.748L355.913 318.723L355.86 324.737L361.913 318.775L361.965 312.761C363.253 311.87 365.484 310.607 366.896 309.236C368.005 308.143 369.015 306.989 369.865 305.854C370.755 304.699 371.506 303.543 372.175 302.426C371.457 302.259 370.779 302.033 370.121 301.726C369.504 301.4 368.948 300.994 368.412 300.448ZM376.139 292.838C376.139 292.838 375.952 293.598 375.52 294.957C375.108 296.357 374.393 298.115 373.354 300.271C371.956 300.098 370.82 299.587 370.047 298.799C369.274 298.01 368.803 296.903 368.675 295.499C370.844 294.475 372.591 293.769 373.974 293.38C375.378 292.991 376.139 292.838 376.139 292.838Z" fill="#79B8FF"/>
1364
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M102 95.2348V107.263H114L146 75.1879L134 63.1597L102 95.2348ZM114 103.254H106V95.2348H110V99.2442H114V103.254ZM155.2 65.9663L150 71.1785L138 59.1503L143.2 53.9381C144.76 52.3745 147.28 52.3745 148.84 53.9381L155.2 60.3131C156.76 61.8767 156.76 64.4026 155.2 65.9663Z" fill="#79B8FF"/>
1365
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M700 213.498C698.06 213.498 696.62 214.34 695.6 215.502C694.58 216.665 694.04 217.347 694 217.507C693.96 217.347 693.44 216.665 692.4 215.502C691.36 214.34 690.06 213.498 688 213.498C684.736 213.67 682.093 216.169 682 219.512C682 220.554 682.18 222.559 683.34 224.864C684.5 227.17 688.02 230.758 694 235.549C699.96 230.758 703.54 227.19 704.68 224.864C705.82 222.539 706 220.514 706 219.512C705.906 216.124 703.316 213.673 700 213.498Z" fill="#79B8FF"/>
1366
+ <path d="M397.713 68.8889L383.856 92.9453L370 68.8889L397.713 68.8889Z" stroke="#2188FF" stroke-width="2" stroke-linejoin="round"/>
1367
+ <circle cx="623" cy="97" r="10" stroke="#2188FF" stroke-width="2"/>
1368
+ <circle cx="640" cy="78" r="5.5" stroke="#C8E1FF"/>
1369
+ <rect x="467" y="333.779" width="30" height="24.0563" fill="#044289"/>
1370
+ <rect x="557" y="333.779" width="30" height="24.0563" fill="#044289"/>
1371
+ <rect x="521" y="333.779" width="12" height="24.0563" fill="#044289"/>
1372
+ <rect x="436" y="283.662" width="33.0236" height="33.0934" fill="#005CC5"/>
1373
+ <rect x="496.543" y="283.662" width="88.0628" height="33.0934" fill="#005CC5"/>
1374
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M600.04 394C608.919 380.203 621.719 330.529 621.719 291.312C621.719 239.788 601.346 214.127 592.328 214.127C583.311 214.127 562.938 239.788 562.938 291.312C562.938 330.529 575.737 380.203 584.617 394H600.04Z" fill="#2188FF"/>
1375
+ <mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="562" y="214" width="60" height="180">
1376
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M600.04 394C608.919 380.203 621.719 330.529 621.719 291.312C621.719 239.788 601.346 214.127 592.328 214.127C583.311 214.127 562.938 239.788 562.938 291.312C562.938 330.529 575.737 380.203 584.617 394H600.04Z" fill="#005CC5"/>
1377
+ </mask>
1378
+ <g mask="url(#mask0)">
1379
+ <path d="M593.906 244.564V265.979C593.906 272.263 588.939 277.357 582.811 277.357C576.684 277.357 571.716 272.263 571.716 265.979V244.564M597.822 253.264C597.822 242.915 589.64 234.525 579.548 234.525C569.456 234.525 561.274 242.915 561.274 253.264V278.695C561.274 289.044 569.456 297.434 579.548 297.434C589.64 297.434 597.822 289.044 597.822 278.695V253.264ZM637.632 325.769C637.632 316.899 630.62 309.708 621.969 309.708H603.695C595.045 309.708 588.032 316.899 588.032 325.769V403.402C588.032 412.272 595.045 419.463 603.695 419.463H621.969C630.62 419.463 637.632 412.272 637.632 403.402V325.769ZM629.801 336.477C629.801 330.564 625.126 325.769 619.359 325.769H608.917C603.149 325.769 598.474 330.564 598.474 336.477V372.616C598.474 378.53 603.149 383.324 608.917 383.324H619.359C625.126 383.324 629.801 378.53 629.801 372.616V336.477ZM627.19 345.847C627.19 341.411 623.684 337.816 619.359 337.816H612.832C608.507 337.816 605.001 341.411 605.001 345.847V365.924C605.001 370.359 608.507 373.955 612.832 373.955H619.359C623.684 373.955 627.19 370.359 627.19 365.924V345.847Z" stroke="#C8E1FF" stroke-linejoin="round"/>
1380
+ </g>
1381
+ <path d="M617.747 254.628H566.909C573.296 227.602 585.794 214.127 592.328 214.127C598.863 214.127 611.36 227.602 617.747 254.628Z" fill="#044289"/>
1382
+ <path d="M584.258 218.617C585.887 219.495 588.892 220.083 592.328 220.083C595.765 220.083 598.769 219.495 600.399 218.617C597.345 215.623 594.505 214.127 592.328 214.127C592.328 214.127 592.328 214.127 592.328 214.127C590.151 214.127 587.312 215.623 584.258 218.617Z" fill="#032F62"/>
1383
+ <path d="M624.601 185.015C624.601 202.685 610.285 217.01 592.625 217.01C574.965 217.01 560.649 202.685 560.649 185.015C560.649 164.351 591.293 139.688 592.625 123.691C593.958 139.688 624.601 165.018 624.601 185.015Z" fill="#005CC5" stroke="#005CC5" stroke-width="1.18421" stroke-linecap="round" stroke-linejoin="round"/>
1384
+ <mask id="mask1" mask-type="alpha" maskUnits="userSpaceOnUse" x="560" y="123" width="66" height="95">
1385
+ <path d="M624.601 185.015C624.601 202.685 610.285 217.01 592.625 217.01C574.965 217.01 560.649 202.685 560.649 185.015C560.649 164.351 591.293 139.688 592.625 123.691C593.958 139.688 624.601 165.018 624.601 185.015Z" fill="#C8E1FF" stroke="#C8E1FF" stroke-width="1.18421"/>
1386
+ </mask>
1387
+ <g mask="url(#mask1)">
1388
+ <ellipse cx="582.451" cy="193.533" rx="36.3363" ry="36.3884" fill="#2188FF"/>
1389
+ </g>
1390
+ <path d="M598 232C602 232 602 240 606 240C610 240 610 232 614 232C618 232 618 240 622 240C626 240 626 232 630 232C634 232 634 240 638 240" stroke="#2188FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
1391
+ <defs>
1392
+ <clipPath id="clip0">
1393
+ <rect width="276" height="276" fill="white" transform="translate(782 77)"/>
1394
+ </clipPath>
1395
+ <clipPath id="clip1">
1396
+ <rect width="250" height="248" fill="white" transform="translate(810 105)"/>
1397
+ </clipPath>
1398
+ <clipPath id="clip2">
1399
+ <rect width="276" height="276" fill="white" transform="matrix(-1 0 0 1 286 37)"/>
1400
+ </clipPath>
1401
+ <clipPath id="clip3">
1402
+ <rect width="250" height="248" fill="white" transform="matrix(-1 0 0 1 258 65)"/>
1403
+ </clipPath>
1404
+ <clipPath id="clip4">
1405
+ <rect width="276" height="276" fill="white" transform="matrix(-1 0 0 1 662 139)"/>
1406
+ </clipPath>
1407
+ <clipPath id="clip5">
1408
+ <rect width="250" height="248" fill="white" transform="matrix(-1 0 0 1 634 167)"/>
1409
+ </clipPath>
1410
+ </defs>
1411
+ </svg>