cisco.xml 147 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128
  1. <shapes name="mxGraph.rack.cisco">
  2. <shape name="Cisco 1905 Serial Integrated Services Router" h="14.8" w="160.9">
  3. <foreground>
  4. <strokecolor color="#000000"/>
  5. <fillcolor color="#b4b4b4"/>
  6. <rect x="0" y="0" w="160.9" h="14.8"/>
  7. <fillstroke/>
  8. <fillcolor color="#e8e8e8"/>
  9. <rect x="6" y="5" w="149" h="9.8"/>
  10. <fillstroke/>
  11. <fillcolor color="#b4b4b4"/>
  12. <rect x="6" y="0" w="22" h="8"/>
  13. <fillstroke/>
  14. <path>
  15. <move x="155" y="0"/>
  16. <line x="155" y="8"/>
  17. </path>
  18. <stroke/>
  19. </foreground>
  20. </shape>
  21. <shape name="Cisco 1921 Integrated Services Router" h="29.6" w="160.9">
  22. <foreground>
  23. <strokecolor color="#000000"/>
  24. <fillcolor color="#b4b4b4"/>
  25. <rect x="0" y="0" w="160.9" h="29.6"/>
  26. <fillstroke/>
  27. <fillcolor color="#e8e8e8"/>
  28. <rect x="6" y="4" w="149" h="25.6"/>
  29. <fillstroke/>
  30. <fillcolor color="#b4b4b4"/>
  31. <rect x="6" y="0" w="22" h="8"/>
  32. <fillstroke/>
  33. <path>
  34. <move x="155" y="0"/>
  35. <line x="155" y="4"/>
  36. </path>
  37. <stroke/>
  38. </foreground>
  39. </shape>
  40. <shape name="Cisco 1941 Series Integrated Services Router" h="29.6" w="160.9">
  41. <foreground>
  42. <strokecolor color="#000000"/>
  43. <fillcolor color="#b4b4b4"/>
  44. <rect x="0" y="0" w="160.9" h="29.6"/>
  45. <fillstroke/>
  46. <fillcolor color="#e8e8e8"/>
  47. <path>
  48. <move x="6" y="29.6"/>
  49. <line x="6" y="5"/>
  50. <arc rx="5" ry="5" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="11" y="0"/>
  51. <line x="149.9" y="0"/>
  52. <arc rx="5" ry="5" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="154.9" y="5"/>
  53. <line x="154.9" y="29.6"/>
  54. <close/>
  55. </path>
  56. <fillstroke/>
  57. <rect x="8" y="16.8" w="116" h="6"/>
  58. <stroke/>
  59. <rect x="11" y="22.8" w="23" h="4"/>
  60. <stroke/>
  61. <rect x="40" y="22.8" w="23" h="4"/>
  62. <stroke/>
  63. <path>
  64. <move x="46.67" y="16.8"/>
  65. <line x="46.67" y="22.8"/>
  66. </path>
  67. <stroke/>
  68. <path>
  69. <move x="85.34" y="16.8"/>
  70. <line x="85.34" y="22.8"/>
  71. </path>
  72. <stroke/>
  73. <rect x="128" y="16.8" w="5" h="4"/>
  74. <stroke/>
  75. <rect x="128" y="22.8" w="5" h="4"/>
  76. <stroke/>
  77. <rect x="135" y="22.8" w="5" h="4"/>
  78. <stroke/>
  79. <rect x="143" y="16.8" w="5" h="10"/>
  80. <stroke/>
  81. <rect x="38" y="3" w="40" h="11"/>
  82. <stroke/>
  83. </foreground>
  84. </shape>
  85. <shape name="Cisco 2901 Integrated Services Router" h="14.7" w="160.9">
  86. <foreground>
  87. <strokecolor color="#000000"/>
  88. <fillcolor color="#b4b4b4"/>
  89. <rect x="0" y="0" w="160.9" h="14.7"/>
  90. <fillstroke/>
  91. <fillcolor color="#e8e8e8"/>
  92. <rect x="5.99" y="0" w="149.09" h="14.7"/>
  93. <fillstroke/>
  94. <rect x="8" y="2" w="116" h="6"/>
  95. <stroke/>
  96. <rect x="11" y="8" w="23" h="4"/>
  97. <stroke/>
  98. <rect x="40" y="8" w="23" h="4"/>
  99. <stroke/>
  100. <path>
  101. <move x="37" y="2"/>
  102. <line x="37" y="8"/>
  103. </path>
  104. <stroke/>
  105. <path>
  106. <move x="66" y="2"/>
  107. <line x="66" y="8"/>
  108. </path>
  109. <stroke/>
  110. <path>
  111. <move x="95" y="2"/>
  112. <line x="95" y="8"/>
  113. </path>
  114. <stroke/>
  115. <rect x="128" y="2" w="5" h="4"/>
  116. <stroke/>
  117. <rect x="128" y="8" w="5" h="4"/>
  118. <stroke/>
  119. <rect x="135" y="8" w="5" h="4"/>
  120. <stroke/>
  121. <rect x="143" y="2" w="5" h="10"/>
  122. <stroke/>
  123. </foreground>
  124. </shape>
  125. <shape name="Cisco 2911 Integrated Services Router" h="44.4" w="160.85">
  126. <foreground>
  127. <strokecolor color="#000000"/>
  128. <fillcolor color="#b4b4b4"/>
  129. <rect x="0" y="0" w="160.85" h="44.35"/>
  130. <fillstroke/>
  131. <fillcolor color="#e8e8e8"/>
  132. <rect x="6" y="8" w="149" h="36.4"/>
  133. <fillstroke/>
  134. <rect x="35" y="34.2" w="18" h="10"/>
  135. <stroke/>
  136. <path>
  137. <move x="6" y="0"/>
  138. <line x="6" y="8"/>
  139. </path>
  140. <stroke/>
  141. <path>
  142. <move x="155" y="0"/>
  143. <line x="155" y="8"/>
  144. </path>
  145. <stroke/>
  146. <fillcolor color="#b4b4b4"/>
  147. <path>
  148. <move x="8" y="10"/>
  149. <line x="153" y="10"/>
  150. <line x="153" y="40"/>
  151. <line x="55" y="40"/>
  152. <line x="55" y="32"/>
  153. <line x="33" y="32"/>
  154. <line x="33" y="40"/>
  155. <line x="8" y="40"/>
  156. <close/>
  157. </path>
  158. <fill/>
  159. <strokecolor color="#000000"/>
  160. <rect x="80" y="34.2" w="18" h="10"/>
  161. <stroke/>
  162. </foreground>
  163. </shape>
  164. <shape name="Cisco 2921 Integrated Services Router" h="44.4" w="160.85">
  165. <foreground>
  166. <strokecolor color="#000000"/>
  167. <fillcolor color="#b4b4b4"/>
  168. <rect x="0" y="0" w="160.85" h="44.35"/>
  169. <fillstroke/>
  170. <fillcolor color="#e8e8e8"/>
  171. <rect x="6" y="8" w="149" h="36.4"/>
  172. <fillstroke/>
  173. <rect x="35" y="34.2" w="18" h="10"/>
  174. <stroke/>
  175. <path>
  176. <move x="6" y="0"/>
  177. <line x="6" y="8"/>
  178. </path>
  179. <stroke/>
  180. <path>
  181. <move x="155" y="0"/>
  182. <line x="155" y="8"/>
  183. </path>
  184. <stroke/>
  185. <fillcolor color="#b4b4b4"/>
  186. <path>
  187. <move x="8" y="10"/>
  188. <line x="153" y="10"/>
  189. <line x="153" y="43"/>
  190. <line x="55" y="43"/>
  191. <line x="55" y="32"/>
  192. <line x="33" y="32"/>
  193. <line x="33" y="43"/>
  194. <line x="8" y="43"/>
  195. <close/>
  196. </path>
  197. <fill/>
  198. <strokecolor color="#000000"/>
  199. <rect x="105" y="30.2" w="22" h="14"/>
  200. <stroke/>
  201. </foreground>
  202. </shape>
  203. <shape name="Cisco 2951 Integrated Services Router" h="44.4" w="160.85">
  204. <foreground>
  205. <strokecolor color="#000000"/>
  206. <fillcolor color="#b4b4b4"/>
  207. <rect x="0" y="0" w="160.85" h="44.35"/>
  208. <fillstroke/>
  209. <fillcolor color="#e8e8e8"/>
  210. <rect x="6" y="8" w="149" h="36.4"/>
  211. <fillstroke/>
  212. <rect x="35" y="34.2" w="18" h="10"/>
  213. <stroke/>
  214. <path>
  215. <move x="6" y="0"/>
  216. <line x="6" y="8"/>
  217. </path>
  218. <stroke/>
  219. <path>
  220. <move x="155" y="0"/>
  221. <line x="155" y="8"/>
  222. </path>
  223. <stroke/>
  224. <fillcolor color="#b4b4b4"/>
  225. <path>
  226. <move x="8" y="10"/>
  227. <line x="153" y="10"/>
  228. <line x="153" y="43"/>
  229. <line x="55" y="43"/>
  230. <line x="55" y="32"/>
  231. <line x="33" y="32"/>
  232. <line x="33" y="43"/>
  233. <line x="8" y="43"/>
  234. <close/>
  235. </path>
  236. <fill/>
  237. <strokecolor color="#000000"/>
  238. <rect x="105" y="30.2" w="22" h="14"/>
  239. <stroke/>
  240. </foreground>
  241. </shape>
  242. <shape name="Cisco 3925 Integrated Services Router" h="44.4" w="160.85">
  243. <foreground>
  244. <strokecolor color="#000000"/>
  245. <fillcolor color="#b4b4b4"/>
  246. <rect x="0" y="0" w="160.85" h="44.35"/>
  247. <fillstroke/>
  248. <fillcolor color="#e8e8e8"/>
  249. <rect x="6" y="8" w="149" h="36.4"/>
  250. <fillstroke/>
  251. <rect x="35" y="34.2" w="18" h="10"/>
  252. <stroke/>
  253. <rect x="108" y="34.2" w="18" h="10"/>
  254. <stroke/>
  255. <path>
  256. <move x="6" y="0"/>
  257. <line x="6" y="8"/>
  258. </path>
  259. <stroke/>
  260. <path>
  261. <move x="155" y="0"/>
  262. <line x="155" y="8"/>
  263. </path>
  264. <stroke/>
  265. <fillcolor color="#b4b4b4"/>
  266. <path>
  267. <move x="8" y="10"/>
  268. <line x="153" y="10"/>
  269. <line x="153" y="40"/>
  270. <line x="128" y="40"/>
  271. <line x="128" y="32"/>
  272. <line x="106" y="32"/>
  273. <line x="106" y="40"/>
  274. <line x="55" y="40"/>
  275. <line x="55" y="32"/>
  276. <line x="33" y="32"/>
  277. <line x="33" y="40"/>
  278. <line x="8" y="40"/>
  279. <close/>
  280. </path>
  281. <fill/>
  282. </foreground>
  283. </shape>
  284. <shape name="Cisco 3945 Integrated Servies Router" h="44.4" w="160.85">
  285. <foreground>
  286. <strokecolor color="#000000"/>
  287. <fillcolor color="#b4b4b4"/>
  288. <rect x="0" y="0" w="160.85" h="44.35"/>
  289. <fillstroke/>
  290. <fillcolor color="#e8e8e8"/>
  291. <rect x="6" y="8" w="149" h="36.4"/>
  292. <fillstroke/>
  293. <rect x="35" y="34.2" w="18" h="10"/>
  294. <stroke/>
  295. <rect x="108" y="34.2" w="18" h="10"/>
  296. <stroke/>
  297. <path>
  298. <move x="6" y="0"/>
  299. <line x="6" y="8"/>
  300. </path>
  301. <stroke/>
  302. <path>
  303. <move x="155" y="0"/>
  304. <line x="155" y="8"/>
  305. </path>
  306. <stroke/>
  307. <fillcolor color="#b4b4b4"/>
  308. <path>
  309. <move x="8" y="10"/>
  310. <line x="153" y="10"/>
  311. <line x="153" y="40"/>
  312. <line x="128" y="40"/>
  313. <line x="128" y="32"/>
  314. <line x="106" y="32"/>
  315. <line x="106" y="40"/>
  316. <line x="55" y="40"/>
  317. <line x="55" y="32"/>
  318. <line x="33" y="32"/>
  319. <line x="33" y="40"/>
  320. <line x="8" y="40"/>
  321. <close/>
  322. </path>
  323. <fill/>
  324. </foreground>
  325. </shape>
  326. <shape name="Cisco 7603 Router" h="59.3" w="160.85">
  327. <foreground>
  328. <strokecolor color="#000000"/>
  329. <fillcolor color="#b4b4b4"/>
  330. <rect x="0" y="0" w="160.85" h="59.3"/>
  331. <fillstroke/>
  332. <fillcolor color="#e8e8e8"/>
  333. <rect x="6" y="0" w="149.32" h="59.3"/>
  334. <fillstroke/>
  335. <path>
  336. <move x="18" y="0"/>
  337. <line x="18" y="59.2"/>
  338. <move x="18" y="12"/>
  339. <line x="155" y="12"/>
  340. <move x="18" y="24"/>
  341. <line x="155" y="24"/>
  342. <move x="18" y="50"/>
  343. <line x="155" y="50"/>
  344. <move x="18" y="36"/>
  345. <line x="155" y="36"/>
  346. <move x="80.5" y="24"/>
  347. <line x="80.5" y="36"/>
  348. </path>
  349. <stroke/>
  350. </foreground>
  351. </shape>
  352. <shape name="Cisco 7604 Router" h="74" w="160.85">
  353. <foreground>
  354. <strokecolor color="#000000"/>
  355. <fillcolor color="#b4b4b4"/>
  356. <rect x="0" y="0" w="160.85" h="74"/>
  357. <fillstroke/>
  358. <fillcolor color="#e8e8e8"/>
  359. <rect x="6" y="0" w="149.32" h="74"/>
  360. <fillstroke/>
  361. <path>
  362. <move x="18" y="0"/>
  363. <line x="18" y="74"/>
  364. <move x="18" y="10"/>
  365. <line x="155" y="10"/>
  366. <move x="18" y="26"/>
  367. <line x="155" y="26"/>
  368. <move x="18" y="58"/>
  369. <line x="155" y="58"/>
  370. <move x="18" y="42"/>
  371. <line x="155" y="42"/>
  372. </path>
  373. <stroke/>
  374. <roundrect x="10" y="23" w="3" h="32" arcsize="27.34375"/>
  375. <stroke/>
  376. </foreground>
  377. </shape>
  378. <shape name="Cisco 7606 Router" h="103.6" w="160.85">
  379. <foreground>
  380. <strokecolor color="#000000"/>
  381. <fillcolor color="#b4b4b4"/>
  382. <rect x="0" y="0" w="160.85" h="103.6"/>
  383. <fillstroke/>
  384. <fillcolor color="#e8e8e8"/>
  385. <rect x="6" y="0" w="149.32" h="103.6"/>
  386. <fillstroke/>
  387. <path>
  388. <move x="18" y="0"/>
  389. <line x="18" y="103.6"/>
  390. <move x="18" y="10"/>
  391. <line x="155" y="10"/>
  392. <move x="18" y="25"/>
  393. <line x="155" y="25"/>
  394. <move x="18" y="55"/>
  395. <line x="155" y="55"/>
  396. <move x="18" y="40"/>
  397. <line x="155" y="40"/>
  398. </path>
  399. <stroke/>
  400. <roundrect x="10" y="37" w="3" h="32" arcsize="50"/>
  401. <stroke/>
  402. <path>
  403. <move x="18" y="72"/>
  404. <line x="155" y="72"/>
  405. <move x="18" y="89"/>
  406. <line x="155" y="89"/>
  407. </path>
  408. <stroke/>
  409. </foreground>
  410. </shape>
  411. <shape name="Cisco 7609 Router" h="310.8" w="160.85">
  412. <foreground>
  413. <strokecolor color="#000000"/>
  414. <fillcolor color="#b4b4b4"/>
  415. <rect x="0" y="0" w="160.85" h="310.8"/>
  416. <fillstroke/>
  417. <fillcolor color="#e8e8e8"/>
  418. <rect x="6" y="0" w="149" h="310.8"/>
  419. <fillstroke/>
  420. <path>
  421. <move x="6" y="45"/>
  422. <line x="155" y="45"/>
  423. <move x="6" y="65"/>
  424. <line x="155" y="65"/>
  425. <move x="6" y="180"/>
  426. <line x="155" y="180"/>
  427. <move x="6" y="230"/>
  428. <line x="155" y="230"/>
  429. <move x="12" y="65"/>
  430. <line x="12" y="180"/>
  431. <move x="149" y="65"/>
  432. <line x="149" y="180"/>
  433. <move x="27.22" y="65"/>
  434. <line x="27.22" y="180"/>
  435. <move x="42.44" y="65"/>
  436. <line x="42.44" y="180"/>
  437. <move x="57.66" y="65"/>
  438. <line x="57.66" y="180"/>
  439. <move x="72.88" y="65"/>
  440. <line x="72.88" y="180"/>
  441. <move x="88.1" y="65"/>
  442. <line x="88.1" y="180"/>
  443. <move x="103.22" y="65"/>
  444. <line x="103.22" y="180"/>
  445. <move x="118.54" y="65"/>
  446. <line x="118.54" y="180"/>
  447. <move x="133.76" y="65"/>
  448. <line x="133.76" y="180"/>
  449. <move x="80.5" y="180.75"/>
  450. <line x="80.5" y="229.75"/>
  451. </path>
  452. <stroke/>
  453. <fillcolor color="#b4b4b4"/>
  454. <roundrect x="8" y="182" w="70.5" h="46" arcsize="3.5923527597903173"/>
  455. <fill/>
  456. <roundrect x="82.5" y="182" w="70.5" h="46" arcsize="3.5923527597903173"/>
  457. <fill/>
  458. <strokecolor color="#000000"/>
  459. <rect x="17.5" y="232.5" w="126" h="75"/>
  460. <stroke/>
  461. <path>
  462. <move x="80.5" y="232.5"/>
  463. <line x="80.5" y="307.5"/>
  464. </path>
  465. <stroke/>
  466. <fillcolor color="#999999"/>
  467. <ellipse x="34.5" y="236.5" w="42" h="42"/>
  468. <fill/>
  469. <ellipse x="97.5" y="236.5" w="42" h="42"/>
  470. <fill/>
  471. <strokecolor color="#000000"/>
  472. <fillcolor color="#b4b4b4"/>
  473. <roundrect x="31.5" y="256" w="45" h="3" arcsize="26.666666666666668"/>
  474. <fillstroke/>
  475. <roundrect x="94.5" y="256" w="45" h="3" arcsize="26.666666666666668"/>
  476. <fillstroke/>
  477. </foreground>
  478. </shape>
  479. <shape name="Cisco 7613 Router" h="266.4" w="160.85">
  480. <foreground>
  481. <strokecolor color="#000000"/>
  482. <fillcolor color="#b4b4b4"/>
  483. <rect x="0" y="0" w="160.85" h="266.4"/>
  484. <fillstroke/>
  485. <fillcolor color="#e8e8e8"/>
  486. <rect x="6" y="0" w="149" h="266.4"/>
  487. <fillstroke/>
  488. <path>
  489. <move x="15" y="12.5"/>
  490. <line x="155" y="12.5"/>
  491. <move x="15" y="25"/>
  492. <line x="155" y="25"/>
  493. <move x="6" y="180"/>
  494. <line x="155" y="180"/>
  495. </path>
  496. <stroke/>
  497. <rect x="17.5" y="191.4" w="126" h="75"/>
  498. <stroke/>
  499. <path>
  500. <move x="80.5" y="191.4"/>
  501. <line x="80.5" y="266.4"/>
  502. </path>
  503. <stroke/>
  504. <fillcolor color="#999999"/>
  505. <ellipse x="34.5" y="195.4" w="42" h="42"/>
  506. <fillstroke/>
  507. <ellipse x="97.5" y="195.4" w="42" h="42"/>
  508. <fillstroke/>
  509. <strokecolor color="#000000"/>
  510. <fillcolor color="#b4b4b4"/>
  511. <roundrect x="31.5" y="214.9" w="45" h="3" arcsize="50"/>
  512. <fillstroke/>
  513. <roundrect x="94.5" y="214.9" w="45" h="3" arcsize="50"/>
  514. <fillstroke/>
  515. <rect x="15" y="0" w="140" h="175"/>
  516. <stroke/>
  517. <path>
  518. <move x="15" y="37.5"/>
  519. <line x="155" y="37.5"/>
  520. <move x="15" y="50"/>
  521. <line x="155" y="50"/>
  522. <move x="15" y="62.5"/>
  523. <line x="155" y="62.5"/>
  524. <move x="15" y="75"/>
  525. <line x="155" y="75"/>
  526. <move x="15" y="87.5"/>
  527. <line x="155" y="87.5"/>
  528. <move x="15" y="100"/>
  529. <line x="155" y="100"/>
  530. <move x="15" y="112.5"/>
  531. <line x="155" y="112.5"/>
  532. <move x="15" y="125"/>
  533. <line x="155" y="125"/>
  534. <move x="15" y="137.5"/>
  535. <line x="155" y="137.5"/>
  536. <move x="15" y="150"/>
  537. <line x="155" y="150"/>
  538. <move x="15" y="162.5"/>
  539. <line x="155" y="162.5"/>
  540. </path>
  541. <stroke/>
  542. <roundrect x="9.5" y="62" w="3" h="37.5" arcsize="50"/>
  543. <stroke/>
  544. </foreground>
  545. </shape>
  546. <shape name="Cisco 8340 Application-Oriented Networking Appliance" h="44.4" w="160.9">
  547. <foreground>
  548. <strokecolor color="#000000"/>
  549. <fillcolor color="#b4b4b4"/>
  550. <rect x="0" y="0" w="160.9" h="44.4"/>
  551. <fillstroke/>
  552. <fillcolor color="#e8e8e8"/>
  553. <rect x="6" y="0" w="149" h="44.4"/>
  554. <fillstroke/>
  555. <rect x="9" y="2" w="26" h="6"/>
  556. <stroke/>
  557. <fillcolor color="#b4b4b4"/>
  558. <rect x="58" y="18" w="45" h="22.5"/>
  559. <fill/>
  560. <strokecolor color="#000000"/>
  561. <rect x="37" y="2" w="26" h="6"/>
  562. <stroke/>
  563. <rect x="65" y="2" w="26" h="6"/>
  564. <stroke/>
  565. <rect x="94" y="2" w="26" h="5"/>
  566. <stroke/>
  567. <fillcolor color="#b4b4b4"/>
  568. <path>
  569. <move x="9" y="18"/>
  570. <line x="56" y="18"/>
  571. <line x="56" y="40"/>
  572. <line x="20" y="40"/>
  573. <line x="20" y="36"/>
  574. <line x="9" y="36"/>
  575. <close/>
  576. </path>
  577. <fill/>
  578. <path>
  579. <move x="105" y="18"/>
  580. <line x="152" y="18"/>
  581. <line x="152" y="36"/>
  582. <line x="141" y="36"/>
  583. <line x="141" y="40"/>
  584. <line x="105" y="40"/>
  585. <close/>
  586. </path>
  587. <fill/>
  588. <strokecolor color="#000000"/>
  589. <rect x="9" y="9" w="26" h="6"/>
  590. <stroke/>
  591. <rect x="37" y="9" w="26" h="6"/>
  592. <stroke/>
  593. <rect x="65" y="9" w="26" h="6"/>
  594. <stroke/>
  595. <path>
  596. <move x="94" y="10"/>
  597. <line x="142" y="10"/>
  598. <line x="142" y="13"/>
  599. <line x="132" y="13"/>
  600. <line x="132" y="15"/>
  601. <line x="94" y="15"/>
  602. <close/>
  603. </path>
  604. <stroke/>
  605. </foreground>
  606. </shape>
  607. <shape name="Cisco ASA 5585-X Adaptive Security Appliance" h="29.6" w="160.9">
  608. <foreground>
  609. <strokecolor color="#000000"/>
  610. <fillcolor color="#b4b4b4"/>
  611. <rect x="0" y="0" w="160.9" h="29.6"/>
  612. <fillstroke/>
  613. <fillcolor color="#e8e8e8"/>
  614. <rect x="6" y="0" w="149" h="29.6"/>
  615. <fillstroke/>
  616. <path>
  617. <move x="80.5" y="0"/>
  618. <line x="80.5" y="29.6"/>
  619. </path>
  620. <stroke/>
  621. <fillcolor color="#b4b4b4"/>
  622. <path>
  623. <move x="8" y="7"/>
  624. <line x="16" y="7"/>
  625. <line x="20" y="2"/>
  626. <line x="67" y="2"/>
  627. <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="70" y="5"/>
  628. <line x="70" y="25"/>
  629. <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="67" y="28"/>
  630. <line x="11" y="28"/>
  631. <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="8" y="25"/>
  632. <close/>
  633. <move x="153" y="7"/>
  634. <line x="145" y="7"/>
  635. <line x="141" y="2"/>
  636. <line x="94" y="2"/>
  637. <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="91" y="5"/>
  638. <line x="91" y="25"/>
  639. <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="94" y="28"/>
  640. <line x="150" y="28"/>
  641. <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="153" y="25"/>
  642. <close/>
  643. </path>
  644. <fillstroke/>
  645. <fillcolor color="#ffffff"/>
  646. <path>
  647. <move x="21" y="14"/>
  648. <arc rx="1.5" ry="1.5" x-axis-rotation="0" large-arc-flag="1" sweep-flag="1" x="23" y="14"/>
  649. <line x="23" y="20"/>
  650. <arc rx="2" ry="2" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="25" y="22"/>
  651. <line x="50" y="22"/>
  652. <arc rx="2" ry="2" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="52" y="20"/>
  653. <line x="52" y="14"/>
  654. <arc rx="1.5" ry="1.5" x-axis-rotation="0" large-arc-flag="1" sweep-flag="1" x="54" y="14"/>
  655. <line x="54" y="20"/>
  656. <arc rx="4" ry="4" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="50" y="24"/>
  657. <line x="25" y="24"/>
  658. <arc rx="4" ry="4" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="21" y="20"/>
  659. <close/>
  660. <move x="107" y="14"/>
  661. <arc rx="1.5" ry="1.5" x-axis-rotation="0" large-arc-flag="1" sweep-flag="1" x="109" y="14"/>
  662. <line x="109" y="20"/>
  663. <arc rx="2" ry="2" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="111" y="22"/>
  664. <line x="136" y="22"/>
  665. <arc rx="2" ry="2" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="138" y="20"/>
  666. <line x="138" y="14"/>
  667. <arc rx="1.5" ry="1.5" x-axis-rotation="0" large-arc-flag="1" sweep-flag="1" x="140" y="14"/>
  668. <line x="140" y="20"/>
  669. <arc rx="4" ry="4" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="136" y="24"/>
  670. <line x="111" y="24"/>
  671. <arc rx="4" ry="4" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="107" y="20"/>
  672. <close/>
  673. </path>
  674. <fill/>
  675. </foreground>
  676. </shape>
  677. <shape name="Cisco ASR 1001 Router" h="14.7" w="160.9">
  678. <foreground>
  679. <strokecolor color="#000000"/>
  680. <fillcolor color="#b4b4b4"/>
  681. <rect x="0" y="0" w="160.9" h="14.7"/>
  682. <fillstroke/>
  683. <fillcolor color="#e8e8e8"/>
  684. <rect x="5.99" y="0" w="149.09" h="14.7"/>
  685. <fillstroke/>
  686. <rect x="37" y="9" w="6" h="4"/>
  687. <stroke/>
  688. <rect x="45" y="9" w="6" h="4"/>
  689. <stroke/>
  690. <rect x="53" y="9" w="6" h="4"/>
  691. <stroke/>
  692. <rect x="75" y="10" w="5" h="3"/>
  693. <stroke/>
  694. <rect x="83" y="10" w="5" h="3"/>
  695. <stroke/>
  696. <rect x="91" y="10" w="5" h="3"/>
  697. <stroke/>
  698. <rect x="99" y="10" w="5" h="3"/>
  699. <stroke/>
  700. <rect x="112" y="1" w="40" h="4"/>
  701. <stroke/>
  702. </foreground>
  703. </shape>
  704. <shape name="Cisco ASR 1002 Router" h="29.6" w="160.9">
  705. <foreground>
  706. <strokecolor color="#000000"/>
  707. <fillcolor color="#b4b4b4"/>
  708. <rect x="0" y="0" w="160.9" h="29.6"/>
  709. <fillstroke/>
  710. <fillcolor color="#e8e8e8"/>
  711. <rect x="5.99" y="0" w="149.09" h="29.6"/>
  712. <fillstroke/>
  713. <rect x="25" y="16" w="5" h="3"/>
  714. <stroke/>
  715. <rect x="30" y="16" w="5" h="3"/>
  716. <stroke/>
  717. <rect x="70" y="16" w="5" h="3"/>
  718. <stroke/>
  719. <rect x="75" y="16" w="5" h="3"/>
  720. <stroke/>
  721. <rect x="18" y="23" w="60" h="5"/>
  722. <stroke/>
  723. <rect x="90" y="23" w="60" h="5"/>
  724. <stroke/>
  725. <rect x="90" y="17" w="60" h="5"/>
  726. <stroke/>
  727. <rect x="35" y="16" w="5" h="3"/>
  728. <stroke/>
  729. <rect x="20" y="16" w="5" h="3"/>
  730. <stroke/>
  731. <rect x="51" y="16" w="5" h="3"/>
  732. <stroke/>
  733. <rect x="62" y="16" w="5" h="3"/>
  734. <stroke/>
  735. </foreground>
  736. </shape>
  737. <shape name="Cisco ASR 1002-X Router" h="29.6" w="160.9">
  738. <foreground>
  739. <strokecolor color="#000000"/>
  740. <fillcolor color="#b4b4b4"/>
  741. <rect x="0" y="0" w="160.9" h="29.6"/>
  742. <fillstroke/>
  743. <fillcolor color="#e8e8e8"/>
  744. <rect x="5.99" y="0" w="149.09" h="29.6"/>
  745. <fillstroke/>
  746. <rect x="30" y="9" w="6" h="4"/>
  747. <stroke/>
  748. <rect x="30" y="13" w="6" h="4"/>
  749. <stroke/>
  750. <rect x="15" y="7" w="6" h="10"/>
  751. <stroke/>
  752. <rect x="42" y="9" w="5" h="3"/>
  753. <stroke/>
  754. <rect x="50" y="9" w="5" h="3"/>
  755. <stroke/>
  756. <rect x="75" y="9" w="5" h="3"/>
  757. <stroke/>
  758. <rect x="75" y="14" w="5" h="3"/>
  759. <stroke/>
  760. <rect x="18" y="23" w="60" h="5"/>
  761. <stroke/>
  762. <rect x="90" y="23" w="60" h="5"/>
  763. <stroke/>
  764. <rect x="90" y="17" w="60" h="5"/>
  765. <stroke/>
  766. <rect x="58" y="9" w="5" h="3"/>
  767. <stroke/>
  768. <rect x="42" y="14" w="5" h="3"/>
  769. <stroke/>
  770. <rect x="50" y="14" w="5" h="3"/>
  771. <stroke/>
  772. <rect x="58" y="14" w="5" h="3"/>
  773. <stroke/>
  774. <rect x="110" y="7" w="35" h="8"/>
  775. <stroke/>
  776. </foreground>
  777. </shape>
  778. <shape name="Cisco ASR 1004 Router" h="59.2" w="160.9">
  779. <foreground>
  780. <strokecolor color="#000000"/>
  781. <fillcolor color="#b4b4b4"/>
  782. <rect x="0" y="0" w="160.9" h="59.2"/>
  783. <fillstroke/>
  784. <fillcolor color="#e8e8e8"/>
  785. <rect x="5.99" y="0" w="149.09" h="59.2"/>
  786. <fillstroke/>
  787. <rect x="99" y="52" w="5" h="4"/>
  788. <stroke/>
  789. <rect x="104" y="52" w="5" h="4"/>
  790. <stroke/>
  791. <rect x="18" y="11" w="60" h="5"/>
  792. <stroke/>
  793. <rect x="90" y="11" w="60" h="5"/>
  794. <stroke/>
  795. <rect x="90" y="5" w="60" h="5"/>
  796. <stroke/>
  797. <rect x="80" y="52" w="5" h="4"/>
  798. <stroke/>
  799. <rect x="91" y="52" w="5" h="4"/>
  800. <stroke/>
  801. <path>
  802. <move x="6" y="3.2"/>
  803. <line x="155" y="3.2"/>
  804. <move x="6" y="17.2"/>
  805. <line x="155" y="17.2"/>
  806. <move x="6" y="31.2"/>
  807. <line x="155" y="31.2"/>
  808. <move x="6" y="45.2"/>
  809. <line x="155" y="45.2"/>
  810. </path>
  811. <stroke/>
  812. <rect x="18" y="5" w="60" h="5"/>
  813. <stroke/>
  814. <rect x="18" y="19" w="60" h="5"/>
  815. <stroke/>
  816. <rect x="18" y="25" w="60" h="5"/>
  817. <stroke/>
  818. <rect x="90" y="19" w="60" h="5"/>
  819. <stroke/>
  820. <rect x="90" y="25" w="60" h="5"/>
  821. <stroke/>
  822. </foreground>
  823. </shape>
  824. <shape name="Cisco ASR 1006 Router" h="88.8" w="160.9">
  825. <foreground>
  826. <strokecolor color="#000000"/>
  827. <fillcolor color="#b4b4b4"/>
  828. <rect x="0" y="0" w="160.9" h="88.8"/>
  829. <fillstroke/>
  830. <fillcolor color="#e8e8e8"/>
  831. <rect x="5.99" y="0" w="149.09" h="88.8"/>
  832. <fillstroke/>
  833. <rect x="99" y="66" w="5" h="4"/>
  834. <stroke/>
  835. <rect x="104" y="66" w="5" h="4"/>
  836. <stroke/>
  837. <rect x="18" y="11" w="60" h="5"/>
  838. <stroke/>
  839. <rect x="90" y="11" w="60" h="5"/>
  840. <stroke/>
  841. <rect x="90" y="5" w="60" h="5"/>
  842. <stroke/>
  843. <rect x="80" y="66" w="5" h="4"/>
  844. <stroke/>
  845. <rect x="91" y="66" w="5" h="4"/>
  846. <stroke/>
  847. <path>
  848. <move x="6" y="3.2"/>
  849. <line x="155" y="3.2"/>
  850. <move x="6" y="17.2"/>
  851. <line x="155" y="17.2"/>
  852. <move x="6" y="31.2"/>
  853. <line x="155" y="31.2"/>
  854. <move x="6" y="45.2"/>
  855. <line x="155" y="45.2"/>
  856. </path>
  857. <stroke/>
  858. <rect x="18" y="5" w="60" h="5"/>
  859. <stroke/>
  860. <rect x="18" y="19" w="60" h="5"/>
  861. <stroke/>
  862. <rect x="18" y="25" w="60" h="5"/>
  863. <stroke/>
  864. <rect x="90" y="19" w="60" h="5"/>
  865. <stroke/>
  866. <rect x="90" y="25" w="60" h="5"/>
  867. <stroke/>
  868. <path>
  869. <move x="6" y="59.2"/>
  870. <line x="155" y="59.2"/>
  871. <move x="6" y="73.2"/>
  872. <line x="155" y="73.2"/>
  873. </path>
  874. <stroke/>
  875. <rect x="18" y="33" w="60" h="5"/>
  876. <stroke/>
  877. <rect x="90" y="33" w="60" h="5"/>
  878. <stroke/>
  879. <rect x="18" y="39" w="60" h="5"/>
  880. <stroke/>
  881. <rect x="90" y="39" w="60" h="5"/>
  882. <stroke/>
  883. <rect x="104" y="80" w="5" h="4"/>
  884. <stroke/>
  885. <rect x="99" y="80" w="5" h="4"/>
  886. <stroke/>
  887. <rect x="91" y="80" w="5" h="4"/>
  888. <stroke/>
  889. <rect x="80" y="80" w="5" h="4"/>
  890. <stroke/>
  891. </foreground>
  892. </shape>
  893. <shape name="Cisco ASR 1013 Router" h="192.4" w="160.9">
  894. <foreground>
  895. <strokecolor color="#000000"/>
  896. <fillcolor color="#b4b4b4"/>
  897. <rect x="0" y="0" w="160.9" h="192.4"/>
  898. <fillstroke/>
  899. <fillcolor color="#e8e8e8"/>
  900. <rect x="6" y="0" w="149" h="192.4"/>
  901. <fillstroke/>
  902. <path>
  903. <move x="6" y="10"/>
  904. <line x="155" y="10"/>
  905. <move x="12" y="24"/>
  906. <line x="149" y="24"/>
  907. <move x="12" y="38"/>
  908. <line x="149" y="38"/>
  909. <move x="6" y="52"/>
  910. <line x="155" y="52"/>
  911. <move x="6" y="58"/>
  912. <line x="155" y="58"/>
  913. <move x="6" y="68"/>
  914. <line x="155" y="68"/>
  915. <move x="6" y="78"/>
  916. <line x="155" y="78"/>
  917. <move x="6" y="88"/>
  918. <line x="155" y="88"/>
  919. <move x="6" y="98"/>
  920. <line x="155" y="98"/>
  921. <move x="6" y="108"/>
  922. <line x="155" y="108"/>
  923. <move x="6" y="118"/>
  924. <line x="155" y="118"/>
  925. <move x="6" y="128"/>
  926. <line x="155" y="128"/>
  927. <move x="6" y="132"/>
  928. <line x="155" y="132"/>
  929. <move x="6" y="142"/>
  930. <line x="155" y="142"/>
  931. <move x="6" y="156"/>
  932. <line x="155" y="156"/>
  933. <move x="6" y="170"/>
  934. <line x="155" y="170"/>
  935. <move x="6" y="184"/>
  936. <line x="155" y="184"/>
  937. <move x="12" y="10"/>
  938. <line x="12" y="52"/>
  939. <move x="149" y="10"/>
  940. <line x="149" y="52"/>
  941. <move x="12" y="58"/>
  942. <line x="12" y="68"/>
  943. <move x="149" y="58"/>
  944. <line x="149" y="68"/>
  945. <move x="149" y="88"/>
  946. <line x="149" y="98"/>
  947. <move x="12" y="88"/>
  948. <line x="12" y="98"/>
  949. <move x="12" y="118"/>
  950. <line x="12" y="128"/>
  951. <move x="12" y="132"/>
  952. <line x="12" y="184"/>
  953. <move x="149" y="118"/>
  954. <line x="149" y="128"/>
  955. <move x="149" y="132"/>
  956. <line x="149" y="184"/>
  957. </path>
  958. <stroke/>
  959. </foreground>
  960. </shape>
  961. <shape name="Cisco ASR 9001" h="29.6" w="160.9">
  962. <foreground>
  963. <strokecolor color="#000000"/>
  964. <fillcolor color="#b4b4b4"/>
  965. <rect x="0" y="0" w="160.9" h="29.6"/>
  966. <fillstroke/>
  967. <fillcolor color="#e8e8e8"/>
  968. <rect x="6" y="0" w="149" h="29.6"/>
  969. <fillstroke/>
  970. <rect x="9" y="3" w="28" h="8"/>
  971. <stroke/>
  972. <rect x="40" y="3" w="28" h="8"/>
  973. <stroke/>
  974. <rect x="80" y="0" w="50" h="11"/>
  975. <stroke/>
  976. <rect x="60" y="14" w="5" h="4"/>
  977. <stroke/>
  978. <rect x="60" y="20" w="5" h="4"/>
  979. <stroke/>
  980. <rect x="79" y="14" w="5" h="4"/>
  981. <stroke/>
  982. <rect x="79" y="20" w="5" h="4"/>
  983. <stroke/>
  984. <rect x="87" y="14" w="5" h="4"/>
  985. <stroke/>
  986. <rect x="87" y="20" w="5" h="4"/>
  987. <stroke/>
  988. <rect x="115" y="15" w="6" h="10"/>
  989. <stroke/>
  990. <rect x="124" y="15" w="6" h="10"/>
  991. <stroke/>
  992. <rect x="133" y="15" w="6" h="10"/>
  993. <stroke/>
  994. <roundrect x="145" y="8" w="3" h="13.6" arcsize="50"/>
  995. <stroke/>
  996. <rect x="8" y="15" w="17" h="14.6"/>
  997. <stroke/>
  998. <rect x="27" y="15" w="17" h="14.6"/>
  999. <stroke/>
  1000. <rect x="95" y="14" w="5" h="4"/>
  1001. <stroke/>
  1002. <rect x="95" y="20" w="5" h="4"/>
  1003. <stroke/>
  1004. </foreground>
  1005. </shape>
  1006. <shape name="Cisco ASR 9006" h="148" w="160.9">
  1007. <foreground>
  1008. <strokecolor color="#000000"/>
  1009. <fillcolor color="#b4b4b4"/>
  1010. <rect x="0" y="0" w="160.9" h="148"/>
  1011. <fillstroke/>
  1012. <fillcolor color="#e8e8e8"/>
  1013. <rect x="10" y="8" w="140" h="132"/>
  1014. <fillstroke/>
  1015. <path>
  1016. <move x="6" y="25"/>
  1017. <line x="155" y="25"/>
  1018. <move x="6" y="41"/>
  1019. <line x="155" y="41"/>
  1020. <move x="6" y="57"/>
  1021. <line x="155" y="57"/>
  1022. <move x="6" y="73"/>
  1023. <line x="155" y="73"/>
  1024. <move x="6" y="89"/>
  1025. <line x="155" y="89"/>
  1026. <move x="6" y="105"/>
  1027. <line x="155" y="105"/>
  1028. <move x="55.66" y="121"/>
  1029. <line x="55.66" y="148"/>
  1030. <move x="105.33" y="121"/>
  1031. <line x="105.33" y="148"/>
  1032. <move x="6" y="121"/>
  1033. <line x="155" y="121"/>
  1034. <move x="26" y="7"/>
  1035. <line x="26" y="25"/>
  1036. <move x="80.5" y="7"/>
  1037. <line x="80.5" y="25"/>
  1038. </path>
  1039. <stroke/>
  1040. <fillcolor color="#e8e8e8"/>
  1041. <path>
  1042. <move x="6" y="12"/>
  1043. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="18" y="0"/>
  1044. <line x="143" y="0"/>
  1045. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="155" y="12"/>
  1046. <line x="155" y="136"/>
  1047. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="143" y="148"/>
  1048. <line x="18" y="148"/>
  1049. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="6" y="136"/>
  1050. <close/>
  1051. <move x="16" y="130"/>
  1052. <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="24" y="138"/>
  1053. <line x="137" y="138"/>
  1054. <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="145" y="130"/>
  1055. <line x="145" y="18"/>
  1056. <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="137" y="10"/>
  1057. <line x="24" y="10"/>
  1058. <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="16" y="18"/>
  1059. <close/>
  1060. </path>
  1061. <fillstroke/>
  1062. </foreground>
  1063. </shape>
  1064. <shape name="Cisco ASR 9010" h="239" w="160.9">
  1065. <foreground>
  1066. <strokecolor color="#000000"/>
  1067. <fillcolor color="#b4b4b4"/>
  1068. <rect x="0" y="0" w="160.9" h="239"/>
  1069. <fillstroke/>
  1070. <rect x="6" y="0" w="149" h="239"/>
  1071. <fillstroke/>
  1072. <fillcolor color="#e8e8e8"/>
  1073. <rect x="10" y="8" w="140" h="132"/>
  1074. <fillstroke/>
  1075. <path>
  1076. <move x="24" y="8"/>
  1077. <line x="24" y="140"/>
  1078. <move x="38" y="8"/>
  1079. <line x="38" y="140"/>
  1080. <move x="52" y="8"/>
  1081. <line x="52" y="140"/>
  1082. <move x="66" y="8"/>
  1083. <line x="66" y="140"/>
  1084. <move x="80" y="8"/>
  1085. <line x="80" y="140"/>
  1086. <move x="94" y="8"/>
  1087. <line x="94" y="140"/>
  1088. <move x="108" y="8"/>
  1089. <line x="108" y="140"/>
  1090. <move x="122" y="8"/>
  1091. <line x="122" y="140"/>
  1092. <move x="136" y="8"/>
  1093. <line x="136" y="140"/>
  1094. </path>
  1095. <stroke/>
  1096. <fillcolor color="#e8e8e8"/>
  1097. <path>
  1098. <move x="6" y="12"/>
  1099. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="18" y="0"/>
  1100. <line x="143" y="0"/>
  1101. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="155" y="12"/>
  1102. <line x="155" y="136"/>
  1103. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="143" y="148"/>
  1104. <line x="18" y="148"/>
  1105. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="6" y="136"/>
  1106. <close/>
  1107. <move x="16" y="130"/>
  1108. <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="24" y="138"/>
  1109. <line x="137" y="138"/>
  1110. <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="145" y="130"/>
  1111. <line x="145" y="18"/>
  1112. <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="137" y="10"/>
  1113. <line x="24" y="10"/>
  1114. <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="16" y="18"/>
  1115. <close/>
  1116. </path>
  1117. <fillstroke/>
  1118. <path>
  1119. <move x="6" y="239"/>
  1120. <line x="6" y="177"/>
  1121. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="18" y="165"/>
  1122. <line x="143" y="165"/>
  1123. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="155" y="177"/>
  1124. <line x="155" y="239"/>
  1125. <line x="150" y="239"/>
  1126. <line x="150" y="180"/>
  1127. <arc rx="10" ry="10" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="140" y="170"/>
  1128. <line x="21" y="170"/>
  1129. <arc rx="10" ry="10" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="11" y="180"/>
  1130. <line x="11" y="239"/>
  1131. <close/>
  1132. </path>
  1133. <fillstroke/>
  1134. <rect x="11" y="209" w="139" h="30"/>
  1135. <stroke/>
  1136. <path>
  1137. <move x="57.33" y="209"/>
  1138. <line x="57.33" y="239"/>
  1139. <move x="103.67" y="209"/>
  1140. <line x="103.67" y="239"/>
  1141. <move x="11" y="224"/>
  1142. <line x="150" y="224"/>
  1143. <move x="6" y="148"/>
  1144. <line x="155" y="148"/>
  1145. </path>
  1146. <stroke/>
  1147. </foreground>
  1148. </shape>
  1149. <shape name="Cisco ASR 9922" h="651.2" w="160.9">
  1150. <foreground>
  1151. <strokecolor color="#000000"/>
  1152. <fillcolor color="#b4b4b4"/>
  1153. <rect x="0" y="0" w="160.9" h="651.2"/>
  1154. <fillstroke/>
  1155. <rect x="6" y="0" w="149" h="651.2"/>
  1156. <fillstroke/>
  1157. <fillcolor color="#e8e8e8"/>
  1158. <rect x="11" y="471" w="140" h="132"/>
  1159. <fillstroke/>
  1160. <rect x="10" y="76" w="140" h="132"/>
  1161. <fillstroke/>
  1162. <path>
  1163. <move x="24" y="76"/>
  1164. <line x="24" y="208"/>
  1165. <move x="38" y="76"/>
  1166. <line x="38" y="208"/>
  1167. <move x="52" y="76"/>
  1168. <line x="52" y="208"/>
  1169. <move x="66" y="76"/>
  1170. <line x="66" y="208"/>
  1171. <move x="80" y="76"/>
  1172. <line x="80" y="208"/>
  1173. <move x="94" y="76"/>
  1174. <line x="94" y="208"/>
  1175. <move x="108" y="76"/>
  1176. <line x="108" y="208"/>
  1177. <move x="122" y="76"/>
  1178. <line x="122" y="208"/>
  1179. <move x="136" y="76"/>
  1180. <line x="136" y="208"/>
  1181. </path>
  1182. <stroke/>
  1183. <fillcolor color="#e8e8e8"/>
  1184. <path>
  1185. <move x="6" y="80"/>
  1186. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="18" y="68"/>
  1187. <line x="143" y="68"/>
  1188. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="155" y="80"/>
  1189. <line x="155" y="204"/>
  1190. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="143" y="216"/>
  1191. <line x="18" y="216"/>
  1192. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="6" y="204"/>
  1193. <close/>
  1194. <move x="16" y="198"/>
  1195. <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="24" y="206"/>
  1196. <line x="137" y="206"/>
  1197. <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="145" y="198"/>
  1198. <line x="145" y="86"/>
  1199. <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="137" y="78"/>
  1200. <line x="24" y="78"/>
  1201. <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="16" y="86"/>
  1202. <close/>
  1203. </path>
  1204. <fillstroke/>
  1205. <path>
  1206. <move x="136" y="471"/>
  1207. <line x="136" y="603"/>
  1208. <move x="122" y="471"/>
  1209. <line x="122" y="603"/>
  1210. <move x="108" y="471"/>
  1211. <line x="108" y="603"/>
  1212. <move x="94" y="471"/>
  1213. <line x="94" y="603"/>
  1214. <move x="80" y="471"/>
  1215. <line x="80" y="603"/>
  1216. <move x="66" y="471"/>
  1217. <line x="66" y="603"/>
  1218. <move x="52" y="471"/>
  1219. <line x="52" y="603"/>
  1220. <move x="38" y="471"/>
  1221. <line x="38" y="603"/>
  1222. <move x="24" y="471"/>
  1223. <line x="24" y="603"/>
  1224. </path>
  1225. <stroke/>
  1226. <fillcolor color="#e8e8e8"/>
  1227. <path>
  1228. <move x="6" y="475"/>
  1229. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="18" y="463"/>
  1230. <line x="143" y="463"/>
  1231. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="155" y="475"/>
  1232. <line x="155" y="599"/>
  1233. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="143" y="611"/>
  1234. <line x="18" y="611"/>
  1235. <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="6" y="599"/>
  1236. <close/>
  1237. <move x="16" y="593"/>
  1238. <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="24" y="601"/>
  1239. <line x="137" y="601"/>
  1240. <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="145" y="593"/>
  1241. <line x="145" y="481"/>
  1242. <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="137" y="473"/>
  1243. <line x="24" y="473"/>
  1244. <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="16" y="481"/>
  1245. <close/>
  1246. </path>
  1247. <fillstroke/>
  1248. <rect x="6" y="5" w="149" h="60"/>
  1249. <fillstroke/>
  1250. <path>
  1251. <move x="6" y="20"/>
  1252. <line x="155" y="20"/>
  1253. <move x="6" y="35"/>
  1254. <line x="155" y="35"/>
  1255. <move x="6" y="50"/>
  1256. <line x="155" y="50"/>
  1257. <move x="80.5" y="5"/>
  1258. <line x="80.5" y="65"/>
  1259. <move x="43.25" y="5"/>
  1260. <line x="43.25" y="65"/>
  1261. <move x="117.75" y="5"/>
  1262. <line x="117.75" y="65"/>
  1263. </path>
  1264. <stroke/>
  1265. <rect x="6" y="255" w="149" h="160"/>
  1266. <stroke/>
  1267. <fillcolor color="#e8e8e8"/>
  1268. <rect x="6" y="255" w="18" h="160"/>
  1269. <fillstroke/>
  1270. <path>
  1271. <move x="6" y="335"/>
  1272. <line x="24" y="335"/>
  1273. </path>
  1274. <stroke/>
  1275. </foreground>
  1276. </shape>
  1277. <shape name="Cisco Blade Switch 3030" h="71" w="18.62">
  1278. <foreground>
  1279. <strokecolor color="#000000"/>
  1280. <fillcolor color="#dbdbdb"/>
  1281. <rect x="0" y="0" w="18.62" h="71"/>
  1282. <fillstroke/>
  1283. <rect x="2" y="49" w="7" h="8"/>
  1284. <stroke/>
  1285. <rect x="3" y="28" w="6" h="7"/>
  1286. <stroke/>
  1287. <rect x="2" y="59" w="7" h="8"/>
  1288. <stroke/>
  1289. <rect x="2" y="41" w="7" h="8"/>
  1290. <stroke/>
  1291. <rect x="3" y="21" w="6" h="7"/>
  1292. <stroke/>
  1293. <rect x="3" y="14" w="6" h="7"/>
  1294. <stroke/>
  1295. <rect x="3" y="7" w="6" h="7"/>
  1296. <stroke/>
  1297. </foreground>
  1298. </shape>
  1299. <shape name="Cisco Carrier Packet Transport 200" h="29.6" w="160.9">
  1300. <foreground>
  1301. <strokecolor color="#000000"/>
  1302. <fillcolor color="#b4b4b4"/>
  1303. <rect x="0" y="0" w="160.9" h="29.6"/>
  1304. <fillstroke/>
  1305. <fillcolor color="#e8e8e8"/>
  1306. <rect x="6" y="0" w="149" h="29.6"/>
  1307. <fillstroke/>
  1308. <path>
  1309. <move x="20" y="0"/>
  1310. <line x="20" y="29.6"/>
  1311. <move x="20" y="9"/>
  1312. <line x="155" y="9"/>
  1313. <move x="20" y="18"/>
  1314. <line x="155" y="18"/>
  1315. <move x="20" y="27"/>
  1316. <line x="155" y="27"/>
  1317. </path>
  1318. <stroke/>
  1319. </foreground>
  1320. </shape>
  1321. <shape name="Cisco Carrier Packet Transport 50" h="14.8" w="160.9">
  1322. <foreground>
  1323. <strokecolor color="#000000"/>
  1324. <fillcolor color="#b4b4b4"/>
  1325. <rect x="0" y="0" w="160.9" h="14.8"/>
  1326. <fillstroke/>
  1327. <fillcolor color="#e8e8e8"/>
  1328. <rect x="6" y="0" w="149" h="14.8"/>
  1329. <fillstroke/>
  1330. <rect x="11" y="2" w="28" h="5"/>
  1331. <stroke/>
  1332. <rect x="107" y="8" w="28" h="5"/>
  1333. <stroke/>
  1334. <rect x="139" y="3" w="5" h="6"/>
  1335. <stroke/>
  1336. <rect x="107" y="2" w="28" h="5"/>
  1337. <stroke/>
  1338. <rect x="43" y="2" w="28" h="5"/>
  1339. <stroke/>
  1340. <rect x="75" y="8" w="28" h="5"/>
  1341. <stroke/>
  1342. <rect x="11" y="8" w="28" h="5"/>
  1343. <stroke/>
  1344. <rect x="75" y="2" w="28" h="5"/>
  1345. <stroke/>
  1346. <rect x="43" y="8" w="28" h="5"/>
  1347. <stroke/>
  1348. </foreground>
  1349. </shape>
  1350. <shape name="Cisco Carrier Packet Transport 600" h="88.8" w="160.9">
  1351. <foreground>
  1352. <strokecolor color="#000000"/>
  1353. <fillcolor color="#b4b4b4"/>
  1354. <rect x="0" y="0" w="160.9" h="88.8"/>
  1355. <fillstroke/>
  1356. <fillcolor color="#e8e8e8"/>
  1357. <rect x="6" y="0" w="149" h="88.8"/>
  1358. <fillstroke/>
  1359. <path>
  1360. <move x="20" y="13"/>
  1361. <line x="20" y="88.8"/>
  1362. <move x="20" y="67"/>
  1363. <line x="155" y="67"/>
  1364. <move x="20" y="76"/>
  1365. <line x="155" y="76"/>
  1366. <move x="20" y="85"/>
  1367. <line x="155" y="85"/>
  1368. <move x="20" y="58"/>
  1369. <line x="155" y="58"/>
  1370. <move x="20" y="49"/>
  1371. <line x="155" y="49"/>
  1372. <move x="20" y="40"/>
  1373. <line x="155" y="40"/>
  1374. <move x="20" y="31"/>
  1375. <line x="155" y="31"/>
  1376. <move x="20" y="22"/>
  1377. <line x="155" y="22"/>
  1378. </path>
  1379. <stroke/>
  1380. <path>
  1381. <move x="6" y="13"/>
  1382. <line x="155" y="13"/>
  1383. </path>
  1384. <stroke/>
  1385. </foreground>
  1386. </shape>
  1387. <shape name="Cisco Catalyst 4900M Switch" h="29.6" w="160.9">
  1388. <foreground>
  1389. <strokecolor color="#000000"/>
  1390. <fillcolor color="#b4b4b4"/>
  1391. <rect x="0" y="0" w="160.9" h="29.6"/>
  1392. <fillstroke/>
  1393. <fillcolor color="#e8e8e8"/>
  1394. <rect x="6" y="0" w="149" h="29.6"/>
  1395. <fillstroke/>
  1396. <rect x="22" y="2" w="62" h="16"/>
  1397. <stroke/>
  1398. <rect x="22" y="20" w="14" h="6"/>
  1399. <stroke/>
  1400. <rect x="90" y="2" w="62" h="16"/>
  1401. <stroke/>
  1402. <rect x="38" y="20" w="14" h="6"/>
  1403. <stroke/>
  1404. <rect x="54" y="20" w="14" h="6"/>
  1405. <stroke/>
  1406. <rect x="70" y="20" w="14" h="6"/>
  1407. <stroke/>
  1408. <rect x="90" y="20" w="14" h="6"/>
  1409. <stroke/>
  1410. <rect x="106" y="20" w="14" h="6"/>
  1411. <stroke/>
  1412. <rect x="122" y="20" w="14" h="6"/>
  1413. <stroke/>
  1414. <rect x="138" y="20" w="14" h="6"/>
  1415. <stroke/>
  1416. </foreground>
  1417. </shape>
  1418. <shape name="Cisco Catalyst 4928 10 Gigabit Ethernet Switch" h="14.8" w="160.9">
  1419. <foreground>
  1420. <strokecolor color="#000000"/>
  1421. <fillcolor color="#b4b4b4"/>
  1422. <rect x="0" y="0" w="160.9" h="14.8"/>
  1423. <fillstroke/>
  1424. <fillcolor color="#e8e8e8"/>
  1425. <rect x="6" y="0" w="149" h="14.8"/>
  1426. <fillstroke/>
  1427. <rect x="11" y="2" w="20" h="4"/>
  1428. <stroke/>
  1429. <rect x="59" y="8" w="20" h="4"/>
  1430. <stroke/>
  1431. <rect x="115" y="8" w="15" h="6"/>
  1432. <stroke/>
  1433. <rect x="59" y="2" w="20" h="4"/>
  1434. <stroke/>
  1435. <rect x="35" y="2" w="20" h="4"/>
  1436. <stroke/>
  1437. <rect x="35" y="8" w="20" h="4"/>
  1438. <stroke/>
  1439. <rect x="11" y="8" w="20" h="4"/>
  1440. <stroke/>
  1441. <rect x="84" y="2" w="6" h="4"/>
  1442. <stroke/>
  1443. <rect x="84" y="8" w="6" h="4"/>
  1444. <stroke/>
  1445. <rect x="136" y="8" w="15" h="6"/>
  1446. <stroke/>
  1447. <rect x="97" y="3" w="6" h="4"/>
  1448. <stroke/>
  1449. <rect x="105" y="3" w="6" h="4"/>
  1450. <stroke/>
  1451. <rect x="105" y="9" w="6" h="4"/>
  1452. <stroke/>
  1453. <rect x="97" y="9" w="6" h="4"/>
  1454. <stroke/>
  1455. </foreground>
  1456. </shape>
  1457. <shape name="Cisco Catalyst 4948 10 Gigabit Ethernet Switch" h="14.8" w="160.9">
  1458. <foreground>
  1459. <strokecolor color="#000000"/>
  1460. <fillcolor color="#b4b4b4"/>
  1461. <rect x="0" y="0" w="160.9" h="14.8"/>
  1462. <fillstroke/>
  1463. <fillcolor color="#e8e8e8"/>
  1464. <rect x="6" y="0" w="149" h="14.8"/>
  1465. <fillstroke/>
  1466. <rect x="11" y="2" w="37" h="4"/>
  1467. <stroke/>
  1468. <rect x="89" y="8" w="37" h="4"/>
  1469. <stroke/>
  1470. <rect x="136" y="1" w="15" h="6"/>
  1471. <stroke/>
  1472. <rect x="89" y="2" w="37" h="4"/>
  1473. <stroke/>
  1474. <rect x="50" y="2" w="37" h="4"/>
  1475. <stroke/>
  1476. <rect x="50" y="8" w="37" h="4"/>
  1477. <stroke/>
  1478. <rect x="11" y="8" w="37" h="4"/>
  1479. <stroke/>
  1480. <rect x="129" y="2" w="6" h="4"/>
  1481. <stroke/>
  1482. <rect x="129" y="8" w="6" h="4"/>
  1483. <stroke/>
  1484. <rect x="136" y="8" w="15" h="6"/>
  1485. <stroke/>
  1486. </foreground>
  1487. </shape>
  1488. <shape name="Cisco Catalyst 4948 Switch" h="14.8" w="160.9">
  1489. <foreground>
  1490. <strokecolor color="#000000"/>
  1491. <fillcolor color="#b4b4b4"/>
  1492. <rect x="0" y="0" w="160.9" h="14.8"/>
  1493. <fillstroke/>
  1494. <fillcolor color="#e8e8e8"/>
  1495. <rect x="6" y="0" w="149" h="14.8"/>
  1496. <fillstroke/>
  1497. <rect x="11" y="2" w="37" h="4"/>
  1498. <stroke/>
  1499. <rect x="89" y="8" w="37" h="4"/>
  1500. <stroke/>
  1501. <rect x="138" y="2" w="6" h="4"/>
  1502. <stroke/>
  1503. <rect x="89" y="2" w="37" h="4"/>
  1504. <stroke/>
  1505. <rect x="50" y="2" w="37" h="4"/>
  1506. <stroke/>
  1507. <rect x="50" y="8" w="37" h="4"/>
  1508. <stroke/>
  1509. <rect x="11" y="8" w="37" h="4"/>
  1510. <stroke/>
  1511. <rect x="138" y="8" w="6" h="4"/>
  1512. <stroke/>
  1513. <rect x="145" y="2" w="6" h="4"/>
  1514. <stroke/>
  1515. <rect x="145" y="8" w="6" h="4"/>
  1516. <stroke/>
  1517. <rect x="129" y="2" w="6" h="4"/>
  1518. <stroke/>
  1519. <rect x="129" y="8" w="6" h="4"/>
  1520. <stroke/>
  1521. </foreground>
  1522. </shape>
  1523. <shape name="Cisco Catalyst 6503-E Switch" h="59.2" w="147">
  1524. <foreground>
  1525. <strokecolor color="#000000"/>
  1526. <fillcolor color="#b4b4b4"/>
  1527. <rect x="0" y="0" w="147" h="59.2"/>
  1528. <fillstroke/>
  1529. <fillcolor color="#e8e8e8"/>
  1530. <rect x="14" y="13" w="126.33" h="40"/>
  1531. <fillstroke/>
  1532. <path>
  1533. <move x="14" y="26.33"/>
  1534. <line x="140.5" y="26.33"/>
  1535. <move x="14" y="39.67"/>
  1536. <line x="140.5" y="39.67"/>
  1537. </path>
  1538. <stroke/>
  1539. </foreground>
  1540. </shape>
  1541. <shape name="Cisco Catalyst 6504-E Switch" h="74" w="147">
  1542. <foreground>
  1543. <strokecolor color="#000000"/>
  1544. <fillcolor color="#b4b4b4"/>
  1545. <rect x="0" y="0" w="147" h="74"/>
  1546. <fillstroke/>
  1547. <fillcolor color="#e8e8e8"/>
  1548. <rect x="14" y="13" w="126.33" h="53.33"/>
  1549. <fillstroke/>
  1550. <path>
  1551. <move x="14" y="26.33"/>
  1552. <line x="140.5" y="26.33"/>
  1553. <move x="14" y="39.67"/>
  1554. <line x="140.5" y="39.67"/>
  1555. <move x="14" y="53"/>
  1556. <line x="140.5" y="53"/>
  1557. </path>
  1558. <stroke/>
  1559. <roundrect x="5" y="24" w="3" h="30" arcsize="50"/>
  1560. <stroke/>
  1561. </foreground>
  1562. </shape>
  1563. <shape name="Cisco Catalyst 6506-E Switch" h="177.6" w="147">
  1564. <foreground>
  1565. <strokecolor color="#000000"/>
  1566. <fillcolor color="#b4b4b4"/>
  1567. <rect x="0" y="0" w="147" h="177.6"/>
  1568. <fillstroke/>
  1569. <fillcolor color="#e8e8e8"/>
  1570. <rect x="14" y="13" w="126.33" h="79.98"/>
  1571. <fillstroke/>
  1572. <path>
  1573. <move x="14" y="26.33"/>
  1574. <line x="140.5" y="26.33"/>
  1575. <move x="14" y="39.67"/>
  1576. <line x="140.5" y="39.67"/>
  1577. <move x="14" y="53"/>
  1578. <line x="140.5" y="53"/>
  1579. </path>
  1580. <stroke/>
  1581. <roundrect x="5" y="24" w="3" h="30" arcsize="50"/>
  1582. <stroke/>
  1583. <path>
  1584. <move x="14" y="66.33"/>
  1585. <line x="140.5" y="66.33"/>
  1586. <move x="14" y="79.67"/>
  1587. <line x="140.5" y="79.67"/>
  1588. </path>
  1589. <stroke/>
  1590. <rect x="14" y="98" w="126" h="75"/>
  1591. <stroke/>
  1592. <path>
  1593. <move x="77" y="98"/>
  1594. <line x="77" y="173"/>
  1595. </path>
  1596. <stroke/>
  1597. <fillcolor color="#999999"/>
  1598. <ellipse x="31" y="102" w="42" h="42"/>
  1599. <fill/>
  1600. <ellipse x="94" y="102" w="42" h="42"/>
  1601. <fill/>
  1602. <strokecolor color="#000000"/>
  1603. <fillcolor color="#b4b4b4"/>
  1604. <roundrect x="28" y="121.5" w="45" h="3" arcsize="50"/>
  1605. <fillstroke/>
  1606. <roundrect x="91" y="121.5" w="45" h="3" arcsize="50"/>
  1607. <fillstroke/>
  1608. </foreground>
  1609. </shape>
  1610. <shape name="Cisco Catalyst 6509 Switch" h="222" w="147">
  1611. <foreground>
  1612. <strokecolor color="#000000"/>
  1613. <fillcolor color="#b4b4b4"/>
  1614. <rect x="0" y="0" w="147" h="222"/>
  1615. <fillstroke/>
  1616. <fillcolor color="#e8e8e8"/>
  1617. <rect x="14" y="13" w="126.33" h="119.97"/>
  1618. <fillstroke/>
  1619. <path>
  1620. <move x="14" y="26.33"/>
  1621. <line x="140.5" y="26.33"/>
  1622. <move x="14" y="39.67"/>
  1623. <line x="140.5" y="39.67"/>
  1624. <move x="14" y="53"/>
  1625. <line x="140.5" y="53"/>
  1626. </path>
  1627. <stroke/>
  1628. <roundrect x="5" y="57" w="3" h="35" arcsize="50"/>
  1629. <stroke/>
  1630. <path>
  1631. <move x="14" y="66.33"/>
  1632. <line x="140.5" y="66.33"/>
  1633. <move x="14" y="79.67"/>
  1634. <line x="140.5" y="79.67"/>
  1635. </path>
  1636. <stroke/>
  1637. <rect x="14" y="145" w="126" h="75"/>
  1638. <stroke/>
  1639. <path>
  1640. <move x="77" y="145"/>
  1641. <line x="77" y="220"/>
  1642. </path>
  1643. <stroke/>
  1644. <fillcolor color="#999999"/>
  1645. <ellipse x="31" y="149" w="42" h="42"/>
  1646. <fill/>
  1647. <ellipse x="94" y="149" w="42" h="42"/>
  1648. <fill/>
  1649. <strokecolor color="#000000"/>
  1650. <fillcolor color="#b4b4b4"/>
  1651. <roundrect x="28" y="168.5" w="45" h="3" arcsize="50"/>
  1652. <fillstroke/>
  1653. <roundrect x="91" y="168.5" w="45" h="3" arcsize="50"/>
  1654. <fillstroke/>
  1655. <path>
  1656. <move x="14" y="93"/>
  1657. <line x="140.5" y="93"/>
  1658. <move x="14" y="106.33"/>
  1659. <line x="140.5" y="106.33"/>
  1660. <move x="14" y="119.67"/>
  1661. <line x="140.5" y="119.67"/>
  1662. </path>
  1663. <stroke/>
  1664. </foreground>
  1665. </shape>
  1666. <shape name="Cisco Catalyst 6513-E" h="296" w="147">
  1667. <foreground>
  1668. <strokecolor color="#000000"/>
  1669. <fillcolor color="#b4b4b4"/>
  1670. <rect x="0" y="0" w="147" h="296"/>
  1671. <fillstroke/>
  1672. <fillcolor color="#e8e8e8"/>
  1673. <rect x="14" y="13" w="126.33" h="173.33"/>
  1674. <fillstroke/>
  1675. <strokecolor color="#000000"/>
  1676. <path>
  1677. <move x="14" y="26.33"/>
  1678. <line x="140.5" y="26.33"/>
  1679. <move x="14" y="39.67"/>
  1680. <line x="140.5" y="39.67"/>
  1681. <move x="14" y="53"/>
  1682. <line x="140.5" y="53"/>
  1683. <move x="14" y="66.33"/>
  1684. <line x="140.5" y="66.33"/>
  1685. <move x="14" y="79.67"/>
  1686. <line x="140.5" y="79.67"/>
  1687. </path>
  1688. <stroke/>
  1689. <rect x="14" y="221" w="126" h="75"/>
  1690. <stroke/>
  1691. <path>
  1692. <move x="77" y="221"/>
  1693. <line x="77" y="296"/>
  1694. </path>
  1695. <stroke/>
  1696. <fillcolor color="#999999"/>
  1697. <ellipse x="31" y="225" w="42" h="42"/>
  1698. <fillstroke/>
  1699. <ellipse x="94" y="225" w="42" h="42"/>
  1700. <fillstroke/>
  1701. <strokecolor color="#000000"/>
  1702. <fillcolor color="#b4b4b4"/>
  1703. <roundrect x="28" y="244.5" w="45" h="3" arcsize="50"/>
  1704. <fillstroke/>
  1705. <roundrect x="91" y="244.5" w="45" h="3" arcsize="50"/>
  1706. <fillstroke/>
  1707. <path>
  1708. <move x="14" y="93"/>
  1709. <line x="140.5" y="93"/>
  1710. <move x="14" y="106.33"/>
  1711. <line x="140.5" y="106.33"/>
  1712. <move x="14" y="119.67"/>
  1713. <line x="140.5" y="119.67"/>
  1714. <move x="14" y="133"/>
  1715. <line x="140.5" y="133"/>
  1716. <move x="14" y="146.33"/>
  1717. <line x="140.5" y="146.33"/>
  1718. <move x="14" y="159.67"/>
  1719. <line x="140.5" y="159.67"/>
  1720. <move x="14" y="173"/>
  1721. <line x="140.5" y="173"/>
  1722. </path>
  1723. <stroke/>
  1724. </foreground>
  1725. </shape>
  1726. <shape name="Cisco Catalyst Blade Switch 3020 for HP" h="120" w="18">
  1727. <foreground>
  1728. <strokecolor color="#000000"/>
  1729. <fillcolor color="#dbdbdb"/>
  1730. <rect x="0" y="0" w="18" h="120"/>
  1731. <fillstroke/>
  1732. <rect x="2" y="21" w="7" h="8"/>
  1733. <stroke/>
  1734. <rect x="4" y="95" w="7" h="8"/>
  1735. <stroke/>
  1736. <rect x="2" y="13" w="7" h="8"/>
  1737. <stroke/>
  1738. <rect x="9" y="21" w="7" h="8"/>
  1739. <stroke/>
  1740. <rect x="9" y="13" w="7" h="8"/>
  1741. <stroke/>
  1742. <rect x="2" y="5" w="7" h="8"/>
  1743. <stroke/>
  1744. <rect x="9" y="5" w="7" h="8"/>
  1745. <stroke/>
  1746. <rect x="2" y="29" w="7" h="8"/>
  1747. <stroke/>
  1748. <rect x="9" y="29" w="7" h="8"/>
  1749. <stroke/>
  1750. <rect x="7" y="50" w="7" h="8"/>
  1751. <stroke/>
  1752. <rect x="7" y="58" w="7" h="8"/>
  1753. <stroke/>
  1754. <rect x="7" y="66" w="7" h="8"/>
  1755. <stroke/>
  1756. <rect x="7" y="74" w="7" h="8"/>
  1757. <stroke/>
  1758. </foreground>
  1759. </shape>
  1760. <shape name="Cisco Catalyst Blade Switch 3032 for Dell" h="142.16" w="18.62">
  1761. <foreground>
  1762. <strokecolor color="#000000"/>
  1763. <fillcolor color="#dbdbdb"/>
  1764. <rect x="0" y="0" w="18.62" h="142.16"/>
  1765. <fillstroke/>
  1766. <rect x="5" y="37" w="11" h="32"/>
  1767. <stroke/>
  1768. <rect x="5" y="73" w="11" h="32"/>
  1769. <stroke/>
  1770. <rect x="7" y="3" w="7" h="8"/>
  1771. <stroke/>
  1772. <rect x="2" y="112" w="7" h="8"/>
  1773. <stroke/>
  1774. <rect x="10" y="112" w="7" h="8"/>
  1775. <stroke/>
  1776. <rect x="2" y="120" w="7" h="8"/>
  1777. <stroke/>
  1778. <rect x="10" y="120" w="7" h="8"/>
  1779. <stroke/>
  1780. <rect x="5" y="130" w="4" h="10"/>
  1781. <stroke/>
  1782. <rect x="10" y="130" w="4" h="10"/>
  1783. <stroke/>
  1784. </foreground>
  1785. </shape>
  1786. <shape name="Cisco Catalyst Blade Switch 3040 for Dell" h="71" w="18.62">
  1787. <foreground>
  1788. <strokecolor color="#000000"/>
  1789. <fillcolor color="#dbdbdb"/>
  1790. <rect x="0" y="0" w="18.62" h="71"/>
  1791. <fillstroke/>
  1792. <rect x="2" y="49" w="7" h="8"/>
  1793. <stroke/>
  1794. <rect x="3" y="28" w="6" h="7"/>
  1795. <stroke/>
  1796. <rect x="2" y="59" w="7" h="8"/>
  1797. <stroke/>
  1798. <rect x="2" y="41" w="7" h="8"/>
  1799. <stroke/>
  1800. <rect x="3" y="21" w="6" h="7"/>
  1801. <stroke/>
  1802. <rect x="3" y="14" w="6" h="7"/>
  1803. <stroke/>
  1804. <rect x="3" y="7" w="6" h="7"/>
  1805. <stroke/>
  1806. </foreground>
  1807. </shape>
  1808. <shape name="Cisco Catalyst Blade Switch 3100 for Dell" h="142.16" w="18.62">
  1809. <foreground>
  1810. <strokecolor color="#000000"/>
  1811. <fillcolor color="#dbdbdb"/>
  1812. <rect x="0" y="0" w="18.62" h="142.16"/>
  1813. <fillstroke/>
  1814. <rect x="5" y="37" w="11" h="32"/>
  1815. <stroke/>
  1816. <rect x="5" y="73" w="11" h="32"/>
  1817. <stroke/>
  1818. <rect x="7" y="3" w="7" h="8"/>
  1819. <stroke/>
  1820. <rect x="2" y="112" w="7" h="8"/>
  1821. <stroke/>
  1822. <rect x="10" y="112" w="7" h="8"/>
  1823. <stroke/>
  1824. <rect x="2" y="120" w="7" h="8"/>
  1825. <stroke/>
  1826. <rect x="10" y="120" w="7" h="8"/>
  1827. <stroke/>
  1828. <rect x="5" y="130" w="4" h="10"/>
  1829. <stroke/>
  1830. <rect x="10" y="130" w="4" h="10"/>
  1831. <stroke/>
  1832. </foreground>
  1833. </shape>
  1834. <shape name="Cisco Catalyst Blade Switch 3120 for HP" h="120" w="18">
  1835. <foreground>
  1836. <strokecolor color="#000000"/>
  1837. <fillcolor color="#dbdbdb"/>
  1838. <rect x="0" y="0" w="18" h="120"/>
  1839. <fillstroke/>
  1840. <rect x="2" y="21" w="7" h="8"/>
  1841. <stroke/>
  1842. <rect x="4" y="100" w="7" h="8"/>
  1843. <stroke/>
  1844. <rect x="2" y="13" w="7" h="8"/>
  1845. <stroke/>
  1846. <rect x="10" y="2" w="4" h="10"/>
  1847. <stroke/>
  1848. <rect x="5" y="2" w="4" h="10"/>
  1849. <stroke/>
  1850. <rect x="9" y="21" w="7" h="8"/>
  1851. <stroke/>
  1852. <rect x="9" y="13" w="7" h="8"/>
  1853. <stroke/>
  1854. <rect x="3" y="31" w="13" h="30"/>
  1855. <stroke/>
  1856. <rect x="3" y="68" w="13" h="30"/>
  1857. <stroke/>
  1858. </foreground>
  1859. </shape>
  1860. <shape name="Cisco Catalyst Blade Switch 3130 for Dell" h="142.16" w="18.62">
  1861. <foreground>
  1862. <strokecolor color="#000000"/>
  1863. <fillcolor color="#dbdbdb"/>
  1864. <rect x="0" y="0" w="18.62" h="142.16"/>
  1865. <fillstroke/>
  1866. <rect x="5" y="37" w="11" h="32"/>
  1867. <stroke/>
  1868. <rect x="5" y="73" w="11" h="32"/>
  1869. <stroke/>
  1870. <rect x="7" y="3" w="7" h="8"/>
  1871. <stroke/>
  1872. <rect x="2" y="112" w="7" h="8"/>
  1873. <stroke/>
  1874. <rect x="10" y="112" w="7" h="8"/>
  1875. <stroke/>
  1876. <rect x="2" y="120" w="7" h="8"/>
  1877. <stroke/>
  1878. <rect x="10" y="120" w="7" h="8"/>
  1879. <stroke/>
  1880. <rect x="5" y="130" w="4" h="10"/>
  1881. <stroke/>
  1882. <rect x="10" y="130" w="4" h="10"/>
  1883. <stroke/>
  1884. </foreground>
  1885. </shape>
  1886. <shape name="Cisco Identity Services Engine" h="14.8" w="160.9">
  1887. <foreground>
  1888. <strokecolor color="#000000"/>
  1889. <fillcolor color="#b4b4b4"/>
  1890. <rect x="0" y="0" w="160.9" h="14.8"/>
  1891. <fillstroke/>
  1892. <fillcolor color="#e8e8e8"/>
  1893. <rect x="5.99" y="0" w="149.09" h="14.8"/>
  1894. <fillstroke/>
  1895. <path>
  1896. <move x="70" y="0"/>
  1897. <line x="70" y="14.8"/>
  1898. </path>
  1899. <stroke/>
  1900. <rect x="10" y="7" w="50" h="5"/>
  1901. <stroke/>
  1902. <rect x="72" y="4" w="38" h="8"/>
  1903. <stroke/>
  1904. <rect x="113" y="4" w="38" h="8"/>
  1905. <stroke/>
  1906. </foreground>
  1907. </shape>
  1908. <shape name="Cisco IPS 4500 Sensor" h="29.6" w="160.9">
  1909. <foreground>
  1910. <strokecolor color="#000000"/>
  1911. <fillcolor color="#b4b4b4"/>
  1912. <rect x="0" y="0" w="160.9" h="29.6"/>
  1913. <fillstroke/>
  1914. <fillcolor color="#e8e8e8"/>
  1915. <rect x="6" y="0" w="149" h="29.6"/>
  1916. <fillstroke/>
  1917. <path>
  1918. <move x="6" y="7.4"/>
  1919. <line x="155" y="7"/>
  1920. </path>
  1921. <stroke/>
  1922. <path>
  1923. <move x="6" y="14.8"/>
  1924. <line x="155" y="14.8"/>
  1925. </path>
  1926. <stroke/>
  1927. <path>
  1928. <move x="6" y="22.2"/>
  1929. <line x="155" y="22.2"/>
  1930. </path>
  1931. <stroke/>
  1932. <strokecolor color="none"/>
  1933. <fillcolor color="#b4b4b4"/>
  1934. <rect x="10" y="3" w="142" h="2"/>
  1935. <fillstroke/>
  1936. <rect x="10" y="17.8" w="142" h="2"/>
  1937. <fillstroke/>
  1938. <strokecolor color="#000000"/>
  1939. <rect x="11" y="10" w="4" h="3"/>
  1940. <stroke/>
  1941. <rect x="15" y="10" w="4" h="3"/>
  1942. <stroke/>
  1943. <rect x="23" y="10" w="4" h="3"/>
  1944. <stroke/>
  1945. <rect x="27" y="10" w="4" h="3"/>
  1946. <stroke/>
  1947. <rect x="40" y="10" w="4" h="3"/>
  1948. <stroke/>
  1949. <rect x="44" y="10" w="4" h="3"/>
  1950. <stroke/>
  1951. <rect x="48" y="10" w="4" h="3"/>
  1952. <stroke/>
  1953. <rect x="52" y="10" w="4" h="3"/>
  1954. <stroke/>
  1955. <rect x="56" y="10" w="4" h="3"/>
  1956. <stroke/>
  1957. <rect x="60" y="10" w="4" h="3"/>
  1958. <stroke/>
  1959. <rect x="68" y="10" w="4" h="3"/>
  1960. <stroke/>
  1961. <rect x="72" y="10" w="4" h="3"/>
  1962. <stroke/>
  1963. <rect x="78" y="9" w="4" h="4"/>
  1964. <stroke/>
  1965. <rect x="140" y="10" w="4" h="3"/>
  1966. <stroke/>
  1967. <rect x="136" y="10" w="4" h="3"/>
  1968. <stroke/>
  1969. <rect x="11" y="24.5" w="4" h="3"/>
  1970. <stroke/>
  1971. <rect x="15" y="24.5" w="4" h="3"/>
  1972. <stroke/>
  1973. <rect x="23" y="24.5" w="4" h="3"/>
  1974. <stroke/>
  1975. <rect x="27" y="24.5" w="4" h="3"/>
  1976. <stroke/>
  1977. <rect x="40" y="24.5" w="4" h="3"/>
  1978. <stroke/>
  1979. <rect x="44" y="24.5" w="4" h="3"/>
  1980. <stroke/>
  1981. <rect x="48" y="24.5" w="4" h="3"/>
  1982. <stroke/>
  1983. <rect x="52" y="24.5" w="4" h="3"/>
  1984. <stroke/>
  1985. <rect x="56" y="24.5" w="4" h="3"/>
  1986. <stroke/>
  1987. <rect x="60" y="24.5" w="4" h="3"/>
  1988. <stroke/>
  1989. <rect x="68" y="24.5" w="4" h="3"/>
  1990. <stroke/>
  1991. <rect x="72" y="24.5" w="4" h="3"/>
  1992. <stroke/>
  1993. <rect x="78" y="23.5" w="4" h="4"/>
  1994. <stroke/>
  1995. <rect x="136" y="24.5" w="4" h="3"/>
  1996. <stroke/>
  1997. <rect x="140" y="24.5" w="4" h="3"/>
  1998. <stroke/>
  1999. </foreground>
  2000. </shape>
  2001. <shape name="Cisco Network Access Control" h="14.7" w="160.9">
  2002. <foreground>
  2003. <strokecolor color="#000000"/>
  2004. <fillcolor color="#b4b4b4"/>
  2005. <rect x="0" y="0" w="160.9" h="14.7"/>
  2006. <fillstroke/>
  2007. <fillcolor color="#e8e8e8"/>
  2008. <rect x="5.99" y="0" w="149.09" h="14.7"/>
  2009. <fillstroke/>
  2010. <rect x="88" y="7" w="50" h="5"/>
  2011. <stroke/>
  2012. <rect x="8" y="2" w="38" h="10"/>
  2013. <stroke/>
  2014. <rect x="48" y="2" w="38" h="10"/>
  2015. <stroke/>
  2016. <rect x="142" y="7" w="4" h="2"/>
  2017. <stroke/>
  2018. <rect x="142" y="9" w="4" h="2"/>
  2019. <stroke/>
  2020. </foreground>
  2021. </shape>
  2022. <shape name="Cisco Nexus 1010 Virtual Services Appliance" h="14.8" w="160.9">
  2023. <foreground>
  2024. <strokecolor color="#000000"/>
  2025. <fillcolor color="#b4b4b4"/>
  2026. <rect x="0" y="0" w="160.9" h="14.8"/>
  2027. <fillstroke/>
  2028. <fillcolor color="#e8e8e8"/>
  2029. <rect x="6" y="0" w="149" h="14.8"/>
  2030. <fillstroke/>
  2031. <fillcolor color="#000000"/>
  2032. <rect x="38" y="6.5" w="6" h="5"/>
  2033. <fillstroke/>
  2034. <rect x="7" y="5" w="148" h="8"/>
  2035. <stroke/>
  2036. <fillcolor color="#000000"/>
  2037. <rect x="75" y="6.5" w="6" h="5"/>
  2038. <fillstroke/>
  2039. <rect x="112" y="6.5" w="6" h="5"/>
  2040. <fillstroke/>
  2041. <rect x="149" y="6.5" w="6" h="5"/>
  2042. <fillstroke/>
  2043. <fillcolor color="#b4b4b4"/>
  2044. <rect x="60" y="1" w="48" h="3"/>
  2045. <fill/>
  2046. </foreground>
  2047. </shape>
  2048. <shape name="Cisco Nexus 2148T Fabric Extender" h="14.8" w="160.9">
  2049. <foreground>
  2050. <strokecolor color="#000000"/>
  2051. <fillcolor color="#b4b4b4"/>
  2052. <rect x="0" y="0" w="160.9" h="14.8"/>
  2053. <fillstroke/>
  2054. <fillcolor color="#e8e8e8"/>
  2055. <rect x="6" y="0" w="149" h="14.8"/>
  2056. <fillstroke/>
  2057. <rect x="11" y="2" w="28" h="5"/>
  2058. <stroke/>
  2059. <rect x="107" y="8" w="28" h="5"/>
  2060. <stroke/>
  2061. <rect x="139" y="2" w="6" h="5"/>
  2062. <stroke/>
  2063. <rect x="107" y="2" w="28" h="5"/>
  2064. <stroke/>
  2065. <rect x="43" y="2" w="28" h="5"/>
  2066. <stroke/>
  2067. <rect x="75" y="8" w="28" h="5"/>
  2068. <stroke/>
  2069. <rect x="11" y="8" w="28" h="5"/>
  2070. <stroke/>
  2071. <rect x="139" y="8" w="6" h="5"/>
  2072. <stroke/>
  2073. <rect x="145" y="2" w="6" h="5"/>
  2074. <stroke/>
  2075. <rect x="145" y="8" w="6" h="5"/>
  2076. <stroke/>
  2077. <rect x="75" y="2" w="28" h="5"/>
  2078. <stroke/>
  2079. <rect x="43" y="8" w="28" h="5"/>
  2080. <stroke/>
  2081. </foreground>
  2082. </shape>
  2083. <shape name="Cisco Nexus 2224TP GE Fabric Extender" h="14.8" w="160.9">
  2084. <foreground>
  2085. <strokecolor color="#000000"/>
  2086. <fillcolor color="#b4b4b4"/>
  2087. <rect x="0" y="0" w="160.9" h="14.8"/>
  2088. <fillstroke/>
  2089. <fillcolor color="#e8e8e8"/>
  2090. <rect x="6" y="0" w="149" h="14.8"/>
  2091. <fillstroke/>
  2092. <rect x="138" y="8" w="12" h="4"/>
  2093. <stroke/>
  2094. <rect x="45" y="8" w="30" h="5"/>
  2095. <stroke/>
  2096. <rect x="45" y="2" w="30" h="5"/>
  2097. <stroke/>
  2098. <rect x="85" y="2" w="30" h="5"/>
  2099. <stroke/>
  2100. <rect x="85" y="8" w="30" h="5"/>
  2101. <stroke/>
  2102. </foreground>
  2103. </shape>
  2104. <shape name="Cisco Nexus 2232PP 10GE Fabric Extender" h="14.8" w="160.9">
  2105. <foreground>
  2106. <strokecolor color="#000000"/>
  2107. <fillcolor color="#b4b4b4"/>
  2108. <rect x="0" y="0" w="160.9" h="14.8"/>
  2109. <fillstroke/>
  2110. <fillcolor color="#e8e8e8"/>
  2111. <rect x="6" y="0" w="149" h="14.8"/>
  2112. <fillstroke/>
  2113. <rect x="15" y="2" w="21" h="5"/>
  2114. <stroke/>
  2115. <rect x="129" y="8" w="21" h="5"/>
  2116. <stroke/>
  2117. <rect x="129" y="2" w="21" h="5"/>
  2118. <stroke/>
  2119. <rect x="43" y="2" w="21" h="5"/>
  2120. <stroke/>
  2121. <rect x="71" y="8" w="21" h="5"/>
  2122. <stroke/>
  2123. <rect x="15" y="8" w="21" h="5"/>
  2124. <stroke/>
  2125. <rect x="71" y="2" w="21" h="5"/>
  2126. <stroke/>
  2127. <rect x="43" y="8" w="21" h="5"/>
  2128. <stroke/>
  2129. <rect x="100" y="2" w="21" h="5"/>
  2130. <stroke/>
  2131. <rect x="100" y="8" w="21" h="5"/>
  2132. <stroke/>
  2133. <fillcolor color="#b4b4b4"/>
  2134. <rect x="37" y="2" w="5" h="11"/>
  2135. <fill/>
  2136. <rect x="65" y="2" w="5" h="11"/>
  2137. <fill/>
  2138. <rect x="93.5" y="2" w="5" h="11"/>
  2139. <fill/>
  2140. <rect x="122.5" y="2" w="5" h="11"/>
  2141. <fill/>
  2142. </foreground>
  2143. </shape>
  2144. <shape name="Cisco Nexus 2232TM 10GE Fabric Extender" h="14.8" w="160.9">
  2145. <foreground>
  2146. <strokecolor color="#000000"/>
  2147. <fillcolor color="#b4b4b4"/>
  2148. <rect x="0" y="0" w="160.9" h="14.8"/>
  2149. <fillstroke/>
  2150. <fillcolor color="#e8e8e8"/>
  2151. <rect x="6" y="0" w="149" h="14.8"/>
  2152. <fillstroke/>
  2153. <rect x="15" y="2" w="21" h="5"/>
  2154. <stroke/>
  2155. <rect x="129" y="8" w="21" h="5"/>
  2156. <stroke/>
  2157. <rect x="129" y="2" w="21" h="5"/>
  2158. <stroke/>
  2159. <rect x="43" y="2" w="21" h="5"/>
  2160. <stroke/>
  2161. <rect x="71" y="8" w="21" h="5"/>
  2162. <stroke/>
  2163. <rect x="15" y="8" w="21" h="5"/>
  2164. <stroke/>
  2165. <rect x="71" y="2" w="21" h="5"/>
  2166. <stroke/>
  2167. <rect x="43" y="8" w="21" h="5"/>
  2168. <stroke/>
  2169. <rect x="100" y="2" w="21" h="5"/>
  2170. <stroke/>
  2171. <rect x="100" y="8" w="21" h="5"/>
  2172. <stroke/>
  2173. <fillcolor color="#b4b4b4"/>
  2174. <rect x="37" y="2" w="5" h="11"/>
  2175. <fill/>
  2176. <rect x="65" y="2" w="5" h="11"/>
  2177. <fill/>
  2178. <rect x="93.5" y="2" w="5" h="11"/>
  2179. <fill/>
  2180. <rect x="122.5" y="2" w="5" h="11"/>
  2181. <fill/>
  2182. </foreground>
  2183. </shape>
  2184. <shape name="Cisco Nexus 2248PQ 10GE Fabric Extender" h="14.8" w="160.9">
  2185. <foreground>
  2186. <strokecolor color="#000000"/>
  2187. <fillcolor color="#b4b4b4"/>
  2188. <rect x="0" y="0" w="160.9" h="14.8"/>
  2189. <fillstroke/>
  2190. <fillcolor color="#e8e8e8"/>
  2191. <rect x="6" y="0" w="149" h="14.8"/>
  2192. <fillstroke/>
  2193. <rect x="11" y="2" w="37" h="3"/>
  2194. <stroke/>
  2195. <rect x="89" y="8" w="37" h="3"/>
  2196. <stroke/>
  2197. <rect x="131" y="2" w="6" h="3"/>
  2198. <stroke/>
  2199. <rect x="89" y="2" w="37" h="3"/>
  2200. <stroke/>
  2201. <rect x="50" y="2" w="37" h="3"/>
  2202. <stroke/>
  2203. <rect x="50" y="8" w="37" h="3"/>
  2204. <stroke/>
  2205. <rect x="11" y="8" w="37" h="3"/>
  2206. <stroke/>
  2207. <rect x="131" y="9" w="6" h="3"/>
  2208. <stroke/>
  2209. <rect x="140" y="2" w="6" h="3"/>
  2210. <stroke/>
  2211. <rect x="140" y="9" w="6" h="3"/>
  2212. <stroke/>
  2213. </foreground>
  2214. </shape>
  2215. <shape name="Cisco Nexus 2248TP GE Fabric Extender" h="14.8" w="160.9">
  2216. <foreground>
  2217. <strokecolor color="#000000"/>
  2218. <fillcolor color="#b4b4b4"/>
  2219. <rect x="0" y="0" w="160.9" h="14.8"/>
  2220. <fillstroke/>
  2221. <fillcolor color="#e8e8e8"/>
  2222. <rect x="6" y="0" w="149" h="14.8"/>
  2223. <fillstroke/>
  2224. <rect x="11" y="2" w="28" h="5"/>
  2225. <stroke/>
  2226. <rect x="107" y="8" w="28" h="5"/>
  2227. <stroke/>
  2228. <rect x="139" y="2" w="6" h="5"/>
  2229. <stroke/>
  2230. <rect x="107" y="2" w="28" h="5"/>
  2231. <stroke/>
  2232. <rect x="43" y="2" w="28" h="5"/>
  2233. <stroke/>
  2234. <rect x="75" y="8" w="28" h="5"/>
  2235. <stroke/>
  2236. <rect x="11" y="8" w="28" h="5"/>
  2237. <stroke/>
  2238. <rect x="139" y="8" w="6" h="5"/>
  2239. <stroke/>
  2240. <rect x="145" y="2" w="6" h="5"/>
  2241. <stroke/>
  2242. <rect x="145" y="8" w="6" h="5"/>
  2243. <stroke/>
  2244. <rect x="75" y="2" w="28" h="5"/>
  2245. <stroke/>
  2246. <rect x="43" y="8" w="28" h="5"/>
  2247. <stroke/>
  2248. </foreground>
  2249. </shape>
  2250. <shape name="Cisco Nexus 3016 Switch" h="14.7" w="160.9">
  2251. <foreground>
  2252. <strokecolor color="#000000"/>
  2253. <fillcolor color="#b4b4b4"/>
  2254. <rect x="0" y="0" w="160.9" h="14.7"/>
  2255. <fillstroke/>
  2256. <fillcolor color="#e8e8e8"/>
  2257. <rect x="5.99" y="0" w="149.09" h="14.7"/>
  2258. <fillstroke/>
  2259. <rect x="140" y="2" w="6" h="3"/>
  2260. <stroke/>
  2261. <rect x="20" y="8" w="6" h="3"/>
  2262. <stroke/>
  2263. <rect x="125" y="2" w="6" h="3"/>
  2264. <stroke/>
  2265. <rect x="110" y="2" w="6" h="3"/>
  2266. <stroke/>
  2267. <rect x="95" y="2" w="6" h="3"/>
  2268. <stroke/>
  2269. <rect x="20" y="2" w="6" h="3"/>
  2270. <stroke/>
  2271. <rect x="35" y="2" w="6" h="3"/>
  2272. <stroke/>
  2273. <rect x="50" y="2" w="6" h="3"/>
  2274. <stroke/>
  2275. <rect x="65" y="2" w="6" h="3"/>
  2276. <stroke/>
  2277. <rect x="35" y="8" w="6" h="3"/>
  2278. <stroke/>
  2279. <rect x="50" y="8" w="6" h="3"/>
  2280. <stroke/>
  2281. <rect x="65" y="8" w="6" h="3"/>
  2282. <stroke/>
  2283. <rect x="95" y="8" w="6" h="3"/>
  2284. <stroke/>
  2285. <rect x="110" y="8" w="6" h="3"/>
  2286. <stroke/>
  2287. <rect x="125" y="8" w="6" h="3"/>
  2288. <stroke/>
  2289. <rect x="140" y="8" w="6" h="3"/>
  2290. <stroke/>
  2291. <fillcolor color="#b4b4b4"/>
  2292. <roundrect x="12.5" y="2" w="6" h="10" arcsize="26.68"/>
  2293. <fill/>
  2294. <roundrect x="27.5" y="2" w="6" h="10" arcsize="26.68"/>
  2295. <fill/>
  2296. <roundrect x="42.5" y="2" w="6" h="10" arcsize="26.68"/>
  2297. <fill/>
  2298. <roundrect x="57.5" y="2" w="6" h="10" arcsize="26.68"/>
  2299. <fill/>
  2300. <roundrect x="102.5" y="2" w="6" h="10" arcsize="26.68"/>
  2301. <fill/>
  2302. <roundrect x="117.5" y="2" w="6" h="10" arcsize="26.68"/>
  2303. <fill/>
  2304. <roundrect x="132.5" y="2" w="6" h="10" arcsize="26.68"/>
  2305. <fill/>
  2306. <roundrect x="147.5" y="2" w="6" h="10" arcsize="26.68"/>
  2307. <fill/>
  2308. <roundrect x="72.5" y="2" w="21" h="10" arcsize="14.76"/>
  2309. <fill/>
  2310. </foreground>
  2311. </shape>
  2312. <shape name="Cisco Nexus 3048 Switch" h="14.8" w="160.9">
  2313. <foreground>
  2314. <strokecolor color="#000000"/>
  2315. <fillcolor color="#b4b4b4"/>
  2316. <rect x="0" y="0" w="160.9" h="14.8"/>
  2317. <fillstroke/>
  2318. <fillcolor color="#e8e8e8"/>
  2319. <rect x="6" y="0" w="149" h="14.8"/>
  2320. <fillstroke/>
  2321. <rect x="11" y="2" w="28" h="5"/>
  2322. <stroke/>
  2323. <rect x="107" y="8" w="28" h="5"/>
  2324. <stroke/>
  2325. <rect x="139" y="2" w="6" h="5"/>
  2326. <stroke/>
  2327. <rect x="107" y="2" w="28" h="5"/>
  2328. <stroke/>
  2329. <rect x="43" y="2" w="28" h="5"/>
  2330. <stroke/>
  2331. <rect x="75" y="8" w="28" h="5"/>
  2332. <stroke/>
  2333. <rect x="11" y="8" w="28" h="5"/>
  2334. <stroke/>
  2335. <rect x="139" y="8" w="6" h="5"/>
  2336. <stroke/>
  2337. <rect x="145" y="2" w="6" h="5"/>
  2338. <stroke/>
  2339. <rect x="145" y="8" w="6" h="5"/>
  2340. <stroke/>
  2341. <rect x="75" y="2" w="28" h="5"/>
  2342. <stroke/>
  2343. <rect x="43" y="8" w="28" h="5"/>
  2344. <stroke/>
  2345. </foreground>
  2346. </shape>
  2347. <shape name="Cisco Nexus 3064 Switch" h="14.8" w="160.9">
  2348. <foreground>
  2349. <strokecolor color="#000000"/>
  2350. <fillcolor color="#b4b4b4"/>
  2351. <rect x="0" y="0" w="160.9" h="14.8"/>
  2352. <fillstroke/>
  2353. <fillcolor color="#e8e8e8"/>
  2354. <rect x="6" y="0" w="149" h="14.8"/>
  2355. <fillstroke/>
  2356. <rect x="11" y="2" w="37" h="3"/>
  2357. <stroke/>
  2358. <rect x="89" y="8" w="37" h="3"/>
  2359. <stroke/>
  2360. <rect x="131" y="2" w="6" h="4"/>
  2361. <stroke/>
  2362. <rect x="89" y="2" w="37" h="3"/>
  2363. <stroke/>
  2364. <rect x="50" y="2" w="37" h="3"/>
  2365. <stroke/>
  2366. <rect x="50" y="8" w="37" h="3"/>
  2367. <stroke/>
  2368. <rect x="11" y="8" w="37" h="3"/>
  2369. <stroke/>
  2370. <rect x="131" y="9" w="6" h="4"/>
  2371. <stroke/>
  2372. <rect x="140" y="2" w="6" h="4"/>
  2373. <stroke/>
  2374. <rect x="140" y="9" w="6" h="4"/>
  2375. <stroke/>
  2376. </foreground>
  2377. </shape>
  2378. <shape name="Cisco Nexus 3548 Switch" h="14.8" w="160.9">
  2379. <foreground>
  2380. <strokecolor color="#000000"/>
  2381. <fillcolor color="#b4b4b4"/>
  2382. <rect x="0" y="0" w="160.9" h="14.8"/>
  2383. <fillstroke/>
  2384. <fillcolor color="#e8e8e8"/>
  2385. <rect x="6" y="0" w="149" h="14.8"/>
  2386. <fillstroke/>
  2387. <rect x="113" y="2" w="37" h="3"/>
  2388. <stroke/>
  2389. <rect x="113" y="8" w="37" h="3"/>
  2390. <stroke/>
  2391. <rect x="25" y="2" w="6" h="4"/>
  2392. <stroke/>
  2393. <rect x="74" y="2" w="37" h="3"/>
  2394. <stroke/>
  2395. <rect x="35" y="2" w="37" h="3"/>
  2396. <stroke/>
  2397. <rect x="74" y="8" w="37" h="3"/>
  2398. <stroke/>
  2399. <rect x="35" y="8" w="37" h="3"/>
  2400. <stroke/>
  2401. <rect x="25" y="7" w="6" h="4"/>
  2402. <stroke/>
  2403. </foreground>
  2404. </shape>
  2405. <shape name="Cisco Nexus 5548P Switch" h="14.7" w="160.9">
  2406. <foreground>
  2407. <strokecolor color="#000000"/>
  2408. <fillcolor color="#b4b4b4"/>
  2409. <rect x="0" y="0" w="160.9" h="14.7"/>
  2410. <fillstroke/>
  2411. <fillcolor color="#e8e8e8"/>
  2412. <rect x="5.99" y="0" w="149.09" h="14.7"/>
  2413. <fillstroke/>
  2414. <rect x="10" y="2" w="48" h="3"/>
  2415. <stroke/>
  2416. <rect x="10" y="8" w="48" h="3"/>
  2417. <stroke/>
  2418. <rect x="61" y="2" w="48" h="3"/>
  2419. <stroke/>
  2420. <rect x="61" y="8" w="48" h="3"/>
  2421. <stroke/>
  2422. <rect x="111" y="2" w="42" h="11"/>
  2423. <stroke/>
  2424. </foreground>
  2425. </shape>
  2426. <shape name="Cisco Nexus 5596T" h="29.6" w="160.9">
  2427. <foreground>
  2428. <strokecolor color="#000000"/>
  2429. <fillcolor color="#b4b4b4"/>
  2430. <rect x="0" y="0" w="160.9" h="29.6"/>
  2431. <fillstroke/>
  2432. <fillcolor color="#e8e8e8"/>
  2433. <rect x="5.99" y="0" w="149.09" h="29.6"/>
  2434. <fillstroke/>
  2435. <rect x="10" y="16" w="43" h="12"/>
  2436. <stroke/>
  2437. <rect x="59" y="16" w="43" h="12"/>
  2438. <stroke/>
  2439. <rect x="108" y="16" w="43" h="12"/>
  2440. <stroke/>
  2441. <rect x="10" y="2" w="43" h="12"/>
  2442. <stroke/>
  2443. <rect x="59" y="2" w="43" h="12"/>
  2444. <stroke/>
  2445. <rect x="108" y="2" w="43" h="12"/>
  2446. <stroke/>
  2447. </foreground>
  2448. </shape>
  2449. <shape name="Cisco Nexus 5596UP Switch" h="29.6" w="160.9">
  2450. <foreground>
  2451. <strokecolor color="#000000"/>
  2452. <fillcolor color="#b4b4b4"/>
  2453. <rect x="0" y="0" w="160.9" h="29.6"/>
  2454. <fillstroke/>
  2455. <fillcolor color="#e8e8e8"/>
  2456. <rect x="5.99" y="0" w="149.09" h="29.6"/>
  2457. <fillstroke/>
  2458. <rect x="12" y="2" w="44" h="3"/>
  2459. <stroke/>
  2460. <rect x="12" y="8" w="44" h="3"/>
  2461. <stroke/>
  2462. <rect x="63" y="2" w="44" h="3"/>
  2463. <stroke/>
  2464. <rect x="63" y="8" w="44" h="3"/>
  2465. <stroke/>
  2466. <rect x="111" y="2" w="42" h="11"/>
  2467. <stroke/>
  2468. <rect x="13" y="16" w="43" h="12"/>
  2469. <stroke/>
  2470. <rect x="64" y="16" w="43" h="12"/>
  2471. <stroke/>
  2472. <rect x="110" y="16" w="43" h="12"/>
  2473. <stroke/>
  2474. </foreground>
  2475. </shape>
  2476. <shape name="Cisco Nexus 6001 Switch" h="14.7" w="160.9">
  2477. <foreground>
  2478. <strokecolor color="#000000"/>
  2479. <fillcolor color="#b4b4b4"/>
  2480. <rect x="0" y="0" w="160.9" h="14.7"/>
  2481. <fillstroke/>
  2482. <fillcolor color="#e8e8e8"/>
  2483. <rect x="5.99" y="0" w="149.09" h="14.7"/>
  2484. <fillstroke/>
  2485. <rect x="10" y="2" w="60" h="3"/>
  2486. <stroke/>
  2487. <rect x="10" y="8" w="60" h="3"/>
  2488. <stroke/>
  2489. <rect x="73" y="2" w="60" h="3"/>
  2490. <stroke/>
  2491. <rect x="73" y="8" w="60" h="3"/>
  2492. <stroke/>
  2493. <rect x="136" y="2" w="6" h="3"/>
  2494. <stroke/>
  2495. <rect x="145" y="2" w="6" h="3"/>
  2496. <stroke/>
  2497. <rect x="145" y="8" w="6" h="3"/>
  2498. <stroke/>
  2499. <rect x="136" y="8" w="6" h="3"/>
  2500. <stroke/>
  2501. </foreground>
  2502. </shape>
  2503. <shape name="Cisco Nexus 6004 Switch" h="59.2" w="160.9">
  2504. <foreground>
  2505. <strokecolor color="#000000"/>
  2506. <fillcolor color="#b4b4b4"/>
  2507. <rect x="0" y="0" w="160.9" h="59.2"/>
  2508. <fillstroke/>
  2509. <fillcolor color="#e8e8e8"/>
  2510. <rect x="6" y="5" w="149" h="49.2"/>
  2511. <fillstroke/>
  2512. <rect x="10" y="10" w="3" h="39"/>
  2513. <stroke/>
  2514. <path>
  2515. <move x="24.62" y="5"/>
  2516. <line x="24.62" y="54.2"/>
  2517. <move x="43.25" y="5"/>
  2518. <line x="43.25" y="54.2"/>
  2519. <move x="61.88" y="5"/>
  2520. <line x="61.88" y="54.2"/>
  2521. <move x="80.5" y="5"/>
  2522. <line x="80.5" y="54.2"/>
  2523. <move x="99.12" y="5"/>
  2524. <line x="99.12" y="54.2"/>
  2525. <move x="117.38" y="5"/>
  2526. <line x="117.38" y="54.2"/>
  2527. <move x="136" y="5"/>
  2528. <line x="136" y="54.2"/>
  2529. </path>
  2530. <stroke/>
  2531. <rect x="17" y="10" w="3" h="39"/>
  2532. <stroke/>
  2533. <rect x="28.62" y="10" w="3" h="39"/>
  2534. <stroke/>
  2535. <rect x="35.62" y="10" w="3" h="39"/>
  2536. <stroke/>
  2537. <rect x="47.25" y="10" w="3" h="39"/>
  2538. <stroke/>
  2539. <rect x="54.25" y="10" w="3" h="39"/>
  2540. <stroke/>
  2541. <rect x="65.88" y="10" w="3" h="39"/>
  2542. <stroke/>
  2543. <rect x="72.88" y="10" w="3" h="39"/>
  2544. <stroke/>
  2545. <rect x="84.5" y="10" w="3" h="39"/>
  2546. <stroke/>
  2547. <rect x="91.5" y="10" w="3" h="39"/>
  2548. <stroke/>
  2549. <rect x="103.12" y="10" w="3" h="39"/>
  2550. <stroke/>
  2551. <rect x="110.12" y="10" w="3" h="39"/>
  2552. <stroke/>
  2553. <rect x="121.38" y="10" w="3" h="39"/>
  2554. <stroke/>
  2555. <rect x="128.38" y="10" w="3" h="39"/>
  2556. <stroke/>
  2557. <rect x="140" y="10" w="3" h="39"/>
  2558. <stroke/>
  2559. <rect x="147" y="10" w="3" h="39"/>
  2560. <stroke/>
  2561. </foreground>
  2562. </shape>
  2563. <shape name="Cisco Nexus 7000 10-Slot Switch Chassis" h="310.8" w="160.9">
  2564. <foreground>
  2565. <strokecolor color="#000000"/>
  2566. <fillcolor color="#b4b4b4"/>
  2567. <roundrect x="0" y="0" w="160.9" h="310.8" arcsize="3.77"/>
  2568. <fillstroke/>
  2569. <fillcolor color="#e8e8e8"/>
  2570. <rect x="10" y="90" w="14.8" h="149"/>
  2571. <fillstroke/>
  2572. <rect x="24.8" y="90" w="14.8" h="149"/>
  2573. <fillstroke/>
  2574. <rect x="39.6" y="90" w="14.8" h="149"/>
  2575. <fillstroke/>
  2576. <rect x="54.4" y="90" w="14.8" h="149"/>
  2577. <fillstroke/>
  2578. <rect x="69.2" y="90" w="12" h="149"/>
  2579. <fillstroke/>
  2580. <rect x="81.2" y="90" w="12" h="149"/>
  2581. <fillstroke/>
  2582. <rect x="93.2" y="90" w="14.8" h="149"/>
  2583. <fillstroke/>
  2584. <rect x="108" y="90" w="14.8" h="149"/>
  2585. <fillstroke/>
  2586. <rect x="122.8" y="90" w="14.8" h="149"/>
  2587. <fillstroke/>
  2588. <rect x="137.6" y="90" w="14.8" h="149"/>
  2589. <fillstroke/>
  2590. <fillcolor color="#cccccc"/>
  2591. <roundrect x="6" y="6" w="148" h="65" arcsize="5.54"/>
  2592. <fill/>
  2593. <rect x="10" y="239" w="142.4" h="60"/>
  2594. <stroke/>
  2595. <rect x="16" y="245" w="130" h="48"/>
  2596. <stroke/>
  2597. <path>
  2598. <move x="10" y="239"/>
  2599. <line x="16" y="245"/>
  2600. <move x="10" y="299"/>
  2601. <line x="16" y="293"/>
  2602. <move x="146" y="245"/>
  2603. <line x="152.4" y="239"/>
  2604. <move x="146" y="293"/>
  2605. <line x="152.4" y="299"/>
  2606. </path>
  2607. <stroke/>
  2608. <fillcolor color="#666666"/>
  2609. <roundrect x="21" y="247" w="8" h="21" arcsize="17.26"/>
  2610. <fillstroke/>
  2611. <roundrect x="21" y="270" w="8" h="21" arcsize="17.26"/>
  2612. <fillstroke/>
  2613. <roundrect x="31" y="247" w="8" h="21" arcsize="17.26"/>
  2614. <fillstroke/>
  2615. <roundrect x="41" y="247" w="8" h="21" arcsize="17.26"/>
  2616. <fillstroke/>
  2617. <roundrect x="51" y="247" w="8" h="21" arcsize="17.26"/>
  2618. <fillstroke/>
  2619. <roundrect x="61" y="247" w="8" h="21" arcsize="17.26"/>
  2620. <fillstroke/>
  2621. <roundrect x="71" y="247" w="8" h="21" arcsize="17.26"/>
  2622. <fillstroke/>
  2623. <roundrect x="81" y="247" w="8" h="21" arcsize="17.26"/>
  2624. <fillstroke/>
  2625. <roundrect x="91" y="247" w="8" h="21" arcsize="17.26"/>
  2626. <fillstroke/>
  2627. <roundrect x="101" y="247" w="8" h="21" arcsize="17.26"/>
  2628. <fillstroke/>
  2629. <roundrect x="111" y="247" w="8" h="21" arcsize="17.26"/>
  2630. <fillstroke/>
  2631. <roundrect x="121" y="247" w="8" h="21" arcsize="17.26"/>
  2632. <fillstroke/>
  2633. <roundrect x="131" y="247" w="8" h="21" arcsize="17.26"/>
  2634. <fillstroke/>
  2635. <roundrect x="31" y="270" w="8" h="21" arcsize="17.26"/>
  2636. <fillstroke/>
  2637. <roundrect x="41" y="270" w="8" h="21" arcsize="17.26"/>
  2638. <fillstroke/>
  2639. <roundrect x="51" y="270" w="8" h="21" arcsize="17.26"/>
  2640. <fillstroke/>
  2641. <roundrect x="61" y="270" w="8" h="21" arcsize="17.26"/>
  2642. <fillstroke/>
  2643. <roundrect x="71" y="270" w="8" h="21" arcsize="17.26"/>
  2644. <fillstroke/>
  2645. <roundrect x="81" y="270" w="8" h="21" arcsize="17.26"/>
  2646. <fillstroke/>
  2647. <roundrect x="91" y="270" w="8" h="21" arcsize="17.26"/>
  2648. <fillstroke/>
  2649. <roundrect x="101" y="270" w="8" h="21" arcsize="17.26"/>
  2650. <fillstroke/>
  2651. <roundrect x="111" y="270" w="8" h="21" arcsize="17.26"/>
  2652. <fillstroke/>
  2653. <roundrect x="121" y="270" w="8" h="21" arcsize="17.26"/>
  2654. <fillstroke/>
  2655. <roundrect x="131" y="270" w="8" h="21" arcsize="17.26"/>
  2656. <fillstroke/>
  2657. <fillcolor color="#66ccff"/>
  2658. <alpha alpha="0.3"/>
  2659. <rect x="0" y="78" w="160.9" h="161"/>
  2660. <fillstroke/>
  2661. </foreground>
  2662. </shape>
  2663. <shape name="Cisco Nexus 7000 18-Slot Switch Chassis" h="370" w="160.9">
  2664. <foreground>
  2665. <strokecolor color="#000000"/>
  2666. <fillcolor color="#b4b4b4"/>
  2667. <rect x="0" y="0" w="160.9" h="370"/>
  2668. <fillstroke/>
  2669. <fillcolor color="#e8e8e8"/>
  2670. <rect x="6" y="123.4" w="149" h="19"/>
  2671. <fillstroke/>
  2672. <rect x="6" y="5" w="149" h="14.8"/>
  2673. <fillstroke/>
  2674. <rect x="6" y="19.8" w="149" h="14.8"/>
  2675. <fillstroke/>
  2676. <rect x="6" y="34.6" w="149" h="14.8"/>
  2677. <fillstroke/>
  2678. <fillcolor color="#66ccff"/>
  2679. <rect x="0" y="0" w="160.9" h="5"/>
  2680. <fillstroke/>
  2681. <strokecolor color="#66ccff"/>
  2682. <rect x="9" y="290" w="145" h="10"/>
  2683. <fillstroke/>
  2684. <strokecolor color="#000000"/>
  2685. <fillcolor color="#e8e8e8"/>
  2686. <rect x="6" y="49.4" w="149" h="14.8"/>
  2687. <fillstroke/>
  2688. <rect x="6" y="142.4" w="149" h="19"/>
  2689. <fillstroke/>
  2690. <rect x="6" y="64.2" w="149" h="14.8"/>
  2691. <fillstroke/>
  2692. <rect x="6" y="79" w="149" h="14.8"/>
  2693. <fillstroke/>
  2694. <rect x="6" y="93.8" w="149" h="14.8"/>
  2695. <fillstroke/>
  2696. <rect x="6" y="108.6" w="149" h="14.8"/>
  2697. <fillstroke/>
  2698. <fillcolor color="#66ccff"/>
  2699. <path>
  2700. <move x="0" y="370"/>
  2701. <line x="0" y="290"/>
  2702. <line x="10" y="290"/>
  2703. <line x="10" y="357"/>
  2704. <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="13" y="360"/>
  2705. <line x="147.9" y="360"/>
  2706. <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="150.9" y="357"/>
  2707. <line x="150.9" y="290"/>
  2708. <line x="160.9" y="290"/>
  2709. <line x="160.9" y="370"/>
  2710. <close/>
  2711. </path>
  2712. <fillstroke/>
  2713. <fillcolor color="#e8e8e8"/>
  2714. <rect x="6" y="161" w="149" h="14.8"/>
  2715. <fillstroke/>
  2716. <rect x="6" y="175.8" w="149" h="14.8"/>
  2717. <fillstroke/>
  2718. <rect x="6" y="190.6" w="149" h="14.8"/>
  2719. <fillstroke/>
  2720. <rect x="6" y="205.4" w="149" h="14.8"/>
  2721. <fillstroke/>
  2722. <rect x="6" y="220.2" w="149" h="14.8"/>
  2723. <fillstroke/>
  2724. <rect x="6" y="235" w="149" h="14.8"/>
  2725. <fillstroke/>
  2726. <rect x="6" y="249.8" w="149" h="14.8"/>
  2727. <fillstroke/>
  2728. <rect x="6" y="264.6" w="149" h="14.8"/>
  2729. <fillstroke/>
  2730. <fillcolor color="#66ccff"/>
  2731. <alpha alpha="0.3"/>
  2732. <rect x="0" y="5" w="160.9" h="285"/>
  2733. <fillstroke/>
  2734. <strokecolor color="#cccccc"/>
  2735. <fillcolor color="#e8e8e8"/>
  2736. <alpha alpha="1"/>
  2737. <path>
  2738. <move x="0" y="127"/>
  2739. <line x="8" y="127"/>
  2740. <line x="20" y="134"/>
  2741. <line x="140.9" y="134"/>
  2742. <line x="152.9" y="127"/>
  2743. <line x="160.9" y="127"/>
  2744. <line x="160.9" y="159"/>
  2745. <line x="152.9" y="159"/>
  2746. <line x="140.9" y="152"/>
  2747. <line x="20" y="152"/>
  2748. <line x="8" y="159"/>
  2749. <line x="0" y="159"/>
  2750. <close/>
  2751. </path>
  2752. <fillstroke/>
  2753. <strokecolor color="#666666"/>
  2754. <path>
  2755. <move x="155.9" y="130"/>
  2756. <line x="145.9" y="136"/>
  2757. <line x="145.9" y="150"/>
  2758. <line x="155.9" y="156"/>
  2759. <line x="151.9" y="152"/>
  2760. <line x="151.9" y="134"/>
  2761. <close/>
  2762. <move x="5" y="130"/>
  2763. <line x="15" y="136"/>
  2764. <line x="15" y="150"/>
  2765. <line x="5" y="156"/>
  2766. <line x="10" y="152"/>
  2767. <line x="10" y="134"/>
  2768. <close/>
  2769. </path>
  2770. <stroke/>
  2771. </foreground>
  2772. </shape>
  2773. <shape name="Cisco Nexus 7000 4-Slot Switch Chassis" h="104" w="160.9">
  2774. <foreground>
  2775. <strokecolor color="#000000"/>
  2776. <fillcolor color="#b4b4b4"/>
  2777. <rect x="0" y="0" w="160.9" h="103.6"/>
  2778. <fillstroke/>
  2779. <fillcolor color="#cccccc"/>
  2780. <rect x="6" y="0" w="149" h="35"/>
  2781. <fillstroke/>
  2782. <fillcolor color="#e8e8e8"/>
  2783. <rect x="6" y="35" w="149" h="19"/>
  2784. <fillstroke/>
  2785. <rect x="6" y="54" w="149" h="14.8"/>
  2786. <fillstroke/>
  2787. <rect x="6" y="68.8" w="149" h="14.8"/>
  2788. <fillstroke/>
  2789. <rect x="6" y="83.6" w="149" h="14.8"/>
  2790. <fillstroke/>
  2791. <strokecolor color="#66ccff"/>
  2792. <fillcolor color="#66ccff"/>
  2793. <rect x="0" y="0" w="160.9" h="8"/>
  2794. <fillstroke/>
  2795. <rect x="0" y="83" w="160.9" h="3"/>
  2796. <fillstroke/>
  2797. <rect x="0" y="89" w="160.9" h="3"/>
  2798. <fillstroke/>
  2799. <rect x="0" y="95" w="160.9" h="3"/>
  2800. <fillstroke/>
  2801. <rect x="0" y="101" w="160.9" h="3"/>
  2802. <fillstroke/>
  2803. <path>
  2804. <move x="0" y="30"/>
  2805. <line x="4" y="30"/>
  2806. <line x="12" y="39"/>
  2807. <line x="12" y="66"/>
  2808. <line x="4" y="75"/>
  2809. <line x="0" y="75"/>
  2810. <close/>
  2811. <move x="160.9" y="30"/>
  2812. <line x="156.9" y="30"/>
  2813. <line x="148.9" y="39"/>
  2814. <line x="148.9" y="66"/>
  2815. <line x="156.9" y="75"/>
  2816. <line x="160.9" y="75"/>
  2817. <close/>
  2818. </path>
  2819. <fillstroke/>
  2820. <strokecolor color="#000000"/>
  2821. <path>
  2822. <move x="3" y="34"/>
  2823. <line x="6" y="39"/>
  2824. <line x="6" y="67"/>
  2825. <line x="3" y="72"/>
  2826. <move x="157.9" y="34"/>
  2827. <line x="154.9" y="39"/>
  2828. <line x="154.9" y="67"/>
  2829. <line x="157.9" y="72"/>
  2830. </path>
  2831. <stroke/>
  2832. </foreground>
  2833. </shape>
  2834. <shape name="Cisco Nexus 7000 9-Slot Switch Chassis" h="207.2" w="160.9">
  2835. <foreground>
  2836. <strokecolor color="#000000"/>
  2837. <fillcolor color="#b4b4b4"/>
  2838. <rect x="0" y="0" w="160.9" h="207.2"/>
  2839. <fillstroke/>
  2840. <fillcolor color="#e8e8e8"/>
  2841. <rect x="6" y="64.2" w="149" h="19"/>
  2842. <fillstroke/>
  2843. <rect x="6" y="5" w="149" h="14.8"/>
  2844. <fillstroke/>
  2845. <rect x="6" y="19.8" w="149" h="14.8"/>
  2846. <fillstroke/>
  2847. <rect x="6" y="34.6" w="149" h="14.8"/>
  2848. <fillstroke/>
  2849. <fillcolor color="#66ccff"/>
  2850. <rect x="0" y="0" w="160.9" h="5"/>
  2851. <fillstroke/>
  2852. <strokecolor color="#66ccff"/>
  2853. <rect x="8" y="170" w="145" h="8"/>
  2854. <fillstroke/>
  2855. <strokecolor color="#000000"/>
  2856. <fillcolor color="#e8e8e8"/>
  2857. <rect x="6" y="49.4" w="149" h="14.8"/>
  2858. <fillstroke/>
  2859. <rect x="6" y="83.2" w="149" h="19"/>
  2860. <fillstroke/>
  2861. <rect x="6" y="102.2" w="149" h="14.8"/>
  2862. <fillstroke/>
  2863. <rect x="6" y="117" w="149" h="14.8"/>
  2864. <fillstroke/>
  2865. <rect x="6" y="131.8" w="149" h="14.8"/>
  2866. <fillstroke/>
  2867. <rect x="6" y="146.6" w="149" h="14.8"/>
  2868. <fillstroke/>
  2869. <fillcolor color="#66ccff"/>
  2870. <path>
  2871. <move x="0" y="207.2"/>
  2872. <line x="0" y="170"/>
  2873. <line x="8" y="170"/>
  2874. <line x="8" y="195"/>
  2875. <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="11" y="198"/>
  2876. <line x="149.9" y="198"/>
  2877. <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="152.9" y="195"/>
  2878. <line x="152.9" y="170"/>
  2879. <line x="160.9" y="170"/>
  2880. <line x="160.9" y="207.2"/>
  2881. <close/>
  2882. </path>
  2883. <fillstroke/>
  2884. <strokecolor color="#66ccff"/>
  2885. <path>
  2886. <move x="0.33" y="66.33"/>
  2887. <line x="4.33" y="66.33"/>
  2888. <line x="12.33" y="72.38"/>
  2889. <line x="12.33" y="90.53"/>
  2890. <line x="4.33" y="96.58"/>
  2891. <line x="0.33" y="96.58"/>
  2892. <close/>
  2893. </path>
  2894. <fillstroke/>
  2895. <strokecolor color="#000000"/>
  2896. <alpha alpha="0.3"/>
  2897. <rect x="0" y="5" w="160.9" h="165"/>
  2898. <fillstroke/>
  2899. <strokecolor color="#cccccc"/>
  2900. <fillcolor color="#e8e8e8"/>
  2901. <alpha alpha="1"/>
  2902. <path>
  2903. <move x="0" y="66"/>
  2904. <line x="8" y="66"/>
  2905. <line x="20" y="73"/>
  2906. <line x="140.9" y="73"/>
  2907. <line x="152.9" y="66"/>
  2908. <line x="160.9" y="66"/>
  2909. <line x="160.9" y="98"/>
  2910. <line x="152.9" y="98"/>
  2911. <line x="140.9" y="91"/>
  2912. <line x="20" y="91"/>
  2913. <line x="8" y="98"/>
  2914. <line x="0" y="98"/>
  2915. <close/>
  2916. </path>
  2917. <fillstroke/>
  2918. <strokecolor color="#666666"/>
  2919. <path>
  2920. <move x="5" y="69"/>
  2921. <line x="15" y="75"/>
  2922. <line x="15" y="89"/>
  2923. <line x="5" y="95"/>
  2924. <line x="9" y="91"/>
  2925. <line x="9" y="73"/>
  2926. <close/>
  2927. <move x="155.9" y="69"/>
  2928. <line x="145.9" y="75"/>
  2929. <line x="145.9" y="89"/>
  2930. <line x="155.9" y="95"/>
  2931. <line x="151.9" y="91"/>
  2932. <line x="151.9" y="73"/>
  2933. <close/>
  2934. </path>
  2935. <stroke/>
  2936. </foreground>
  2937. </shape>
  2938. <shape name="Cisco ONS 15305 Multiservice Customer Access Platform" h="14.8" w="160.9">
  2939. <foreground>
  2940. <strokecolor color="#000000"/>
  2941. <fillcolor color="#b4b4b4"/>
  2942. <rect x="0" y="0" w="160.9" h="14.8"/>
  2943. <fillstroke/>
  2944. <fillcolor color="#e8e8e8"/>
  2945. <rect x="6" y="0" w="149" h="14.8"/>
  2946. <fillstroke/>
  2947. <rect x="139" y="2" w="6" h="5"/>
  2948. <stroke/>
  2949. <rect x="47" y="4" w="24" h="4"/>
  2950. <stroke/>
  2951. <rect x="80" y="8" w="24" h="4"/>
  2952. <stroke/>
  2953. <rect x="11" y="8" w="30" h="4"/>
  2954. <stroke/>
  2955. <rect x="80" y="4" w="24" h="4"/>
  2956. <stroke/>
  2957. <rect x="47" y="8" w="24" h="4"/>
  2958. <stroke/>
  2959. <rect x="139" y="7" w="6" h="5"/>
  2960. <stroke/>
  2961. </foreground>
  2962. </shape>
  2963. <shape name="Cisco ONS 15310-CL SONET Multiservice Platform" h="14.8" w="160.9">
  2964. <foreground>
  2965. <strokecolor color="#000000"/>
  2966. <fillcolor color="#b4b4b4"/>
  2967. <rect x="0" y="0" w="160.9" h="14.8"/>
  2968. <fillstroke/>
  2969. <fillcolor color="#e8e8e8"/>
  2970. <rect x="6" y="0" w="149" h="14.8"/>
  2971. <fillstroke/>
  2972. <rect x="107" y="7" w="6" h="4"/>
  2973. <stroke/>
  2974. <rect x="115" y="7" w="20" h="4"/>
  2975. <stroke/>
  2976. <rect x="46" y="7" w="20" h="4"/>
  2977. <stroke/>
  2978. <rect x="77" y="7" w="24" h="4"/>
  2979. <stroke/>
  2980. <rect x="24" y="7" w="20" h="4"/>
  2981. <stroke/>
  2982. <rect x="12" y="8" w="5" h="4"/>
  2983. <stroke/>
  2984. <path>
  2985. <move x="72" y="0"/>
  2986. <line x="72" y="14.8"/>
  2987. <move x="6" y="2"/>
  2988. <line x="72" y="2"/>
  2989. </path>
  2990. <stroke/>
  2991. </foreground>
  2992. </shape>
  2993. <shape name="Cisco ONS 15310-MA SDH Multiservice Platform" h="88.8" w="85.75">
  2994. <foreground>
  2995. <strokecolor color="#000000"/>
  2996. <fillcolor color="#b4b4b4"/>
  2997. <rect x="0" y="0" w="85.75" h="88.8"/>
  2998. <fillstroke/>
  2999. <fillcolor color="#e8e8e8"/>
  3000. <rect x="4" y="17" w="77" h="60"/>
  3001. <fillstroke/>
  3002. <rect x="60" y="8" w="5" h="4"/>
  3003. <stroke/>
  3004. <path>
  3005. <move x="15" y="17"/>
  3006. <line x="15" y="77"/>
  3007. <move x="26" y="17"/>
  3008. <line x="26" y="77"/>
  3009. <move x="37" y="17"/>
  3010. <line x="37" y="77"/>
  3011. <move x="48" y="17"/>
  3012. <line x="48" y="77"/>
  3013. <move x="59" y="17"/>
  3014. <line x="59" y="77"/>
  3015. <move x="70" y="17"/>
  3016. <line x="70" y="77"/>
  3017. <move x="0" y="17"/>
  3018. <line x="85.75" y="17"/>
  3019. <move x="0" y="6"/>
  3020. <line x="85.75" y="6"/>
  3021. <move x="43" y="0"/>
  3022. <line x="43" y="6"/>
  3023. </path>
  3024. <stroke/>
  3025. </foreground>
  3026. </shape>
  3027. <shape name="Cisco ONS 15454 SONET-SDH Multiservice Provisioning Platform" h="156.67" w="160.9">
  3028. <foreground>
  3029. <strokecolor color="#000000"/>
  3030. <fillcolor color="#b4b4b4"/>
  3031. <rect x="0" y="0" w="160.9" h="156.67"/>
  3032. <fillstroke/>
  3033. <fillcolor color="#e8e8e8"/>
  3034. <rect x="6" y="0" w="149" h="156.67"/>
  3035. <fillstroke/>
  3036. <path>
  3037. <move x="6" y="127"/>
  3038. <line x="155" y="127"/>
  3039. <move x="6" y="142"/>
  3040. <line x="155" y="142"/>
  3041. <move x="14.76" y="0"/>
  3042. <line x="14.76" y="127"/>
  3043. <move x="23.52" y="0"/>
  3044. <line x="23.52" y="127"/>
  3045. <move x="32.28" y="0"/>
  3046. <line x="32.28" y="127"/>
  3047. <move x="41.04" y="0"/>
  3048. <line x="41.04" y="127"/>
  3049. <move x="49.8" y="0"/>
  3050. <line x="49.8" y="127"/>
  3051. <move x="49.8" y="0"/>
  3052. <line x="49.8" y="127"/>
  3053. <move x="58.56" y="0"/>
  3054. <line x="58.56" y="127"/>
  3055. <move x="67.32" y="0"/>
  3056. <line x="67.32" y="127"/>
  3057. <move x="76.08" y="0"/>
  3058. <line x="76.08" y="127"/>
  3059. <move x="84.84" y="0"/>
  3060. <line x="84.84" y="127"/>
  3061. <move x="93.6" y="0"/>
  3062. <line x="93.6" y="127"/>
  3063. <move x="102.36" y="0"/>
  3064. <line x="102.36" y="127"/>
  3065. <move x="102.36" y="0"/>
  3066. <line x="102.36" y="127"/>
  3067. <move x="111.12" y="0"/>
  3068. <line x="111.12" y="127"/>
  3069. <move x="111.12" y="0"/>
  3070. <line x="111.12" y="127"/>
  3071. <move x="119.88" y="0"/>
  3072. <line x="119.88" y="127"/>
  3073. <move x="128.64" y="0"/>
  3074. <line x="128.64" y="127"/>
  3075. <move x="137.4" y="0"/>
  3076. <line x="137.4" y="127"/>
  3077. <move x="146.16" y="0"/>
  3078. <line x="146.16" y="127"/>
  3079. </path>
  3080. <stroke/>
  3081. <rect x="10" y="146" w="13" h="7"/>
  3082. <stroke/>
  3083. <rect x="138" y="146" w="13" h="7"/>
  3084. <stroke/>
  3085. </foreground>
  3086. </shape>
  3087. <shape name="Cisco ONS 15600 Multiservice Switching Platform" h="211.67" w="200">
  3088. <foreground>
  3089. <strokecolor color="#000000"/>
  3090. <fillcolor color="#b4b4b4"/>
  3091. <rect x="0" y="0" w="200" h="211.67"/>
  3092. <fillstroke/>
  3093. <fillcolor color="#e8e8e8"/>
  3094. <rect x="12" y="15" w="176" h="196.67"/>
  3095. <fillstroke/>
  3096. <path>
  3097. <move x="12" y="0"/>
  3098. <line x="12" y="15"/>
  3099. <move x="188" y="0"/>
  3100. <line x="188" y="15"/>
  3101. <move x="12" y="45"/>
  3102. <line x="188" y="45"/>
  3103. <move x="12" y="190"/>
  3104. <line x="188" y="190"/>
  3105. <move x="26" y="45"/>
  3106. <line x="26" y="190"/>
  3107. <move x="40" y="45"/>
  3108. <line x="40" y="190"/>
  3109. <move x="54" y="45"/>
  3110. <line x="54" y="190"/>
  3111. <move x="68" y="45"/>
  3112. <line x="68" y="190"/>
  3113. <move x="79" y="45"/>
  3114. <line x="79" y="190"/>
  3115. <move x="100" y="45"/>
  3116. <line x="100" y="190"/>
  3117. <move x="121" y="45"/>
  3118. <line x="121" y="190"/>
  3119. <move x="132" y="45"/>
  3120. <line x="132" y="190"/>
  3121. <move x="146" y="45"/>
  3122. <line x="146" y="190"/>
  3123. <move x="160" y="45"/>
  3124. <line x="160" y="190"/>
  3125. <move x="174" y="45"/>
  3126. <line x="174" y="190"/>
  3127. <move x="70.67" y="15"/>
  3128. <line x="70.67" y="45"/>
  3129. <move x="129.33" y="15"/>
  3130. <line x="129.33" y="45"/>
  3131. </path>
  3132. <stroke/>
  3133. <rect x="36.84" y="22" w="10" h="15"/>
  3134. <stroke/>
  3135. <rect x="95" y="22" w="10" h="15"/>
  3136. <stroke/>
  3137. <rect x="154.25" y="22" w="10" h="15"/>
  3138. <stroke/>
  3139. </foreground>
  3140. </shape>
  3141. <shape name="Cisco Physical Security 4U Storage" h="59.2" w="160.9">
  3142. <foreground>
  3143. <strokecolor color="#000000"/>
  3144. <fillcolor color="#b4b4b4"/>
  3145. <rect x="0" y="0" w="160.85" h="59.2"/>
  3146. <fillstroke/>
  3147. <rect x="6" y="0" w="149" h="59.2"/>
  3148. <stroke/>
  3149. <path>
  3150. <move x="55.63" y="0"/>
  3151. <line x="55.63" y="59.2"/>
  3152. <move x="105.27" y="0"/>
  3153. <line x="105.27" y="59.2"/>
  3154. <move x="0" y="17"/>
  3155. <line x="160.9" y="17"/>
  3156. <move x="0" y="42"/>
  3157. <line x="160.9" y="42"/>
  3158. </path>
  3159. <stroke/>
  3160. <fillcolor color="#b4b4b4"/>
  3161. <rect x="0" y="27" w="160.9" h="4"/>
  3162. <fillstroke/>
  3163. <ellipse x="27.82" y="51.5" w="6" h="6"/>
  3164. <stroke/>
  3165. <ellipse x="77.45" y="51.5" w="6" h="6"/>
  3166. <stroke/>
  3167. <ellipse x="127.14" y="51.5" w="6" h="6"/>
  3168. <stroke/>
  3169. </foreground>
  3170. </shape>
  3171. <shape name="Cisco Physical Security Multiservice Platform 1U" h="14.8" w="160.9">
  3172. <foreground>
  3173. <strokecolor color="#000000"/>
  3174. <fillcolor color="#b4b4b4"/>
  3175. <rect x="0" y="0" w="160.9" h="14.8"/>
  3176. <fillstroke/>
  3177. <fillcolor color="#e8e8e8"/>
  3178. <rect x="6" y="0" w="149" h="14.8"/>
  3179. <fillstroke/>
  3180. <rect x="8" y="3" w="34" h="8"/>
  3181. <stroke/>
  3182. <rect x="44" y="3" w="34" h="8"/>
  3183. <stroke/>
  3184. <rect x="80" y="3" w="34" h="8"/>
  3185. <stroke/>
  3186. <rect x="116" y="3" w="34" h="8"/>
  3187. <stroke/>
  3188. </foreground>
  3189. </shape>
  3190. <shape name="Cisco Physical Security Multiservice Platform 2U" h="29.6" w="160.9">
  3191. <foreground>
  3192. <strokecolor color="#000000"/>
  3193. <fillcolor color="#b4b4b4"/>
  3194. <rect x="0" y="0" w="160.9" h="29.6"/>
  3195. <fillstroke/>
  3196. <fillcolor color="#e8e8e8"/>
  3197. <rect x="6" y="0" w="149" h="29.6"/>
  3198. <fillstroke/>
  3199. <rect x="8" y="2" w="34" h="8"/>
  3200. <stroke/>
  3201. <rect x="44" y="2" w="34" h="8"/>
  3202. <stroke/>
  3203. <rect x="80" y="2" w="34" h="8"/>
  3204. <stroke/>
  3205. <rect x="116" y="2" w="34" h="8"/>
  3206. <stroke/>
  3207. <rect x="8" y="11" w="34" h="8"/>
  3208. <stroke/>
  3209. <rect x="8" y="20" w="34" h="8"/>
  3210. <stroke/>
  3211. <rect x="44" y="11" w="34" h="8"/>
  3212. <stroke/>
  3213. <rect x="44" y="20" w="34" h="8"/>
  3214. <stroke/>
  3215. <rect x="80" y="11" w="34" h="8"/>
  3216. <stroke/>
  3217. <rect x="80" y="20" w="34" h="8"/>
  3218. <stroke/>
  3219. <rect x="116" y="11" w="34" h="8"/>
  3220. <stroke/>
  3221. <rect x="116" y="20" w="34" h="8"/>
  3222. <stroke/>
  3223. </foreground>
  3224. </shape>
  3225. <shape name="Cisco Physical Security Multiservice Platform 4U" h="59.2" w="160.9">
  3226. <foreground>
  3227. <strokecolor color="#000000"/>
  3228. <fillcolor color="#b4b4b4"/>
  3229. <rect x="0" y="0" w="160.9" h="59.2"/>
  3230. <fillstroke/>
  3231. <fillcolor color="#e8e8e8"/>
  3232. <rect x="6" y="0" w="149" h="59.2"/>
  3233. <fillstroke/>
  3234. <rect x="8" y="3" w="34" h="8"/>
  3235. <stroke/>
  3236. <rect x="44" y="3" w="34" h="8"/>
  3237. <stroke/>
  3238. <rect x="80" y="3" w="34" h="8"/>
  3239. <stroke/>
  3240. <rect x="116" y="3" w="34" h="8"/>
  3241. <stroke/>
  3242. <rect x="8" y="12" w="34" h="8"/>
  3243. <stroke/>
  3244. <rect x="8" y="21" w="34" h="8"/>
  3245. <stroke/>
  3246. <rect x="44" y="12" w="34" h="8"/>
  3247. <stroke/>
  3248. <rect x="44" y="21" w="34" h="8"/>
  3249. <stroke/>
  3250. <rect x="80" y="12" w="34" h="8"/>
  3251. <stroke/>
  3252. <rect x="80" y="21" w="34" h="8"/>
  3253. <stroke/>
  3254. <rect x="116" y="12" w="34" h="8"/>
  3255. <stroke/>
  3256. <rect x="116" y="21" w="34" h="8"/>
  3257. <stroke/>
  3258. <rect x="8" y="30" w="34" h="8"/>
  3259. <stroke/>
  3260. <rect x="8" y="39" w="34" h="8"/>
  3261. <stroke/>
  3262. <rect x="8" y="48" w="34" h="8"/>
  3263. <stroke/>
  3264. <rect x="44" y="30" w="34" h="8"/>
  3265. <stroke/>
  3266. <rect x="80" y="30" w="34" h="8"/>
  3267. <stroke/>
  3268. <rect x="116" y="30" w="34" h="8"/>
  3269. <stroke/>
  3270. <rect x="44" y="39" w="34" h="8"/>
  3271. <stroke/>
  3272. <rect x="80" y="39" w="34" h="8"/>
  3273. <stroke/>
  3274. <rect x="116" y="39" w="34" h="8"/>
  3275. <stroke/>
  3276. <rect x="44" y="48" w="34" h="8"/>
  3277. <stroke/>
  3278. <rect x="80" y="48" w="34" h="8"/>
  3279. <stroke/>
  3280. <rect x="116" y="48" w="34" h="8"/>
  3281. <stroke/>
  3282. </foreground>
  3283. </shape>
  3284. <shape name="Cisco UCS 5100 Chassis" h="88.8" w="160.93">
  3285. <foreground>
  3286. <strokecolor color="#000000"/>
  3287. <fillcolor color="#b4b4b4"/>
  3288. <rect x="0" y="0" w="160.93" h="65"/>
  3289. <fillstroke/>
  3290. <fillcolor color="#e8e8e8"/>
  3291. <rect x="6" y="0" w="149.4" h="88.8"/>
  3292. <fillstroke/>
  3293. <path>
  3294. <move x="6" y="17"/>
  3295. <line x="155" y="17"/>
  3296. <move x="6" y="34"/>
  3297. <line x="155" y="34"/>
  3298. <move x="6" y="51"/>
  3299. <line x="155" y="51"/>
  3300. <move x="6" y="68"/>
  3301. <line x="155" y="68"/>
  3302. <move x="80.5" y="0"/>
  3303. <line x="80.5" y="68"/>
  3304. </path>
  3305. <stroke/>
  3306. </foreground>
  3307. </shape>
  3308. <shape name="Cisco UCS 6248UP Fabric Interconnect" h="14.8" w="160.9">
  3309. <foreground>
  3310. <strokecolor color="#000000"/>
  3311. <fillcolor color="#b4b4b4"/>
  3312. <rect x="0" y="0" w="160.9" h="14.8"/>
  3313. <fillstroke/>
  3314. <fillcolor color="#e8e8e8"/>
  3315. <rect x="6" y="0" w="149" h="14.8"/>
  3316. <fillstroke/>
  3317. <path>
  3318. <move x="6" y="14.8"/>
  3319. <line x="155" y="14.8"/>
  3320. </path>
  3321. <stroke/>
  3322. <rect x="9" y="3" w="45" h="9"/>
  3323. <stroke/>
  3324. <rect x="58" y="3" w="45" h="9"/>
  3325. <stroke/>
  3326. <rect x="107" y="3" w="45" h="9"/>
  3327. <stroke/>
  3328. <path>
  3329. <move x="9" y="6"/>
  3330. <line x="54" y="6"/>
  3331. <move x="9" y="9"/>
  3332. <line x="54" y="9"/>
  3333. <move x="58" y="6"/>
  3334. <line x="103" y="6"/>
  3335. <move x="58" y="9"/>
  3336. <line x="103" y="9"/>
  3337. <move x="107" y="6"/>
  3338. <line x="152" y="6"/>
  3339. <move x="107" y="9"/>
  3340. <line x="152" y="9"/>
  3341. </path>
  3342. <stroke/>
  3343. </foreground>
  3344. </shape>
  3345. <shape name="Cisco UCS 6296UP Fabric Interconnect" h="29.6" w="160.9">
  3346. <foreground>
  3347. <strokecolor color="#000000"/>
  3348. <fillcolor color="#b4b4b4"/>
  3349. <rect x="0" y="0" w="160.9" h="29.6"/>
  3350. <fillstroke/>
  3351. <fillcolor color="#e8e8e8"/>
  3352. <rect x="6" y="0" w="149" h="29.6"/>
  3353. <fillstroke/>
  3354. <path>
  3355. <move x="6" y="14.8"/>
  3356. <line x="155" y="14.8"/>
  3357. </path>
  3358. <stroke/>
  3359. <rect x="9" y="3" w="45" h="9"/>
  3360. <stroke/>
  3361. <rect x="58" y="3" w="45" h="9"/>
  3362. <stroke/>
  3363. <rect x="107" y="3" w="45" h="9"/>
  3364. <stroke/>
  3365. <path>
  3366. <move x="9" y="6"/>
  3367. <line x="54" y="6"/>
  3368. <move x="9" y="9"/>
  3369. <line x="54" y="9"/>
  3370. <move x="58" y="6"/>
  3371. <line x="103" y="6"/>
  3372. <move x="58" y="9"/>
  3373. <line x="103" y="9"/>
  3374. <move x="107" y="6"/>
  3375. <line x="152" y="6"/>
  3376. <move x="107" y="9"/>
  3377. <line x="152" y="9"/>
  3378. </path>
  3379. <stroke/>
  3380. <rect x="9" y="17" w="45" h="9"/>
  3381. <stroke/>
  3382. <rect x="58" y="17" w="45" h="9"/>
  3383. <stroke/>
  3384. <rect x="107" y="17" w="45" h="9"/>
  3385. <stroke/>
  3386. <path>
  3387. <move x="9" y="20"/>
  3388. <line x="54" y="20"/>
  3389. <move x="58" y="20"/>
  3390. <line x="103" y="20"/>
  3391. <move x="107" y="20"/>
  3392. <line x="152" y="20"/>
  3393. <move x="9" y="23"/>
  3394. <line x="54" y="23"/>
  3395. <move x="58" y="23"/>
  3396. <line x="103" y="23"/>
  3397. <move x="107" y="23"/>
  3398. <line x="152" y="23"/>
  3399. </path>
  3400. <stroke/>
  3401. </foreground>
  3402. </shape>
  3403. <shape name="Cisco UCS C22 M3 Server" h="14.7" w="160.9">
  3404. <foreground>
  3405. <strokecolor color="#000000"/>
  3406. <fillcolor color="#b4b4b4"/>
  3407. <rect x="0" y="0" w="160.9" h="14.7"/>
  3408. <fillstroke/>
  3409. <fillcolor color="#e8e8e8"/>
  3410. <rect x="5.99" y="0" w="149.09" h="14.7"/>
  3411. <fillstroke/>
  3412. <rect x="8" y="9" w="26" h="4"/>
  3413. <stroke/>
  3414. <rect x="37" y="9" w="26" h="4"/>
  3415. <stroke/>
  3416. <rect x="66" y="9" w="26" h="4"/>
  3417. <stroke/>
  3418. <rect x="95" y="9" w="26" h="4"/>
  3419. <stroke/>
  3420. <rect x="124" y="9" w="26" h="4"/>
  3421. <stroke/>
  3422. <rect x="66" y="2" w="26" h="4"/>
  3423. <stroke/>
  3424. <rect x="95" y="2" w="26" h="4"/>
  3425. <stroke/>
  3426. <rect x="124" y="2" w="26" h="4"/>
  3427. <stroke/>
  3428. <rect x="8" y="2" w="55" h="4"/>
  3429. <stroke/>
  3430. </foreground>
  3431. </shape>
  3432. <shape name="Cisco UCS C220 M3 Server" h="14.7" w="160.9">
  3433. <foreground>
  3434. <strokecolor color="#000000"/>
  3435. <fillcolor color="#b4b4b4"/>
  3436. <rect x="0" y="0" w="160.9" h="14.7"/>
  3437. <fillstroke/>
  3438. <fillcolor color="#e8e8e8"/>
  3439. <rect x="5.99" y="0" w="149.09" h="14.7"/>
  3440. <fillstroke/>
  3441. <rect x="8" y="9" w="26" h="4"/>
  3442. <stroke/>
  3443. <rect x="37" y="9" w="26" h="4"/>
  3444. <stroke/>
  3445. <rect x="66" y="9" w="26" h="4"/>
  3446. <stroke/>
  3447. <rect x="95" y="9" w="26" h="4"/>
  3448. <stroke/>
  3449. <rect x="124" y="9" w="26" h="4"/>
  3450. <stroke/>
  3451. <rect x="66" y="2" w="26" h="4"/>
  3452. <stroke/>
  3453. <rect x="95" y="2" w="26" h="4"/>
  3454. <stroke/>
  3455. <rect x="124" y="2" w="26" h="4"/>
  3456. <stroke/>
  3457. <rect x="8" y="2" w="55" h="4"/>
  3458. <stroke/>
  3459. </foreground>
  3460. </shape>
  3461. <shape name="Cisco UCS C24 M3 Server" h="29.6" w="160.9">
  3462. <foreground>
  3463. <strokecolor color="#000000"/>
  3464. <fillcolor color="#b4b4b4"/>
  3465. <rect x="0" y="0" w="160.9" h="29.6"/>
  3466. <fillstroke/>
  3467. <fillcolor color="#e8e8e8"/>
  3468. <rect x="6" y="0" w="149" h="29.6"/>
  3469. <fillstroke/>
  3470. <rect x="10" y="2" w="4" h="26"/>
  3471. <stroke/>
  3472. <rect x="16" y="2" w="4" h="26"/>
  3473. <stroke/>
  3474. <rect x="22" y="2" w="4" h="26"/>
  3475. <stroke/>
  3476. <rect x="28" y="2" w="4" h="26"/>
  3477. <stroke/>
  3478. <rect x="34" y="2" w="4" h="26"/>
  3479. <stroke/>
  3480. <rect x="40" y="2" w="4" h="26"/>
  3481. <stroke/>
  3482. <rect x="46" y="2" w="4" h="26"/>
  3483. <stroke/>
  3484. <rect x="52" y="2" w="4" h="26"/>
  3485. <stroke/>
  3486. <rect x="58" y="2" w="4" h="26"/>
  3487. <stroke/>
  3488. <rect x="64" y="2" w="4" h="26"/>
  3489. <stroke/>
  3490. <rect x="70" y="2" w="4" h="26"/>
  3491. <stroke/>
  3492. <rect x="76" y="2" w="4" h="26"/>
  3493. <stroke/>
  3494. <rect x="82" y="2" w="4" h="26"/>
  3495. <stroke/>
  3496. <rect x="88" y="2" w="4" h="26"/>
  3497. <stroke/>
  3498. <rect x="94" y="2" w="4" h="26"/>
  3499. <stroke/>
  3500. <rect x="100" y="2" w="4" h="26"/>
  3501. <stroke/>
  3502. <rect x="106" y="2" w="4" h="26"/>
  3503. <stroke/>
  3504. <rect x="112" y="2" w="4" h="26"/>
  3505. <stroke/>
  3506. <rect x="118" y="2" w="4" h="26"/>
  3507. <stroke/>
  3508. <rect x="124" y="2" w="4" h="26"/>
  3509. <stroke/>
  3510. <rect x="130" y="2" w="4" h="26"/>
  3511. <stroke/>
  3512. <rect x="136" y="2" w="4" h="26"/>
  3513. <stroke/>
  3514. <rect x="142" y="2" w="4" h="26"/>
  3515. <stroke/>
  3516. <rect x="148" y="2" w="4" h="26"/>
  3517. <stroke/>
  3518. </foreground>
  3519. </shape>
  3520. <shape name="Cisco UCS C240 M3 Server" h="29.6" w="160.9">
  3521. <foreground>
  3522. <strokecolor color="#000000"/>
  3523. <fillcolor color="#b4b4b4"/>
  3524. <rect x="0" y="0" w="160.9" h="29.6"/>
  3525. <fillstroke/>
  3526. <fillcolor color="#e8e8e8"/>
  3527. <rect x="6" y="0" w="149" h="29.6"/>
  3528. <fillstroke/>
  3529. <rect x="10" y="2" w="4" h="26"/>
  3530. <stroke/>
  3531. <rect x="16" y="2" w="4" h="26"/>
  3532. <stroke/>
  3533. <rect x="22" y="2" w="4" h="26"/>
  3534. <stroke/>
  3535. <rect x="28" y="2" w="4" h="26"/>
  3536. <stroke/>
  3537. <rect x="34" y="2" w="4" h="26"/>
  3538. <stroke/>
  3539. <rect x="40" y="2" w="4" h="26"/>
  3540. <stroke/>
  3541. <rect x="46" y="2" w="4" h="26"/>
  3542. <stroke/>
  3543. <rect x="52" y="2" w="4" h="26"/>
  3544. <stroke/>
  3545. <rect x="58" y="2" w="4" h="26"/>
  3546. <stroke/>
  3547. <rect x="64" y="2" w="4" h="26"/>
  3548. <stroke/>
  3549. <rect x="70" y="2" w="4" h="26"/>
  3550. <stroke/>
  3551. <rect x="76" y="2" w="4" h="26"/>
  3552. <stroke/>
  3553. <rect x="82" y="2" w="4" h="26"/>
  3554. <stroke/>
  3555. <rect x="88" y="2" w="4" h="26"/>
  3556. <stroke/>
  3557. <rect x="94" y="2" w="4" h="26"/>
  3558. <stroke/>
  3559. <rect x="100" y="2" w="4" h="26"/>
  3560. <stroke/>
  3561. <rect x="106" y="2" w="4" h="26"/>
  3562. <stroke/>
  3563. <rect x="112" y="2" w="4" h="26"/>
  3564. <stroke/>
  3565. <rect x="118" y="2" w="4" h="26"/>
  3566. <stroke/>
  3567. <rect x="124" y="2" w="4" h="26"/>
  3568. <stroke/>
  3569. <rect x="130" y="2" w="4" h="26"/>
  3570. <stroke/>
  3571. <rect x="136" y="2" w="4" h="26"/>
  3572. <stroke/>
  3573. <rect x="142" y="2" w="4" h="26"/>
  3574. <stroke/>
  3575. <rect x="148" y="2" w="4" h="26"/>
  3576. <stroke/>
  3577. </foreground>
  3578. </shape>
  3579. <shape name="Cisco UCS C260 M3 Server" h="29.6" w="160.9">
  3580. <foreground>
  3581. <strokecolor color="#000000"/>
  3582. <fillcolor color="#b4b4b4"/>
  3583. <rect x="0" y="0" w="160.9" h="29.6"/>
  3584. <fillstroke/>
  3585. <fillcolor color="#e8e8e8"/>
  3586. <rect x="6" y="0" w="149" h="29.6"/>
  3587. <fillstroke/>
  3588. <rect x="10" y="2" w="5" h="26"/>
  3589. <stroke/>
  3590. <rect x="17" y="2" w="5" h="26"/>
  3591. <stroke/>
  3592. <rect x="24" y="2" w="5" h="26"/>
  3593. <stroke/>
  3594. <rect x="31" y="2" w="5" h="26"/>
  3595. <stroke/>
  3596. <rect x="69" y="2" w="5" h="26"/>
  3597. <stroke/>
  3598. <rect x="48" y="2" w="5" h="26"/>
  3599. <stroke/>
  3600. <rect x="55" y="2" w="5" h="26"/>
  3601. <stroke/>
  3602. <rect x="62" y="2" w="5" h="26"/>
  3603. <stroke/>
  3604. <rect x="100" y="2" w="5" h="26"/>
  3605. <stroke/>
  3606. <rect x="107" y="2" w="5" h="26"/>
  3607. <stroke/>
  3608. <rect x="86" y="2" w="5" h="26"/>
  3609. <stroke/>
  3610. <rect x="93" y="2" w="5" h="26"/>
  3611. <stroke/>
  3612. <rect x="131" y="2" w="5" h="26"/>
  3613. <stroke/>
  3614. <rect x="138" y="2" w="5" h="26"/>
  3615. <stroke/>
  3616. <rect x="145" y="2" w="5" h="26"/>
  3617. <stroke/>
  3618. <rect x="124" y="2" w="5" h="26"/>
  3619. <stroke/>
  3620. <fillcolor color="#b4b4b4"/>
  3621. <rect x="38" y="2" w="8" h="12"/>
  3622. <fill/>
  3623. <rect x="38" y="15" w="8" h="12"/>
  3624. <fill/>
  3625. <rect x="114" y="2" w="8" h="12"/>
  3626. <fill/>
  3627. <rect x="114" y="15" w="8" h="12"/>
  3628. <fill/>
  3629. <strokecolor color="#000000"/>
  3630. <path>
  3631. <move x="76" y="0"/>
  3632. <line x="76" y="29.6"/>
  3633. </path>
  3634. <stroke/>
  3635. <path>
  3636. <move x="84" y="0"/>
  3637. <line x="84" y="29.6"/>
  3638. </path>
  3639. <stroke/>
  3640. </foreground>
  3641. </shape>
  3642. <shape name="Cisco UCS C420 M3 Server" h="29.6" w="160.9">
  3643. <foreground>
  3644. <strokecolor color="#000000"/>
  3645. <fillcolor color="#b4b4b4"/>
  3646. <rect x="0" y="0" w="160.9" h="29.6"/>
  3647. <fillstroke/>
  3648. <fillcolor color="#e8e8e8"/>
  3649. <rect x="6" y="0" w="149" h="29.6"/>
  3650. <fillstroke/>
  3651. <rect x="10" y="2" w="5" h="26"/>
  3652. <stroke/>
  3653. <rect x="17" y="2" w="5" h="26"/>
  3654. <stroke/>
  3655. <rect x="24" y="2" w="5" h="26"/>
  3656. <stroke/>
  3657. <rect x="31" y="2" w="5" h="26"/>
  3658. <stroke/>
  3659. <rect x="69" y="2" w="5" h="26"/>
  3660. <stroke/>
  3661. <rect x="48" y="2" w="5" h="26"/>
  3662. <stroke/>
  3663. <rect x="55" y="2" w="5" h="26"/>
  3664. <stroke/>
  3665. <rect x="62" y="2" w="5" h="26"/>
  3666. <stroke/>
  3667. <rect x="100" y="2" w="5" h="26"/>
  3668. <stroke/>
  3669. <rect x="107" y="2" w="5" h="26"/>
  3670. <stroke/>
  3671. <rect x="86" y="2" w="5" h="26"/>
  3672. <stroke/>
  3673. <rect x="93" y="2" w="5" h="26"/>
  3674. <stroke/>
  3675. <rect x="131" y="2" w="5" h="26"/>
  3676. <stroke/>
  3677. <rect x="138" y="2" w="5" h="26"/>
  3678. <stroke/>
  3679. <rect x="145" y="2" w="5" h="26"/>
  3680. <stroke/>
  3681. <rect x="124" y="2" w="5" h="26"/>
  3682. <stroke/>
  3683. <fillcolor color="#b4b4b4"/>
  3684. <rect x="38" y="2" w="8" h="12"/>
  3685. <fill/>
  3686. <rect x="38" y="15" w="8" h="12"/>
  3687. <fill/>
  3688. <rect x="114" y="2" w="8" h="12"/>
  3689. <fill/>
  3690. <rect x="114" y="15" w="8" h="12"/>
  3691. <fill/>
  3692. <strokecolor color="#000000"/>
  3693. <path>
  3694. <move x="76" y="0"/>
  3695. <line x="76" y="29.6"/>
  3696. <move x="84" y="0"/>
  3697. <line x="84" y="29.6"/>
  3698. </path>
  3699. <stroke/>
  3700. </foreground>
  3701. </shape>
  3702. <shape name="Cisco UCS C460 M2 Server" h="59.2" w="160.9">
  3703. <foreground>
  3704. <strokecolor color="#000000"/>
  3705. <fillcolor color="#b4b4b4"/>
  3706. <rect x="0" y="0" w="160.9" h="59.2"/>
  3707. <fillstroke/>
  3708. <fillcolor color="#e8e8e8"/>
  3709. <rect x="6" y="0" w="149" h="59.2"/>
  3710. <fillstroke/>
  3711. <fillcolor color="#b4b4b4"/>
  3712. <rect x="12" y="4" w="65" h="30"/>
  3713. <fill/>
  3714. <strokecolor color="#66ccff"/>
  3715. <fillcolor color="#66ccff"/>
  3716. <rect x="0" y="10" w="6" h="49.2"/>
  3717. <fillstroke/>
  3718. <rect x="154.9" y="10" w="6" h="49.2"/>
  3719. <fillstroke/>
  3720. <strokecolor color="#000000"/>
  3721. <rect x="10" y="54" w="26" h="4"/>
  3722. <stroke/>
  3723. <rect x="8" y="42" w="45" h="4"/>
  3724. <stroke/>
  3725. <rect x="10" y="48" w="26" h="4"/>
  3726. <stroke/>
  3727. <rect x="38" y="48" w="26" h="4"/>
  3728. <stroke/>
  3729. <rect x="66" y="48" w="26" h="4"/>
  3730. <stroke/>
  3731. <rect x="94" y="48" w="26" h="4"/>
  3732. <stroke/>
  3733. <rect x="122" y="48" w="26" h="4"/>
  3734. <stroke/>
  3735. <rect x="38" y="54" w="26" h="4"/>
  3736. <stroke/>
  3737. <rect x="66" y="54" w="26" h="4"/>
  3738. <stroke/>
  3739. <rect x="94" y="54" w="26" h="4"/>
  3740. <stroke/>
  3741. <rect x="122" y="54" w="26" h="4"/>
  3742. <stroke/>
  3743. <fillcolor color="#b4b4b4"/>
  3744. <rect x="85" y="4" w="65" h="30"/>
  3745. <fill/>
  3746. <strokecolor color="#000000"/>
  3747. <rect x="94" y="42" w="26" h="4"/>
  3748. <stroke/>
  3749. <rect x="122" y="42" w="26" h="4"/>
  3750. <stroke/>
  3751. </foreground>
  3752. </shape>
  3753. <shape name="Cisco WAE-512" h="14.7" w="160.9">
  3754. <foreground>
  3755. <strokecolor color="#000000"/>
  3756. <fillcolor color="#b4b4b4"/>
  3757. <rect x="0" y="0" w="160.9" h="14.7"/>
  3758. <fillstroke/>
  3759. <fillcolor color="#e8e8e8"/>
  3760. <rect x="5.99" y="0" w="149.09" h="14.7"/>
  3761. <fillstroke/>
  3762. <rect x="62" y="4" w="38" h="8"/>
  3763. <stroke/>
  3764. <rect x="104" y="4" w="38" h="8"/>
  3765. <stroke/>
  3766. <path>
  3767. <move x="10" y="8"/>
  3768. <line x="50" y="8"/>
  3769. <line x="50" y="10"/>
  3770. <line x="42" y="10"/>
  3771. <line x="42" y="13"/>
  3772. <line x="10" y="13"/>
  3773. <close/>
  3774. </path>
  3775. <stroke/>
  3776. </foreground>
  3777. </shape>
  3778. <shape name="Cisco WAE-612" h="14.7" w="160.9">
  3779. <foreground>
  3780. <strokecolor color="#000000"/>
  3781. <fillcolor color="#b4b4b4"/>
  3782. <rect x="0" y="0" w="160.9" h="14.7"/>
  3783. <fillstroke/>
  3784. <fillcolor color="#e8e8e8"/>
  3785. <rect x="5.99" y="0" w="149.09" h="14.7"/>
  3786. <fillstroke/>
  3787. <rect x="62" y="4" w="38" h="8"/>
  3788. <stroke/>
  3789. <rect x="104" y="4" w="38" h="8"/>
  3790. <stroke/>
  3791. <path>
  3792. <move x="10" y="8"/>
  3793. <line x="50" y="8"/>
  3794. <line x="50" y="10"/>
  3795. <line x="42" y="10"/>
  3796. <line x="42" y="13"/>
  3797. <line x="10" y="13"/>
  3798. <close/>
  3799. </path>
  3800. <stroke/>
  3801. </foreground>
  3802. </shape>
  3803. <shape name="Cisco WAE-674" h="29.6" w="160.9">
  3804. <foreground>
  3805. <strokecolor color="#000000"/>
  3806. <fillcolor color="#b4b4b4"/>
  3807. <rect x="0" y="0" w="160.9" h="29.6"/>
  3808. <fillstroke/>
  3809. <fillcolor color="#e8e8e8"/>
  3810. <rect x="5.99" y="0" w="149.09" h="29.6"/>
  3811. <fillstroke/>
  3812. <rect x="75" y="1.5" w="38" h="8"/>
  3813. <stroke/>
  3814. <rect x="115" y="1.5" w="38" h="8"/>
  3815. <stroke/>
  3816. <path>
  3817. <move x="10" y="23"/>
  3818. <line x="50" y="23"/>
  3819. <line x="50" y="25"/>
  3820. <line x="42" y="25"/>
  3821. <line x="42" y="28"/>
  3822. <line x="10" y="28"/>
  3823. <close/>
  3824. </path>
  3825. <stroke/>
  3826. <rect x="115" y="10.75" w="38" h="8"/>
  3827. <stroke/>
  3828. <rect x="115" y="20" w="38" h="8"/>
  3829. <stroke/>
  3830. <rect x="75" y="10.75" w="38" h="8"/>
  3831. <stroke/>
  3832. <rect x="75" y="20" w="38" h="8"/>
  3833. <stroke/>
  3834. <fillcolor color="#b4b4b4"/>
  3835. <rect x="7" y="1" w="67" h="15"/>
  3836. <fill/>
  3837. </foreground>
  3838. </shape>
  3839. <shape name="Cisco WAE-7341" h="29.6" w="160.9">
  3840. <foreground>
  3841. <strokecolor color="#000000"/>
  3842. <fillcolor color="#b4b4b4"/>
  3843. <rect x="0" y="0" w="160.9" h="29.6"/>
  3844. <fillstroke/>
  3845. <fillcolor color="#e8e8e8"/>
  3846. <rect x="5.99" y="0" w="149.09" h="29.6"/>
  3847. <fillstroke/>
  3848. <rect x="75" y="1.5" w="38" h="8"/>
  3849. <stroke/>
  3850. <rect x="115" y="1.5" w="38" h="8"/>
  3851. <stroke/>
  3852. <path>
  3853. <move x="10" y="23"/>
  3854. <line x="50" y="23"/>
  3855. <line x="50" y="25"/>
  3856. <line x="42" y="25"/>
  3857. <line x="42" y="28"/>
  3858. <line x="10" y="28"/>
  3859. <close/>
  3860. </path>
  3861. <stroke/>
  3862. <rect x="115" y="10.75" w="38" h="8"/>
  3863. <stroke/>
  3864. <rect x="115" y="20" w="38" h="8"/>
  3865. <stroke/>
  3866. <rect x="75" y="10.75" w="38" h="8"/>
  3867. <stroke/>
  3868. <rect x="75" y="20" w="38" h="8"/>
  3869. <stroke/>
  3870. <fillcolor color="#b4b4b4"/>
  3871. <rect x="7" y="1" w="67" h="15"/>
  3872. <fill/>
  3873. </foreground>
  3874. </shape>
  3875. <shape name="Cisco WAE-7371" h="29.6" w="160.9">
  3876. <foreground>
  3877. <strokecolor color="#000000"/>
  3878. <fillcolor color="#b4b4b4"/>
  3879. <rect x="0" y="0" w="160.9" h="29.6"/>
  3880. <fillstroke/>
  3881. <fillcolor color="#e8e8e8"/>
  3882. <rect x="5.99" y="0" w="149.09" h="29.6"/>
  3883. <fillstroke/>
  3884. <rect x="75" y="1.5" w="38" h="8"/>
  3885. <stroke/>
  3886. <rect x="115" y="1.5" w="38" h="8"/>
  3887. <stroke/>
  3888. <path>
  3889. <move x="10" y="23"/>
  3890. <line x="50" y="23"/>
  3891. <line x="50" y="25"/>
  3892. <line x="42" y="25"/>
  3893. <line x="42" y="28"/>
  3894. <line x="10" y="28"/>
  3895. <close/>
  3896. </path>
  3897. <stroke/>
  3898. <rect x="115" y="10.75" w="38" h="8"/>
  3899. <stroke/>
  3900. <rect x="115" y="20" w="38" h="8"/>
  3901. <stroke/>
  3902. <rect x="75" y="10.75" w="38" h="8"/>
  3903. <stroke/>
  3904. <rect x="75" y="20" w="38" h="8"/>
  3905. <stroke/>
  3906. <fillcolor color="#b4b4b4"/>
  3907. <rect x="7" y="1" w="67" h="15"/>
  3908. <fill/>
  3909. </foreground>
  3910. </shape>
  3911. <shape name="Cisco WAVE 294" h="14.7" w="160.9">
  3912. <foreground>
  3913. <strokecolor color="#000000"/>
  3914. <fillcolor color="#b4b4b4"/>
  3915. <rect x="0" y="0" w="160.9" h="14.7"/>
  3916. <fillstroke/>
  3917. <fillcolor color="#e8e8e8"/>
  3918. <rect x="5.99" y="0" w="149.09" h="14.7"/>
  3919. <fillstroke/>
  3920. <rect x="132" y="2" w="4" h="3"/>
  3921. <stroke/>
  3922. <rect x="126" y="2" w="4" h="3"/>
  3923. <stroke/>
  3924. <rect x="120" y="2" w="4" h="3"/>
  3925. <stroke/>
  3926. <rect x="42" y="2" w="37" h="5"/>
  3927. <stroke/>
  3928. <rect x="81.25" y="2" w="37" h="5"/>
  3929. <stroke/>
  3930. </foreground>
  3931. </shape>
  3932. <shape name="Cisco WAVE 594" h="14.7" w="160.9">
  3933. <foreground>
  3934. <strokecolor color="#000000"/>
  3935. <fillcolor color="#b4b4b4"/>
  3936. <rect x="0" y="0" w="160.9" h="14.7"/>
  3937. <fillstroke/>
  3938. <fillcolor color="#e8e8e8"/>
  3939. <rect x="5.99" y="0" w="149.09" h="14.7"/>
  3940. <fillstroke/>
  3941. <rect x="132" y="2" w="4" h="3"/>
  3942. <stroke/>
  3943. <rect x="126" y="2" w="4" h="3"/>
  3944. <stroke/>
  3945. <rect x="120" y="2" w="4" h="3"/>
  3946. <stroke/>
  3947. <rect x="42" y="2" w="37" h="5"/>
  3948. <stroke/>
  3949. <rect x="81.25" y="2" w="37" h="5"/>
  3950. <stroke/>
  3951. </foreground>
  3952. </shape>
  3953. <shape name="Cisco WAVE 694" h="14.7" w="160.9">
  3954. <foreground>
  3955. <strokecolor color="#000000"/>
  3956. <fillcolor color="#b4b4b4"/>
  3957. <rect x="0" y="0" w="160.9" h="14.7"/>
  3958. <fillstroke/>
  3959. <fillcolor color="#e8e8e8"/>
  3960. <rect x="5.99" y="0" w="149.09" h="14.7"/>
  3961. <fillstroke/>
  3962. <rect x="132" y="2" w="4" h="3"/>
  3963. <stroke/>
  3964. <rect x="126" y="2" w="4" h="3"/>
  3965. <stroke/>
  3966. <rect x="120" y="2" w="4" h="3"/>
  3967. <stroke/>
  3968. <rect x="42" y="2" w="37" h="5"/>
  3969. <stroke/>
  3970. <rect x="81.25" y="2" w="37" h="5"/>
  3971. <stroke/>
  3972. </foreground>
  3973. </shape>
  3974. <shape name="Cisco WAVE 7541" h="29.6" w="160.9">
  3975. <foreground>
  3976. <strokecolor color="#000000"/>
  3977. <fillcolor color="#b4b4b4"/>
  3978. <rect x="0" y="0" w="160.9" h="29.6"/>
  3979. <fillstroke/>
  3980. <fillcolor color="#e8e8e8"/>
  3981. <rect x="5.99" y="0" w="149.09" h="29.6"/>
  3982. <fillstroke/>
  3983. <rect x="132" y="2" w="4" h="3"/>
  3984. <stroke/>
  3985. <rect x="126" y="2" w="4" h="3"/>
  3986. <stroke/>
  3987. <rect x="120" y="2" w="4" h="3"/>
  3988. <stroke/>
  3989. <rect x="8" y="2" w="37" h="5"/>
  3990. <stroke/>
  3991. <rect x="45" y="2" w="37" h="5"/>
  3992. <stroke/>
  3993. <rect x="8" y="9" w="37" h="5"/>
  3994. <stroke/>
  3995. <rect x="8" y="16" w="37" h="5"/>
  3996. <stroke/>
  3997. <rect x="8" y="23" w="37" h="5"/>
  3998. <stroke/>
  3999. <rect x="45" y="9" w="37" h="5"/>
  4000. <stroke/>
  4001. <rect x="45" y="16" w="37" h="5"/>
  4002. <stroke/>
  4003. <rect x="45" y="23" w="37" h="5"/>
  4004. <stroke/>
  4005. <rect x="84" y="2" w="34" h="12"/>
  4006. <stroke/>
  4007. </foreground>
  4008. </shape>
  4009. <shape name="Cisco WAVE 7571" h="29.6" w="160.9">
  4010. <foreground>
  4011. <strokecolor color="#000000"/>
  4012. <fillcolor color="#b4b4b4"/>
  4013. <rect x="0" y="0" w="160.9" h="29.6"/>
  4014. <fillstroke/>
  4015. <fillcolor color="#e8e8e8"/>
  4016. <rect x="5.99" y="0" w="149.09" h="29.6"/>
  4017. <fillstroke/>
  4018. <rect x="132" y="2" w="4" h="3"/>
  4019. <stroke/>
  4020. <rect x="126" y="2" w="4" h="3"/>
  4021. <stroke/>
  4022. <rect x="120" y="2" w="4" h="3"/>
  4023. <stroke/>
  4024. <rect x="8" y="2" w="37" h="5"/>
  4025. <stroke/>
  4026. <rect x="45" y="2" w="37" h="5"/>
  4027. <stroke/>
  4028. <rect x="8" y="9" w="37" h="5"/>
  4029. <stroke/>
  4030. <rect x="8" y="16" w="37" h="5"/>
  4031. <stroke/>
  4032. <rect x="8" y="23" w="37" h="5"/>
  4033. <stroke/>
  4034. <rect x="45" y="9" w="37" h="5"/>
  4035. <stroke/>
  4036. <rect x="45" y="16" w="37" h="5"/>
  4037. <stroke/>
  4038. <rect x="45" y="23" w="37" h="5"/>
  4039. <stroke/>
  4040. <rect x="84" y="2" w="34" h="12"/>
  4041. <stroke/>
  4042. </foreground>
  4043. </shape>
  4044. <shape name="Cisco WAVE 8541" h="29.6" w="160.9">
  4045. <foreground>
  4046. <strokecolor color="#000000"/>
  4047. <fillcolor color="#b4b4b4"/>
  4048. <rect x="0" y="0" w="160.9" h="29.6"/>
  4049. <fillstroke/>
  4050. <fillcolor color="#e8e8e8"/>
  4051. <rect x="5.99" y="0" w="149.09" h="29.6"/>
  4052. <fillstroke/>
  4053. <rect x="132" y="2" w="4" h="3"/>
  4054. <stroke/>
  4055. <rect x="126" y="2" w="4" h="3"/>
  4056. <stroke/>
  4057. <rect x="120" y="2" w="4" h="3"/>
  4058. <stroke/>
  4059. <rect x="8" y="2" w="37" h="5"/>
  4060. <stroke/>
  4061. <rect x="45" y="2" w="37" h="5"/>
  4062. <stroke/>
  4063. <rect x="8" y="9" w="37" h="5"/>
  4064. <stroke/>
  4065. <rect x="8" y="16" w="37" h="5"/>
  4066. <stroke/>
  4067. <rect x="8" y="23" w="37" h="5"/>
  4068. <stroke/>
  4069. <rect x="45" y="9" w="37" h="5"/>
  4070. <stroke/>
  4071. <rect x="45" y="16" w="37" h="5"/>
  4072. <stroke/>
  4073. <rect x="45" y="23" w="37" h="5"/>
  4074. <stroke/>
  4075. <rect x="84" y="2" w="34" h="12"/>
  4076. <stroke/>
  4077. </foreground>
  4078. </shape>
  4079. <shape name="Cisco Web Security Appliance S170" h="14.7" w="160.9">
  4080. <foreground>
  4081. <strokecolor color="#000000"/>
  4082. <fillcolor color="#b4b4b4"/>
  4083. <rect x="0" y="0" w="160.9" h="14.7"/>
  4084. <fillstroke/>
  4085. <fillcolor color="#e8e8e8"/>
  4086. <rect x="5.99" y="0" w="149.09" h="14.7"/>
  4087. <fillstroke/>
  4088. <fillcolor color="#b4b4b4"/>
  4089. <rect x="18" y="1.5" w="85" h="12"/>
  4090. <fill/>
  4091. <strokecolor color="#000000"/>
  4092. <rect x="114.2" y="1.8" w="33.4" h="11.6"/>
  4093. <stroke/>
  4094. <rect x="116" y="3.5" w="20" h="3"/>
  4095. <stroke/>
  4096. <rect x="116" y="8.5" w="20" h="3"/>
  4097. <stroke/>
  4098. </foreground>
  4099. </shape>
  4100. <shape name="Cisco Web Security Appliance S370" h="29.6" w="160.9">
  4101. <foreground>
  4102. <strokecolor color="#000000"/>
  4103. <fillcolor color="#b4b4b4"/>
  4104. <rect x="0" y="0" w="160.9" h="29.6"/>
  4105. <fillstroke/>
  4106. <fillcolor color="#e8e8e8"/>
  4107. <rect x="6" y="0" w="149" h="29.6"/>
  4108. <fillstroke/>
  4109. <fillcolor color="#b4b4b4"/>
  4110. <roundrect x="10" y="2.5" w="141" h="25" arcsize="4.71"/>
  4111. <fill/>
  4112. </foreground>
  4113. </shape>
  4114. <shape name="Cisco Web Security Appliance S670" h="29.6" w="160.9">
  4115. <foreground>
  4116. <strokecolor color="#000000"/>
  4117. <fillcolor color="#b4b4b4"/>
  4118. <rect x="0" y="0" w="160.9" h="29.6"/>
  4119. <fillstroke/>
  4120. <fillcolor color="#e8e8e8"/>
  4121. <rect x="6" y="0" w="149" h="29.6"/>
  4122. <fillstroke/>
  4123. <fillcolor color="#b4b4b4"/>
  4124. <roundrect x="10" y="2.5" w="141" h="25" arcsize="4.71"/>
  4125. <fill/>
  4126. </foreground>
  4127. </shape>
  4128. </shapes>