chrome-devtools-frontend 1.0.1675430 → 1.0.1676824

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (225) hide show
  1. package/WATCHLISTS +0 -4
  2. package/front_end/core/common/Settings.ts +0 -66
  3. package/front_end/core/root/Runtime.ts +0 -5
  4. package/front_end/core/sdk/CSSMetadata.ts +5 -9
  5. package/front_end/core/sdk/CSSPropertyParserMatchers.ts +8 -28
  6. package/front_end/core/sdk/DebuggerModel.ts +50 -30
  7. package/front_end/core/sdk/ResourceTreeModel.ts +20 -1
  8. package/front_end/core/sdk/Script.ts +9 -53
  9. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +213 -23
  10. package/front_end/entrypoints/main/MainImpl.ts +31 -0
  11. package/front_end/generated/InspectorBackendCommands.ts +3 -1
  12. package/front_end/generated/SupportedCSSProperties.ts +21 -4
  13. package/front_end/generated/protocol-mapping.d.ts +14 -0
  14. package/front_end/generated/protocol-proxy-api.d.ts +10 -0
  15. package/front_end/generated/protocol.ts +35 -0
  16. package/front_end/models/ai_assistance/AiAgent2.ts +11 -0
  17. package/front_end/models/ai_assistance/AiConversation.ts +22 -5
  18. package/front_end/models/ai_assistance/README.md +52 -26
  19. package/front_end/models/ai_assistance/agents/AiAgent.ts +54 -8
  20. package/front_end/models/ai_assistance/agents/ContextSelectionAgent.ts +1 -1
  21. package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +7 -194
  22. package/front_end/models/ai_assistance/agents/StorageAgent.ts +8 -87
  23. package/front_end/models/ai_assistance/agents/StylingAgent.snapshot.txt +2 -1
  24. package/front_end/models/ai_assistance/ai_assistance.ts +16 -0
  25. package/front_end/models/ai_assistance/contexts/PerformanceTraceContext.ts +124 -0
  26. package/front_end/models/ai_assistance/contexts/StorageContext.ts +111 -0
  27. package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +69 -1
  28. package/front_end/models/ai_assistance/skills/README.md +63 -1
  29. package/front_end/models/ai_assistance/skills/Skill.ts +1 -1
  30. package/front_end/models/ai_assistance/skills/SkillRegistry.ts +4 -0
  31. package/front_end/models/ai_assistance/skills/performance.md +8 -0
  32. package/front_end/models/ai_assistance/skills/sources.md +16 -0
  33. package/front_end/models/ai_assistance/skills/storage.md +31 -0
  34. package/front_end/models/ai_assistance/tools/GetSourceContent.ts +101 -0
  35. package/front_end/models/ai_assistance/tools/GetTraceEventByKey.ts +83 -0
  36. package/front_end/models/ai_assistance/tools/GetTraceMainThreadSummary.ts +106 -0
  37. package/front_end/models/ai_assistance/tools/GetTraceNetworkSummary.ts +104 -0
  38. package/front_end/models/ai_assistance/tools/ListPageOrigins.ts +81 -0
  39. package/front_end/models/ai_assistance/tools/ListSources.ts +116 -0
  40. package/front_end/models/ai_assistance/tools/SelectTraceEventByKey.ts +90 -0
  41. package/front_end/models/ai_assistance/tools/Tool.ts +22 -1
  42. package/front_end/models/ai_assistance/tools/ToolRegistry.ts +14 -0
  43. package/front_end/models/bindings/CSSWorkspaceBinding.ts +4 -0
  44. package/front_end/models/bindings/CompilerScriptMapping.ts +4 -0
  45. package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +8 -0
  46. package/front_end/models/bindings/ResourceScriptMapping.ts +3 -201
  47. package/front_end/models/bindings/SASSSourceMapping.ts +6 -0
  48. package/front_end/models/breakpoints/BreakpointManager.ts +2 -49
  49. package/front_end/models/heap_snapshot/HeapSnapshotModel.ts +27 -0
  50. package/front_end/models/heap_snapshot/HeapSnapshotProxy.ts +10 -2
  51. package/front_end/models/issues_manager/descriptions/connectionAllowlistEmbeddingRequirementNotSatisfied.md +26 -0
  52. package/front_end/models/issues_manager/descriptions/connectionAllowlistIFrameAttributeLoosensEmbeddingRequirement.md +19 -0
  53. package/front_end/models/issues_manager/descriptions/connectionAllowlistInvalidAllowConnectionAllowlistFrom.md +21 -0
  54. package/front_end/models/javascript_metadata/NativeFunctions.js +1 -1
  55. package/front_end/models/persistence/IsolatedFileSystem.ts +7 -8
  56. package/front_end/models/persistence/IsolatedFileSystemManager.ts +2 -2
  57. package/front_end/models/persistence/PlatformFileSystem.ts +1 -1
  58. package/front_end/models/persistence/persistence-meta.ts +9 -9
  59. package/front_end/models/trace/types/TraceEvents.ts +36 -0
  60. package/front_end/panels/accessibility/ARIAAttributesView.ts +3 -3
  61. package/front_end/panels/accessibility/AccessibilityNodeView.ts +36 -36
  62. package/front_end/panels/accessibility/AccessibilityStrings.ts +168 -168
  63. package/front_end/panels/accessibility/SourceOrderView.ts +7 -7
  64. package/front_end/panels/accessibility/accessibility-meta.ts +2 -2
  65. package/front_end/panels/ai_assistance/AiAssistancePanel.ts +5 -5
  66. package/front_end/panels/ai_assistance/components/AIv2MarkdownRenderer.ts +2 -3
  67. package/front_end/panels/ai_assistance/components/ChatInput.ts +2 -2
  68. package/front_end/panels/ai_assistance/components/ChatMessage.ts +27 -2
  69. package/front_end/panels/application/IndexedDBViews.ts +65 -63
  70. package/front_end/panels/application/WebMCPView.ts +16 -7
  71. package/front_end/panels/common/AiCodeCompletionSummaryToolbar.ts +5 -5
  72. package/front_end/panels/common/BadgeNotification.ts +8 -8
  73. package/front_end/panels/common/ExtensionServer.ts +21 -1
  74. package/front_end/panels/common/GdpSignUpDialog.ts +16 -16
  75. package/front_end/panels/common/GeminiRebrandPromoDialog.ts +5 -6
  76. package/front_end/panels/common/PersistenceUtils.ts +2 -2
  77. package/front_end/panels/common/common.ts +0 -97
  78. package/front_end/panels/console/ConsoleInsightTeaser.ts +2 -2
  79. package/front_end/panels/console/ConsolePinPane.ts +2 -2
  80. package/front_end/panels/console/ConsoleView.ts +20 -19
  81. package/front_end/panels/elements/LayoutPane.ts +2 -8
  82. package/front_end/panels/event_listeners/EventListenersView.ts +8 -4
  83. package/front_end/panels/issues/AffectedTrackingSitesView.ts +25 -14
  84. package/front_end/panels/media/PlayerMessagesView.ts +149 -68
  85. package/front_end/panels/network/NetworkPanel.ts +1 -1
  86. package/front_end/panels/network/RequestPayloadView.ts +1 -0
  87. package/front_end/panels/profiler/HeapSnapshotView.ts +0 -2
  88. package/front_end/panels/profiler/heapProfiler.css +0 -9
  89. package/front_end/panels/recorder/RecorderPanel.ts +2 -3
  90. package/front_end/panels/screencast/ScreencastView.ts +148 -138
  91. package/front_end/panels/sources/AiCodeCompletionPlugin.ts +2 -2
  92. package/front_end/panels/sources/DebuggerPlugin.ts +9 -58
  93. package/front_end/panels/sources/ScopeChainSidebarPane.ts +1 -1
  94. package/front_end/panels/sources/UISourceCodeFrame.ts +3 -8
  95. package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +4 -2
  96. package/front_end/panels/timeline/TimelineController.ts +36 -64
  97. package/front_end/panels/timeline/TimelinePanel.ts +11 -8
  98. package/front_end/panels/timeline/TimelineUIUtils.ts +5 -2
  99. package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +2 -2
  100. package/front_end/panels/timeline/timelinePanel.css +0 -10
  101. package/front_end/panels/utils/utils.ts +7 -7
  102. package/front_end/services/tracing/PerformanceTracing.ts +5 -17
  103. package/front_end/third_party/chromium/README.chromium +1 -1
  104. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  105. package/front_end/third_party/codemirror.next/chunk/codemirror.js.map +1 -1
  106. package/front_end/third_party/codemirror.next/package.json +2 -2
  107. package/front_end/third_party/codemirror.next/rebuild.sh +4 -1
  108. package/front_end/ui/comments/CommentAnchorResolver.ts +436 -10
  109. package/front_end/ui/comments/CommentManager.ts +640 -0
  110. package/front_end/ui/comments/CommentsOverlayWidget.ts +121 -0
  111. package/front_end/ui/comments/comments.ts +4 -0
  112. package/front_end/ui/comments/commentsOverlay.css +49 -0
  113. package/front_end/{panels/common → ui/components/dialogs}/FreDialog.ts +6 -6
  114. package/front_end/ui/components/dialogs/TypeToAllowDialog.ts +96 -0
  115. package/front_end/ui/components/dialogs/dialogs.ts +4 -0
  116. package/front_end/ui/components/settings/SettingCheckbox.ts +3 -3
  117. package/front_end/{panels/common → ui/components/text_editor}/AiCodeCompletionDisclaimer.ts +13 -13
  118. package/front_end/ui/components/text_editor/AiCodeCompletionProvider.ts +7 -6
  119. package/front_end/{panels/common → ui/components/text_editor}/AiCodeCompletionTeaser.ts +43 -46
  120. package/front_end/ui/components/text_editor/AiCodeGenerationProvider.ts +22 -26
  121. package/front_end/{panels/common → ui/components/text_editor}/AiCodeGenerationTeaser.ts +10 -10
  122. package/front_end/{panels/common → ui/components/text_editor}/AiCodeGenerationUpgradeDialog.ts +5 -5
  123. package/front_end/ui/components/text_editor/text_editor.ts +4 -0
  124. package/front_end/ui/legacy/Toolbar.ts +1 -1
  125. package/front_end/ui/legacy/components/object_ui/CustomPreviewComponent.ts +11 -3
  126. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +270 -162
  127. package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +5 -0
  128. package/front_end/ui/legacy/components/quick_open/CommandMenu.ts +11 -16
  129. package/front_end/ui/legacy/components/settings_ui/SettingsUI.ts +5 -12
  130. package/front_end/ui/legacy/components/source_frame/JSONView.ts +8 -1
  131. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +2 -2
  132. package/front_end/ui/settings/SettingUIRegistration.ts +55 -6
  133. package/front_end/ui/visual_logging/KnownContextValues.ts +1 -0
  134. package/mcp/mcp.ts +6 -1
  135. package/package.json +1 -1
  136. package/front_end/Images/toolbarResizerVertical.png +0 -0
  137. package/front_end/emulated_devices/MotoG4-landscape.svg +0 -155
  138. package/front_end/emulated_devices/MotoG4-portrait.svg +0 -155
  139. package/front_end/emulated_devices/Nexus5X-landscape.svg +0 -19
  140. package/front_end/emulated_devices/Nexus5X-portrait.svg +0 -19
  141. package/front_end/emulated_devices/Nexus6P-landscape.svg +0 -50
  142. package/front_end/emulated_devices/Nexus6P-portrait.svg +0 -54
  143. package/front_end/emulated_devices/google-nest-hub-horizontal.png +0 -0
  144. package/front_end/emulated_devices/google-nest-hub-max-horizontal.png +0 -0
  145. package/front_end/emulated_devices/google-nexus-5-horizontal-default-1x.png +0 -0
  146. package/front_end/emulated_devices/google-nexus-5-horizontal-default-2x.png +0 -0
  147. package/front_end/emulated_devices/google-nexus-5-horizontal-keyboard-1x.png +0 -0
  148. package/front_end/emulated_devices/google-nexus-5-horizontal-keyboard-2x.png +0 -0
  149. package/front_end/emulated_devices/google-nexus-5-horizontal-navigation-1x.png +0 -0
  150. package/front_end/emulated_devices/google-nexus-5-horizontal-navigation-2x.png +0 -0
  151. package/front_end/emulated_devices/google-nexus-5-vertical-default-1x.png +0 -0
  152. package/front_end/emulated_devices/google-nexus-5-vertical-default-2x.png +0 -0
  153. package/front_end/emulated_devices/google-nexus-5-vertical-keyboard-1x.png +0 -0
  154. package/front_end/emulated_devices/google-nexus-5-vertical-keyboard-2x.png +0 -0
  155. package/front_end/emulated_devices/google-nexus-5-vertical-navigation-1x.png +0 -0
  156. package/front_end/emulated_devices/google-nexus-5-vertical-navigation-2x.png +0 -0
  157. package/front_end/emulated_devices/google-nexus-5x-horizontal-default-1x.png +0 -0
  158. package/front_end/emulated_devices/google-nexus-5x-horizontal-default-2x.png +0 -0
  159. package/front_end/emulated_devices/google-nexus-5x-horizontal-keyboard-1x.png +0 -0
  160. package/front_end/emulated_devices/google-nexus-5x-horizontal-keyboard-2x.png +0 -0
  161. package/front_end/emulated_devices/google-nexus-5x-horizontal-navigation-1x.png +0 -0
  162. package/front_end/emulated_devices/google-nexus-5x-horizontal-navigation-2x.png +0 -0
  163. package/front_end/emulated_devices/google-nexus-5x-vertical-default-1x.png +0 -0
  164. package/front_end/emulated_devices/google-nexus-5x-vertical-default-2x.png +0 -0
  165. package/front_end/emulated_devices/google-nexus-5x-vertical-keyboard-1x.png +0 -0
  166. package/front_end/emulated_devices/google-nexus-5x-vertical-keyboard-2x.png +0 -0
  167. package/front_end/emulated_devices/google-nexus-5x-vertical-navigation-1x.png +0 -0
  168. package/front_end/emulated_devices/google-nexus-5x-vertical-navigation-2x.png +0 -0
  169. package/front_end/emulated_devices/iPad-landscape.svg +0 -73
  170. package/front_end/emulated_devices/iPad-portrait.svg +0 -76
  171. package/front_end/emulated_devices/iPhone5-landscape.svg +0 -99
  172. package/front_end/emulated_devices/iPhone5-portrait.svg +0 -83
  173. package/front_end/emulated_devices/iPhone6-landscape.svg +0 -111
  174. package/front_end/emulated_devices/iPhone6-portrait.svg +0 -116
  175. package/front_end/emulated_devices/iPhone6Plus-landscape.svg +0 -118
  176. package/front_end/emulated_devices/iPhone6Plus-portrait.svg +0 -116
  177. package/front_end/emulated_devices/optimized/MotoG4-landscape.avif +0 -0
  178. package/front_end/emulated_devices/optimized/MotoG4-portrait.avif +0 -0
  179. package/front_end/emulated_devices/optimized/Nexus5X-landscape.avif +0 -0
  180. package/front_end/emulated_devices/optimized/Nexus5X-portrait.avif +0 -0
  181. package/front_end/emulated_devices/optimized/Nexus6P-landscape.avif +0 -0
  182. package/front_end/emulated_devices/optimized/Nexus6P-portrait.avif +0 -0
  183. package/front_end/emulated_devices/optimized/README.md +0 -9
  184. package/front_end/emulated_devices/optimized/google-nest-hub-horizontal.avif +0 -0
  185. package/front_end/emulated_devices/optimized/google-nest-hub-max-horizontal.avif +0 -0
  186. package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-default-1x.avif +0 -0
  187. package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-default-2x.avif +0 -0
  188. package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-keyboard-1x.avif +0 -0
  189. package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-keyboard-2x.avif +0 -0
  190. package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-navigation-1x.avif +0 -0
  191. package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-navigation-2x.avif +0 -0
  192. package/front_end/emulated_devices/optimized/google-nexus-5-vertical-default-1x.avif +0 -0
  193. package/front_end/emulated_devices/optimized/google-nexus-5-vertical-default-2x.avif +0 -0
  194. package/front_end/emulated_devices/optimized/google-nexus-5-vertical-keyboard-1x.avif +0 -0
  195. package/front_end/emulated_devices/optimized/google-nexus-5-vertical-keyboard-2x.avif +0 -0
  196. package/front_end/emulated_devices/optimized/google-nexus-5-vertical-navigation-1x.avif +0 -0
  197. package/front_end/emulated_devices/optimized/google-nexus-5-vertical-navigation-2x.avif +0 -0
  198. package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-default-1x.avif +0 -0
  199. package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-default-2x.avif +0 -0
  200. package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-keyboard-1x.avif +0 -0
  201. package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-keyboard-2x.avif +0 -0
  202. package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-navigation-1x.avif +0 -0
  203. package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-navigation-2x.avif +0 -0
  204. package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-default-1x.avif +0 -0
  205. package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-default-2x.avif +0 -0
  206. package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-keyboard-1x.avif +0 -0
  207. package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-keyboard-2x.avif +0 -0
  208. package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-navigation-1x.avif +0 -0
  209. package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-navigation-2x.avif +0 -0
  210. package/front_end/emulated_devices/optimized/iPad-landscape.avif +0 -0
  211. package/front_end/emulated_devices/optimized/iPad-portrait.avif +0 -0
  212. package/front_end/emulated_devices/optimized/iPhone5-landscape.avif +0 -0
  213. package/front_end/emulated_devices/optimized/iPhone5-portrait.avif +0 -0
  214. package/front_end/emulated_devices/optimized/iPhone6-landscape.avif +0 -0
  215. package/front_end/emulated_devices/optimized/iPhone6-portrait.avif +0 -0
  216. package/front_end/emulated_devices/optimized/iPhone6Plus-landscape.avif +0 -0
  217. package/front_end/emulated_devices/optimized/iPhone6Plus-portrait.avif +0 -0
  218. package/front_end/emulated_devices/optimized/optimized_images.gni +0 -53
  219. package/front_end/models/ai_assistance/agents/README.md +0 -136
  220. /package/front_end/{panels/common → ui/components/dialogs}/freDialog.css +0 -0
  221. /package/front_end/{panels/common/common.css → ui/components/dialogs/typeToAllowDialog.css} +0 -0
  222. /package/front_end/{panels/common → ui/components/text_editor}/aiCodeCompletionDisclaimer.css +0 -0
  223. /package/front_end/{panels/common → ui/components/text_editor}/aiCodeCompletionTeaser.css +0 -0
  224. /package/front_end/{panels/common → ui/components/text_editor}/aiCodeGenerationTeaser.css +0 -0
  225. /package/front_end/{panels/common → ui/components/text_editor}/aiCodeGenerationUpgradeDialog.css +0 -0
@@ -1,111 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg width="877px" height="431px" viewBox="0 0 877 431" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>iPhone 6</title>
4
- <defs>
5
- <linearGradient x1="0.0488611431%" y1="49.9939431%" x2="100.048698%" y2="49.9939431%" id="linearGradient-1">
6
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="0%"></stop>
7
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="11.69%"></stop>
8
- <stop stop-color="#FFFFFF" stop-opacity="0.00509108" offset="87.64%"></stop>
9
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="100%"></stop>
10
- </linearGradient>
11
- <linearGradient x1="4.88777959%" y1="-1.77197921%" x2="92.2732759%" y2="98.5008115%" id="linearGradient-2">
12
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="0%"></stop>
13
- <stop stop-color="#FFFFFF" stop-opacity="0.05" offset="13.73%"></stop>
14
- <stop stop-color="#FFFFFF" stop-opacity="0.02" offset="88.31%"></stop>
15
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="100%"></stop>
16
- </linearGradient>
17
- <radialGradient cx="49.8666667%" cy="50.0666667%" fx="49.8666667%" fy="50.0666667%" r="50.3333333%" id="radialGradient-3">
18
- <stop stop-color="#5D5D5F" offset="0%"></stop>
19
- <stop stop-color="#333333" stop-opacity="0.8" offset="100%"></stop>
20
- </radialGradient>
21
- <radialGradient cx="50.2859018%" cy="57.2416319%" fx="50.2859018%" fy="57.2416319%" r="50.3093333%" id="radialGradient-4">
22
- <stop stop-color="#000000" stop-opacity="0" offset="0%"></stop>
23
- <stop stop-color="#020202" stop-opacity="0.4119" offset="51.49%"></stop>
24
- <stop stop-color="#090909" stop-opacity="0.5603" offset="70.03%"></stop>
25
- <stop stop-color="#141414" stop-opacity="0.666" offset="83.25%"></stop>
26
- <stop stop-color="#252525" stop-opacity="0.7509" offset="93.87%"></stop>
27
- <stop stop-color="#333333" stop-opacity="0.8" offset="100%"></stop>
28
- </radialGradient>
29
- <radialGradient cx="47.3819749%" cy="96.2966269%" fx="47.3819749%" fy="96.2966269%" r="95.1905405%" id="radialGradient-5">
30
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="0%"></stop>
31
- <stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
32
- </radialGradient>
33
- <radialGradient cx="50.1335915%" cy="23.9526238%" fx="50.1335915%" fy="23.9526238%" r="58.1475%" id="radialGradient-6">
34
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="0%"></stop>
35
- <stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
36
- </radialGradient>
37
- <linearGradient x1="46.7389949%" y1="7.21719595%" x2="46.7408363%" y2="111.047196%" id="linearGradient-7">
38
- <stop stop-color="#FFFFFF" stop-opacity="0.6" offset="0%"></stop>
39
- <stop stop-color="#FFFFFF" stop-opacity="0.1" offset="100%"></stop>
40
- </linearGradient>
41
- <path id="path-8" d="M8.7,5.1 L8.7,63.7 C8.7,66.1 6.8,68 4.4,68 L4.4,68 C2,68 0.1,66.1 0.1,63.7 L0.1,5.1 C0.1,2.7 2,0.8 4.4,0.8 L4.4,0.8 C6.8,0.8 8.7,2.7 8.7,5.1 L8.7,5.1 Z"></path>
42
- <linearGradient x1="100.754874%" y1="49.9921131%" x2="0.987588915%" y2="49.9921131%" id="linearGradient-10">
43
- <stop stop-color="#2E2E31" offset="0%"></stop>
44
- <stop stop-color="#616161" offset="24.48%"></stop>
45
- <stop stop-color="#858585" offset="81.37%"></stop>
46
- <stop stop-color="#2E2E31" offset="100%"></stop>
47
- </linearGradient>
48
- <path id="path-11" d="M8.7,5.1 L8.7,63.7 C8.7,66.1 6.8,68 4.4,68 L4.4,68 C2,68 0.1,66.1 0.1,63.7 L0.1,5.1 C0.1,2.7 2,0.8 4.4,0.8 L4.4,0.8 C6.8,0.8 8.7,2.7 8.7,5.1 L8.7,5.1 Z"></path>
49
- <path id="path-13" d="M8.7,5.1 L8.7,63.7 C8.7,66.1 6.8,68 4.4,68 L4.4,68 C2,68 0.1,66.1 0.1,63.7 L0.1,5.1 C0.1,2.7 2,0.8 4.4,0.8 L4.4,0.8 C6.8,0.8 8.7,2.7 8.7,5.1 L8.7,5.1 Z"></path>
50
- <linearGradient x1="86.3832317%" y1="92.0344512%" x2="13.9727134%" y2="8.69390244%" id="linearGradient-15">
51
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="14.7%"></stop>
52
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="40.73%"></stop>
53
- <stop stop-color="#FFFFFF" stop-opacity="0.00509108" offset="74.45%"></stop>
54
- <stop stop-color="#FFFFFF" stop-opacity="0.2" offset="100%"></stop>
55
- </linearGradient>
56
- </defs>
57
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
58
- <g id="iphone6-landscape">
59
- <g id="Group">
60
- <g>
61
- <path d="M145.2,424.8 L145.2,428.5 C145.2,429.5 144.4,430.4 143.3,430.4 L113.3,430.4 C112.3,430.4 111.4,429.6 111.4,428.5 L111.4,424.8 L145.2,424.8 L145.2,424.8 Z" id="Shape" fill="#808086"></path>
62
- <path d="M190.5,430.4 C189.5,430.4 188.6,429.6 188.6,428.5 L188.6,424.8 L249.7,424.8 L249.7,428.5 C249.7,429.5 248.9,430.4 247.8,430.4" id="Shape" fill="#808086"></path>
63
- <path d="M188,6.2 L188,2.5 C188,1.5 188.8,0.6 189.9,0.6 L247.3,0.6 C248.3,0.6 249.2,1.4 249.2,2.5 L249.2,6.2 L188,6.2 L188,6.2 Z" id="Shape" fill="#818187"></path>
64
- <path d="M329.5,424.8 L329.5,428.5 C329.5,429.5 328.7,430.4 327.6,430.4 L270.2,430.4 C269.2,430.4 268.3,429.6 268.3,428.5 L268.3,424.8 L329.5,424.8 L329.5,424.8 Z" id="Shape" fill="#808086"></path>
65
- <path d="M65.7,427.9 C29.9,427.9 0.8,398.8 0.8,363 L0.8,68.5 C0.8,32.7 29.9,3.6 65.7,3.6 L811.4,3.6 C847.2,3.6 876.3,32.7 876.3,68.5 L876.3,363 C876.3,398.8 847.2,427.9 811.4,427.9 L65.7,427.9 L65.7,427.9 Z" id="Shape" stroke="#666666" fill="#B2B2B2"></path>
66
- <path d="M871.1,363.2 C871.1,379.1 864.9,394.1 853.6,405.3 C842.4,416.5 827.4,422.8 811.5,422.8 L65.5,422.8 C49.6,422.8 34.6,416.6 23.4,405.3 C12.2,394.1 5.9,379.1 5.9,363.2 L5.9,68.4 C5.9,52.5 12.1,37.5 23.4,26.3 C34.6,15 49.6,8.8 65.5,8.8 L811.5,8.8 C827.4,8.8 842.4,15 853.6,26.3 C864.8,37.5 871.1,52.5 871.1,68.4 L871.1,363.2 L871.1,363.2 L871.1,363.2 Z" id="Shape" fill="#404040"></path>
67
- <path d="M871.3,68.5 L871.3,363 C871.3,396.1 844.5,422.9 811.4,422.9 L65.7,422.9 C32.6,422.9 5.8,396.1 5.8,363 L5.8,68.5 C5.8,35.4 32.6,8.6 65.7,8.6 L811.4,8.6 C844.4,8.6 871.3,35.4 871.3,68.5 L871.3,68.5 Z" id="Shape" fill="#262626"></path>
68
- <path d="M5.7,68.4 L5.7,363.2 C5.7,396.2 32.5,423 65.5,423 L67.1,423 C34.1,423 7.3,396.2 7.3,363.2 L7.3,68.4 C7.3,35.4 34.1,8.6 67.1,8.6 L65.5,8.6 C32.5,8.6 5.7,35.4 5.7,68.4 L5.7,68.4 Z" id="Shape" fill="url(#linearGradient-1)"></path>
69
- <path d="M9.3,68.4 L9.3,363.2 C9.3,394.2 34.5,419.4 65.5,419.4 L811.5,419.4 C842.5,419.4 867.7,394.2 867.7,363.2 L867.7,68.4 C867.7,37.4 842.5,12.2 811.5,12.2 L65.5,12.2 C34.5,12.1 9.3,37.4 9.3,68.4 L9.3,68.4 Z M811.5,18.2 C839.2,18.2 861.7,40.7 861.7,68.4 L861.7,363.2 C861.7,390.9 839.2,413.4 811.5,413.4 L65.5,413.4 C37.8,413.4 15.3,390.9 15.3,363.2 L15.3,68.4 C15.3,40.7 37.8,18.2 65.5,18.2 L811.5,18.2 L811.5,18.2 Z" id="Shape" fill="url(#linearGradient-2)"></path>
70
- <g transform="translate(47.000000, 276.000000)">
71
- <circle id="Oval" fill="url(#radialGradient-3)" cx="7.7" cy="7.7" r="7.5"></circle>
72
- <circle id="Oval" fill="url(#radialGradient-4)" opacity="0.8" cx="7.7" cy="7.7" r="7.5"></circle>
73
- <circle id="Oval" fill="#1B1A1F" cx="7.7" cy="7.7" r="5"></circle>
74
- <circle id="Oval" fill="#36284C" cx="7.7" cy="7.7" r="3.7"></circle>
75
- <circle id="Oval" fill="url(#radialGradient-5)" cx="7.7" cy="7.7" r="3.7"></circle>
76
- <g transform="translate(5.000000, 5.000000)" id="Shape">
77
- <path d="M4.7,2.7 C4.7,3.8 3.8,4.7 2.7,4.7 C1.6,4.7 0.7,3.8 0.7,2.7 C0.7,1.6 1.6,0.7 2.7,0.7 C3.8,0.7 4.7,1.6 4.7,2.7 L4.7,2.7 Z" fill="#141414" opacity="0.5"></path>
78
- <path d="M4.7,2.7 C4.7,3.8 3.8,4.7 2.7,4.7 C1.6,4.7 0.7,3.8 0.7,2.7 C0.7,1.6 1.6,0.7 2.7,0.7 C3.8,0.7 4.7,1.6 4.7,2.7 L4.7,2.7 Z" fill="url(#radialGradient-6)"></path>
79
- </g>
80
- <path d="M7.7,6.2 C7.2,6.2 6.9,6.4 6.6,6.7 L7.1,7.2 C7.3,7 7.5,6.9 7.7,6.9 C8,6.9 8.2,7 8.4,7.2 L8.9,6.7 C8.5,6.4 8.1,6.2 7.7,6.2 L7.7,6.2 Z" id="Shape" fill="url(#linearGradient-7)"></path>
81
- </g>
82
- <g transform="translate(51.000000, 181.000000)" id="Clipped">
83
- <g>
84
- <mask id="mask-9" fill="white">
85
- <use xlink:href="#path-8"></use>
86
- </mask>
87
- <g id="SVGID_8_"></g>
88
- <path d="M8.7,5.1 L8.7,63.7 C8.7,66.1 6.8,68 4.4,68 L4.4,68 C2,68 0.1,66.1 0.1,63.7 L0.1,5.1 C0.1,2.7 2,0.8 4.4,0.8 L4.4,0.8 C6.8,0.8 8.7,2.7 8.7,5.1 L8.7,5.1 Z" id="Shape" fill="url(#linearGradient-10)" opacity="0.8" mask="url(#mask-9)"></path>
89
- </g>
90
- <g>
91
- <mask id="mask-12" fill="white">
92
- <use xlink:href="#path-11"></use>
93
- </mask>
94
- <g id="SVGID_11_"></g>
95
- <path d="M-0.2,4.7 L-0.2,64.1 C-0.2,66.5 1.9,68.5 4.5,68.5 C7.1,68.5 9.1,66.6 9.1,64.1 L9.1,4.7 C9.1,2.3 7,0.3 4.4,0.3 C1.8,0.3 -0.2,2.3 -0.2,4.7 L-0.2,4.7 Z M7.6,5.1 L7.6,63.7 C7.6,65.5 6.2,66.9 4.4,66.9 C2.6,66.9 1.2,65.5 1.2,63.7 L1.2,5.1 C1.2,3.3 2.6,1.9 4.4,1.9 C6.2,1.9 7.6,3.3 7.6,5.1 L7.6,5.1 Z" id="Shape" fill="#000000" opacity="0.2" mask="url(#mask-12)"></path>
96
- </g>
97
- <g>
98
- <mask id="mask-14" fill="white">
99
- <use xlink:href="#path-13"></use>
100
- </mask>
101
- <g id="SVGID_13_"></g>
102
- <path d="M0,66.7 L0,68.2 L1.5,68.2 L1.5,66.7 L0,66.7 L0,66.7 Z M0,63.8 L0,65.3 L1.5,65.3 L1.5,63.8 L0,63.8 L0,63.8 Z M0,60.8 L0,62.3 L1.5,62.3 L1.5,60.8 L0,60.8 L0,60.8 Z M0,57.9 L0,59.4 L1.5,59.4 L1.5,57.9 L0,57.9 L0,57.9 Z M0,54.9 L0,56.4 L1.5,56.4 L1.5,54.9 L0,54.9 L0,54.9 Z M0,52 L0,53.5 L1.5,53.5 L1.5,52 L0,52 L0,52 Z M0,49.1 L0,50.6 L1.5,50.6 L1.5,49.1 L0,49.1 L0,49.1 Z M0,46.1 L0,47.6 L1.5,47.6 L1.5,46.1 L0,46.1 L0,46.1 Z M0,43.2 L0,44.7 L1.5,44.7 L1.5,43.2 L0,43.2 L0,43.2 Z M0,40.3 L0,41.8 L1.5,41.8 L1.5,40.3 L0,40.3 L0,40.3 Z M0,37.3 L0,38.8 L1.5,38.8 L1.5,37.3 L0,37.3 L0,37.3 Z M0,34.4 L0,35.9 L1.5,35.9 L1.5,34.4 L0,34.4 L0,34.4 Z M0,31.5 L0,33 L1.5,33 L1.5,31.5 L0,31.5 L0,31.5 Z M0,28.5 L0,30 L1.5,30 L1.5,28.5 L0,28.5 L0,28.5 Z M0,25.6 L0,27.1 L1.5,27.1 L1.5,25.6 L0,25.6 L0,25.6 Z M0,22.6 L0,24.1 L1.5,24.1 L1.5,22.6 L0,22.6 L0,22.6 Z M0,19.7 L0,21.2 L1.5,21.2 L1.5,19.7 L0,19.7 L0,19.7 Z M0,16.8 L0,18.3 L1.5,18.3 L1.5,16.8 L0,16.8 L0,16.8 Z M0,13.9 L0,15.4 L1.5,15.4 L1.5,13.9 L0,13.9 L0,13.9 Z M0,10.9 L0,12.4 L1.5,12.4 L1.5,10.9 L0,10.9 L0,10.9 Z M0,8 L0,9.5 L1.5,9.5 L1.5,8 L0,8 L0,8 Z M0,5 L0,6.5 L1.5,6.5 L1.5,5 L0,5 L0,5 Z M0,2.1 L0,3.6 L1.5,3.6 L1.5,2.1 L0,2.1 L0,2.1 Z M1.5,65.2 L1.5,66.7 L3,66.7 L3,65.2 L1.5,65.2 L1.5,65.2 Z M1.5,62.3 L1.5,63.8 L3,63.8 L3,62.3 L1.5,62.3 L1.5,62.3 Z M1.5,59.3 L1.5,60.8 L3,60.8 L3,59.3 L1.5,59.3 L1.5,59.3 Z M1.5,56.4 L1.5,57.9 L3,57.9 L3,56.4 L1.5,56.4 L1.5,56.4 Z M1.5,53.5 L1.5,55 L3,55 L3,53.5 L1.5,53.5 L1.5,53.5 Z M1.5,50.5 L1.5,52 L3,52 L3,50.5 L1.5,50.5 L1.5,50.5 L1.5,50.5 Z M1.5,47.6 L1.5,49.1 L3,49.1 L3,47.6 L1.5,47.6 L1.5,47.6 Z M1.5,44.7 L1.5,46.2 L3,46.2 L3,44.7 L1.5,44.7 L1.5,44.7 Z M1.5,41.7 L1.5,43.2 L3,43.2 L3,41.7 L1.5,41.7 L1.5,41.7 Z M1.5,38.8 L1.5,40.3 L3,40.3 L3,38.8 L1.5,38.8 L1.5,38.8 Z M1.5,35.9 L1.5,37.4 L3,37.4 L3,35.9 L1.5,35.9 L1.5,35.9 Z M1.5,32.9 L1.5,34.4 L3,34.4 L3,32.9 L1.5,32.9 L1.5,32.9 Z M1.5,30 L1.5,31.5 L3,31.5 L3,30 L1.5,30 L1.5,30 Z M1.5,27.1 L1.5,28.6 L3,28.6 L3,27.1 L1.5,27.1 L1.5,27.1 Z M1.5,24.1 L1.5,25.6 L3,25.6 L3,24.1 L1.5,24.1 L1.5,24.1 Z M1.5,21.2 L1.5,22.7 L3,22.7 L3,21.2 L1.5,21.2 L1.5,21.2 Z M1.5,18.2 L1.5,19.7 L3,19.7 L3,18.2 L1.5,18.2 L1.5,18.2 Z M1.5,15.3 L1.5,16.8 L3,16.8 L3,15.3 L1.5,15.3 L1.5,15.3 Z M1.5,12.4 L1.5,13.9 L3,13.9 L3,12.4 L1.5,12.4 L1.5,12.4 Z M1.5,9.4 L1.5,10.9 L3,10.9 L3,9.4 L1.5,9.4 L1.5,9.4 Z M1.5,6.5 L1.5,8 L3,8 L3,6.5 L1.5,6.5 L1.5,6.5 Z M1.5,3.6 L1.5,5.1 L3,5.1 L3,3.6 L1.5,3.6 L1.5,3.6 Z M1.5,0.6 L1.5,2.1 L3,2.1 L3,0.6 L1.5,0.6 L1.5,0.6 Z M3,66.7 L3,68.2 L4.5,68.2 L4.5,66.7 L3,66.7 L3,66.7 Z M3,63.8 L3,65.3 L4.5,65.3 L4.5,63.8 L3,63.8 L3,63.8 Z M3,60.8 L3,62.3 L4.5,62.3 L4.5,60.8 L3,60.8 L3,60.8 Z M3,57.9 L3,59.4 L4.5,59.4 L4.5,57.9 L3,57.9 L3,57.9 Z M3,54.9 L3,56.4 L4.5,56.4 L4.5,54.9 L3,54.9 L3,54.9 Z M3,52 L3,53.5 L4.5,53.5 L4.5,52 L3,52 L3,52 Z M3,49.1 L3,50.6 L4.5,50.6 L4.5,49.1 L3,49.1 L3,49.1 Z M3,46.1 L3,47.6 L4.5,47.6 L4.5,46.1 L3,46.1 L3,46.1 Z M3,43.2 L3,44.7 L4.5,44.7 L4.5,43.2 L3,43.2 L3,43.2 Z M3,40.3 L3,41.8 L4.5,41.8 L4.5,40.3 L3,40.3 L3,40.3 Z M3,37.3 L3,38.8 L4.5,38.8 L4.5,37.3 L3,37.3 L3,37.3 Z M3,34.4 L3,35.9 L4.5,35.9 L4.5,34.4 L3,34.4 L3,34.4 Z M3,31.5 L3,33 L4.5,33 L4.5,31.5 L3,31.5 L3,31.5 Z M3,28.5 L3,30 L4.5,30 L4.5,28.5 L3,28.5 L3,28.5 Z M3,25.6 L3,27.1 L4.5,27.1 L4.5,25.6 L3,25.6 L3,25.6 Z M3,22.6 L3,24.1 L4.5,24.1 L4.5,22.6 L3,22.6 L3,22.6 Z M3,19.7 L3,21.2 L4.5,21.2 L4.5,19.7 L3,19.7 L3,19.7 Z M3,16.8 L3,18.3 L4.5,18.3 L4.5,16.8 L3,16.8 L3,16.8 Z M3,13.9 L3,15.4 L4.5,15.4 L4.5,13.9 L3,13.9 L3,13.9 Z M3,10.9 L3,12.4 L4.5,12.4 L4.5,10.9 L3,10.9 L3,10.9 Z M3,8 L3,9.5 L4.5,9.5 L4.5,8 L3,8 L3,8 Z M3,5 L3,6.5 L4.5,6.5 L4.5,5 L3,5 L3,5 Z M3,2.1 L3,3.6 L4.5,3.6 L4.5,2.1 L3,2.1 L3,2.1 Z M4.4,65.2 L4.4,66.7 L5.9,66.7 L5.9,65.2 L4.4,65.2 L4.4,65.2 Z M4.4,62.3 L4.4,63.8 L5.9,63.8 L5.9,62.3 L4.4,62.3 L4.4,62.3 Z M4.4,59.3 L4.4,60.8 L5.9,60.8 L5.9,59.3 L4.4,59.3 L4.4,59.3 Z M4.4,56.4 L4.4,57.9 L5.9,57.9 L5.9,56.4 L4.4,56.4 L4.4,56.4 Z M4.4,53.5 L4.4,55 L5.9,55 L5.9,53.5 L4.4,53.5 L4.4,53.5 Z M4.4,50.5 L4.4,52 L5.9,52 L5.9,50.5 L4.4,50.5 L4.4,50.5 L4.4,50.5 Z M4.4,47.6 L4.4,49.1 L5.9,49.1 L5.9,47.6 L4.4,47.6 L4.4,47.6 Z M4.4,44.7 L4.4,46.2 L5.9,46.2 L5.9,44.7 L4.4,44.7 L4.4,44.7 Z M4.4,41.7 L4.4,43.2 L5.9,43.2 L5.9,41.7 L4.4,41.7 L4.4,41.7 Z M4.4,38.8 L4.4,40.3 L5.9,40.3 L5.9,38.8 L4.4,38.8 L4.4,38.8 Z M4.4,35.9 L4.4,37.4 L5.9,37.4 L5.9,35.9 L4.4,35.9 L4.4,35.9 Z M4.4,32.9 L4.4,34.4 L5.9,34.4 L5.9,32.9 L4.4,32.9 L4.4,32.9 Z M4.4,30 L4.4,31.5 L5.9,31.5 L5.9,30 L4.4,30 L4.4,30 Z M4.4,27.1 L4.4,28.6 L5.9,28.6 L5.9,27.1 L4.4,27.1 L4.4,27.1 Z M4.4,24.1 L4.4,25.6 L5.9,25.6 L5.9,24.1 L4.4,24.1 L4.4,24.1 Z M4.4,21.2 L4.4,22.7 L5.9,22.7 L5.9,21.2 L4.4,21.2 L4.4,21.2 Z M4.4,18.2 L4.4,19.7 L5.9,19.7 L5.9,18.2 L4.4,18.2 L4.4,18.2 Z M4.4,15.3 L4.4,16.8 L5.9,16.8 L5.9,15.3 L4.4,15.3 L4.4,15.3 Z M4.4,12.4 L4.4,13.9 L5.9,13.9 L5.9,12.4 L4.4,12.4 L4.4,12.4 Z M4.4,9.4 L4.4,10.9 L5.9,10.9 L5.9,9.4 L4.4,9.4 L4.4,9.4 Z M4.4,6.5 L4.4,8 L5.9,8 L5.9,6.5 L4.4,6.5 L4.4,6.5 Z M4.4,3.6 L4.4,5.1 L5.9,5.1 L5.9,3.6 L4.4,3.6 L4.4,3.6 Z M4.4,0.6 L4.4,2.1 L5.9,2.1 L5.9,0.6 L4.4,0.6 L4.4,0.6 Z M5.9,66.7 L5.9,68.2 L7.4,68.2 L7.4,66.7 L5.9,66.7 L5.9,66.7 Z M5.9,63.8 L5.9,65.3 L7.4,65.3 L7.4,63.8 L5.9,63.8 L5.9,63.8 Z M5.9,60.8 L5.9,62.3 L7.4,62.3 L7.4,60.8 L5.9,60.8 L5.9,60.8 Z M5.9,57.9 L5.9,59.4 L7.4,59.4 L7.4,57.9 L5.9,57.9 L5.9,57.9 Z M5.9,54.9 L5.9,56.4 L7.4,56.4 L7.4,54.9 L5.9,54.9 L5.9,54.9 Z M5.9,52 L5.9,53.5 L7.4,53.5 L7.4,52 L5.9,52 L5.9,52 Z M5.9,49.1 L5.9,50.6 L7.4,50.6 L7.4,49.1 L5.9,49.1 L5.9,49.1 Z M5.9,46.1 L5.9,47.6 L7.4,47.6 L7.4,46.1 L5.9,46.1 L5.9,46.1 Z M5.9,43.2 L5.9,44.7 L7.4,44.7 L7.4,43.2 L5.9,43.2 L5.9,43.2 Z M5.9,40.3 L5.9,41.8 L7.4,41.8 L7.4,40.3 L5.9,40.3 L5.9,40.3 Z M5.9,37.3 L5.9,38.8 L7.4,38.8 L7.4,37.3 L5.9,37.3 L5.9,37.3 Z M5.9,34.4 L5.9,35.9 L7.4,35.9 L7.4,34.4 L5.9,34.4 L5.9,34.4 Z M5.9,31.5 L5.9,33 L7.4,33 L7.4,31.5 L5.9,31.5 L5.9,31.5 Z M5.9,28.5 L5.9,30 L7.4,30 L7.4,28.5 L5.9,28.5 L5.9,28.5 Z M5.9,25.6 L5.9,27.1 L7.4,27.1 L7.4,25.6 L5.9,25.6 L5.9,25.6 Z M5.9,22.6 L5.9,24.1 L7.4,24.1 L7.4,22.6 L5.9,22.6 L5.9,22.6 Z M5.9,19.7 L5.9,21.2 L7.4,21.2 L7.4,19.7 L5.9,19.7 L5.9,19.7 Z M5.9,16.8 L5.9,18.3 L7.4,18.3 L7.4,16.8 L5.9,16.8 L5.9,16.8 Z M5.9,13.9 L5.9,15.4 L7.4,15.4 L7.4,13.9 L5.9,13.9 L5.9,13.9 Z M5.9,10.9 L5.9,12.4 L7.4,12.4 L7.4,10.9 L5.9,10.9 L5.9,10.9 Z M5.9,8 L5.9,9.5 L7.4,9.5 L7.4,8 L5.9,8 L5.9,8 Z M5.9,5 L5.9,6.5 L7.4,6.5 L7.4,5 L5.9,5 L5.9,5 Z M5.9,2.1 L5.9,3.6 L7.4,3.6 L7.4,2.1 L5.9,2.1 L5.9,2.1 Z M7.3,65.2 L7.3,66.7 L8.8,66.7 L8.8,65.2 L7.3,65.2 L7.3,65.2 Z M7.3,62.3 L7.3,63.8 L8.8,63.8 L8.8,62.3 L7.3,62.3 L7.3,62.3 Z M7.3,59.3 L7.3,60.8 L8.8,60.8 L8.8,59.3 L7.3,59.3 L7.3,59.3 Z M7.3,56.4 L7.3,57.9 L8.8,57.9 L8.8,56.4 L7.3,56.4 L7.3,56.4 Z M7.3,53.5 L7.3,55 L8.8,55 L8.8,53.5 L7.3,53.5 L7.3,53.5 Z M7.3,50.5 L7.3,52 L8.8,52 L8.8,50.5 L7.3,50.5 L7.3,50.5 L7.3,50.5 Z M7.3,47.6 L7.3,49.1 L8.8,49.1 L8.8,47.6 L7.3,47.6 L7.3,47.6 Z M7.3,44.7 L7.3,46.2 L8.8,46.2 L8.8,44.7 L7.3,44.7 L7.3,44.7 Z M7.3,41.7 L7.3,43.2 L8.8,43.2 L8.8,41.7 L7.3,41.7 L7.3,41.7 Z M7.3,38.8 L7.3,40.3 L8.8,40.3 L8.8,38.8 L7.3,38.8 L7.3,38.8 Z M7.3,35.9 L7.3,37.4 L8.8,37.4 L8.8,35.9 L7.3,35.9 L7.3,35.9 Z M7.3,32.9 L7.3,34.4 L8.8,34.4 L8.8,32.9 L7.3,32.9 L7.3,32.9 Z M7.3,30 L7.3,31.5 L8.8,31.5 L8.8,30 L7.3,30 L7.3,30 Z M7.3,27.1 L7.3,28.6 L8.8,28.6 L8.8,27.1 L7.3,27.1 L7.3,27.1 Z M7.3,24.1 L7.3,25.6 L8.8,25.6 L8.8,24.1 L7.3,24.1 L7.3,24.1 Z M7.3,21.2 L7.3,22.7 L8.8,22.7 L8.8,21.2 L7.3,21.2 L7.3,21.2 Z M7.3,18.2 L7.3,19.7 L8.8,19.7 L8.8,18.2 L7.3,18.2 L7.3,18.2 Z M7.3,15.3 L7.3,16.8 L8.8,16.8 L8.8,15.3 L7.3,15.3 L7.3,15.3 Z M7.3,12.4 L7.3,13.9 L8.8,13.9 L8.8,12.4 L7.3,12.4 L7.3,12.4 Z M7.3,9.4 L7.3,10.9 L8.8,10.9 L8.8,9.4 L7.3,9.4 L7.3,9.4 Z M7.3,6.5 L7.3,8 L8.8,8 L8.8,6.5 L7.3,6.5 L7.3,6.5 Z M7.3,3.6 L7.3,5.1 L8.8,5.1 L8.8,3.6 L7.3,3.6 L7.3,3.6 Z M7.3,0.6 L7.3,2.1 L8.8,2.1 L8.8,0.6 L7.3,0.6 L7.3,0.6 Z" id="Shape" fill="#2E2E2E" mask="url(#mask-14)"></path>
103
- </g>
104
- </g>
105
- <path d="M820.9,182.9 C802.8,182.9 788.1,197.6 788.1,215.7 C788.1,233.8 802.8,248.5 820.9,248.5 C839,248.5 853.7,233.8 853.7,215.7 C853.7,197.6 839,182.9 820.9,182.9 L820.9,182.9 Z M820.9,245.6 C804.4,245.6 791.1,232.2 791.1,215.8 C791.1,199.4 804.4,186 820.9,186 C837.4,186 850.7,199.4 850.7,215.8 C850.7,232.2 837.3,245.6 820.9,245.6 L820.9,245.6 Z" id="Shape" fill="url(#linearGradient-15)"></path>
106
- </g>
107
- <rect id="Rectangle-path" fill="#000000" x="106" y="28" width="667" height="375"></rect>
108
- </g>
109
- </g>
110
- </g>
111
- </svg>
@@ -1,116 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg width="431px" height="877px" viewBox="0 0 431 877" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>iPhone 6</title>
4
- <defs>
5
- <linearGradient x1="49.9843147%" y1="-0.0652528548%" x2="49.9843147%" y2="100.081566%" id="linearGradient-1">
6
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="0%"></stop>
7
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="11.69%"></stop>
8
- <stop stop-color="#FFFFFF" stop-opacity="0.00509108" offset="87.64%"></stop>
9
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="100%"></stop>
10
- </linearGradient>
11
- <linearGradient x1="-28.7505648%" y1="28.4302458%" x2="128.768345%" y2="71.576267%" id="linearGradient-2">
12
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="0%"></stop>
13
- <stop stop-color="#FFFFFF" stop-opacity="0.05" offset="13.73%"></stop>
14
- <stop stop-color="#FFFFFF" stop-opacity="0.02" offset="88.31%"></stop>
15
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="100%"></stop>
16
- </linearGradient>
17
- <radialGradient cx="50.0657895%" cy="50%" fx="50.0657895%" fy="50%" r="49.6710526%" id="radialGradient-3">
18
- <stop stop-color="#5D5D5F" offset="0%"></stop>
19
- <stop stop-color="#333333" stop-opacity="0.8" offset="100%"></stop>
20
- </radialGradient>
21
- <radialGradient cx="50.5113431%" cy="57.0965797%" fx="50.5113431%" fy="57.0965797%" r="49.6414474%" id="radialGradient-4">
22
- <stop stop-color="#000000" stop-opacity="0" offset="0%"></stop>
23
- <stop stop-color="#020202" stop-opacity="0.4119" offset="51.49%"></stop>
24
- <stop stop-color="#090909" stop-opacity="0.5603" offset="70.03%"></stop>
25
- <stop stop-color="#141414" stop-opacity="0.666" offset="83.25%"></stop>
26
- <stop stop-color="#252525" stop-opacity="0.7509" offset="93.87%"></stop>
27
- <stop stop-color="#333333" stop-opacity="0.8" offset="100%"></stop>
28
- </radialGradient>
29
- <radialGradient cx="47.8584278%" cy="96.1408161%" fx="47.8584278%" fy="96.1408161%" r="95.1797297%" id="radialGradient-5">
30
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="0%"></stop>
31
- <stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
32
- </radialGradient>
33
- <radialGradient cx="51.01503%" cy="23.676875%" fx="51.01503%" fy="23.676875%" r="58.14%" id="radialGradient-6">
34
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="0%"></stop>
35
- <stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
36
- </radialGradient>
37
- <linearGradient x1="48.2624993%" y1="6.12081973%" x2="48.2643405%" y2="109.94082%" id="linearGradient-7">
38
- <stop stop-color="#FFFFFF" stop-opacity="0.6" offset="0%"></stop>
39
- <stop stop-color="#FFFFFF" stop-opacity="0.1" offset="100%"></stop>
40
- </linearGradient>
41
- <path id="path-8" d="M63.8,8.9 L5.2,8.9 C2.8,8.9 0.9,7 0.9,4.6 L0.9,4.6 C0.9,2.2 2.8,0.3 5.2,0.3 L63.8,0.3 C66.2,0.3 68.1,2.2 68.1,4.6 L68.1,4.6 C68.1,7 66.2,8.9 63.8,8.9 L63.8,8.9 Z"></path>
42
- <linearGradient x1="50.0297245%" y1="100.349273%" x2="50.0297245%" y2="0.581987558%" id="linearGradient-10">
43
- <stop stop-color="#2E2E31" offset="0%"></stop>
44
- <stop stop-color="#616161" offset="24.48%"></stop>
45
- <stop stop-color="#858585" offset="81.37%"></stop>
46
- <stop stop-color="#2E2E31" offset="100%"></stop>
47
- </linearGradient>
48
- <path id="path-11" d="M63.8,8.9 L5.2,8.9 C2.8,8.9 0.9,7 0.9,4.6 L0.9,4.6 C0.9,2.2 2.8,0.3 5.2,0.3 L63.8,0.3 C66.2,0.3 68.1,2.2 68.1,4.6 L68.1,4.6 C68.1,7 66.2,8.9 63.8,8.9 L63.8,8.9 Z"></path>
49
- <path id="path-13" d="M63.8,8.9 L5.2,8.9 C2.8,8.9 0.9,7 0.9,4.6 L0.9,4.6 C0.9,2.2 2.8,0.3 5.2,0.3 L63.8,0.3 C66.2,0.3 68.1,2.2 68.1,4.6 L68.1,4.6 C68.1,7 66.2,8.9 63.8,8.9 L63.8,8.9 Z"></path>
50
- <linearGradient x1="86.3503805%" y1="91.9339939%" x2="14.0585997%" y2="8.60320122%" id="linearGradient-15">
51
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="14.7%"></stop>
52
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="40.73%"></stop>
53
- <stop stop-color="#FFFFFF" stop-opacity="0.00509108" offset="74.45%"></stop>
54
- <stop stop-color="#FFFFFF" stop-opacity="0.2" offset="100%"></stop>
55
- </linearGradient>
56
- <linearGradient x1="-34.1719072%" y1="-2.09287997%" x2="28.847616%" y2="36.9142223%" id="linearGradient-16">
57
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="0%"></stop>
58
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
59
- </linearGradient>
60
- </defs>
61
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
62
- <g id="iphone6-portrait" transform="translate(0.000000, 1.000000)">
63
- <g id="Group">
64
- <path d="M6,144.5 L2.2,144.5 C1.2,144.5 0.3,143.7 0.3,142.6 L0.3,112.6 C0.3,111.6 1.1,110.7 2.2,110.7 L6,110.7 L6,144.5 L6,144.5 Z" id="Shape" fill="#808086"></path>
65
- <path d="M0.6,189.7 C0.6,188.7 1.4,187.8 2.5,187.8 L6.2,187.8 L6.2,249 L2.4,249 C1.4,249 0.5,248.2 0.5,247.1" id="Shape" fill="#808086"></path>
66
- <path d="M424.7,187.2 L428.4,187.2 C429.4,187.2 430.3,188 430.3,189.1 L430.3,246.5 C430.3,247.5 429.5,248.4 428.4,248.4 L424.7,248.4 L424.7,187.2 L424.7,187.2 Z" id="Shape" fill="#818187"></path>
67
- <path d="M6.2,328.7 L2.4,328.7 C1.4,328.7 0.5,327.9 0.5,326.8 L0.5,269.4 C0.5,268.4 1.3,267.5 2.4,267.5 L6.1,267.5 L6.1,328.7 L6.2,328.7 Z" id="Shape" fill="#808086"></path>
68
- <path d="M67.7,870.2 C51.8,870.2 36.8,864 25.6,852.7 C14.4,841.4 8.1,826.5 8.1,810.6 L8.1,64.7 C8.1,48.8 14.3,33.8 25.6,22.6 C36.9,11.4 51.8,5.1 67.7,5.1 L362.5,5.1 C378.4,5.1 393.4,11.3 404.6,22.6 C415.8,33.9 422.1,48.8 422.1,64.7 L422.1,810.6 C422.1,826.5 415.9,841.5 404.6,852.7 C393.3,863.9 378.4,870.2 362.5,870.2 L67.7,870.2 L67.7,870.2 L67.7,870.2 Z" id="Shape" fill="#404040"></path>
69
- <g transform="translate(3.000000, 0.000000)" id="Shape">
70
- <path d="M64.9,875.4 C29.1,875.4 0,846.3 0,810.5 L0,64.9 C0,29.1 29.1,0 64.9,0 L359.3,0 C395.1,0 424.2,29.1 424.2,64.9 L424.2,810.5 C424.2,846.3 395.1,875.4 359.3,875.4 L64.9,875.4 L64.9,875.4 L64.9,875.4 Z" stroke-opacity="0.5" stroke="#666666" fill="#B2B2B2"></path>
71
- <path d="M359.4,870.4 L64.9,870.4 C31.8,870.4 5,843.6 5,810.5 L5,64.9 C5,31.8 31.8,5 64.9,5 L359.3,5 C392.4,5 419.2,31.8 419.2,64.9 L419.2,810.5 C419.3,843.6 392.5,870.4 359.4,870.4 L359.4,870.4 Z" fill="#262626"></path>
72
- </g>
73
- <path d="M362.5,5 L67.7,5 C34.7,5 8,31.7 8,64.7 L8,66.3 C8,33.3 34.8,6.5 67.8,6.5 L362.6,6.5 C395.6,6.5 422.4,33.3 422.4,66.3 L422.4,64.7 C422.3,31.7 395.5,5 362.5,5 L362.5,5 Z" id="Shape" fill="url(#linearGradient-1)"></path>
74
- <path d="M362.5,8.5 L67.7,8.5 C36.7,8.5 11.5,33.7 11.5,64.7 L11.5,810.6 C11.5,841.6 36.7,866.8 67.7,866.8 L362.5,866.8 C393.5,866.8 418.7,841.6 418.7,810.6 L418.7,64.7 C418.7,33.7 393.5,8.5 362.5,8.5 L362.5,8.5 Z M412.7,810.7 C412.7,838.4 390.2,860.9 362.5,860.9 L67.7,860.9 C40,860.9 17.5,838.4 17.5,810.7 L17.5,64.7 C17.5,37 40,14.5 67.7,14.5 L362.5,14.5 C390.2,14.5 412.7,37 412.7,64.7 L412.7,810.7 L412.7,810.7 Z" id="Shape" fill="url(#linearGradient-2)"></path>
75
- <g transform="translate(139.000000, 46.000000)">
76
- <circle id="Oval" fill="url(#radialGradient-3)" cx="8.2" cy="7.9" r="7.6"></circle>
77
- <circle id="Oval" fill="url(#radialGradient-4)" opacity="0.8" cx="8.2" cy="7.9" r="7.6"></circle>
78
- <circle id="Oval" fill="#1B1A1F" cx="8.2" cy="7.9" r="5"></circle>
79
- <circle id="Oval" fill="#36284C" cx="8.2" cy="7.9" r="3.7"></circle>
80
- <circle id="Oval" fill="url(#radialGradient-5)" cx="8.2" cy="7.9" r="3.7"></circle>
81
- <g transform="translate(6.000000, 5.000000)" id="Shape">
82
- <path d="M4.2,2.9 C4.2,4 3.3,4.9 2.2,4.9 C1.1,4.9 0.2,4 0.2,2.9 C0.2,1.8 1.1,0.9 2.2,0.9 C3.3,0.9 4.2,1.8 4.2,2.9 L4.2,2.9 Z" fill="#141414" opacity="0.5"></path>
83
- <path d="M4.2,2.9 C4.2,4 3.3,4.9 2.2,4.9 C1.1,4.9 0.2,4 0.2,2.9 C0.2,1.8 1.1,0.9 2.2,0.9 C3.3,0.9 4.2,1.8 4.2,2.9 L4.2,2.9 Z" fill="url(#radialGradient-6)"></path>
84
- </g>
85
- <path d="M8.2,6.4 C7.8,6.4 7.4,6.6 7.1,6.9 L7.6,7.4 C7.8,7.2 8,7.1 8.2,7.1 C8.5,7.1 8.7,7.2 8.9,7.4 L9.4,6.9 C9.1,6.6 8.7,6.4 8.2,6.4 L8.2,6.4 Z" id="Shape" fill="url(#linearGradient-7)"></path>
86
- </g>
87
- <g transform="translate(181.000000, 50.000000)" id="Clipped">
88
- <g>
89
- <mask id="mask-9" fill="white">
90
- <use xlink:href="#path-8"></use>
91
- </mask>
92
- <g id="SVGID_8_"></g>
93
- <path d="M63.8,8.9 L5.2,8.9 C2.8,8.9 0.9,7 0.9,4.6 L0.9,4.6 C0.9,2.2 2.8,0.3 5.2,0.3 L63.8,0.3 C66.2,0.3 68.1,2.2 68.1,4.6 L68.1,4.6 C68.1,7 66.2,8.9 63.8,8.9 L63.8,8.9 Z" id="Shape" fill="url(#linearGradient-10)" opacity="0.8" mask="url(#mask-9)"></path>
94
- </g>
95
- <g>
96
- <mask id="mask-12" fill="white">
97
- <use xlink:href="#path-11"></use>
98
- </mask>
99
- <g id="SVGID_11_"></g>
100
- <path d="M2.3,0.2 L0.8,0.2 L0.8,1.7 L2.3,1.7 L2.3,0.2 L2.3,0.2 Z M5.3,0.2 L3.8,0.2 L3.8,1.7 L5.3,1.7 L5.3,0.2 L5.3,0.2 Z M8.2,0.2 L6.7,0.2 L6.7,1.7 L8.2,1.7 L8.2,0.2 L8.2,0.2 Z M11.1,0.2 L9.6,0.2 L9.6,1.7 L11.1,1.7 L11.1,0.2 L11.1,0.2 Z M14.1,0.2 L12.6,0.2 L12.6,1.7 L14.1,1.7 L14.1,0.2 L14.1,0.2 Z M17,0.2 L15.5,0.2 L15.5,1.7 L17,1.7 L17,0.2 L17,0.2 Z M19.9,0.2 L18.4,0.2 L18.4,1.7 L19.9,1.7 L19.9,0.2 L19.9,0.2 Z M22.9,0.2 L21.4,0.2 L21.4,1.7 L22.9,1.7 L22.9,0.2 L22.9,0.2 Z M25.8,0.2 L24.3,0.2 L24.3,1.7 L25.8,1.7 L25.8,0.2 L25.8,0.2 Z M28.8,0.2 L27.3,0.2 L27.3,1.7 L28.8,1.7 L28.8,0.2 L28.8,0.2 Z M31.7,0.2 L30.2,0.2 L30.2,1.7 L31.7,1.7 L31.7,0.2 L31.7,0.2 Z M34.6,0.2 L33.1,0.2 L33.1,1.7 L34.6,1.7 L34.6,0.2 L34.6,0.2 Z M37.6,0.2 L36.1,0.2 L36.1,1.7 L37.6,1.7 L37.6,0.2 L37.6,0.2 Z M40.5,0.2 L39,0.2 L39,1.7 L40.5,1.7 L40.5,0.2 L40.5,0.2 Z M43.4,0.2 L41.9,0.2 L41.9,1.7 L43.4,1.7 L43.4,0.2 L43.4,0.2 Z M46.4,0.2 L44.9,0.2 L44.9,1.7 L46.4,1.7 L46.4,0.2 L46.4,0.2 Z M49.3,0.2 L47.8,0.2 L47.8,1.7 L49.3,1.7 L49.3,0.2 L49.3,0.2 Z M52.2,0.2 L50.7,0.2 L50.7,1.7 L52.2,1.7 L52.2,0.2 L52.2,0.2 Z M55.2,0.2 L53.7,0.2 L53.7,1.7 L55.2,1.7 L55.2,0.2 L55.2,0.2 Z M58.1,0.2 L56.6,0.2 L56.6,1.7 L58.1,1.7 L58.1,0.2 L58.1,0.2 Z M61,0.2 L59.5,0.2 L59.5,1.7 L61,1.7 L61,0.2 L61,0.2 Z M64,0.2 L62.5,0.2 L62.5,1.7 L64,1.7 L64,0.2 L64,0.2 Z M66.9,0.2 L65.4,0.2 L65.4,1.7 L66.9,1.7 L66.9,0.2 L66.9,0.2 Z M3.8,1.7 L2.3,1.7 L2.3,3.2 L3.8,3.2 L3.8,1.7 L3.8,1.7 Z M6.7,1.7 L5.2,1.7 L5.2,3.2 L6.7,3.2 L6.7,1.7 L6.7,1.7 Z M9.7,1.7 L8.2,1.7 L8.2,3.2 L9.7,3.2 L9.7,1.7 L9.7,1.7 Z M12.6,1.7 L11.1,1.7 L11.1,3.2 L12.6,3.2 L12.6,1.7 L12.6,1.7 Z M15.5,1.7 L14,1.7 L14,3.2 L15.5,3.2 L15.5,1.7 L15.5,1.7 Z M18.5,1.7 L17,1.7 L17,3.2 L18.5,3.2 L18.5,1.7 L18.5,1.7 Z M21.4,1.7 L19.9,1.7 L19.9,3.2 L21.4,3.2 L21.4,1.7 L21.4,1.7 Z M24.3,1.7 L22.8,1.7 L22.8,3.2 L24.3,3.2 L24.3,1.7 L24.3,1.7 Z M27.3,1.7 L25.8,1.7 L25.8,3.2 L27.3,3.2 L27.3,1.7 L27.3,1.7 Z M30.2,1.7 L28.7,1.7 L28.7,3.2 L30.2,3.2 L30.2,1.7 L30.2,1.7 Z M33.1,1.7 L31.6,1.7 L31.6,3.2 L33.1,3.2 L33.1,1.7 L33.1,1.7 Z M36.1,1.7 L34.6,1.7 L34.6,3.2 L36.1,3.2 L36.1,1.7 L36.1,1.7 Z M39,1.7 L37.5,1.7 L37.5,3.2 L39,3.2 L39,1.7 L39,1.7 Z M41.9,1.7 L40.4,1.7 L40.4,3.2 L41.9,3.2 L41.9,1.7 L41.9,1.7 Z M44.9,1.7 L43.4,1.7 L43.4,3.2 L44.9,3.2 L44.9,1.7 L44.9,1.7 Z M47.8,1.7 L46.3,1.7 L46.3,3.2 L47.8,3.2 L47.8,1.7 L47.8,1.7 Z M50.8,1.7 L49.3,1.7 L49.3,3.2 L50.8,3.2 L50.8,1.7 L50.8,1.7 Z M53.7,1.7 L52.2,1.7 L52.2,3.2 L53.7,3.2 L53.7,1.7 L53.7,1.7 Z M56.6,1.7 L55.1,1.7 L55.1,3.2 L56.6,3.2 L56.6,1.7 L56.6,1.7 Z M59.6,1.7 L58.1,1.7 L58.1,3.2 L59.6,3.2 L59.6,1.7 L59.6,1.7 Z M62.5,1.7 L61,1.7 L61,3.2 L62.5,3.2 L62.5,1.7 L62.5,1.7 Z M65.4,1.7 L64,1.7 L64,3.2 L65.5,3.2 L65.5,1.7 L65.4,1.7 Z M68.4,1.7 L66.9,1.7 L66.9,3.2 L68.4,3.2 L68.4,1.7 L68.4,1.7 Z M2.3,3.2 L0.8,3.2 L0.8,4.7 L2.3,4.7 L2.3,3.2 L2.3,3.2 Z M5.3,3.2 L3.8,3.2 L3.8,4.7 L5.3,4.7 L5.3,3.2 L5.3,3.2 Z M8.2,3.2 L6.7,3.2 L6.7,4.7 L8.2,4.7 L8.2,3.2 L8.2,3.2 Z M11.1,3.2 L9.6,3.2 L9.6,4.7 L11.1,4.7 L11.1,3.2 L11.1,3.2 Z M14.1,3.2 L12.6,3.2 L12.6,4.7 L14.1,4.7 L14.1,3.2 L14.1,3.2 Z M17,3.2 L15.5,3.2 L15.5,4.7 L17,4.7 L17,3.2 L17,3.2 Z M19.9,3.2 L18.4,3.2 L18.4,4.7 L19.9,4.7 L19.9,3.2 L19.9,3.2 Z M22.9,3.2 L21.4,3.2 L21.4,4.7 L22.9,4.7 L22.9,3.2 L22.9,3.2 Z M25.8,3.2 L24.3,3.2 L24.3,4.7 L25.8,4.7 L25.8,3.2 L25.8,3.2 Z M28.8,3.2 L27.3,3.2 L27.3,4.7 L28.8,4.7 L28.8,3.2 L28.8,3.2 Z M31.7,3.2 L30.2,3.2 L30.2,4.7 L31.7,4.7 L31.7,3.2 L31.7,3.2 Z M34.6,3.2 L33.1,3.2 L33.1,4.7 L34.6,4.7 L34.6,3.2 L34.6,3.2 Z M37.6,3.2 L36.1,3.2 L36.1,4.7 L37.6,4.7 L37.6,3.2 L37.6,3.2 Z M40.5,3.2 L39,3.2 L39,4.7 L40.5,4.7 L40.5,3.2 L40.5,3.2 Z M43.4,3.2 L41.9,3.2 L41.9,4.7 L43.4,4.7 L43.4,3.2 L43.4,3.2 Z M46.4,3.2 L44.9,3.2 L44.9,4.7 L46.4,4.7 L46.4,3.2 L46.4,3.2 Z M49.3,3.2 L47.8,3.2 L47.8,4.7 L49.3,4.7 L49.3,3.2 L49.3,3.2 Z M52.2,3.2 L50.7,3.2 L50.7,4.7 L52.2,4.7 L52.2,3.2 L52.2,3.2 Z M55.2,3.2 L53.7,3.2 L53.7,4.7 L55.2,4.7 L55.2,3.2 L55.2,3.2 Z M58.1,3.2 L56.6,3.2 L56.6,4.7 L58.1,4.7 L58.1,3.2 L58.1,3.2 Z M61,3.2 L59.5,3.2 L59.5,4.7 L61,4.7 L61,3.2 L61,3.2 Z M64,3.2 L62.5,3.2 L62.5,4.7 L64,4.7 L64,3.2 L64,3.2 Z M66.9,3.2 L65.4,3.2 L65.4,4.7 L66.9,4.7 L66.9,3.2 L66.9,3.2 Z M3.8,4.7 L2.3,4.7 L2.3,6.2 L3.8,6.2 L3.8,4.7 L3.8,4.7 Z M6.7,4.7 L5.2,4.7 L5.2,6.2 L6.7,6.2 L6.7,4.7 L6.7,4.7 Z M9.7,4.7 L8.2,4.7 L8.2,6.2 L9.7,6.2 L9.7,4.7 L9.7,4.7 Z M12.6,4.7 L11.1,4.7 L11.1,6.2 L12.6,6.2 L12.6,4.7 L12.6,4.7 Z M15.5,4.7 L14,4.7 L14,6.2 L15.5,6.2 L15.5,4.7 L15.5,4.7 Z M18.5,4.7 L17,4.7 L17,6.2 L18.5,6.2 L18.5,4.7 L18.5,4.7 Z M21.4,4.7 L19.9,4.7 L19.9,6.2 L21.4,6.2 L21.4,4.7 L21.4,4.7 Z M24.3,4.7 L22.8,4.7 L22.8,6.2 L24.3,6.2 L24.3,4.7 L24.3,4.7 Z M27.3,4.7 L25.8,4.7 L25.8,6.2 L27.3,6.2 L27.3,4.7 L27.3,4.7 Z M30.2,4.7 L28.7,4.7 L28.7,6.2 L30.2,6.2 L30.2,4.7 L30.2,4.7 Z M33.1,4.7 L31.6,4.7 L31.6,6.2 L33.1,6.2 L33.1,4.7 L33.1,4.7 Z M36.1,4.7 L34.6,4.7 L34.6,6.2 L36.1,6.2 L36.1,4.7 L36.1,4.7 Z M39,4.7 L37.5,4.7 L37.5,6.2 L39,6.2 L39,4.7 L39,4.7 Z M41.9,4.7 L40.4,4.7 L40.4,6.2 L41.9,6.2 L41.9,4.7 L41.9,4.7 Z M44.9,4.7 L43.4,4.7 L43.4,6.2 L44.9,6.2 L44.9,4.7 L44.9,4.7 Z M47.8,4.7 L46.3,4.7 L46.3,6.2 L47.8,6.2 L47.8,4.7 L47.8,4.7 Z M50.8,4.7 L49.3,4.7 L49.3,6.2 L50.8,6.2 L50.8,4.7 L50.8,4.7 Z M53.7,4.7 L52.2,4.7 L52.2,6.2 L53.7,6.2 L53.7,4.7 L53.7,4.7 Z M56.6,4.7 L55.1,4.7 L55.1,6.2 L56.6,6.2 L56.6,4.7 L56.6,4.7 Z M59.6,4.7 L58.1,4.7 L58.1,6.2 L59.6,6.2 L59.6,4.7 L59.6,4.7 Z M62.5,4.7 L61,4.7 L61,6.2 L62.5,6.2 L62.5,4.7 L62.5,4.7 Z M65.4,4.7 L64,4.7 L64,6.2 L65.5,6.2 L65.5,4.7 L65.4,4.7 Z M68.4,4.7 L66.9,4.7 L66.9,6.2 L68.4,6.2 L68.4,4.7 L68.4,4.7 Z M2.3,6.1 L0.8,6.1 L0.8,7.6 L2.3,7.6 L2.3,6.1 L2.3,6.1 Z M5.3,6.1 L3.8,6.1 L3.8,7.6 L5.3,7.6 L5.3,6.1 L5.3,6.1 Z M8.2,6.1 L6.7,6.1 L6.7,7.6 L8.2,7.6 L8.2,6.1 L8.2,6.1 Z M11.1,6.1 L9.6,6.1 L9.6,7.6 L11.1,7.6 L11.1,6.1 L11.1,6.1 Z M14.1,6.1 L12.6,6.1 L12.6,7.6 L14.1,7.6 L14.1,6.1 L14.1,6.1 Z M17,6.1 L15.5,6.1 L15.5,7.6 L17,7.6 L17,6.1 L17,6.1 Z M19.9,6.1 L18.4,6.1 L18.4,7.6 L19.9,7.6 L19.9,6.1 L19.9,6.1 Z M22.9,6.1 L21.4,6.1 L21.4,7.6 L22.9,7.6 L22.9,6.1 L22.9,6.1 Z M25.8,6.1 L24.3,6.1 L24.3,7.6 L25.8,7.6 L25.8,6.1 L25.8,6.1 Z M28.8,6.1 L27.3,6.1 L27.3,7.6 L28.8,7.6 L28.8,6.1 L28.8,6.1 Z M31.7,6.1 L30.2,6.1 L30.2,7.6 L31.7,7.6 L31.7,6.1 L31.7,6.1 Z M34.6,6.1 L33.1,6.1 L33.1,7.6 L34.6,7.6 L34.6,6.1 L34.6,6.1 Z M37.6,6.1 L36.1,6.1 L36.1,7.6 L37.6,7.6 L37.6,6.1 L37.6,6.1 Z M40.5,6.1 L39,6.1 L39,7.6 L40.5,7.6 L40.5,6.1 L40.5,6.1 Z M43.4,6.1 L41.9,6.1 L41.9,7.6 L43.4,7.6 L43.4,6.1 L43.4,6.1 Z M46.4,6.1 L44.9,6.1 L44.9,7.6 L46.4,7.6 L46.4,6.1 L46.4,6.1 Z M49.3,6.1 L47.8,6.1 L47.8,7.6 L49.3,7.6 L49.3,6.1 L49.3,6.1 Z M52.2,6.1 L50.7,6.1 L50.7,7.6 L52.2,7.6 L52.2,6.1 L52.2,6.1 Z M55.2,6.1 L53.7,6.1 L53.7,7.6 L55.2,7.6 L55.2,6.1 L55.2,6.1 Z M58.1,6.1 L56.6,6.1 L56.6,7.6 L58.1,7.6 L58.1,6.1 L58.1,6.1 Z M61,6.1 L59.5,6.1 L59.5,7.6 L61,7.6 L61,6.1 L61,6.1 Z M64,6.1 L62.5,6.1 L62.5,7.6 L64,7.6 L64,6.1 L64,6.1 Z M66.9,6.1 L65.4,6.1 L65.4,7.6 L66.9,7.6 L66.9,6.1 L66.9,6.1 Z M3.8,7.6 L2.3,7.6 L2.3,9.1 L3.8,9.1 L3.8,7.6 L3.8,7.6 Z M6.7,7.6 L5.2,7.6 L5.2,9.1 L6.7,9.1 L6.7,7.6 L6.7,7.6 Z M9.7,7.6 L8.2,7.6 L8.2,9.1 L9.7,9.1 L9.7,7.6 L9.7,7.6 Z M12.6,7.6 L11.1,7.6 L11.1,9.1 L12.6,9.1 L12.6,7.6 L12.6,7.6 Z M15.5,7.6 L14,7.6 L14,9.1 L15.5,9.1 L15.5,7.6 L15.5,7.6 Z M18.5,7.6 L17,7.6 L17,9.1 L18.5,9.1 L18.5,7.6 L18.5,7.6 Z M21.4,7.6 L19.9,7.6 L19.9,9.1 L21.4,9.1 L21.4,7.6 L21.4,7.6 Z M24.3,7.6 L22.8,7.6 L22.8,9.1 L24.3,9.1 L24.3,7.6 L24.3,7.6 Z M27.3,7.6 L25.8,7.6 L25.8,9.1 L27.3,9.1 L27.3,7.6 L27.3,7.6 Z M30.2,7.6 L28.7,7.6 L28.7,9.1 L30.2,9.1 L30.2,7.6 L30.2,7.6 Z M33.1,7.6 L31.6,7.6 L31.6,9.1 L33.1,9.1 L33.1,7.6 L33.1,7.6 Z M36.1,7.6 L34.6,7.6 L34.6,9.1 L36.1,9.1 L36.1,7.6 L36.1,7.6 Z M39,7.6 L37.5,7.6 L37.5,9.1 L39,9.1 L39,7.6 L39,7.6 Z M41.9,7.6 L40.4,7.6 L40.4,9.1 L41.9,9.1 L41.9,7.6 L41.9,7.6 Z M44.9,7.6 L43.4,7.6 L43.4,9.1 L44.9,9.1 L44.9,7.6 L44.9,7.6 Z M47.8,7.6 L46.3,7.6 L46.3,9.1 L47.8,9.1 L47.8,7.6 L47.8,7.6 Z M50.8,7.6 L49.3,7.6 L49.3,9.1 L50.8,9.1 L50.8,7.6 L50.8,7.6 Z M53.7,7.6 L52.2,7.6 L52.2,9.1 L53.7,9.1 L53.7,7.6 L53.7,7.6 Z M56.6,7.6 L55.1,7.6 L55.1,9.1 L56.6,9.1 L56.6,7.6 L56.6,7.6 Z M59.6,7.6 L58.1,7.6 L58.1,9.1 L59.6,9.1 L59.6,7.6 L59.6,7.6 Z M62.5,7.6 L61,7.6 L61,9.1 L62.5,9.1 L62.5,7.6 L62.5,7.6 Z M65.4,7.6 L64,7.6 L64,9.1 L65.5,9.1 L65.5,7.6 L65.4,7.6 Z M68.4,7.6 L66.9,7.6 L66.9,9.1 L68.4,9.1 L68.4,7.6 L68.4,7.6 Z" id="Shape" fill="#2E2E2E" mask="url(#mask-12)"></path>
101
- </g>
102
- <g>
103
- <mask id="mask-14" fill="white">
104
- <use xlink:href="#path-13"></use>
105
- </mask>
106
- <g id="SVGID_13_"></g>
107
- <path d="M64.2,0 L4.8,0 C2.4,0 0.4,2.1 0.4,4.7 C0.4,7.3 2.3,9.4 4.8,9.4 L64.2,9.4 C66.6,9.4 68.5,7.3 68.5,4.7 C68.5,2.1 66.6,0 64.2,0 L64.2,0 Z M63.8,7.8 L5.2,7.8 C3.4,7.8 2,6.4 2,4.6 C2,2.8 3.4,1.4 5.2,1.4 L63.8,1.4 C65.6,1.4 67,2.8 67,4.6 C67,6.4 65.6,7.8 63.8,7.8 L63.8,7.8 Z" id="Shape" fill="#000000" opacity="0.2" mask="url(#mask-14)"></path>
108
- </g>
109
- </g>
110
- <path d="M215.1,787.2 C197,787.2 182.3,801.9 182.3,820 C182.3,838.1 197,852.8 215.1,852.8 C233.2,852.8 248,838.1 248,820 C248,801.9 233.3,787.2 215.1,787.2 L215.1,787.2 Z M215.1,849.8 C198.6,849.8 185.3,836.5 185.3,820 C185.3,803.5 198.7,790.2 215.1,790.2 C231.5,790.2 245,803.5 245,820 C245,836.5 231.6,849.8 215.1,849.8 L215.1,849.8 Z" id="Shape" fill="url(#linearGradient-15)"></path>
111
- <path d="M70.3,8.5 C38.2,8.5 12.2,34.5 12.2,66.6 L12.2,571.7 L322.6,8.5 L70.3,8.5 L70.3,8.5 Z" id="Shape" fill="url(#linearGradient-16)"></path>
112
- </g>
113
- <rect id="Rectangle-path" fill="#000000" x="27" y="105" width="375" height="667"></rect>
114
- </g>
115
- </g>
116
- </svg>
@@ -1,118 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg width="956px" height="470px" viewBox="0 0 956 470" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>iPhone 6 Plus</title>
4
- <defs>
5
- <linearGradient x1="-0.00325805225%" y1="49.9995377%" x2="99.9938099%" y2="49.9995377%" id="linearGradient-1">
6
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="0%"></stop>
7
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="11.69%"></stop>
8
- <stop stop-color="#FFFFFF" stop-opacity="0.00509108" offset="87.64%"></stop>
9
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="100%"></stop>
10
- </linearGradient>
11
- <linearGradient x1="28.2585006%" y1="128.845717%" x2="71.7414993%" y2="-28.8467008%" id="linearGradient-2">
12
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="0%"></stop>
13
- <stop stop-color="#FFFFFF" stop-opacity="0.05" offset="13.73%"></stop>
14
- <stop stop-color="#FFFFFF" stop-opacity="0.02" offset="88.31%"></stop>
15
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="100%"></stop>
16
- </linearGradient>
17
- <radialGradient cx="49.9966887%" cy="50.018543%" fx="49.9966887%" fy="50.018543%" r="49.9807947%" id="radialGradient-3">
18
- <stop stop-color="#5D5D5F" offset="0%"></stop>
19
- <stop stop-color="#333333" stop-opacity="0.8" offset="100%"></stop>
20
- </radialGradient>
21
- <radialGradient cx="50.4421581%" cy="57.1386068%" fx="50.4421581%" fy="57.1386068%" r="49.9701987%" id="radialGradient-4">
22
- <stop stop-color="#000000" stop-opacity="0" offset="0%"></stop>
23
- <stop stop-color="#020202" stop-opacity="0.4119" offset="51.49%"></stop>
24
- <stop stop-color="#090909" stop-opacity="0.5603" offset="70.03%"></stop>
25
- <stop stop-color="#141414" stop-opacity="0.666" offset="83.25%"></stop>
26
- <stop stop-color="#252525" stop-opacity="0.7509" offset="93.87%"></stop>
27
- <stop stop-color="#333333" stop-opacity="0.8" offset="100%"></stop>
28
- </radialGradient>
29
- <radialGradient cx="47.5719202%" cy="96.4177227%" fx="47.5719202%" fy="96.4177227%" r="95.6970109%" id="radialGradient-5">
30
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="0%"></stop>
31
- <stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
32
- </radialGradient>
33
- <radialGradient cx="50.5042293%" cy="23.9851238%" fx="50.5042293%" fy="23.9851238%" r="57.5643564%" id="radialGradient-6">
34
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="0%"></stop>
35
- <stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
36
- </radialGradient>
37
- <linearGradient x1="49.5644397%" y1="8.31811466%" x2="49.56633%" y2="112.128115%" id="linearGradient-7">
38
- <stop stop-color="#FFFFFF" stop-opacity="0.6" offset="0%"></stop>
39
- <stop stop-color="#FFFFFF" stop-opacity="0.1" offset="100%"></stop>
40
- </linearGradient>
41
- <path id="path-8" d="M9.22,4.58 L9.22,63.2 C9.22,65.57 7.3,67.49 4.93,67.49 L4.93,67.49 C2.56,67.49 0.64,65.57 0.64,63.2 L0.64,4.58 C0.64,2.21 2.56,0.29 4.93,0.29 L4.93,0.29 C7.3,0.3 9.22,2.22 9.22,4.58 L9.22,4.58 Z"></path>
42
- <linearGradient x1="101.420118%" y1="50.1973043%" x2="1.49257867%" y2="50.1973043%" id="linearGradient-10">
43
- <stop stop-color="#2E2E31" offset="0%"></stop>
44
- <stop stop-color="#616161" offset="24.48%"></stop>
45
- <stop stop-color="#858585" offset="81.37%"></stop>
46
- <stop stop-color="#2E2E31" offset="100%"></stop>
47
- </linearGradient>
48
- <path id="path-11" d="M9.22,4.58 L9.22,63.2 C9.22,65.57 7.3,67.49 4.93,67.49 L4.93,67.49 C2.56,67.49 0.64,65.57 0.64,63.2 L0.64,4.58 C0.64,2.21 2.56,0.29 4.93,0.29 L4.93,0.29 C7.3,0.3 9.22,2.22 9.22,4.58 L9.22,4.58 Z"></path>
49
- <path id="path-13" d="M9.22,4.58 L9.22,63.2 C9.22,65.57 7.3,67.49 4.93,67.49 L4.93,67.49 C2.56,67.49 0.64,65.57 0.64,63.2 L0.64,4.58 C0.64,2.21 2.56,0.29 4.93,0.29 L4.93,0.29 C7.3,0.3 9.22,2.22 9.22,4.58 L9.22,4.58 Z"></path>
50
- <linearGradient x1="91.876637%" y1="13.615443%" x2="8.6218396%" y2="85.9514161%" id="linearGradient-15">
51
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="14.7%"></stop>
52
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="40.73%"></stop>
53
- <stop stop-color="#FFFFFF" stop-opacity="0.00509108" offset="74.45%"></stop>
54
- <stop stop-color="#FFFFFF" stop-opacity="0.2" offset="100%"></stop>
55
- </linearGradient>
56
- <linearGradient x1="5.94928391%" y1="2.26524773%" x2="44.6162595%" y2="41.2217771%" id="linearGradient-16">
57
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="0%"></stop>
58
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
59
- </linearGradient>
60
- </defs>
61
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
62
- <g id="iphone6plus-landscape" transform="translate(1.000000, 0.000000)">
63
- <g id="Group">
64
- <g>
65
- <g>
66
- <path d="M144.74,464.27 L144.74,467.99 C144.74,469.02 143.91,469.85 142.88,469.85 L112.92,469.85 C111.89,469.85 111.06,469.02 111.06,467.99 L111.06,464.27 L144.74,464.27 L144.74,464.27 Z" id="Shape" fill="#808086"></path>
67
- <path d="M187.97,469.85 C186.94,469.85 186.11,469.02 186.11,467.99 L186.11,464.27 L247.24,464.27 L247.24,467.99 C247.24,469.02 246.41,469.85 245.38,469.85" id="Shape" fill="#808086"></path>
68
- <path d="M262.73,469.85 C261.7,469.85 260.87,469.02 260.87,467.99 L260.87,464.27 L322,464.27 L322,467.99 C322,469.02 321.17,469.85 320.14,469.85" id="Shape" fill="#808086"></path>
69
- <path d="M187.47,5.73 L187.47,2.01 C187.47,0.98 188.3,0.15 189.33,0.15 L246.74,0.15 C247.77,0.15 248.6,0.98 248.6,2.01 L248.6,5.73 L187.47,5.73 L187.47,5.73 Z" id="Shape" fill="#818187"></path>
70
- <path d="M65.18,467.44 C29.37,467.44 0.24,438.31 0.24,402.51 L0.24,68.05 C0.24,32.24 29.37,3.11 65.18,3.11 L888.81,3.11 C924.62,3.11 953.75,32.24 953.75,68.05 L953.75,402.5 C953.75,438.31 924.62,467.43 888.81,467.43 L65.18,467.43 L65.18,467.44 Z" id="Shape" stroke-opacity="0.5" stroke="#666666" fill="#B2B2B2"></path>
71
- <path d="M948.57,402.69 C948.57,418.6 942.37,433.56 931.12,444.81 C919.87,456.06 904.91,462.26 889,462.26 L65,462.26 C49.09,462.26 34.13,456.06 22.88,444.81 C11.63,433.56 5.43,418.6 5.43,402.69 L5.43,67.86 C5.43,51.95 11.63,36.99 22.88,25.74 C34.13,14.49 49.09,8.29 65,8.29 L889,8.29 C904.91,8.29 919.87,14.49 931.12,25.74 C942.37,36.99 948.57,51.95 948.57,67.86 L948.57,402.69 L948.57,402.69 Z" id="Shape" fill="#404040"></path>
72
- <path d="M948.75,68.05 L948.75,402.5 C948.75,435.6 921.92,462.44 888.81,462.44 L65.18,462.44 C32.08,462.44 5.24,435.61 5.24,402.5 L5.24,68.05 C5.24,34.95 32.07,8.11 65.18,8.11 L888.81,8.11 C921.92,8.11 948.75,34.94 948.75,68.05 L948.75,68.05 Z" id="Shape" fill="#262626"></path>
73
- <path d="M5.25,67.86 L5.25,402.69 C5.25,435.69 32,462.44 65,462.44 L66.64,462.44 C33.64,462.44 6.89,435.69 6.89,402.69 L6.89,67.86 C6.89,34.86 33.64,8.11 66.64,8.11 L65,8.11 C32,8.11 5.25,34.86 5.25,67.86 L5.25,67.86 Z" id="Shape" fill="url(#linearGradient-1)"></path>
74
- <path d="M8.8,67.86 L8.8,402.69 C8.8,433.68 34.01,458.89 65,458.89 L889,458.89 C919.99,458.89 945.2,433.68 945.2,402.69 L945.2,67.86 C945.2,36.87 919.99,11.66 889,11.66 L65,11.66 C34.01,11.66 8.8,36.87 8.8,67.86 L8.8,67.86 Z M889,17.66 C916.68,17.66 939.2,40.18 939.2,67.86 L939.2,402.69 C939.2,430.37 916.68,452.89 889,452.89 L65,452.89 C37.32,452.89 14.8,430.37 14.8,402.69 L14.8,67.86 C14.8,40.18 37.32,17.66 65,17.66 L889,17.66 L889,17.66 Z" id="Shape" fill="url(#linearGradient-2)"></path>
75
- <g transform="translate(46.000000, 295.000000)">
76
- <circle id="Oval" fill="url(#radialGradient-3)" cx="8.19" cy="8.2" r="7.55"></circle>
77
- <circle id="Oval" fill="url(#radialGradient-4)" opacity="0.8" cx="8.19" cy="8.2" r="7.55"></circle>
78
- <circle id="Oval" fill="#1B1A1F" cx="8.19" cy="8.2" r="5.03"></circle>
79
- <circle id="Oval" fill="#36284C" cx="8.19" cy="8.2" r="3.68"></circle>
80
- <circle id="Oval" fill="url(#radialGradient-5)" cx="8.19" cy="8.2" r="3.68"></circle>
81
- <g transform="translate(6.000000, 6.000000)" id="Shape">
82
- <path d="M4.21,2.2 C4.21,3.32 3.3,4.22 2.19,4.22 C1.07,4.22 0.17,3.31 0.17,2.2 C0.17,1.08 1.08,0.18 2.19,0.18 C3.31,0.18 4.21,1.09 4.21,2.2 L4.21,2.2 Z" fill="#141414" opacity="0.5"></path>
83
- <path d="M4.21,2.2 C4.21,3.32 3.3,4.22 2.19,4.22 C1.07,4.22 0.17,3.31 0.17,2.2 C0.17,1.08 1.08,0.18 2.19,0.18 C3.31,0.18 4.21,1.09 4.21,2.2 L4.21,2.2 Z" fill="url(#radialGradient-6)"></path>
84
- </g>
85
- <path d="M8.19,6.68 C7.74,6.68 7.35,6.88 7.07,7.19 L7.54,7.66 C7.7,7.47 7.92,7.35 8.18,7.35 C8.45,7.35 8.68,7.49 8.84,7.68 L9.31,7.2 C9.04,6.9 8.65,6.68 8.19,6.68 L8.19,6.68 Z" id="Shape" fill="url(#linearGradient-7)"></path>
86
- </g>
87
- <g transform="translate(50.000000, 201.000000)" id="Clipped">
88
- <g>
89
- <mask id="mask-9" fill="white">
90
- <use xlink:href="#path-8"></use>
91
- </mask>
92
- <g id="SVGID_8_"></g>
93
- <path d="M9.22,4.58 L9.22,63.2 C9.22,65.57 7.3,67.49 4.93,67.49 L4.93,67.49 C2.56,67.49 0.64,65.57 0.64,63.2 L0.64,4.58 C0.64,2.21 2.56,0.29 4.93,0.29 L4.93,0.29 C7.3,0.3 9.22,2.22 9.22,4.58 L9.22,4.58 Z" id="Shape" fill="url(#linearGradient-10)" opacity="0.8" mask="url(#mask-9)"></path>
94
- </g>
95
- <g>
96
- <mask id="mask-12" fill="white">
97
- <use xlink:href="#path-11"></use>
98
- </mask>
99
- <g id="SVGID_8_"></g>
100
- <path d="M0.53,66.08 L0.53,67.55 L2,67.55 L2,66.08 L0.53,66.08 L0.53,66.08 Z M0.53,63.15 L0.53,64.62 L2,64.62 L2,63.15 L0.53,63.15 L0.53,63.15 Z M0.53,60.21 L0.53,61.68 L2,61.68 L2,60.21 L0.53,60.21 L0.53,60.21 Z M0.53,57.28 L0.53,58.75 L2,58.75 L2,57.28 L0.53,57.28 L0.53,57.28 Z M0.53,54.34 L0.53,55.81 L2,55.81 L2,54.34 L0.53,54.34 L0.53,54.34 Z M0.53,51.41 L0.53,52.88 L2,52.88 L2,51.41 L0.53,51.41 L0.53,51.41 Z M0.53,48.47 L0.53,49.94 L2,49.94 L2,48.47 L0.53,48.47 L0.53,48.47 Z M0.53,45.54 L0.53,47.01 L2,47.01 L2,45.54 L0.53,45.54 L0.53,45.54 Z M0.53,42.6 L0.53,44.07 L2,44.07 L2,42.6 L0.53,42.6 L0.53,42.6 Z M0.53,39.67 L0.53,41.14 L2,41.14 L2,39.67 L0.53,39.67 L0.53,39.67 Z M0.53,36.73 L0.53,38.2 L2,38.2 L2,36.73 L0.53,36.73 L0.53,36.73 Z M0.53,33.8 L0.53,35.27 L2,35.27 L2,33.8 L0.53,33.8 L0.53,33.8 Z M0.53,30.86 L0.53,32.33 L2,32.33 L2,30.86 L0.53,30.86 L0.53,30.86 Z M0.53,27.93 L0.53,29.4 L2,29.4 L2,27.93 L0.53,27.93 L0.53,27.93 Z M0.53,24.99 L0.53,26.46 L2,26.46 L2,24.99 L0.53,24.99 L0.53,24.99 Z M0.53,22.06 L0.53,23.53 L2,23.53 L2,22.06 L0.53,22.06 L0.53,22.06 Z M0.53,19.12 L0.53,20.59 L2,20.59 L2,19.12 L0.53,19.12 L0.53,19.12 Z M0.53,16.19 L0.53,17.66 L2,17.66 L2,16.19 L0.53,16.19 L0.53,16.19 Z M0.53,13.25 L0.53,14.72 L2,14.72 L2,13.25 L0.53,13.25 L0.53,13.25 Z M0.53,10.32 L0.53,11.79 L2,11.79 L2,10.32 L0.53,10.32 L0.53,10.32 Z M0.53,7.38 L0.53,8.85 L2,8.85 L2,7.38 L0.53,7.38 L0.53,7.38 Z M0.53,4.45 L0.53,5.92 L2,5.92 L2,4.45 L0.53,4.45 L0.53,4.45 Z M0.53,1.51 L0.53,2.98 L2,2.98 L2,1.51 L0.53,1.51 L0.53,1.51 Z M2,64.61 L2,66.08 L3.47,66.08 L3.47,64.61 L2,64.61 L2,64.61 Z M2,61.68 L2,63.15 L3.47,63.15 L3.47,61.68 L2,61.68 L2,61.68 Z M2,58.74 L2,60.21 L3.47,60.21 L3.47,58.74 L2,58.74 L2,58.74 Z M2,55.81 L2,57.28 L3.47,57.28 L3.47,55.81 L2,55.81 L2,55.81 Z M2,52.87 L2,54.34 L3.47,54.34 L3.47,52.87 L2,52.87 L2,52.87 Z M2,49.94 L2,51.41 L3.47,51.41 L3.47,49.94 L2,49.94 L2,49.94 Z M2,47.01 L2,48.48 L3.47,48.48 L3.47,47.01 L2,47.01 L2,47.01 Z M2,44.07 L2,45.54 L3.47,45.54 L3.47,44.07 L2,44.07 L2,44.07 Z M2,41.14 L2,42.61 L3.47,42.61 L3.47,41.14 L2,41.14 L2,41.14 Z M2,38.2 L2,39.67 L3.47,39.67 L3.47,38.2 L2,38.2 L2,38.2 Z M2,35.27 L2,36.74 L3.47,36.74 L3.47,35.27 L2,35.27 L2,35.27 Z M2,32.33 L2,33.8 L3.47,33.8 L3.47,32.33 L2,32.33 L2,32.33 Z M2,29.4 L2,30.87 L3.47,30.87 L3.47,29.4 L2,29.4 L2,29.4 Z M2,26.46 L2,27.93 L3.47,27.93 L3.47,26.46 L2,26.46 L2,26.46 Z M2,23.53 L2,25 L3.47,25 L3.47,23.53 L2,23.53 L2,23.53 Z M2,20.59 L2,22.06 L3.47,22.06 L3.47,20.59 L2,20.59 L2,20.59 Z M2,17.66 L2,19.13 L3.47,19.13 L3.47,17.66 L2,17.66 L2,17.66 Z M2,14.72 L2,16.19 L3.47,16.19 L3.47,14.72 L2,14.72 L2,14.72 Z M2,11.79 L2,13.26 L3.47,13.26 L3.47,11.79 L2,11.79 L2,11.79 Z M2,8.85 L2,10.32 L3.47,10.32 L3.47,8.85 L2,8.85 L2,8.85 Z M2,5.92 L2,7.39 L3.47,7.39 L3.47,5.92 L2,5.92 L2,5.92 Z M2,2.98 L2,4.45 L3.47,4.45 L3.47,2.98 L2,2.98 L2,2.98 Z M2,0.05 L2,1.52 L3.47,1.52 L3.47,0.05 L2,0.05 L2,0.05 Z M3.46,66.08 L3.46,67.55 L4.93,67.55 L4.93,66.08 L3.46,66.08 L3.46,66.08 Z M3.46,63.15 L3.46,64.62 L4.93,64.62 L4.93,63.15 L3.46,63.15 L3.46,63.15 Z M3.46,60.21 L3.46,61.68 L4.93,61.68 L4.93,60.21 L3.46,60.21 L3.46,60.21 Z M3.46,57.28 L3.46,58.75 L4.93,58.75 L4.93,57.28 L3.46,57.28 L3.46,57.28 Z M3.46,54.34 L3.46,55.81 L4.93,55.81 L4.93,54.34 L3.46,54.34 L3.46,54.34 Z M3.46,51.41 L3.46,52.88 L4.93,52.88 L4.93,51.41 L3.46,51.41 L3.46,51.41 Z M3.46,48.47 L3.46,49.94 L4.93,49.94 L4.93,48.47 L3.46,48.47 L3.46,48.47 Z M3.46,45.54 L3.46,47.01 L4.93,47.01 L4.93,45.54 L3.46,45.54 L3.46,45.54 Z M3.46,42.6 L3.46,44.07 L4.93,44.07 L4.93,42.6 L3.46,42.6 L3.46,42.6 Z M3.46,39.67 L3.46,41.14 L4.93,41.14 L4.93,39.67 L3.46,39.67 L3.46,39.67 Z M3.46,36.73 L3.46,38.2 L4.93,38.2 L4.93,36.73 L3.46,36.73 L3.46,36.73 Z M3.46,33.8 L3.46,35.27 L4.93,35.27 L4.93,33.8 L3.46,33.8 L3.46,33.8 Z M3.46,30.86 L3.46,32.33 L4.93,32.33 L4.93,30.86 L3.46,30.86 L3.46,30.86 Z M3.46,27.93 L3.46,29.4 L4.93,29.4 L4.93,27.93 L3.46,27.93 L3.46,27.93 Z M3.46,24.99 L3.46,26.46 L4.93,26.46 L4.93,24.99 L3.46,24.99 L3.46,24.99 Z M3.46,22.06 L3.46,23.53 L4.93,23.53 L4.93,22.06 L3.46,22.06 L3.46,22.06 Z M3.46,19.12 L3.46,20.59 L4.93,20.59 L4.93,19.12 L3.46,19.12 L3.46,19.12 Z M3.46,16.19 L3.46,17.66 L4.93,17.66 L4.93,16.19 L3.46,16.19 L3.46,16.19 Z M3.46,13.25 L3.46,14.72 L4.93,14.72 L4.93,13.25 L3.46,13.25 L3.46,13.25 Z M3.46,10.32 L3.46,11.79 L4.93,11.79 L4.93,10.32 L3.46,10.32 L3.46,10.32 Z M3.46,7.38 L3.46,8.85 L4.93,8.85 L4.93,7.38 L3.46,7.38 L3.46,7.38 Z M3.46,4.45 L3.46,5.92 L4.93,5.92 L4.93,4.45 L3.46,4.45 L3.46,4.45 Z M3.46,1.51 L3.46,2.98 L4.93,2.98 L4.93,1.51 L3.46,1.51 L3.46,1.51 Z M4.93,64.61 L4.93,66.08 L6.4,66.08 L6.4,64.61 L4.93,64.61 L4.93,64.61 Z M4.93,61.68 L4.93,63.15 L6.4,63.15 L6.4,61.68 L4.93,61.68 L4.93,61.68 Z M4.93,58.74 L4.93,60.21 L6.4,60.21 L6.4,58.74 L4.93,58.74 L4.93,58.74 Z M4.93,55.81 L4.93,57.28 L6.4,57.28 L6.4,55.81 L4.93,55.81 L4.93,55.81 Z M4.93,52.87 L4.93,54.34 L6.4,54.34 L6.4,52.87 L4.93,52.87 L4.93,52.87 Z M4.93,49.94 L4.93,51.41 L6.4,51.41 L6.4,49.94 L4.93,49.94 L4.93,49.94 Z M4.93,47.01 L4.93,48.48 L6.4,48.48 L6.4,47.01 L4.93,47.01 L4.93,47.01 Z M4.93,44.07 L4.93,45.54 L6.4,45.54 L6.4,44.07 L4.93,44.07 L4.93,44.07 Z M4.93,41.14 L4.93,42.61 L6.4,42.61 L6.4,41.14 L4.93,41.14 L4.93,41.14 Z M4.93,38.2 L4.93,39.67 L6.4,39.67 L6.4,38.2 L4.93,38.2 L4.93,38.2 Z M4.93,35.27 L4.93,36.74 L6.4,36.74 L6.4,35.27 L4.93,35.27 L4.93,35.27 Z M4.93,32.33 L4.93,33.8 L6.4,33.8 L6.4,32.33 L4.93,32.33 L4.93,32.33 Z M4.93,29.4 L4.93,30.87 L6.4,30.87 L6.4,29.4 L4.93,29.4 L4.93,29.4 Z M4.93,26.46 L4.93,27.93 L6.4,27.93 L6.4,26.46 L4.93,26.46 L4.93,26.46 Z M4.93,23.53 L4.93,25 L6.4,25 L6.4,23.53 L4.93,23.53 L4.93,23.53 Z M4.93,20.59 L4.93,22.06 L6.4,22.06 L6.4,20.59 L4.93,20.59 L4.93,20.59 Z M4.93,17.66 L4.93,19.13 L6.4,19.13 L6.4,17.66 L4.93,17.66 L4.93,17.66 Z M4.93,14.72 L4.93,16.19 L6.4,16.19 L6.4,14.72 L4.93,14.72 L4.93,14.72 Z M4.93,11.79 L4.93,13.26 L6.4,13.26 L6.4,11.79 L4.93,11.79 L4.93,11.79 Z M4.93,8.85 L4.93,10.32 L6.4,10.32 L6.4,8.85 L4.93,8.85 L4.93,8.85 Z M4.93,5.92 L4.93,7.39 L6.4,7.39 L6.4,5.92 L4.93,5.92 L4.93,5.92 Z M4.93,2.98 L4.93,4.45 L6.4,4.45 L6.4,2.98 L4.93,2.98 L4.93,2.98 Z M4.93,0.05 L4.93,1.52 L6.4,1.52 L6.4,0.05 L4.93,0.05 L4.93,0.05 Z M6.4,66.08 L6.4,67.55 L7.87,67.55 L7.87,66.08 L6.4,66.08 L6.4,66.08 Z M6.4,63.15 L6.4,64.62 L7.87,64.62 L7.87,63.15 L6.4,63.15 L6.4,63.15 Z M6.4,60.21 L6.4,61.68 L7.87,61.68 L7.87,60.21 L6.4,60.21 L6.4,60.21 Z M6.4,57.28 L6.4,58.75 L7.87,58.75 L7.87,57.28 L6.4,57.28 L6.4,57.28 Z M6.4,54.34 L6.4,55.81 L7.87,55.81 L7.87,54.34 L6.4,54.34 L6.4,54.34 Z M6.4,51.41 L6.4,52.88 L7.87,52.88 L7.87,51.41 L6.4,51.41 L6.4,51.41 Z M6.4,48.47 L6.4,49.94 L7.87,49.94 L7.87,48.47 L6.4,48.47 L6.4,48.47 Z M6.4,45.54 L6.4,47.01 L7.87,47.01 L7.87,45.54 L6.4,45.54 L6.4,45.54 Z M6.4,42.6 L6.4,44.07 L7.87,44.07 L7.87,42.6 L6.4,42.6 L6.4,42.6 Z M6.4,39.67 L6.4,41.14 L7.87,41.14 L7.87,39.67 L6.4,39.67 L6.4,39.67 Z M6.4,36.73 L6.4,38.2 L7.87,38.2 L7.87,36.73 L6.4,36.73 L6.4,36.73 Z M6.4,33.8 L6.4,35.27 L7.87,35.27 L7.87,33.8 L6.4,33.8 L6.4,33.8 Z M6.4,30.86 L6.4,32.33 L7.87,32.33 L7.87,30.86 L6.4,30.86 L6.4,30.86 Z M6.4,27.93 L6.4,29.4 L7.87,29.4 L7.87,27.93 L6.4,27.93 L6.4,27.93 Z M6.4,24.99 L6.4,26.46 L7.87,26.46 L7.87,24.99 L6.4,24.99 L6.4,24.99 Z M6.4,22.06 L6.4,23.53 L7.87,23.53 L7.87,22.06 L6.4,22.06 L6.4,22.06 Z M6.4,19.12 L6.4,20.59 L7.87,20.59 L7.87,19.12 L6.4,19.12 L6.4,19.12 Z M6.4,16.19 L6.4,17.66 L7.87,17.66 L7.87,16.19 L6.4,16.19 L6.4,16.19 Z M6.4,13.25 L6.4,14.72 L7.87,14.72 L7.87,13.25 L6.4,13.25 L6.4,13.25 Z M6.4,10.32 L6.4,11.79 L7.87,11.79 L7.87,10.32 L6.4,10.32 L6.4,10.32 Z M6.4,7.38 L6.4,8.85 L7.87,8.85 L7.87,7.38 L6.4,7.38 L6.4,7.38 Z M6.4,4.45 L6.4,5.92 L7.87,5.92 L7.87,4.45 L6.4,4.45 L6.4,4.45 Z M6.4,1.51 L6.4,2.98 L7.87,2.98 L7.87,1.51 L6.4,1.51 L6.4,1.51 Z M7.87,64.61 L7.87,66.08 L9.34,66.08 L9.34,64.61 L7.87,64.61 L7.87,64.61 Z M7.87,61.68 L7.87,63.15 L9.34,63.15 L9.34,61.68 L7.87,61.68 L7.87,61.68 Z M7.87,58.74 L7.87,60.21 L9.34,60.21 L9.34,58.74 L7.87,58.74 L7.87,58.74 Z M7.87,55.81 L7.87,57.28 L9.34,57.28 L9.34,55.81 L7.87,55.81 L7.87,55.81 Z M7.87,52.87 L7.87,54.34 L9.34,54.34 L9.34,52.87 L7.87,52.87 L7.87,52.87 Z M7.87,49.94 L7.87,51.41 L9.34,51.41 L9.34,49.94 L7.87,49.94 L7.87,49.94 Z M7.87,47.01 L7.87,48.48 L9.34,48.48 L9.34,47.01 L7.87,47.01 L7.87,47.01 Z M7.87,44.07 L7.87,45.54 L9.34,45.54 L9.34,44.07 L7.87,44.07 L7.87,44.07 Z M7.87,41.14 L7.87,42.61 L9.34,42.61 L9.34,41.14 L7.87,41.14 L7.87,41.14 Z M7.87,38.2 L7.87,39.67 L9.34,39.67 L9.34,38.2 L7.87,38.2 L7.87,38.2 Z M7.87,35.27 L7.87,36.74 L9.34,36.74 L9.34,35.27 L7.87,35.27 L7.87,35.27 Z M7.87,32.33 L7.87,33.8 L9.34,33.8 L9.34,32.33 L7.87,32.33 L7.87,32.33 Z M7.87,29.4 L7.87,30.87 L9.34,30.87 L9.34,29.4 L7.87,29.4 L7.87,29.4 Z M7.87,26.46 L7.87,27.93 L9.34,27.93 L9.34,26.46 L7.87,26.46 L7.87,26.46 Z M7.87,23.53 L7.87,25 L9.34,25 L9.34,23.53 L7.87,23.53 L7.87,23.53 Z M7.87,20.59 L7.87,22.06 L9.34,22.06 L9.34,20.59 L7.87,20.59 L7.87,20.59 Z M7.87,17.66 L7.87,19.13 L9.34,19.13 L9.34,17.66 L7.87,17.66 L7.87,17.66 Z M7.87,14.72 L7.87,16.19 L9.34,16.19 L9.34,14.72 L7.87,14.72 L7.87,14.72 Z M7.87,11.79 L7.87,13.26 L9.34,13.26 L9.34,11.79 L7.87,11.79 L7.87,11.79 Z M7.87,8.85 L7.87,10.32 L9.34,10.32 L9.34,8.85 L7.87,8.85 L7.87,8.85 Z M7.87,5.92 L7.87,7.39 L9.34,7.39 L9.34,5.92 L7.87,5.92 L7.87,5.92 Z M7.87,2.98 L7.87,4.45 L9.34,4.45 L9.34,2.98 L7.87,2.98 L7.87,2.98 Z M7.87,0.05 L7.87,1.52 L9.34,1.52 L9.34,0.05 L7.87,0.05 L7.87,0.05 Z" id="Shape" fill="#2E2E2E" mask="url(#mask-12)"></path>
101
- </g>
102
- <g>
103
- <mask id="mask-14" fill="white">
104
- <use xlink:href="#path-13"></use>
105
- </mask>
106
- <g id="SVGID_8_"></g>
107
- <path d="M0.29,4.17 L0.29,63.61 C0.29,66.01 2.37,67.96 4.94,67.96 C7.51,67.96 9.59,66.01 9.59,63.61 L9.59,4.17 C9.59,1.77 7.51,-0.18 4.94,-0.18 C2.37,-0.18 0.29,1.77 0.29,4.17 L0.29,4.17 Z M8.13,4.58 L8.13,63.2 C8.13,64.96 6.7,66.4 4.93,66.4 C3.16,66.4 1.73,64.97 1.73,63.2 L1.73,4.58 C1.73,2.82 3.16,1.38 4.93,1.38 C6.7,1.38 8.13,2.82 8.13,4.58 L8.13,4.58 Z" id="Shape" fill="#000000" opacity="0.2" mask="url(#mask-14)"></path>
108
- </g>
109
- </g>
110
- <path d="M865.53,235.27 C865.53,253.4 880.23,268.1 898.36,268.1 C916.49,268.1 931.19,253.4 931.19,235.27 C931.19,217.14 916.49,202.44 898.36,202.44 C880.23,202.45 865.53,217.14 865.53,235.27 L865.53,235.27 Z M928.18,235.27 C928.18,251.74 914.83,265.09 898.36,265.09 C881.89,265.09 868.54,251.74 868.54,235.27 C868.54,218.8 881.89,205.45 898.36,205.45 C914.83,205.45 928.18,218.8 928.18,235.27 L928.18,235.27 Z" id="Shape" fill="url(#linearGradient-15)"></path>
111
- </g>
112
- <path d="M65.18,8.11 C32.08,8.11 5.24,34.94 5.24,68.05 L5.24,402.5 C5.24,435.6 32.07,462.44 65.18,462.44 L334.64,462.44 L598.74,8.11 L65.18,8.11 L65.18,8.11 Z" id="Shape" fill="url(#linearGradient-16)"></path>
113
- </g>
114
- <rect id="Rectangle-path" fill="#000000" x="108.69" y="28.81" width="736" height="414"></rect>
115
- </g>
116
- </g>
117
- </g>
118
- </svg>
@@ -1,116 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg width="470px" height="954px" viewBox="0 0 470 954" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>iPhone 6 Plus</title>
4
- <defs>
5
- <linearGradient x1="50.0004402%" y1="-0.00765597003%" x2="50.0004402%" y2="99.9887604%" id="linearGradient-1">
6
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="0%"></stop>
7
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="11.69%"></stop>
8
- <stop stop-color="#FFFFFF" stop-opacity="0.00509108" offset="87.64%"></stop>
9
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="100%"></stop>
10
- </linearGradient>
11
- <linearGradient x1="-28.8457617%" y1="28.2592375%" x2="128.846656%" y2="71.7422576%" id="linearGradient-2">
12
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="0%"></stop>
13
- <stop stop-color="#FFFFFF" stop-opacity="0.05" offset="13.73%"></stop>
14
- <stop stop-color="#FFFFFF" stop-opacity="0.02" offset="88.31%"></stop>
15
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="100%"></stop>
16
- </linearGradient>
17
- <radialGradient cx="49.981457%" cy="49.9768212%" fx="49.981457%" fy="49.9768212%" r="49.9807947%" id="radialGradient-3">
18
- <stop stop-color="#5D5D5F" offset="0%"></stop>
19
- <stop stop-color="#333333" stop-opacity="0.8" offset="100%"></stop>
20
- </radialGradient>
21
- <radialGradient cx="50.426664%" cy="57.0966105%" fx="50.426664%" fy="57.0966105%" r="49.9701987%" id="radialGradient-4">
22
- <stop stop-color="#000000" stop-opacity="0" offset="0%"></stop>
23
- <stop stop-color="#020202" stop-opacity="0.4119" offset="51.49%"></stop>
24
- <stop stop-color="#090909" stop-opacity="0.5603" offset="70.03%"></stop>
25
- <stop stop-color="#141414" stop-opacity="0.666" offset="83.25%"></stop>
26
- <stop stop-color="#252525" stop-opacity="0.7509" offset="93.87%"></stop>
27
- <stop stop-color="#333333" stop-opacity="0.8" offset="100%"></stop>
28
- </radialGradient>
29
- <radialGradient cx="47.6564342%" cy="96.2967075%" fx="47.6564342%" fy="96.2967075%" r="95.6970109%" id="radialGradient-5">
30
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="0%"></stop>
31
- <stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
32
- </radialGradient>
33
- <radialGradient cx="50.6606714%" cy="23.7662009%" fx="50.6606714%" fy="23.7662009%" r="57.5643564%" id="radialGradient-6">
34
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="0%"></stop>
35
- <stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
36
- </radialGradient>
37
- <linearGradient x1="49.8466941%" y1="7.41101415%" x2="49.8485846%" y2="111.231014%" id="linearGradient-7">
38
- <stop stop-color="#FFFFFF" stop-opacity="0.6" offset="0%"></stop>
39
- <stop stop-color="#FFFFFF" stop-opacity="0.1" offset="100%"></stop>
40
- </linearGradient>
41
- <path id="path-8" d="M63.42,9.02 L4.8,9.02 C2.43,9.02 0.51,7.1 0.51,4.73 L0.51,4.73 C0.51,2.36 2.43,0.44 4.8,0.44 L63.42,0.44 C65.79,0.44 67.71,2.36 67.71,4.73 L67.71,4.73 C67.7,7.1 65.78,9.02 63.42,9.02 L63.42,9.02 Z"></path>
42
- <linearGradient x1="50.0105141%" y1="99.9084218%" x2="50.0105141%" y2="-0.0179701632%" id="linearGradient-10">
43
- <stop stop-color="#2E2E31" offset="0%"></stop>
44
- <stop stop-color="#616161" offset="24.48%"></stop>
45
- <stop stop-color="#858585" offset="81.37%"></stop>
46
- <stop stop-color="#2E2E31" offset="100%"></stop>
47
- </linearGradient>
48
- <path id="path-11" d="M63.42,9.02 L4.8,9.02 C2.43,9.02 0.51,7.1 0.51,4.73 L0.51,4.73 C0.51,2.36 2.43,0.44 4.8,0.44 L63.42,0.44 C65.79,0.44 67.71,2.36 67.71,4.73 L67.71,4.73 C67.7,7.1 65.78,9.02 63.42,9.02 L63.42,9.02 Z"></path>
49
- <path id="path-13" d="M63.42,9.02 L4.8,9.02 C2.43,9.02 0.51,7.1 0.51,4.73 L0.51,4.73 C0.51,2.36 2.43,0.44 4.8,0.44 L63.42,0.44 C65.79,0.44 67.71,2.36 67.71,4.73 L67.71,4.73 C67.7,7.1 65.78,9.02 63.42,9.02 L63.42,9.02 Z"></path>
50
- <linearGradient x1="86.3842522%" y1="91.8719159%" x2="14.0484313%" y2="8.61742309%" id="linearGradient-15">
51
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="14.7%"></stop>
52
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="40.73%"></stop>
53
- <stop stop-color="#FFFFFF" stop-opacity="0.00509108" offset="74.45%"></stop>
54
- <stop stop-color="#FFFFFF" stop-opacity="0.2" offset="100%"></stop>
55
- </linearGradient>
56
- <linearGradient x1="-34.1635743%" y1="-2.09409175%" x2="28.8478289%" y2="36.9074705%" id="linearGradient-16">
57
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="0%"></stop>
58
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
59
- </linearGradient>
60
- </defs>
61
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
62
- <g id="iphone6plus-portrait">
63
- <g id="Group">
64
- <path d="M5.73,144.54 L2.01,144.54 C0.98,144.54 0.15,143.71 0.15,142.68 L0.15,112.72 C0.15,111.69 0.98,110.86 2.01,110.86 L5.73,110.86 L5.73,144.54 L5.73,144.54 Z" id="Shape" fill="#808086"></path>
65
- <path d="M0.15,187.77 C0.15,186.74 0.98,185.91 2.01,185.91 L5.73,185.91 L5.73,247.04 L2.01,247.04 C0.98,247.04 0.15,246.21 0.15,245.18" id="Shape" fill="#808086"></path>
66
- <path d="M0.15,262.53 C0.15,261.5 0.98,260.67 2.01,260.67 L5.73,260.67 L5.73,321.8 L2.01,321.8 C0.98,321.8 0.15,320.97 0.15,319.94" id="Shape" fill="#808086"></path>
67
- <path d="M464.27,187.27 L467.99,187.27 C469.02,187.27 469.85,188.1 469.85,189.13 L469.85,246.54 C469.85,247.57 469.02,248.4 467.99,248.4 L464.27,248.4 L464.27,187.27 L464.27,187.27 Z" id="Shape" fill="#818187"></path>
68
- <g transform="translate(2.000000, 0.000000)" id="Shape">
69
- <path d="M65.5,953.05 C29.97,953.05 1.06,924.14 1.06,888.61 L1.06,64.98 C1.06,29.45 29.97,0.54 65.5,0.54 L399.96,0.54 C435.49,0.54 464.39,29.45 464.39,64.98 L464.39,888.61 C464.39,924.14 435.48,953.05 399.96,953.05 L65.5,953.05 L65.5,953.05 Z" fill="#B2B2B2"></path>
70
- <path d="M399.96,1.05 C435.21,1.05 463.89,29.73 463.89,64.99 L463.89,888.62 C463.89,923.87 435.21,952.56 399.96,952.56 L65.5,952.56 C30.25,952.56 1.56,923.88 1.56,888.62 L1.56,64.98 C1.56,29.73 30.24,1.04 65.5,1.04 L399.96,1.04 L399.96,1.05 Z M399.96,0.05 L65.5,0.05 C29.69,0.05 0.56,29.18 0.56,64.99 L0.56,888.62 C0.56,924.43 29.69,953.56 65.5,953.56 L399.96,953.56 C435.76,953.56 464.89,924.43 464.89,888.62 L464.89,64.98 C464.89,29.18 435.76,0.05 399.96,0.05 L399.96,0.05 L399.96,0.05 Z" fill="#666666"></path>
71
- </g>
72
- <path d="M401.95,948.55 L67.5,948.55 C34.4,948.55 7.56,921.72 7.56,888.61 L7.56,64.98 C7.56,31.88 34.39,5.04 67.5,5.04 L401.96,5.04 C435.06,5.04 461.9,31.87 461.9,64.98 L461.9,888.61 C461.89,921.71 435.06,948.55 401.95,948.55 L401.95,948.55 Z" id="Shape" fill="#262626"></path>
73
- <path d="M402.14,5.05 L67.31,5.05 C34.31,5.05 7.56,31.8 7.56,64.8 L7.56,66.44 C7.56,33.44 34.31,6.69 67.31,6.69 L402.14,6.69 C435.14,6.69 461.89,33.44 461.89,66.44 L461.89,64.8 C461.89,31.8 435.14,5.05 402.14,5.05 L402.14,5.05 Z" id="Shape" fill="url(#linearGradient-1)"></path>
74
- <path d="M402.14,8.59 L67.31,8.59 C36.32,8.59 11.11,33.8 11.11,64.79 L11.11,888.79 C11.11,919.78 36.32,944.99 67.31,944.99 L402.14,944.99 C433.13,944.99 458.34,919.78 458.34,888.79 L458.34,64.79 C458.34,33.81 433.13,8.59 402.14,8.59 L402.14,8.59 Z M452.34,888.8 C452.34,916.48 429.82,939 402.14,939 L67.31,939 C39.63,939 17.11,916.48 17.11,888.8 L17.11,64.8 C17.11,37.12 39.63,14.6 67.31,14.6 L402.14,14.6 C429.82,14.6 452.34,37.12 452.34,64.8 L452.34,888.8 L452.34,888.8 Z" id="Shape" fill="url(#linearGradient-2)"></path>
75
- <g transform="translate(159.000000, 46.000000)">
76
- <circle id="Oval" fill="url(#radialGradient-3)" cx="7.8" cy="7.99" r="7.55"></circle>
77
- <circle id="Oval" fill="url(#radialGradient-4)" opacity="0.8" cx="7.8" cy="7.99" r="7.55"></circle>
78
- <circle id="Oval" fill="#1B1A1F" cx="7.8" cy="7.99" r="5.03"></circle>
79
- <circle id="Oval" fill="#36284C" cx="7.8" cy="7.99" r="3.68"></circle>
80
- <circle id="Oval" fill="url(#radialGradient-5)" cx="7.8" cy="7.99" r="3.68"></circle>
81
- <g transform="translate(5.000000, 5.000000)" id="Shape">
82
- <path d="M4.82,2.99 C4.82,4.11 3.91,5.01 2.8,5.01 C1.68,5.01 0.78,4.1 0.78,2.99 C0.78,1.87 1.69,0.97 2.8,0.97 C3.91,0.96 4.82,1.87 4.82,2.99 L4.82,2.99 Z" fill="#141414" opacity="0.5"></path>
83
- <path d="M4.82,2.99 C4.82,4.11 3.91,5.01 2.8,5.01 C1.68,5.01 0.78,4.1 0.78,2.99 C0.78,1.87 1.69,0.97 2.8,0.97 C3.91,0.96 4.82,1.87 4.82,2.99 L4.82,2.99 Z" fill="url(#radialGradient-6)"></path>
84
- </g>
85
- <path d="M7.8,6.47 C7.35,6.47 6.96,6.67 6.68,6.98 L7.15,7.45 C7.31,7.26 7.53,7.14 7.79,7.14 C8.06,7.14 8.29,7.28 8.45,7.47 L8.92,6.99 C8.65,6.68 8.25,6.47 7.8,6.47 L7.8,6.47 Z" id="Shape" fill="url(#linearGradient-7)"></path>
86
- </g>
87
- <g transform="translate(201.000000, 50.000000)" id="Clipped">
88
- <g>
89
- <mask id="mask-9" fill="white">
90
- <use xlink:href="#path-8"></use>
91
- </mask>
92
- <g id="SVGID_9_"></g>
93
- <path d="M63.42,9.02 L4.8,9.02 C2.43,9.02 0.51,7.1 0.51,4.73 L0.51,4.73 C0.51,2.36 2.43,0.44 4.8,0.44 L63.42,0.44 C65.79,0.44 67.71,2.36 67.71,4.73 L67.71,4.73 C67.7,7.1 65.78,9.02 63.42,9.02 L63.42,9.02 Z" id="Shape" fill="url(#linearGradient-10)" opacity="0.8" mask="url(#mask-9)"></path>
94
- </g>
95
- <g>
96
- <mask id="mask-12" fill="white">
97
- <use xlink:href="#path-11"></use>
98
- </mask>
99
- <g id="SVGID_9_"></g>
100
- <path d="M1.92,0.33 L0.45,0.33 L0.45,1.8 L1.92,1.8 L1.92,0.33 L1.92,0.33 Z M4.85,0.33 L3.38,0.33 L3.38,1.8 L4.85,1.8 L4.85,0.33 L4.85,0.33 Z M7.79,0.33 L6.32,0.33 L6.32,1.8 L7.79,1.8 L7.79,0.33 L7.79,0.33 Z M10.72,0.33 L9.25,0.33 L9.25,1.8 L10.72,1.8 L10.72,0.33 L10.72,0.33 Z M13.66,0.33 L12.19,0.33 L12.19,1.8 L13.66,1.8 L13.66,0.33 L13.66,0.33 Z M16.59,0.33 L15.12,0.33 L15.12,1.8 L16.59,1.8 L16.59,0.33 L16.59,0.33 Z M19.53,0.33 L18.06,0.33 L18.06,1.8 L19.53,1.8 L19.53,0.33 L19.53,0.33 Z M22.46,0.33 L20.99,0.33 L20.99,1.8 L22.46,1.8 L22.46,0.33 L22.46,0.33 Z M25.4,0.33 L23.93,0.33 L23.93,1.8 L25.4,1.8 L25.4,0.33 L25.4,0.33 Z M28.33,0.33 L26.86,0.33 L26.86,1.8 L28.33,1.8 L28.33,0.33 L28.33,0.33 Z M31.27,0.33 L29.8,0.33 L29.8,1.8 L31.27,1.8 L31.27,0.33 L31.27,0.33 Z M34.2,0.33 L32.73,0.33 L32.73,1.8 L34.2,1.8 L34.2,0.33 L34.2,0.33 Z M37.14,0.33 L35.67,0.33 L35.67,1.8 L37.14,1.8 L37.14,0.33 L37.14,0.33 Z M40.07,0.33 L38.6,0.33 L38.6,1.8 L40.07,1.8 L40.07,0.33 L40.07,0.33 Z M43.01,0.33 L41.54,0.33 L41.54,1.8 L43.01,1.8 L43.01,0.33 L43.01,0.33 Z M45.94,0.33 L44.47,0.33 L44.47,1.8 L45.94,1.8 L45.94,0.33 L45.94,0.33 Z M48.88,0.33 L47.41,0.33 L47.41,1.8 L48.88,1.8 L48.88,0.33 L48.88,0.33 Z M51.81,0.33 L50.34,0.33 L50.34,1.8 L51.81,1.8 L51.81,0.33 L51.81,0.33 Z M54.75,0.33 L53.28,0.33 L53.28,1.8 L54.75,1.8 L54.75,0.33 L54.75,0.33 Z M57.68,0.33 L56.21,0.33 L56.21,1.8 L57.68,1.8 L57.68,0.33 L57.68,0.33 Z M60.62,0.33 L59.15,0.33 L59.15,1.8 L60.62,1.8 L60.62,0.33 L60.62,0.33 Z M63.55,0.33 L62.08,0.33 L62.08,1.8 L63.55,1.8 L63.55,0.33 L63.55,0.33 Z M66.49,0.33 L65.02,0.33 L65.02,1.8 L66.49,1.8 L66.49,0.33 L66.49,0.33 Z M3.39,1.79 L1.92,1.79 L1.92,3.26 L3.39,3.26 L3.39,1.79 L3.39,1.79 Z M6.32,1.79 L4.85,1.79 L4.85,3.26 L6.32,3.26 L6.32,1.79 L6.32,1.79 Z M9.26,1.79 L7.79,1.79 L7.79,3.26 L9.26,3.26 L9.26,1.79 L9.26,1.79 Z M12.19,1.79 L10.72,1.79 L10.72,3.26 L12.19,3.26 L12.19,1.79 L12.19,1.79 Z M15.13,1.79 L13.66,1.79 L13.66,3.26 L15.13,3.26 L15.13,1.79 L15.13,1.79 Z M18.06,1.79 L16.59,1.79 L16.59,3.26 L18.06,3.26 L18.06,1.79 L18.06,1.79 Z M20.99,1.79 L19.52,1.79 L19.52,3.26 L20.99,3.26 L20.99,1.79 L20.99,1.79 Z M23.93,1.79 L22.46,1.79 L22.46,3.26 L23.93,3.26 L23.93,1.79 L23.93,1.79 Z M26.86,1.79 L25.39,1.79 L25.39,3.26 L26.86,3.26 L26.86,1.79 L26.86,1.79 Z M29.8,1.79 L28.33,1.79 L28.33,3.26 L29.8,3.26 L29.8,1.79 L29.8,1.79 Z M32.73,1.79 L31.26,1.79 L31.26,3.26 L32.73,3.26 L32.73,1.79 L32.73,1.79 Z M35.67,1.79 L34.2,1.79 L34.2,3.26 L35.67,3.26 L35.67,1.79 L35.67,1.79 Z M38.6,1.79 L37.13,1.79 L37.13,3.26 L38.6,3.26 L38.6,1.79 L38.6,1.79 Z M41.54,1.79 L40.07,1.79 L40.07,3.26 L41.54,3.26 L41.54,1.79 L41.54,1.79 Z M44.47,1.79 L43,1.79 L43,3.26 L44.47,3.26 L44.47,1.79 L44.47,1.79 Z M47.41,1.79 L45.94,1.79 L45.94,3.26 L47.41,3.26 L47.41,1.79 L47.41,1.79 Z M50.34,1.79 L48.87,1.79 L48.87,3.26 L50.34,3.26 L50.34,1.79 L50.34,1.79 Z M53.28,1.79 L51.81,1.79 L51.81,3.26 L53.28,3.26 L53.28,1.79 L53.28,1.79 Z M56.21,1.79 L54.74,1.79 L54.74,3.26 L56.21,3.26 L56.21,1.79 L56.21,1.79 Z M59.15,1.79 L57.68,1.79 L57.68,3.26 L59.15,3.26 L59.15,1.79 L59.15,1.79 Z M62.08,1.79 L60.61,1.79 L60.61,3.26 L62.08,3.26 L62.08,1.79 L62.08,1.79 Z M65.02,1.79 L63.55,1.79 L63.55,3.26 L65.02,3.26 L65.02,1.79 L65.02,1.79 Z M67.95,1.79 L66.48,1.79 L66.48,3.26 L67.95,3.26 L67.95,1.79 L67.95,1.79 Z M1.92,3.26 L0.45,3.26 L0.45,4.73 L1.92,4.73 L1.92,3.26 L1.92,3.26 Z M4.85,3.26 L3.38,3.26 L3.38,4.73 L4.85,4.73 L4.85,3.26 L4.85,3.26 Z M7.79,3.26 L6.32,3.26 L6.32,4.73 L7.79,4.73 L7.79,3.26 L7.79,3.26 Z M10.72,3.26 L9.25,3.26 L9.25,4.73 L10.72,4.73 L10.72,3.26 L10.72,3.26 Z M13.66,3.26 L12.19,3.26 L12.19,4.73 L13.66,4.73 L13.66,3.26 L13.66,3.26 Z M16.59,3.26 L15.12,3.26 L15.12,4.73 L16.59,4.73 L16.59,3.26 L16.59,3.26 Z M19.53,3.26 L18.06,3.26 L18.06,4.73 L19.53,4.73 L19.53,3.26 L19.53,3.26 Z M22.46,3.26 L20.99,3.26 L20.99,4.73 L22.46,4.73 L22.46,3.26 L22.46,3.26 Z M25.4,3.26 L23.93,3.26 L23.93,4.73 L25.4,4.73 L25.4,3.26 L25.4,3.26 Z M28.33,3.26 L26.86,3.26 L26.86,4.73 L28.33,4.73 L28.33,3.26 L28.33,3.26 Z M31.27,3.26 L29.8,3.26 L29.8,4.73 L31.27,4.73 L31.27,3.26 L31.27,3.26 Z M34.2,3.26 L32.73,3.26 L32.73,4.73 L34.2,4.73 L34.2,3.26 L34.2,3.26 Z M37.14,3.26 L35.67,3.26 L35.67,4.73 L37.14,4.73 L37.14,3.26 L37.14,3.26 Z M40.07,3.26 L38.6,3.26 L38.6,4.73 L40.07,4.73 L40.07,3.26 L40.07,3.26 Z M43.01,3.26 L41.54,3.26 L41.54,4.73 L43.01,4.73 L43.01,3.26 L43.01,3.26 Z M45.94,3.26 L44.47,3.26 L44.47,4.73 L45.94,4.73 L45.94,3.26 L45.94,3.26 Z M48.88,3.26 L47.41,3.26 L47.41,4.73 L48.88,4.73 L48.88,3.26 L48.88,3.26 Z M51.81,3.26 L50.34,3.26 L50.34,4.73 L51.81,4.73 L51.81,3.26 L51.81,3.26 Z M54.75,3.26 L53.28,3.26 L53.28,4.73 L54.75,4.73 L54.75,3.26 L54.75,3.26 Z M57.68,3.26 L56.21,3.26 L56.21,4.73 L57.68,4.73 L57.68,3.26 L57.68,3.26 Z M60.62,3.26 L59.15,3.26 L59.15,4.73 L60.62,4.73 L60.62,3.26 L60.62,3.26 Z M63.55,3.26 L62.08,3.26 L62.08,4.73 L63.55,4.73 L63.55,3.26 L63.55,3.26 Z M66.49,3.26 L65.02,3.26 L65.02,4.73 L66.49,4.73 L66.49,3.26 L66.49,3.26 Z M3.39,4.73 L1.92,4.73 L1.92,6.2 L3.39,6.2 L3.39,4.73 L3.39,4.73 Z M6.32,4.73 L4.85,4.73 L4.85,6.2 L6.32,6.2 L6.32,4.73 L6.32,4.73 Z M9.26,4.73 L7.79,4.73 L7.79,6.2 L9.26,6.2 L9.26,4.73 L9.26,4.73 Z M12.19,4.73 L10.72,4.73 L10.72,6.2 L12.19,6.2 L12.19,4.73 L12.19,4.73 Z M15.13,4.73 L13.66,4.73 L13.66,6.2 L15.13,6.2 L15.13,4.73 L15.13,4.73 Z M18.06,4.73 L16.59,4.73 L16.59,6.2 L18.06,6.2 L18.06,4.73 L18.06,4.73 Z M20.99,4.73 L19.52,4.73 L19.52,6.2 L20.99,6.2 L20.99,4.73 L20.99,4.73 Z M23.93,4.73 L22.46,4.73 L22.46,6.2 L23.93,6.2 L23.93,4.73 L23.93,4.73 Z M26.86,4.73 L25.39,4.73 L25.39,6.2 L26.86,6.2 L26.86,4.73 L26.86,4.73 Z M29.8,4.73 L28.33,4.73 L28.33,6.2 L29.8,6.2 L29.8,4.73 L29.8,4.73 Z M32.73,4.73 L31.26,4.73 L31.26,6.2 L32.73,6.2 L32.73,4.73 L32.73,4.73 Z M35.67,4.73 L34.2,4.73 L34.2,6.2 L35.67,6.2 L35.67,4.73 L35.67,4.73 Z M38.6,4.73 L37.13,4.73 L37.13,6.2 L38.6,6.2 L38.6,4.73 L38.6,4.73 Z M41.54,4.73 L40.07,4.73 L40.07,6.2 L41.54,6.2 L41.54,4.73 L41.54,4.73 Z M44.47,4.73 L43,4.73 L43,6.2 L44.47,6.2 L44.47,4.73 L44.47,4.73 Z M47.41,4.73 L45.94,4.73 L45.94,6.2 L47.41,6.2 L47.41,4.73 L47.41,4.73 Z M50.34,4.73 L48.87,4.73 L48.87,6.2 L50.34,6.2 L50.34,4.73 L50.34,4.73 Z M53.28,4.73 L51.81,4.73 L51.81,6.2 L53.28,6.2 L53.28,4.73 L53.28,4.73 Z M56.21,4.73 L54.74,4.73 L54.74,6.2 L56.21,6.2 L56.21,4.73 L56.21,4.73 Z M59.15,4.73 L57.68,4.73 L57.68,6.2 L59.15,6.2 L59.15,4.73 L59.15,4.73 Z M62.08,4.73 L60.61,4.73 L60.61,6.2 L62.08,6.2 L62.08,4.73 L62.08,4.73 Z M65.02,4.73 L63.55,4.73 L63.55,6.2 L65.02,6.2 L65.02,4.73 L65.02,4.73 Z M67.95,4.73 L66.48,4.73 L66.48,6.2 L67.95,6.2 L67.95,4.73 L67.95,4.73 Z M1.92,6.2 L0.45,6.2 L0.45,7.67 L1.92,7.67 L1.92,6.2 L1.92,6.2 Z M4.85,6.2 L3.38,6.2 L3.38,7.67 L4.85,7.67 L4.85,6.2 L4.85,6.2 Z M7.79,6.2 L6.32,6.2 L6.32,7.67 L7.79,7.67 L7.79,6.2 L7.79,6.2 Z M10.72,6.2 L9.25,6.2 L9.25,7.67 L10.72,7.67 L10.72,6.2 L10.72,6.2 Z M13.66,6.2 L12.19,6.2 L12.19,7.67 L13.66,7.67 L13.66,6.2 L13.66,6.2 Z M16.59,6.2 L15.12,6.2 L15.12,7.67 L16.59,7.67 L16.59,6.2 L16.59,6.2 Z M19.53,6.2 L18.06,6.2 L18.06,7.67 L19.53,7.67 L19.53,6.2 L19.53,6.2 Z M22.46,6.2 L20.99,6.2 L20.99,7.67 L22.46,7.67 L22.46,6.2 L22.46,6.2 Z M25.4,6.2 L23.93,6.2 L23.93,7.67 L25.4,7.67 L25.4,6.2 L25.4,6.2 Z M28.33,6.2 L26.86,6.2 L26.86,7.67 L28.33,7.67 L28.33,6.2 L28.33,6.2 Z M31.27,6.2 L29.8,6.2 L29.8,7.67 L31.27,7.67 L31.27,6.2 L31.27,6.2 Z M34.2,6.2 L32.73,6.2 L32.73,7.67 L34.2,7.67 L34.2,6.2 L34.2,6.2 Z M37.14,6.2 L35.67,6.2 L35.67,7.67 L37.14,7.67 L37.14,6.2 L37.14,6.2 Z M40.07,6.2 L38.6,6.2 L38.6,7.67 L40.07,7.67 L40.07,6.2 L40.07,6.2 Z M43.01,6.2 L41.54,6.2 L41.54,7.67 L43.01,7.67 L43.01,6.2 L43.01,6.2 Z M45.94,6.2 L44.47,6.2 L44.47,7.67 L45.94,7.67 L45.94,6.2 L45.94,6.2 Z M48.88,6.2 L47.41,6.2 L47.41,7.67 L48.88,7.67 L48.88,6.2 L48.88,6.2 Z M51.81,6.2 L50.34,6.2 L50.34,7.67 L51.81,7.67 L51.81,6.2 L51.81,6.2 Z M54.75,6.2 L53.28,6.2 L53.28,7.67 L54.75,7.67 L54.75,6.2 L54.75,6.2 Z M57.68,6.2 L56.21,6.2 L56.21,7.67 L57.68,7.67 L57.68,6.2 L57.68,6.2 Z M60.62,6.2 L59.15,6.2 L59.15,7.67 L60.62,7.67 L60.62,6.2 L60.62,6.2 Z M63.55,6.2 L62.08,6.2 L62.08,7.67 L63.55,7.67 L63.55,6.2 L63.55,6.2 Z M66.49,6.2 L65.02,6.2 L65.02,7.67 L66.49,7.67 L66.49,6.2 L66.49,6.2 Z M3.39,7.66 L1.92,7.66 L1.92,9.13 L3.39,9.13 L3.39,7.66 L3.39,7.66 Z M6.32,7.66 L4.85,7.66 L4.85,9.13 L6.32,9.13 L6.32,7.66 L6.32,7.66 Z M9.26,7.66 L7.79,7.66 L7.79,9.13 L9.26,9.13 L9.26,7.66 L9.26,7.66 Z M12.19,7.66 L10.72,7.66 L10.72,9.13 L12.19,9.13 L12.19,7.66 L12.19,7.66 Z M15.13,7.66 L13.66,7.66 L13.66,9.13 L15.13,9.13 L15.13,7.66 L15.13,7.66 Z M18.06,7.66 L16.59,7.66 L16.59,9.13 L18.06,9.13 L18.06,7.66 L18.06,7.66 Z M20.99,7.66 L19.52,7.66 L19.52,9.13 L20.99,9.13 L20.99,7.66 L20.99,7.66 Z M23.93,7.66 L22.46,7.66 L22.46,9.13 L23.93,9.13 L23.93,7.66 L23.93,7.66 Z M26.86,7.66 L25.39,7.66 L25.39,9.13 L26.86,9.13 L26.86,7.66 L26.86,7.66 Z M29.8,7.66 L28.33,7.66 L28.33,9.13 L29.8,9.13 L29.8,7.66 L29.8,7.66 Z M32.73,7.66 L31.26,7.66 L31.26,9.13 L32.73,9.13 L32.73,7.66 L32.73,7.66 Z M35.67,7.66 L34.2,7.66 L34.2,9.13 L35.67,9.13 L35.67,7.66 L35.67,7.66 Z M38.6,7.66 L37.13,7.66 L37.13,9.13 L38.6,9.13 L38.6,7.66 L38.6,7.66 Z M41.54,7.66 L40.07,7.66 L40.07,9.13 L41.54,9.13 L41.54,7.66 L41.54,7.66 Z M44.47,7.66 L43,7.66 L43,9.13 L44.47,9.13 L44.47,7.66 L44.47,7.66 Z M47.41,7.66 L45.94,7.66 L45.94,9.13 L47.41,9.13 L47.41,7.66 L47.41,7.66 Z M50.34,7.66 L48.87,7.66 L48.87,9.13 L50.34,9.13 L50.34,7.66 L50.34,7.66 Z M53.28,7.66 L51.81,7.66 L51.81,9.13 L53.28,9.13 L53.28,7.66 L53.28,7.66 Z M56.21,7.66 L54.74,7.66 L54.74,9.13 L56.21,9.13 L56.21,7.66 L56.21,7.66 Z M59.15,7.66 L57.68,7.66 L57.68,9.13 L59.15,9.13 L59.15,7.66 L59.15,7.66 Z M62.08,7.66 L60.61,7.66 L60.61,9.13 L62.08,9.13 L62.08,7.66 L62.08,7.66 Z M65.02,7.66 L63.55,7.66 L63.55,9.13 L65.02,9.13 L65.02,7.66 L65.02,7.66 Z M67.95,7.66 L66.48,7.66 L66.48,9.13 L67.95,9.13 L67.95,7.66 L67.95,7.66 Z" id="Shape" fill="#2E2E2E" mask="url(#mask-12)"></path>
101
- </g>
102
- <g>
103
- <mask id="mask-14" fill="white">
104
- <use xlink:href="#path-13"></use>
105
- </mask>
106
- <g id="SVGID_9_"></g>
107
- <path d="M63.83,0.08 L4.39,0.08 C1.99,0.08 0.04,2.16 0.04,4.73 C0.04,7.3 1.99,9.38 4.39,9.38 L63.83,9.38 C66.23,9.38 68.18,7.3 68.18,4.73 C68.18,2.16 66.23,0.08 63.83,0.08 L63.83,0.08 Z M63.42,7.92 L4.8,7.92 C3.04,7.92 1.6,6.49 1.6,4.72 C1.6,2.95 3.03,1.52 4.8,1.52 L63.42,1.52 C65.18,1.52 66.62,2.95 66.62,4.72 C66.62,6.49 65.18,7.92 63.42,7.92 L63.42,7.92 Z" id="Shape" fill="#000000" opacity="0.2" mask="url(#mask-14)"></path>
108
- </g>
109
- </g>
110
- <path d="M234.73,865.33 C216.6,865.33 201.9,880.03 201.9,898.16 C201.9,916.29 216.6,930.99 234.73,930.99 C252.86,930.99 267.56,916.29 267.56,898.16 C267.56,880.03 252.86,865.33 234.73,865.33 L234.73,865.33 Z M234.73,927.98 C218.26,927.98 204.91,914.63 204.91,898.16 C204.91,881.69 218.26,868.34 234.73,868.34 C251.2,868.34 264.55,881.69 264.55,898.16 C264.55,914.62 251.2,927.98 234.73,927.98 L234.73,927.98 Z" id="Shape" fill="url(#linearGradient-15)"></path>
111
- <path d="M69.89,8.59 C37.79,8.59 11.76,34.62 11.76,66.72 L11.76,571.87 L322.2,8.59 L69.89,8.59 L69.89,8.59 Z" id="Shape" fill="url(#linearGradient-16)"></path>
112
- </g>
113
- <rect id="Rectangle-path" fill="#000000" x="26" y="107" width="414" height="736"></rect>
114
- </g>
115
- </g>
116
- </svg>