This repository has been archived by the owner on Dec 3, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrepositories.json
4275 lines (4275 loc) · 405 KB
/
repositories.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{"nodes":[{"id":"0.0", "label":"tenderlove/mechanize","x":-82.39008,"y":1021.4033,"size":4.475443,"color":"rgb(230,0,172)","attributes":{"watchers":"1205.0","name":"https://github.com/tenderlove/mechanize","language":"Ruby","Component ID":"0","watchersInteger":"1205"}},
{"id":"1.0", "label":"rubyist/aasm","x":-527.35016,"y":1053.6086,"size":4.206412,"color":"rgb(230,0,172)","attributes":{"watchers":"1089.0","name":"https://github.com/rubyist/aasm","language":"Ruby","Component ID":"0","watchersInteger":"1089"}},
{"id":"2.0", "label":"cakephp/cakephp","x":113.422195,"y":-283.36624,"size":9.691397,"color":"rgb(147,48,255)","attributes":{"watchers":"3454.0","name":"https://github.com/cakephp/cakephp","language":"PHP","Component ID":"0","watchersInteger":"3454"}},
{"id":"3.0", "label":"pivotal/jasmine","x":-231.61914,"y":592.9158,"size":11.627956,"color":"rgb(245,184,0)","attributes":{"watchers":"4289.0","name":"https://github.com/pivotal/jasmine","language":"JavaScript","Component ID":"0","watchersInteger":"4289"}},
{"id":"4.0", "label":"collectiveidea/awesome_nested_set","x":-603.31036,"y":777.0711,"size":4.0347886,"color":"rgb(230,0,172)","attributes":{"watchers":"1015.0","name":"https://github.com/collectiveidea/awesome_nested_set","language":"Ruby","Component ID":"0","watchersInteger":"1015"}},
{"id":"5.0", "label":"arsduo/koala","x":-358.64975,"y":1622.7361,"size":5.6072283,"color":"rgb(230,0,172)","attributes":{"watchers":"1693.0","name":"https://github.com/arsduo/koala","language":"Ruby","Component ID":"0","watchersInteger":"1693"}},
{"id":"6.0", "label":"needim/noty","x":242.95111,"y":-833.2413,"size":6.372575,"color":"rgb(245,184,0)","attributes":{"watchers":"2023.0","name":"https://github.com/needim/noty","language":"JavaScript","Component ID":"0","watchersInteger":"2023"}},
{"id":"7.0", "label":"hbons/SparkleShare","x":155.61057,"y":300.7855,"size":6.813229,"color":"rgb(197,19,217)","attributes":{"watchers":"2213.0","name":"https://github.com/hbons/SparkleShare","language":"C#","Component ID":"0","watchersInteger":"2213"}},
{"id":"10.0", "label":"engineyard/ey-cloud-recipes","x":-93.82157,"y":584.887,"size":4.051023,"color":"rgb(230,0,172)","attributes":{"watchers":"1022.0","name":"https://github.com/engineyard/ey-cloud-recipes","language":"Ruby","Component ID":"0","watchersInteger":"1022"}},
{"id":"11.0", "label":"kriswallsmith/assetic","x":461.48016,"y":-97.503204,"size":4.8233275,"color":"rgb(147,48,255)","attributes":{"watchers":"1355.0","name":"https://github.com/kriswallsmith/assetic","language":"PHP","Component ID":"0","watchersInteger":"1355"}},
{"id":"14.0", "label":"omz/AppSales-Mobile","x":757.4224,"y":415.93896,"size":5.171212,"color":"rgb(45,180,214)","attributes":{"watchers":"1505.0","name":"https://github.com/omz/AppSales-Mobile","language":"Objective-C","Component ID":"0","watchersInteger":"1505"}},
{"id":"15.0", "label":"rubinius/rubinius","x":-136.61641,"y":777.2244,"size":5.4008164,"color":"rgb(230,0,172)","attributes":{"watchers":"1604.0","name":"https://github.com/rubinius/rubinius","language":"Ruby","Component ID":"0","watchersInteger":"1604"}},
{"id":"16.0", "label":"adobe/brackets","x":-1018.44934,"y":-442.33954,"size":21.127533,"color":"rgb(245,184,0)","attributes":{"watchers":"8385.0","name":"https://github.com/adobe/brackets","language":"JavaScript","Component ID":"0","watchersInteger":"8385"}},
{"id":"17.0", "label":"nicolasgramlich/AndEngine","x":1256.7432,"y":1050.0101,"size":4.2504773,"color":"rgb(128,56,169)","attributes":{"watchers":"1108.0","name":"https://github.com/nicolasgramlich/AndEngine","language":"Java","Component ID":"0","watchersInteger":"1108"}},
{"id":"18.0", "label":"mojombo/jekyll","x":9.972034,"y":92.420204,"size":21.899837,"color":"rgb(230,0,172)","attributes":{"watchers":"8718.0","name":"https://github.com/mojombo/jekyll","language":"Ruby","Component ID":"0","watchersInteger":"8718"}},
{"id":"19.0", "label":"bbatsov/rails-style-guide","x":-384.0261,"y":1331.0851,"size":5.1851277,"color":"rgb(153,153,153)","attributes":{"watchers":"1511.0","name":"https://github.com/bbatsov/rails-style-guide","language":"(unknown)","Component ID":"0","watchersInteger":"1511"}},
{"id":"20.0", "label":"olton/Metro-UI-CSS","x":-1032.8639,"y":-549.2457,"size":4.825647,"color":"rgb(147,48,255)","attributes":{"watchers":"1356.0","name":"https://github.com/olton/Metro-UI-CSS","language":"PHP","Component ID":"0","watchersInteger":"1356"}},
{"id":"21.0", "label":"scrapy/scrapy","x":1149.329,"y":-267.6785,"size":4.628512,"color":"rgb(31,109,255)","attributes":{"watchers":"1271.0","name":"https://github.com/scrapy/scrapy","language":"Python","Component ID":"0","watchersInteger":"1271"}},
{"id":"22.0", "label":"paulasmuth/fnordmetric","x":470.35123,"y":1014.2904,"size":6.7065444,"color":"rgb(230,0,172)","attributes":{"watchers":"2167.0","name":"https://github.com/paulasmuth/fnordmetric","language":"Ruby","Component ID":"0","watchersInteger":"2167"}},
{"id":"23.0", "label":"sitaramc/gitolite","x":932.63446,"y":-741.45703,"size":10.064794,"color":"rgb(56,169,77)","attributes":{"watchers":"3615.0","name":"https://github.com/sitaramc/gitolite","language":"Perl","Component ID":"0","watchersInteger":"3615"}},
{"id":"24.0", "label":"futuretap/InAppSettingsKit","x":1501.7269,"y":597.2488,"size":4.9717584,"color":"rgb(45,180,214)","attributes":{"watchers":"1419.0","name":"https://github.com/futuretap/InAppSettingsKit","language":"Objective-C","Component ID":"0","watchersInteger":"1419"}},
{"id":"25.0", "label":"nesquena/rabl","x":-573.7816,"y":461.78888,"size":5.9435167,"color":"rgb(230,0,172)","attributes":{"watchers":"1838.0","name":"https://github.com/nesquena/rabl","language":"Ruby","Component ID":"0","watchersInteger":"1838"}},
{"id":"27.0", "label":"kennethreitz/legit","x":976.2694,"y":-175.96332,"size":5.7695746,"color":"rgb(31,109,255)","attributes":{"watchers":"1763.0","name":"https://github.com/kennethreitz/legit","language":"Python","Component ID":"0","watchersInteger":"1763"}},
{"id":"29.0", "label":"joyent/node","x":-79.84002,"y":-481.14853,"size":46.650692,"color":"rgb(245,184,0)","attributes":{"watchers":"19390.0","name":"https://github.com/joyent/node","language":"JavaScript","Component ID":"0","watchersInteger":"19390"}},
{"id":"30.0", "label":"celluloid/celluloid","x":-102.74041,"y":976.6492,"size":4.918416,"color":"rgb(230,0,172)","attributes":{"watchers":"1396.0","name":"https://github.com/celluloid/celluloid","language":"Ruby","Component ID":"0","watchersInteger":"1396"}},
{"id":"31.0", "label":"moxiecode/plupload","x":395.97397,"y":-953.82495,"size":5.8808975,"color":"rgb(245,184,0)","attributes":{"watchers":"1811.0","name":"https://github.com/moxiecode/plupload","language":"JavaScript","Component ID":"0","watchersInteger":"1811"}},
{"id":"33.0", "label":"defnull/bottle","x":1134.2064,"y":-337.16003,"size":5.2199163,"color":"rgb(31,109,255)","attributes":{"watchers":"1526.0","name":"https://github.com/defnull/bottle","language":"Python","Component ID":"0","watchersInteger":"1526"}},
{"id":"34.0", "label":"KentBeck/junit","x":204.34834,"y":1547.9021,"size":4.598362,"color":"rgb(128,56,169)","attributes":{"watchers":"1258.0","name":"https://github.com/KentBeck/junit","language":"Java","Component ID":"0","watchersInteger":"1258"}},
{"id":"35.0", "label":"lipka/piecon","x":-1442.4149,"y":-412.30884,"size":5.7185516,"color":"rgb(245,184,0)","attributes":{"watchers":"1741.0","name":"https://github.com/lipka/piecon","language":"JavaScript","Component ID":"0","watchersInteger":"1741"}},
{"id":"36.0", "label":"jshint/jshint","x":-725.3494,"y":98.714386,"size":5.686082,"color":"rgb(245,184,0)","attributes":{"watchers":"1727.0","name":"https://github.com/jshint/jshint","language":"JavaScript","Component ID":"0","watchersInteger":"1727"}},
{"id":"38.0", "label":"github/gitignore","x":189.93788,"y":152.75862,"size":19.652502,"color":"rgb(153,153,153)","attributes":{"watchers":"7749.0","name":"https://github.com/github/gitignore","language":"(unknown)","Component ID":"0","watchersInteger":"7749"}},
{"id":"39.0", "label":"substack/dnode","x":-156.53275,"y":-815.50024,"size":4.4568887,"color":"rgb(245,184,0)","attributes":{"watchers":"1197.0","name":"https://github.com/substack/dnode","language":"JavaScript","Component ID":"0","watchersInteger":"1197"}},
{"id":"40.0", "label":"cloudhead/vows","x":-235.1021,"y":-1099.6682,"size":4.139154,"color":"rgb(245,184,0)","attributes":{"watchers":"1060.0","name":"https://github.com/cloudhead/vows","language":"JavaScript","Component ID":"0","watchersInteger":"1060"}},
{"id":"41.0", "label":"benpickles/peity","x":-130.718,"y":1536.4048,"size":4.8511586,"color":"rgb(245,184,0)","attributes":{"watchers":"1367.0","name":"https://github.com/benpickles/peity","language":"JavaScript","Component ID":"0","watchersInteger":"1367"}},
{"id":"42.0", "label":"javan/whenever","x":92.70231,"y":841.8401,"size":8.800812,"color":"rgb(230,0,172)","attributes":{"watchers":"3070.0","name":"https://github.com/javan/whenever","language":"Ruby","Component ID":"0","watchersInteger":"3070"}},
{"id":"43.0", "label":"thoughtbot/clearance","x":-742.95197,"y":1090.6969,"size":4.4058657,"color":"rgb(230,0,172)","attributes":{"watchers":"1175.0","name":"https://github.com/thoughtbot/clearance","language":"Ruby","Component ID":"0","watchersInteger":"1175"}},
{"id":"44.0", "label":"escoz/QuickDialog","x":1683.2642,"y":144.58662,"size":6.0177326,"color":"rgb(45,180,214)","attributes":{"watchers":"1870.0","name":"https://github.com/escoz/QuickDialog","language":"Objective-C","Component ID":"0","watchersInteger":"1870"}},
{"id":"45.0", "label":"bestiejs/lodash","x":-413.50266,"y":-170.18002,"size":5.6304207,"color":"rgb(245,184,0)","attributes":{"watchers":"1703.0","name":"https://github.com/bestiejs/lodash","language":"JavaScript","Component ID":"0","watchersInteger":"1703"}},
{"id":"46.0", "label":"TheRealKerni/HockeyKit","x":1439.494,"y":600.5757,"size":4.5079117,"color":"rgb(45,180,214)","attributes":{"watchers":"1219.0","name":"https://github.com/TheRealKerni/HockeyKit","language":"Objective-C","Component ID":"0","watchersInteger":"1219"}},
{"id":"47.0", "label":"SlexAxton/yepnope.js","x":-300.28726,"y":-210.12631,"size":5.1851277,"color":"rgb(245,184,0)","attributes":{"watchers":"1511.0","name":"https://github.com/SlexAxton/yepnope.js","language":"JavaScript","Component ID":"0","watchersInteger":"1511"}},
{"id":"49.0", "label":"textmate/textmate","x":-586.88,"y":1593.3999,"size":20.063005,"color":"rgb(217,24,30)","attributes":{"watchers":"7926.0","name":"https://github.com/textmate/textmate","language":"C++","Component ID":"0","watchersInteger":"7926"}},
{"id":"55.0", "label":"scottjehl/Respond","x":-849.4433,"y":49.391056,"size":9.429324,"color":"rgb(245,184,0)","attributes":{"watchers":"3341.0","name":"https://github.com/scottjehl/Respond","language":"JavaScript","Component ID":"0","watchersInteger":"3341"}},
{"id":"56.0", "label":"FortAwesome/Font-Awesome","x":4.3860784,"y":-842.9428,"size":24.154133,"color":"rgb(245,184,0)","attributes":{"watchers":"9690.0","name":"https://github.com/FortAwesome/Font-Awesome","language":"JavaScript","Component ID":"0","watchersInteger":"9690"}},
{"id":"57.0", "label":"kr/beanstalkd","x":-238.8003,"y":387.3345,"size":4.190177,"color":"rgb(217,82,39)","attributes":{"watchers":"1082.0","name":"https://github.com/kr/beanstalkd","language":"C","Component ID":"0","watchersInteger":"1082"}},
{"id":"58.0", "label":"square/PonyDebugger","x":1381.0127,"y":551.755,"size":4.5032735,"color":"rgb(45,180,214)","attributes":{"watchers":"1217.0","name":"https://github.com/square/PonyDebugger","language":"Objective-C","Component ID":"0","watchersInteger":"1217"}},
{"id":"59.0", "label":"mozilla/BrowserQuest","x":-42.367226,"y":-549.3493,"size":8.747469,"color":"rgb(245,184,0)","attributes":{"watchers":"3047.0","name":"https://github.com/mozilla/BrowserQuest","language":"JavaScript","Component ID":"0","watchersInteger":"3047"}},
{"id":"60.0", "label":"bbatsov/ruby-style-guide","x":-352.91028,"y":1240.2223,"size":7.1680717,"color":"rgb(230,0,172)","attributes":{"watchers":"2366.0","name":"https://github.com/bbatsov/ruby-style-guide","language":"Ruby","Component ID":"0","watchersInteger":"2366"}},
{"id":"61.0", "label":"javve/list","x":-737.70807,"y":1510.09,"size":5.57244,"color":"rgb(245,184,0)","attributes":{"watchers":"1678.0","name":"https://github.com/javve/list","language":"JavaScript","Component ID":"0","watchersInteger":"1678"}},
{"id":"62.0", "label":"JoelBesada/scrollpath","x":748.31464,"y":674.0643,"size":5.352113,"color":"rgb(245,184,0)","attributes":{"watchers":"1583.0","name":"https://github.com/JoelBesada/scrollpath","language":"JavaScript","Component ID":"0","watchersInteger":"1583"}},
{"id":"64.0", "label":"philsturgeon/codeigniter-restserver","x":302.397,"y":-383.983,"size":4.169304,"color":"rgb(147,48,255)","attributes":{"watchers":"1073.0","name":"https://github.com/philsturgeon/codeigniter-restserver","language":"PHP","Component ID":"0","watchersInteger":"1073"}},
{"id":"65.0", "label":"apotonick/cells","x":-654.2536,"y":1239.5972,"size":4.637789,"color":"rgb(230,0,172)","attributes":{"watchers":"1275.0","name":"https://github.com/apotonick/cells","language":"Ruby","Component ID":"0","watchersInteger":"1275"}},
{"id":"66.0", "label":"mattt/TTTAttributedLabel","x":1374.4214,"y":478.6829,"size":4.0858116,"color":"rgb(45,180,214)","attributes":{"watchers":"1037.0","name":"https://github.com/mattt/TTTAttributedLabel","language":"Objective-C","Component ID":"0","watchersInteger":"1037"}},
{"id":"67.0", "label":"SignalR/SignalR","x":-499.73126,"y":-1467.872,"size":7.502042,"color":"rgb(197,19,217)","attributes":{"watchers":"2510.0","name":"https://github.com/SignalR/SignalR","language":"C#","Component ID":"0","watchersInteger":"2510"}},
{"id":"68.0", "label":"myell0w/MTStatusBarOverlay","x":3050.0625,"y":856.5397,"size":4.586766,"color":"rgb(45,180,214)","attributes":{"watchers":"1253.0","name":"https://github.com/myell0w/MTStatusBarOverlay","language":"Objective-C","Component ID":"0","watchersInteger":"1253"}},
{"id":"69.0", "label":"puma/puma","x":-173.88171,"y":834.99915,"size":4.716643,"color":"rgb(230,0,172)","attributes":{"watchers":"1309.0","name":"https://github.com/puma/puma","language":"Ruby","Component ID":"0","watchersInteger":"1309"}},
{"id":"71.0", "label":"wvanbergen/request-log-analyzer","x":-220.20908,"y":1268.6481,"size":4.531104,"color":"rgb(230,0,172)","attributes":{"watchers":"1229.0","name":"https://github.com/wvanbergen/request-log-analyzer","language":"Ruby","Component ID":"0","watchersInteger":"1229"}},
{"id":"72.0", "label":"shutterstock/rickshaw","x":-270.52832,"y":1618.2615,"size":7.328099,"color":"rgb(245,184,0)","attributes":{"watchers":"2435.0","name":"https://github.com/shutterstock/rickshaw","language":"JavaScript","Component ID":"0","watchersInteger":"2435"}},
{"id":"74.0", "label":"mongodb/mongo","x":342.8456,"y":-254.97847,"size":10.143648,"color":"rgb(217,24,30)","attributes":{"watchers":"3649.0","name":"https://github.com/mongodb/mongo","language":"C++","Component ID":"0","watchersInteger":"3649"}},
{"id":"75.0", "label":"andrewplummer/Sugar","x":-1565.0438,"y":362.5193,"size":5.1596165,"color":"rgb(245,184,0)","attributes":{"watchers":"1500.0","name":"https://github.com/andrewplummer/Sugar","language":"JavaScript","Component ID":"0","watchersInteger":"1500"}},
{"id":"76.0", "label":"icodeforlove/node-cubby","x":-272.64145,"y":-1802.4154,"size":4.2759886,"color":"rgb(245,184,0)","attributes":{"watchers":"1119.0","name":"https://github.com/icodeforlove/node-cubby","language":"JavaScript","Component ID":"0","watchersInteger":"1119"}},
{"id":"77.0", "label":"aFarkas/html5shiv","x":-717.2412,"y":-366.77023,"size":5.748701,"color":"rgb(245,184,0)","attributes":{"watchers":"1754.0","name":"https://github.com/aFarkas/html5shiv","language":"JavaScript","Component ID":"0","watchersInteger":"1754"}},
{"id":"78.0", "label":"mranney/node_redis","x":-157.27357,"y":-1215.2627,"size":5.987582,"color":"rgb(245,184,0)","attributes":{"watchers":"1857.0","name":"https://github.com/mranney/node_redis","language":"JavaScript","Component ID":"0","watchersInteger":"1857"}},
{"id":"79.0", "label":"rack/rack","x":-228.01634,"y":856.6106,"size":4.7514315,"color":"rgb(230,0,172)","attributes":{"watchers":"1324.0","name":"https://github.com/rack/rack","language":"Ruby","Component ID":"0","watchersInteger":"1324"}},
{"id":"80.0", "label":"nex3/sass","x":93.80835,"y":1277.0414,"size":5.5608435,"color":"rgb(230,0,172)","attributes":{"watchers":"1673.0","name":"https://github.com/nex3/sass","language":"Ruby","Component ID":"0","watchersInteger":"1673"}},
{"id":"81.0", "label":"Automattic/_s","x":1411.824,"y":-236.45367,"size":5.3405166,"color":"rgb(147,48,255)","attributes":{"watchers":"1578.0","name":"https://github.com/Automattic/_s","language":"PHP","Component ID":"0","watchersInteger":"1578"}},
{"id":"82.0", "label":"travis-ci/travis-ci","x":-202.08957,"y":692.0296,"size":5.853067,"color":"rgb(230,0,172)","attributes":{"watchers":"1799.0","name":"https://github.com/travis-ci/travis-ci","language":"Ruby","Component ID":"0","watchersInteger":"1799"}},
{"id":"83.0", "label":"hakimel/stroll.js","x":-35.936996,"y":-722.68427,"size":6.3470635,"color":"rgb(245,184,0)","attributes":{"watchers":"2012.0","name":"https://github.com/hakimel/stroll.js","language":"JavaScript","Component ID":"0","watchersInteger":"2012"}},
{"id":"84.0", "label":"shichuan/javascript-patterns","x":-881.78503,"y":-258.97952,"size":8.267388,"color":"rgb(245,184,0)","attributes":{"watchers":"2840.0","name":"https://github.com/shichuan/javascript-patterns","language":"JavaScript","Component ID":"0","watchersInteger":"2840"}},
{"id":"85.0", "label":"weavejester/compojure","x":195.88821,"y":1295.8804,"size":4.6633005,"color":"rgb(169,56,56)","attributes":{"watchers":"1286.0","name":"https://github.com/weavejester/compojure","language":"Clojure","Component ID":"0","watchersInteger":"1286"}},
{"id":"88.0", "label":"cappuccino/cappuccino","x":619.2831,"y":479.5578,"size":5.7185516,"color":"rgb(97,169,56)","attributes":{"watchers":"1741.0","name":"https://github.com/cappuccino/cappuccino","language":"Objective-J","Component ID":"0","watchersInteger":"1741"}},
{"id":"89.0", "label":"stubbornella/csslint","x":635.3532,"y":-883.7364,"size":4.4360156,"color":"rgb(245,184,0)","attributes":{"watchers":"1188.0","name":"https://github.com/stubbornella/csslint","language":"JavaScript","Component ID":"0","watchersInteger":"1188"}},
{"id":"91.0", "label":"JakeWharton/ActionBarSherlock","x":816.0689,"y":277.4742,"size":7.5716186,"color":"rgb(128,56,169)","attributes":{"watchers":"2540.0","name":"https://github.com/JakeWharton/ActionBarSherlock","language":"Java","Component ID":"0","watchersInteger":"2540"}},
{"id":"92.0", "label":"brynary/webrat","x":-578.0587,"y":1416.2827,"size":5.171212,"color":"rgb(230,0,172)","attributes":{"watchers":"1505.0","name":"https://github.com/brynary/webrat","language":"Ruby","Component ID":"0","watchersInteger":"1505"}},
{"id":"94.0", "label":"powmedia/backbone-forms","x":-29.004961,"y":-125.786575,"size":4.1159616,"color":"rgb(245,184,0)","attributes":{"watchers":"1050.0","name":"https://github.com/powmedia/backbone-forms","language":"JavaScript","Component ID":"0","watchersInteger":"1050"}},
{"id":"95.0", "label":"progrium/localtunnel","x":1428.1932,"y":-417.68875,"size":4.7259197,"color":"rgb(31,109,255)","attributes":{"watchers":"1313.0","name":"https://github.com/progrium/localtunnel","language":"Python","Component ID":"0","watchersInteger":"1313"}},
{"id":"98.0", "label":"remy/nodemon","x":-1335.6917,"y":-217.81555,"size":4.0347886,"color":"rgb(245,184,0)","attributes":{"watchers":"1015.0","name":"https://github.com/remy/nodemon","language":"JavaScript","Component ID":"0","watchersInteger":"1015"}},
{"id":"99.0", "label":"cucumber/cucumber","x":-190.51341,"y":1469.857,"size":9.461793,"color":"rgb(230,0,172)","attributes":{"watchers":"3355.0","name":"https://github.com/cucumber/cucumber","language":"Ruby","Component ID":"0","watchersInteger":"3355"}},
{"id":"100.0", "label":"addyosmani/todomvc","x":-479.02094,"y":-202.12976,"size":12.922089,"color":"rgb(245,184,0)","attributes":{"watchers":"4847.0","name":"https://github.com/addyosmani/todomvc","language":"JavaScript","Component ID":"0","watchersInteger":"4847"}},
{"id":"102.0", "label":"bradbirdsall/Swipe","x":675.3758,"y":-1247.402,"size":5.078443,"color":"rgb(245,184,0)","attributes":{"watchers":"1465.0","name":"https://github.com/bradbirdsall/Swipe","language":"JavaScript","Component ID":"0","watchersInteger":"1465"}},
{"id":"103.0", "label":"meteor/meteor","x":16.760904,"y":-568.45996,"size":17.365738,"color":"rgb(245,184,0)","attributes":{"watchers":"6763.0","name":"https://github.com/meteor/meteor","language":"JavaScript","Component ID":"0","watchersInteger":"6763"}},
{"id":"104.0", "label":"skwp/dotfiles","x":787.5778,"y":534.8025,"size":4.60532,"color":"rgb(230,0,172)","attributes":{"watchers":"1261.0","name":"https://github.com/skwp/dotfiles","language":"Ruby","Component ID":"0","watchersInteger":"1261"}},
{"id":"105.0", "label":"bcardarella/client_side_validations","x":-517.7681,"y":740.61383,"size":4.994951,"color":"rgb(230,0,172)","attributes":{"watchers":"1429.0","name":"https://github.com/bcardarella/client_side_validations","language":"Ruby","Component ID":"0","watchersInteger":"1429"}},
{"id":"106.0", "label":"davatron5000/FitText.js","x":-359.2754,"y":-720.99286,"size":7.0451527,"color":"rgb(245,184,0)","attributes":{"watchers":"2313.0","name":"https://github.com/davatron5000/FitText.js","language":"JavaScript","Component ID":"0","watchersInteger":"2313"}},
{"id":"108.0", "label":"carlhuda/bundler","x":-411.1341,"y":898.657,"size":5.8600245,"color":"rgb(230,0,172)","attributes":{"watchers":"1802.0","name":"https://github.com/carlhuda/bundler","language":"Ruby","Component ID":"0","watchersInteger":"1802"}},
{"id":"109.0", "label":"Inferis/ViewDeck","x":1843.3368,"y":512.7386,"size":5.853067,"color":"rgb(45,180,214)","attributes":{"watchers":"1799.0","name":"https://github.com/Inferis/ViewDeck","language":"Objective-C","Component ID":"0","watchersInteger":"1799"}},
{"id":"110.0", "label":"technicalpickles/jeweler","x":57.47637,"y":1.5289837,"size":4.2968616,"color":"rgb(230,0,172)","attributes":{"watchers":"1128.0","name":"https://github.com/technicalpickles/jeweler","language":"Ruby","Component ID":"0","watchersInteger":"1128"}},
{"id":"111.0", "label":"dennisreimann/ioctocat","x":1433.7218,"y":288.915,"size":4.0858116,"color":"rgb(45,180,214)","attributes":{"watchers":"1037.0","name":"https://github.com/dennisreimann/ioctocat","language":"Objective-C","Component ID":"0","watchersInteger":"1037"}},
{"id":"113.0", "label":"bazaarlabs/gitdocs","x":-652.87415,"y":444.74707,"size":4.1623464,"color":"rgb(245,184,0)","attributes":{"watchers":"1070.0","name":"https://github.com/bazaarlabs/gitdocs","language":"JavaScript","Component ID":"0","watchersInteger":"1070"}},
{"id":"114.0", "label":"BradLarson/GPUImage","x":1882.3408,"y":552.2783,"size":6.8944025,"color":"rgb(45,180,214)","attributes":{"watchers":"2248.0","name":"https://github.com/BradLarson/GPUImage","language":"Objective-C","Component ID":"0","watchersInteger":"2248"}},
{"id":"115.0", "label":"typhoeus/typhoeus","x":-243.49481,"y":671.8249,"size":5.161936,"color":"rgb(230,0,172)","attributes":{"watchers":"1501.0","name":"https://github.com/typhoeus/typhoeus","language":"Ruby","Component ID":"0","watchersInteger":"1501"}},
{"id":"117.0", "label":"enyojs/enyo","x":-618.02527,"y":-1845.5767,"size":4.9879932,"color":"rgb(245,184,0)","attributes":{"watchers":"1426.0","name":"https://github.com/enyojs/enyo","language":"JavaScript","Component ID":"0","watchersInteger":"1426"}},
{"id":"118.0", "label":"maccman/juggernaut","x":-166.72598,"y":119.84028,"size":5.4077744,"color":"rgb(245,184,0)","attributes":{"watchers":"1607.0","name":"https://github.com/maccman/juggernaut","language":"JavaScript","Component ID":"0","watchersInteger":"1607"}},
{"id":"120.0", "label":"sstephenson/rbenv","x":-510.74875,"y":587.42114,"size":7.9403763,"color":"rgb(44,201,60)","attributes":{"watchers":"2699.0","name":"https://github.com/sstephenson/rbenv","language":"Shell","Component ID":"0","watchersInteger":"2699"}},
{"id":"121.0", "label":"fontello/fontello","x":-77.74911,"y":-109.80137,"size":5.1178703,"color":"rgb(245,184,0)","attributes":{"watchers":"1482.0","name":"https://github.com/fontello/fontello","language":"JavaScript","Component ID":"0","watchersInteger":"1482"}},
{"id":"122.0", "label":"jashkenas/coffee-script","x":-266.99786,"y":-150.27176,"size":17.275288,"color":"rgb(227,235,16)","attributes":{"watchers":"6724.0","name":"https://github.com/jashkenas/coffee-script","language":"CoffeeScript","Component ID":"0","watchersInteger":"6724"}},
{"id":"123.0", "label":"twitter/mysql","x":-800.4903,"y":1247.856,"size":4.257435,"color":"rgb(217,82,39)","attributes":{"watchers":"1111.0","name":"https://github.com/twitter/mysql","language":"C","Component ID":"0","watchersInteger":"1111"}},
{"id":"124.0", "label":"documentcloud/backbone","x":-233.41185,"y":-91.30399,"size":29.228615,"color":"rgb(245,184,0)","attributes":{"watchers":"11878.0","name":"https://github.com/documentcloud/backbone","language":"JavaScript","Component ID":"0","watchersInteger":"11878"}},
{"id":"125.0", "label":"eddiemachado/bones","x":-461.0683,"y":-867.6489,"size":4.1832194,"color":"rgb(147,48,255)","attributes":{"watchers":"1079.0","name":"https://github.com/eddiemachado/bones","language":"PHP","Component ID":"0","watchersInteger":"1079"}},
{"id":"126.0", "label":"NaturalNode/natural","x":273.2932,"y":63.877605,"size":4.118281,"color":"rgb(245,184,0)","attributes":{"watchers":"1051.0","name":"https://github.com/NaturalNode/natural","language":"JavaScript","Component ID":"0","watchersInteger":"1051"}},
{"id":"128.0", "label":"matej/MBProgressHUD","x":1601.5894,"y":538.95056,"size":4.0649385,"color":"rgb(45,180,214)","attributes":{"watchers":"1028.0","name":"https://github.com/matej/MBProgressHUD","language":"Objective-C","Component ID":"0","watchersInteger":"1028"}},
{"id":"130.0", "label":"github/hubot","x":73.99797,"y":78.16761,"size":8.86575,"color":"rgb(227,235,16)","attributes":{"watchers":"3098.0","name":"https://github.com/github/hubot","language":"CoffeeScript","Component ID":"0","watchersInteger":"3098"}},
{"id":"133.0", "label":"bnoguchi/everyauth","x":-161.97104,"y":-1064.1245,"size":6.0084553,"color":"rgb(245,184,0)","attributes":{"watchers":"1866.0","name":"https://github.com/bnoguchi/everyauth","language":"JavaScript","Component ID":"0","watchersInteger":"1866"}},
{"id":"134.0", "label":"railsbp/rails_best_practices","x":-803.8495,"y":925.9479,"size":5.203682,"color":"rgb(230,0,172)","attributes":{"watchers":"1519.0","name":"https://github.com/railsbp/rails_best_practices","language":"Ruby","Component ID":"0","watchersInteger":"1519"}},
{"id":"135.0", "label":"composer/composer","x":394.51468,"y":-152.36996,"size":5.553886,"color":"rgb(147,48,255)","attributes":{"watchers":"1670.0","name":"https://github.com/composer/composer","language":"PHP","Component ID":"0","watchersInteger":"1670"}},
{"id":"136.0", "label":"h5bp/html5-boilerplate","x":-734.70483,"y":-183.18057,"size":41.641144,"color":"rgb(245,184,0)","attributes":{"watchers":"17230.0","name":"https://github.com/h5bp/html5-boilerplate","language":"JavaScript","Component ID":"0","watchersInteger":"17230"}},
{"id":"139.0", "label":"1602/compound","x":-280.30704,"y":-1909.7382,"size":4.069577,"color":"rgb(245,184,0)","attributes":{"watchers":"1030.0","name":"https://github.com/1602/compound","language":"JavaScript","Component ID":"0","watchersInteger":"1030"}},
{"id":"141.0", "label":"sunspot/sunspot","x":-330.91168,"y":1025.0798,"size":4.9833546,"color":"rgb(230,0,172)","attributes":{"watchers":"1424.0","name":"https://github.com/sunspot/sunspot","language":"Ruby","Component ID":"0","watchersInteger":"1424"}},
{"id":"142.0", "label":"github/hubot-scripts","x":22.144907,"y":163.90227,"size":4.8418818,"color":"rgb(227,235,16)","attributes":{"watchers":"1363.0","name":"https://github.com/github/hubot-scripts","language":"CoffeeScript","Component ID":"0","watchersInteger":"1363"}},
{"id":"143.0", "label":"daneden/animate.css","x":-793.4328,"y":122.31549,"size":9.939555,"color":"rgb(153,153,153)","attributes":{"watchers":"3561.0","name":"https://github.com/daneden/animate.css","language":"(unknown)","Component ID":"0","watchersInteger":"3561"}},
{"id":"145.0", "label":"ShareKit/ShareKit","x":1713.3159,"y":633.1563,"size":4.4568887,"color":"rgb(45,180,214)","attributes":{"watchers":"1197.0","name":"https://github.com/ShareKit/ShareKit","language":"Objective-C","Component ID":"0","watchersInteger":"1197"}},
{"id":"148.0", "label":"icodeforlove/node-requester","x":-265.38303,"y":-1750.0978,"size":7.5345106,"color":"rgb(245,184,0)","attributes":{"watchers":"2524.0","name":"https://github.com/icodeforlove/node-requester","language":"JavaScript","Component ID":"0","watchersInteger":"2524"}},
{"id":"149.0", "label":"jigish/slate","x":314.90347,"y":650.17487,"size":4.9369698,"color":"rgb(45,180,214)","attributes":{"watchers":"1404.0","name":"https://github.com/jigish/slate","language":"Objective-C","Component ID":"0","watchersInteger":"1404"}},
{"id":"153.0", "label":"madrobby/zepto","x":-519.56995,"y":423.44586,"size":11.477206,"color":"rgb(245,184,0)","attributes":{"watchers":"4224.0","name":"https://github.com/madrobby/zepto","language":"JavaScript","Component ID":"0","watchersInteger":"4224"}},
{"id":"155.0", "label":"middleman/middleman","x":-303.30594,"y":317.21936,"size":4.934651,"color":"rgb(230,0,172)","attributes":{"watchers":"1403.0","name":"https://github.com/middleman/middleman","language":"Ruby","Component ID":"0","watchersInteger":"1403"}},
{"id":"156.0", "label":"scrooloose/syntastic","x":557.82196,"y":214.2626,"size":4.8349237,"color":"rgb(74,168,114)","attributes":{"watchers":"1360.0","name":"https://github.com/scrooloose/syntastic","language":"VimL","Component ID":"0","watchersInteger":"1360"}},
{"id":"157.0", "label":"jquery/plugins.jquery.com","x":-770.42377,"y":0.22211026,"size":4.231923,"color":"rgb(245,184,0)","attributes":{"watchers":"1100.0","name":"https://github.com/jquery/plugins.jquery.com","language":"JavaScript","Component ID":"0","watchersInteger":"1100"}},
{"id":"159.0", "label":"trentrichardson/jQuery-Timepicker-Addon","x":271.8623,"y":-921.8975,"size":4.6841736,"color":"rgb(153,153,153)","attributes":{"watchers":"1295.0","name":"https://github.com/trentrichardson/jQuery-Timepicker-Addon","language":"(unknown)","Component ID":"0","watchersInteger":"1295"}},
{"id":"160.0", "label":"dangrossman/bootstrap-daterangepicker","x":247.39561,"y":-721.6523,"size":4.489358,"color":"rgb(245,184,0)","attributes":{"watchers":"1211.0","name":"https://github.com/dangrossman/bootstrap-daterangepicker","language":"JavaScript","Component ID":"0","watchersInteger":"1211"}},
{"id":"161.0", "label":"avalanche123/Imagine","x":385.6993,"y":74.40574,"size":4.357162,"color":"rgb(147,48,255)","attributes":{"watchers":"1154.0","name":"https://github.com/avalanche123/Imagine","language":"PHP","Component ID":"0","watchersInteger":"1154"}},
{"id":"162.0", "label":"nicolargo/glances","x":1438.7759,"y":-332.94836,"size":4.092769,"color":"rgb(31,109,255)","attributes":{"watchers":"1040.0","name":"https://github.com/nicolargo/glances","language":"Python","Component ID":"0","watchersInteger":"1040"}},
{"id":"163.0", "label":"progit/progit","x":871.19385,"y":-672.4192,"size":8.406542,"color":"rgb(230,0,172)","attributes":{"watchers":"2900.0","name":"https://github.com/progit/progit","language":"Ruby","Component ID":"0","watchersInteger":"2900"}},
{"id":"164.0", "label":"rspec/rspec-rails","x":-317.00784,"y":1077.0874,"size":4.5125504,"color":"rgb(230,0,172)","attributes":{"watchers":"1221.0","name":"https://github.com/rspec/rspec-rails","language":"Ruby","Component ID":"0","watchersInteger":"1221"}},
{"id":"165.0", "label":"jzaefferer/jquery-validation","x":-730.3028,"y":-26.696999,"size":6.5070906,"color":"rgb(245,184,0)","attributes":{"watchers":"2081.0","name":"https://github.com/jzaefferer/jquery-validation","language":"JavaScript","Component ID":"0","watchersInteger":"2081"}},
{"id":"166.0", "label":"remy/html5demos","x":-1393.7206,"y":-238.80573,"size":7.198222,"color":"rgb(245,184,0)","attributes":{"watchers":"2379.0","name":"https://github.com/remy/html5demos","language":"JavaScript","Component ID":"0","watchersInteger":"2379"}},
{"id":"167.0", "label":"madrobby/keymaster","x":-533.92596,"y":300.80533,"size":8.914454,"color":"rgb(245,184,0)","attributes":{"watchers":"3119.0","name":"https://github.com/madrobby/keymaster","language":"JavaScript","Component ID":"0","watchersInteger":"3119"}},
{"id":"168.0", "label":"emberjs/ember.js","x":-446.94107,"y":546.25635,"size":13.942551,"color":"rgb(245,184,0)","attributes":{"watchers":"5287.0","name":"https://github.com/emberjs/ember.js","language":"JavaScript","Component ID":"0","watchersInteger":"5287"}},
{"id":"169.0", "label":"mikel/mail","x":-463.2881,"y":992.0199,"size":4.7839007,"color":"rgb(230,0,172)","attributes":{"watchers":"1338.0","name":"https://github.com/mikel/mail","language":"Ruby","Component ID":"0","watchersInteger":"1338"}},
{"id":"170.0", "label":"thoughtbot/factory_girl","x":-764.0062,"y":1021.0182,"size":7.5948105,"color":"rgb(230,0,172)","attributes":{"watchers":"2550.0","name":"https://github.com/thoughtbot/factory_girl","language":"Ruby","Component ID":"0","watchersInteger":"2550"}},
{"id":"171.0", "label":"videlalvaro/gifsockets","x":1193.0409,"y":174.81964,"size":4.171623,"color":"rgb(128,56,169)","attributes":{"watchers":"1074.0","name":"https://github.com/videlalvaro/gifsockets","language":"Java","Component ID":"0","watchersInteger":"1074"}},
{"id":"172.0", "label":"fpillet/NSLogger","x":1423.9156,"y":661.50146,"size":4.020873,"color":"rgb(45,180,214)","attributes":{"watchers":"1009.0","name":"https://github.com/fpillet/NSLogger","language":"Objective-C","Component ID":"0","watchersInteger":"1009"}},
{"id":"173.0", "label":"cortesi/mitmproxy","x":-986.02905,"y":-590.52264,"size":4.779262,"color":"rgb(31,109,255)","attributes":{"watchers":"1336.0","name":"https://github.com/cortesi/mitmproxy","language":"Python","Component ID":"0","watchersInteger":"1336"}},
{"id":"174.0", "label":"headjs/headjs","x":-842.9825,"y":-437.02887,"size":7.6365566,"color":"rgb(245,184,0)","attributes":{"watchers":"2568.0","name":"https://github.com/headjs/headjs","language":"JavaScript","Component ID":"0","watchersInteger":"2568"}},
{"id":"175.0", "label":"harvesthq/chosen","x":179.82759,"y":363.2782,"size":24.822071,"color":"rgb(245,184,0)","attributes":{"watchers":"9978.0","name":"https://github.com/harvesthq/chosen","language":"JavaScript","Component ID":"0","watchersInteger":"9978"}},
{"id":"177.0", "label":"joyent/libuv","x":-35.051846,"y":-513.3786,"size":4.1043653,"color":"rgb(217,82,39)","attributes":{"watchers":"1045.0","name":"https://github.com/joyent/libuv","language":"C","Component ID":"0","watchersInteger":"1045"}},
{"id":"178.0", "label":"Shopify/liquid","x":-504.05603,"y":1210.9119,"size":4.686493,"color":"rgb(230,0,172)","attributes":{"watchers":"1296.0","name":"https://github.com/Shopify/liquid","language":"Ruby","Component ID":"0","watchersInteger":"1296"}},
{"id":"179.0", "label":"vert-x/vert.x","x":1208.5073,"y":51.58592,"size":5.63274,"color":"rgb(128,56,169)","attributes":{"watchers":"1704.0","name":"https://github.com/vert-x/vert.x","language":"Java","Component ID":"0","watchersInteger":"1704"}},
{"id":"180.0", "label":"hookio/hook.io","x":-186.78271,"y":-880.6549,"size":4.7004085,"color":"rgb(245,184,0)","attributes":{"watchers":"1302.0","name":"https://github.com/hookio/hook.io","language":"JavaScript","Component ID":"0","watchersInteger":"1302"}},
{"id":"181.0", "label":"leafo/lessphp","x":894.83594,"y":-930.1512,"size":4.8395624,"color":"rgb(147,48,255)","attributes":{"watchers":"1362.0","name":"https://github.com/leafo/lessphp","language":"PHP","Component ID":"0","watchersInteger":"1362"}},
{"id":"182.0", "label":"malsup/form","x":-1162.6051,"y":998.0689,"size":5.094678,"color":"rgb(245,184,0)","attributes":{"watchers":"1472.0","name":"https://github.com/malsup/form","language":"JavaScript","Component ID":"0","watchersInteger":"1472"}},
{"id":"183.0", "label":"jdg/MBProgressHUD","x":1689.258,"y":576.33405,"size":8.014591,"color":"rgb(45,180,214)","attributes":{"watchers":"2731.0","name":"https://github.com/jdg/MBProgressHUD","language":"Objective-C","Component ID":"0","watchersInteger":"2731"}},
{"id":"184.0", "label":"binarylogic/authlogic","x":-409.6781,"y":1416.748,"size":9.5592,"color":"rgb(230,0,172)","attributes":{"watchers":"3397.0","name":"https://github.com/binarylogic/authlogic","language":"Ruby","Component ID":"0","watchersInteger":"3397"}},
{"id":"186.0", "label":"radiant/radiant","x":22.021896,"y":1135.6849,"size":4.9369698,"color":"rgb(230,0,172)","attributes":{"watchers":"1404.0","name":"https://github.com/radiant/radiant","language":"Ruby","Component ID":"0","watchersInteger":"1404"}},
{"id":"187.0", "label":"saasbook/hw4_rottenpotatoes","x":-1171.9395,"y":1597.1285,"size":6.8364215,"color":"rgb(230,0,172)","attributes":{"watchers":"2223.0","name":"https://github.com/saasbook/hw4_rottenpotatoes","language":"Ruby","Component ID":"0","watchersInteger":"2223"}},
{"id":"188.0", "label":"defunkt/hub","x":-520.9467,"y":478.96054,"size":5.9087286,"color":"rgb(230,0,172)","attributes":{"watchers":"1823.0","name":"https://github.com/defunkt/hub","language":"Ruby","Component ID":"0","watchersInteger":"1823"}},
{"id":"189.0", "label":"chriseppstein/compass","x":45.606293,"y":1193.2578,"size":11.089894,"color":"rgb(230,0,172)","attributes":{"watchers":"4057.0","name":"https://github.com/chriseppstein/compass","language":"Ruby","Component ID":"0","watchersInteger":"4057"}},
{"id":"190.0", "label":"mozilla/pdf.js","x":-1231.4036,"y":279.21527,"size":13.232866,"color":"rgb(245,184,0)","attributes":{"watchers":"4981.0","name":"https://github.com/mozilla/pdf.js","language":"JavaScript","Component ID":"0","watchersInteger":"4981"}},
{"id":"192.0", "label":"mbleigh/acts-as-taggable-on","x":3.4130688,"y":1446.9307,"size":6.504771,"color":"rgb(230,0,172)","attributes":{"watchers":"2080.0","name":"https://github.com/mbleigh/acts-as-taggable-on","language":"Ruby","Component ID":"0","watchersInteger":"2080"}},
{"id":"193.0", "label":"jverkoey/nimbus","x":1857.705,"y":671.01514,"size":6.9570217,"color":"rgb(45,180,214)","attributes":{"watchers":"2275.0","name":"https://github.com/jverkoey/nimbus","language":"Objective-C","Component ID":"0","watchersInteger":"2275"}},
{"id":"194.0", "label":"tpope/vim-pathogen","x":-967.9607,"y":868.9163,"size":7.546107,"color":"rgb(74,168,114)","attributes":{"watchers":"2529.0","name":"https://github.com/tpope/vim-pathogen","language":"VimL","Component ID":"0","watchersInteger":"2529"}},
{"id":"196.0", "label":"paulirish/infinite-scroll","x":-736.9128,"y":-330.53265,"size":5.263982,"color":"rgb(245,184,0)","attributes":{"watchers":"1545.0","name":"https://github.com/paulirish/infinite-scroll","language":"JavaScript","Component ID":"0","watchersInteger":"1545"}},
{"id":"197.0", "label":"gimite/web-socket-js","x":-273.2355,"y":1414.1367,"size":5.1341047,"color":"rgb(161,212,68)","attributes":{"watchers":"1489.0","name":"https://github.com/gimite/web-socket-js","language":"ActionScript","Component ID":"0","watchersInteger":"1489"}},
{"id":"198.0", "label":"nothingmagical/cheddar-ios","x":1168.7174,"y":325.23898,"size":6.3215523,"color":"rgb(45,180,214)","attributes":{"watchers":"2001.0","name":"https://github.com/nothingmagical/cheddar-ios","language":"Objective-C","Component ID":"0","watchersInteger":"2001"}},
{"id":"199.0", "label":"tonytomov/jqGrid","x":1251.6707,"y":1194.8035,"size":4.310777,"color":"rgb(245,184,0)","attributes":{"watchers":"1134.0","name":"https://github.com/tonytomov/jqGrid","language":"JavaScript","Component ID":"0","watchersInteger":"1134"}},
{"id":"201.0", "label":"toastdriven/django-tastypie","x":896.4213,"y":-517.038,"size":5.8205976,"color":"rgb(31,109,255)","attributes":{"watchers":"1785.0","name":"https://github.com/toastdriven/django-tastypie","language":"Python","Component ID":"0","watchersInteger":"1785"}},
{"id":"202.0", "label":"padrino/padrino-framework","x":-543.0576,"y":504.2487,"size":5.145701,"color":"rgb(230,0,172)","attributes":{"watchers":"1494.0","name":"https://github.com/padrino/padrino-framework","language":"Ruby","Component ID":"0","watchersInteger":"1494"}},
{"id":"203.0", "label":"gregbell/active_admin","x":-661.3797,"y":836.6456,"size":9.988258,"color":"rgb(230,0,172)","attributes":{"watchers":"3582.0","name":"https://github.com/gregbell/active_admin","language":"Ruby","Component ID":"0","watchersInteger":"3582"}},
{"id":"204.0", "label":"brunch/brunch","x":-158.04216,"y":-184.83627,"size":6.4050446,"color":"rgb(227,235,16)","attributes":{"watchers":"2037.0","name":"https://github.com/brunch/brunch","language":"CoffeeScript","Component ID":"0","watchersInteger":"2037"}},
{"id":"205.0", "label":"creationix/step","x":74.75356,"y":-632.52313,"size":4.2736692,"color":"rgb(245,184,0)","attributes":{"watchers":"1118.0","name":"https://github.com/creationix/step","language":"JavaScript","Component ID":"0","watchersInteger":"1118"}},
{"id":"206.0", "label":"codahale/metrics","x":387.51324,"y":451.76636,"size":4.4336967,"color":"rgb(128,56,169)","attributes":{"watchers":"1187.0","name":"https://github.com/codahale/metrics","language":"Java","Component ID":"0","watchersInteger":"1187"}},
{"id":"207.0", "label":"tenderlove/nokogiri","x":-225.06445,"y":935.2263,"size":5.57244,"color":"rgb(230,0,172)","attributes":{"watchers":"1678.0","name":"https://github.com/tenderlove/nokogiri","language":"Ruby","Component ID":"0","watchersInteger":"1678"}},
{"id":"208.0", "label":"defunkt/resque","x":-275.6449,"y":893.5275,"size":11.883072,"color":"rgb(230,0,172)","attributes":{"watchers":"4399.0","name":"https://github.com/defunkt/resque","language":"Ruby","Component ID":"0","watchersInteger":"4399"}},
{"id":"209.0", "label":"django-extensions/django-extensions","x":971.33545,"y":-304.2526,"size":4.7398353,"color":"rgb(31,109,255)","attributes":{"watchers":"1319.0","name":"https://github.com/django-extensions/django-extensions","language":"Python","Component ID":"0","watchersInteger":"1319"}},
{"id":"213.0", "label":"ccampbell/mousetrap","x":-181.5419,"y":-566.28394,"size":8.218684,"color":"rgb(245,184,0)","attributes":{"watchers":"2819.0","name":"https://github.com/ccampbell/mousetrap","language":"JavaScript","Component ID":"0","watchersInteger":"2819"}},
{"id":"215.0", "label":"CocoaPods/CocoaPods","x":897.8832,"y":442.0604,"size":5.8994513,"color":"rgb(230,0,172)","attributes":{"watchers":"1819.0","name":"https://github.com/CocoaPods/CocoaPods","language":"Ruby","Component ID":"0","watchersInteger":"1819"}},
{"id":"216.0", "label":"chrismiles/CMPopTipView","x":2706.0437,"y":786.0242,"size":4.03015,"color":"rgb(45,180,214)","attributes":{"watchers":"1013.0","name":"https://github.com/chrismiles/CMPopTipView","language":"Objective-C","Component ID":"0","watchersInteger":"1013"}},
{"id":"218.0", "label":"fabien-d/alertify.js","x":981.8644,"y":-652.0109,"size":6.395767,"color":"rgb(245,184,0)","attributes":{"watchers":"2033.0","name":"https://github.com/fabien-d/alertify.js","language":"JavaScript","Component ID":"0","watchersInteger":"2033"}},
{"id":"220.0", "label":"akka/akka","x":933.5417,"y":281.10263,"size":5.036697,"color":"rgb(169,118,56)","attributes":{"watchers":"1447.0","name":"https://github.com/akka/akka","language":"Scala","Component ID":"0","watchersInteger":"1447"}},
{"id":"221.0", "label":"justinfrench/formtastic","x":-691.9077,"y":961.16284,"size":10.8533325,"color":"rgb(230,0,172)","attributes":{"watchers":"3955.0","name":"https://github.com/justinfrench/formtastic","language":"Ruby","Component ID":"0","watchersInteger":"3955"}},
{"id":"222.0", "label":"phonegap/phonegap-plugins","x":385.55887,"y":-539.2788,"size":7.624961,"color":"rgb(245,184,0)","attributes":{"watchers":"2563.0","name":"https://github.com/phonegap/phonegap-plugins","language":"JavaScript","Component ID":"0","watchersInteger":"2563"}},
{"id":"223.0", "label":"spf13/spf13-vim","x":763.14984,"y":354.96628,"size":5.17817,"color":"rgb(74,168,114)","attributes":{"watchers":"1508.0","name":"https://github.com/spf13/spf13-vim","language":"VimL","Component ID":"0","watchersInteger":"1508"}},
{"id":"224.0", "label":"sferik/rails_admin","x":-514.1861,"y":807.97974,"size":9.8328705,"color":"rgb(230,0,172)","attributes":{"watchers":"3515.0","name":"https://github.com/sferik/rails_admin","language":"Ruby","Component ID":"0","watchersInteger":"3515"}},
{"id":"225.0", "label":"paperjs/paper.js","x":-1015.8059,"y":-752.1811,"size":6.9245524,"color":"rgb(245,184,0)","attributes":{"watchers":"2261.0","name":"https://github.com/paperjs/paper.js","language":"JavaScript","Component ID":"0","watchersInteger":"2261"}},
{"id":"226.0", "label":"flyerhzm/bullet","x":-828.80304,"y":943.12427,"size":5.2987704,"color":"rgb(230,0,172)","attributes":{"watchers":"1560.0","name":"https://github.com/flyerhzm/bullet","language":"Ruby","Component ID":"0","watchersInteger":"1560"}},
{"id":"228.0", "label":"ryanb/dotfiles","x":-443.12747,"y":1290.8237,"size":4.955524,"color":"rgb(74,168,114)","attributes":{"watchers":"1412.0","name":"https://github.com/ryanb/dotfiles","language":"VimL","Component ID":"0","watchersInteger":"1412"}},
{"id":"229.0", "label":"technoweenie/faraday","x":-507.70316,"y":642.69135,"size":4.176262,"color":"rgb(230,0,172)","attributes":{"watchers":"1076.0","name":"https://github.com/technoweenie/faraday","language":"Ruby","Component ID":"0","watchersInteger":"1076"}},
{"id":"230.0", "label":"bartaz/impress.js","x":-1240.069,"y":-767.2444,"size":31.768173,"color":"rgb(245,184,0)","attributes":{"watchers":"12973.0","name":"https://github.com/bartaz/impress.js","language":"JavaScript","Component ID":"0","watchersInteger":"12973"}},
{"id":"231.0", "label":"kneath/kss","x":-495.6916,"y":143.0037,"size":5.558524,"color":"rgb(230,0,172)","attributes":{"watchers":"1672.0","name":"https://github.com/kneath/kss","language":"Ruby","Component ID":"0","watchersInteger":"1672"}},
{"id":"232.0", "label":"saltstack/salt","x":741.3247,"y":-128.91975,"size":4.0278306,"color":"rgb(31,109,255)","attributes":{"watchers":"1012.0","name":"https://github.com/saltstack/salt","language":"Python","Component ID":"0","watchersInteger":"1012"}},
{"id":"235.0", "label":"TapQuo/Lungo.js","x":-342.66727,"y":1414.925,"size":4.0185537,"color":"rgb(245,184,0)","attributes":{"watchers":"1008.0","name":"https://github.com/TapQuo/Lungo.js","language":"JavaScript","Component ID":"0","watchersInteger":"1008"}},
{"id":"236.0", "label":"isaacs/npm","x":-85.1295,"y":-545.2587,"size":8.696446,"color":"rgb(245,184,0)","attributes":{"watchers":"3025.0","name":"https://github.com/isaacs/npm","language":"JavaScript","Component ID":"0","watchersInteger":"3025"}},
{"id":"238.0", "label":"hakimel/reveal.js","x":-7.117724,"y":-694.06024,"size":14.012128,"color":"rgb(245,184,0)","attributes":{"watchers":"5317.0","name":"https://github.com/hakimel/reveal.js","language":"JavaScript","Component ID":"0","watchersInteger":"5317"}},
{"id":"239.0", "label":"Khan/khan-exercises","x":180.94133,"y":248.71887,"size":4.057981,"color":"rgb(245,184,0)","attributes":{"watchers":"1025.0","name":"https://github.com/Khan/khan-exercises","language":"JavaScript","Component ID":"0","watchersInteger":"1025"}},
{"id":"240.0", "label":"JakeWharton/Android-ViewPagerIndicator","x":829.0222,"y":291.51892,"size":4.776943,"color":"rgb(128,56,169)","attributes":{"watchers":"1335.0","name":"https://github.com/JakeWharton/Android-ViewPagerIndicator","language":"Java","Component ID":"0","watchersInteger":"1335"}},
{"id":"241.0", "label":"PaulUithol/Backbone-relational","x":-13.761597,"y":-75.82277,"size":4.8697124,"color":"rgb(245,184,0)","attributes":{"watchers":"1375.0","name":"https://github.com/PaulUithol/Backbone-relational","language":"JavaScript","Component ID":"0","watchersInteger":"1375"}},
{"id":"242.0", "label":"honcheng/PaperFold-for-iOS","x":2510.008,"y":785.97614,"size":4.718962,"color":"rgb(45,180,214)","attributes":{"watchers":"1310.0","name":"https://github.com/honcheng/PaperFold-for-iOS","language":"Objective-C","Component ID":"0","watchersInteger":"1310"}},
{"id":"243.0", "label":"netty/netty","x":949.0023,"y":58.909134,"size":4.5914044,"color":"rgb(128,56,169)","attributes":{"watchers":"1255.0","name":"https://github.com/netty/netty","language":"Java","Component ID":"0","watchersInteger":"1255"}},
{"id":"245.0", "label":"apneadiving/Google-Maps-for-Rails","x":-936.93353,"y":135.06786,"size":4.218008,"color":"rgb(245,184,0)","attributes":{"watchers":"1094.0","name":"https://github.com/apneadiving/Google-Maps-for-Rails","language":"JavaScript","Component ID":"0","watchersInteger":"1094"}},
{"id":"246.0", "label":"facebook/connect-js","x":1554.1304,"y":-648.679,"size":4.9485664,"color":"rgb(245,184,0)","attributes":{"watchers":"1409.0","name":"https://github.com/facebook/connect-js","language":"JavaScript","Component ID":"0","watchersInteger":"1409"}},
{"id":"247.0", "label":"antirez/redis","x":225.65659,"y":889.868,"size":14.684706,"color":"rgb(217,82,39)","attributes":{"watchers":"5607.0","name":"https://github.com/antirez/redis","language":"C","Component ID":"0","watchersInteger":"5607"}},
{"id":"248.0", "label":"pat/thinking-sphinx","x":-734.9161,"y":1611.5062,"size":4.4406543,"color":"rgb(230,0,172)","attributes":{"watchers":"1190.0","name":"https://github.com/pat/thinking-sphinx","language":"Ruby","Component ID":"0","watchersInteger":"1190"}},
{"id":"250.0", "label":"ajkochanowicz/Kickstrap","x":1003.4256,"y":-1072.2484,"size":5.166574,"color":"rgb(245,184,0)","attributes":{"watchers":"1503.0","name":"https://github.com/ajkochanowicz/Kickstrap","language":"JavaScript","Component ID":"0","watchersInteger":"1503"}},
{"id":"251.0", "label":"necolas/normalize.css","x":-790.58655,"y":-242.95789,"size":18.003527,"color":"rgb(153,153,153)","attributes":{"watchers":"7038.0","name":"https://github.com/necolas/normalize.css","language":"(unknown)","Component ID":"0","watchersInteger":"7038"}},
{"id":"252.0", "label":"appcelerator/titanium_mobile","x":306.46512,"y":-996.0372,"size":5.0436544,"color":"rgb(245,184,0)","attributes":{"watchers":"1450.0","name":"https://github.com/appcelerator/titanium_mobile","language":"JavaScript","Component ID":"0","watchersInteger":"1450"}},
{"id":"253.0", "label":"necolas/idiomatic-css","x":-809.3951,"y":-220.25282,"size":6.0316477,"color":"rgb(153,153,153)","attributes":{"watchers":"1876.0","name":"https://github.com/necolas/idiomatic-css","language":"(unknown)","Component ID":"0","watchersInteger":"1876"}},
{"id":"254.0", "label":"seajs/seajs","x":11.068053,"y":-116.49754,"size":4.0765347,"color":"rgb(245,184,0)","attributes":{"watchers":"1033.0","name":"https://github.com/seajs/seajs","language":"JavaScript","Component ID":"0","watchersInteger":"1033"}},
{"id":"255.0", "label":"cocos2d/cocos2d-iphone","x":1625.4373,"y":1651.1946,"size":7.3234606,"color":"rgb(45,180,214)","attributes":{"watchers":"2433.0","name":"https://github.com/cocos2d/cocos2d-iphone","language":"Objective-C","Component ID":"0","watchersInteger":"2433"}},
{"id":"256.0", "label":"ginatrapani/todo.txt-cli","x":949.5022,"y":1859.0033,"size":4.2087307,"color":"rgb(44,201,60)","attributes":{"watchers":"1090.0","name":"https://github.com/ginatrapani/todo.txt-cli","language":"Shell","Component ID":"0","watchersInteger":"1090"}},
{"id":"257.0", "label":"facebook/php-sdk","x":1631.863,"y":-631.2914,"size":11.774068,"color":"rgb(147,48,255)","attributes":{"watchers":"4352.0","name":"https://github.com/facebook/php-sdk","language":"PHP","Component ID":"0","watchersInteger":"4352"}},
{"id":"258.0", "label":"warpech/jquery-handsontable","x":650.78986,"y":-1090.4714,"size":4.8395624,"color":"rgb(245,184,0)","attributes":{"watchers":"1362.0","name":"https://github.com/warpech/jquery-handsontable","language":"JavaScript","Component ID":"0","watchersInteger":"1362"}},
{"id":"262.0", "label":"restsharp/RestSharp","x":-288.90768,"y":-701.1747,"size":4.1437926,"color":"rgb(197,19,217)","attributes":{"watchers":"1062.0","name":"https://github.com/restsharp/RestSharp","language":"C#","Component ID":"0","watchersInteger":"1062"}},
{"id":"264.0", "label":"fabpot/Twig","x":384.85043,"y":-123.03296,"size":5.1132317,"color":"rgb(147,48,255)","attributes":{"watchers":"1480.0","name":"https://github.com/fabpot/Twig","language":"PHP","Component ID":"0","watchersInteger":"1480"}},
{"id":"265.0", "label":"dbalatero/typhoeus","x":-222.85704,"y":646.9355,"size":4.7839007,"color":"rgb(230,0,172)","attributes":{"watchers":"1338.0","name":"https://github.com/dbalatero/typhoeus","language":"Ruby","Component ID":"0","watchersInteger":"1338"}},
{"id":"269.0", "label":"segmentio/analytics.js","x":1048.0531,"y":1744.7676,"size":4.6238737,"color":"rgb(245,184,0)","attributes":{"watchers":"1269.0","name":"https://github.com/segmentio/analytics.js","language":"JavaScript","Component ID":"0","watchersInteger":"1269"}},
{"id":"270.0", "label":"refinery/refinerycms","x":-581.4339,"y":729.1384,"size":7.5345106,"color":"rgb(230,0,172)","attributes":{"watchers":"2524.0","name":"https://github.com/refinery/refinerycms","language":"Ruby","Component ID":"0","watchersInteger":"2524"}},
{"id":"271.0", "label":"kennethreitz/requests","x":904.7718,"y":-173.93434,"size":12.096441,"color":"rgb(31,109,255)","attributes":{"watchers":"4491.0","name":"https://github.com/kennethreitz/requests","language":"Python","Component ID":"0","watchersInteger":"4491"}},
{"id":"272.0", "label":"jlong/sass-twitter-bootstrap","x":677.579,"y":598.0418,"size":5.463436,"color":"rgb(245,184,0)","attributes":{"watchers":"1631.0","name":"https://github.com/jlong/sass-twitter-bootstrap","language":"JavaScript","Component ID":"0","watchersInteger":"1631"}},
{"id":"273.0", "label":"fog/fog","x":94.99681,"y":717.2661,"size":7.0219603,"color":"rgb(230,0,172)","attributes":{"watchers":"2303.0","name":"https://github.com/fog/fog","language":"Ruby","Component ID":"0","watchersInteger":"2303"}},
{"id":"274.0", "label":"playframework/Play20","x":701.43036,"y":-200.10175,"size":7.6551104,"color":"rgb(169,118,56)","attributes":{"watchers":"2576.0","name":"https://github.com/playframework/Play20","language":"Scala","Component ID":"0","watchersInteger":"2576"}},
{"id":"275.0", "label":"ivaynberg/select2","x":520.8058,"y":-403.78748,"size":12.448965,"color":"rgb(245,184,0)","attributes":{"watchers":"4643.0","name":"https://github.com/ivaynberg/select2","language":"JavaScript","Component ID":"0","watchersInteger":"4643"}},
{"id":"277.0", "label":"imulus/retinajs","x":187.2861,"y":-660.79486,"size":4.7514315,"color":"rgb(245,184,0)","attributes":{"watchers":"1324.0","name":"https://github.com/imulus/retinajs","language":"JavaScript","Component ID":"0","watchersInteger":"1324"}},
{"id":"278.0", "label":"ServiceStack/ServiceStack","x":572.6679,"y":654.64197,"size":4.438335,"color":"rgb(197,19,217)","attributes":{"watchers":"1189.0","name":"https://github.com/ServiceStack/ServiceStack","language":"C#","Component ID":"0","watchersInteger":"1189"}},
{"id":"279.0", "label":"LeaVerou/prefixfree","x":86.078766,"y":-722.2689,"size":4.909139,"color":"rgb(245,184,0)","attributes":{"watchers":"1392.0","name":"https://github.com/LeaVerou/prefixfree","language":"JavaScript","Component ID":"0","watchersInteger":"1392"}},
{"id":"280.0", "label":"NoamB/sorcery","x":-730.8485,"y":545.81836,"size":4.5705314,"color":"rgb(230,0,172)","attributes":{"watchers":"1246.0","name":"https://github.com/NoamB/sorcery","language":"Ruby","Component ID":"0","watchersInteger":"1246"}},
{"id":"282.0", "label":"twitter/bower","x":-466.62463,"y":-321.90414,"size":9.705313,"color":"rgb(245,184,0)","attributes":{"watchers":"3460.0","name":"https://github.com/twitter/bower","language":"JavaScript","Component ID":"0","watchersInteger":"3460"}},
{"id":"283.0", "label":"rogerwang/node-webkit","x":1132.1764,"y":811.73114,"size":5.157297,"color":"rgb(217,24,30)","attributes":{"watchers":"1499.0","name":"https://github.com/rogerwang/node-webkit","language":"C++","Component ID":"0","watchersInteger":"1499"}},
{"id":"284.0", "label":"square/crossfilter","x":168.85992,"y":-1083.0735,"size":6.5534754,"color":"rgb(245,184,0)","attributes":{"watchers":"2101.0","name":"https://github.com/square/crossfilter","language":"JavaScript","Component ID":"0","watchersInteger":"2101"}},
{"id":"285.0", "label":"capistrano/capistrano","x":-146.90656,"y":1115.4469,"size":8.708042,"color":"rgb(230,0,172)","attributes":{"watchers":"3030.0","name":"https://github.com/capistrano/capistrano","language":"Ruby","Component ID":"0","watchersInteger":"3030"}},
{"id":"286.0", "label":"appjs/appjs","x":-173.5726,"y":-588.194,"size":5.312686,"color":"rgb(217,24,30)","attributes":{"watchers":"1566.0","name":"https://github.com/appjs/appjs","language":"C++","Component ID":"0","watchersInteger":"1566"}},
{"id":"287.0", "label":"Kicksend/mailcheck","x":-578.5111,"y":-742.9592,"size":9.199719,"color":"rgb(245,184,0)","attributes":{"watchers":"3242.0","name":"https://github.com/Kicksend/mailcheck","language":"JavaScript","Component ID":"0","watchersInteger":"3242"}},
{"id":"288.0", "label":"php-fig/fig-standards","x":384.61926,"y":-200.09738,"size":5.4402437,"color":"rgb(153,153,153)","attributes":{"watchers":"1621.0","name":"https://github.com/php-fig/fig-standards","language":"(unknown)","Component ID":"0","watchersInteger":"1621"}},
{"id":"289.0", "label":"keithw/mosh","x":-941.505,"y":736.4134,"size":5.3776245,"color":"rgb(217,24,30)","attributes":{"watchers":"1594.0","name":"https://github.com/keithw/mosh","language":"C++","Component ID":"0","watchersInteger":"1594"}},
{"id":"290.0", "label":"opscode/chef","x":694.7036,"y":361.21057,"size":6.173121,"color":"rgb(230,0,172)","attributes":{"watchers":"1937.0","name":"https://github.com/opscode/chef","language":"Ruby","Component ID":"0","watchersInteger":"1937"}},
{"id":"293.0", "label":"ernie/squeel","x":-457.67908,"y":939.8441,"size":4.0069575,"color":"rgb(230,0,172)","attributes":{"watchers":"1003.0","name":"https://github.com/ernie/squeel","language":"Ruby","Component ID":"0","watchersInteger":"1003"}},
{"id":"296.0", "label":"Prinzhorn/skrollr","x":-44.496372,"y":-2004.1486,"size":5.5469284,"color":"rgb(245,184,0)","attributes":{"watchers":"1667.0","name":"https://github.com/Prinzhorn/skrollr","language":"JavaScript","Component ID":"0","watchersInteger":"1667"}},
{"id":"297.0", "label":"wayneeseguin/rvm","x":-31.42735,"y":737.8892,"size":6.5534754,"color":"rgb(44,201,60)","attributes":{"watchers":"2101.0","name":"https://github.com/wayneeseguin/rvm","language":"Shell","Component ID":"0","watchersInteger":"2101"}},
{"id":"298.0", "label":"opscode/cookbooks","x":587.1186,"y":915.7808,"size":5.822917,"color":"rgb(230,0,172)","attributes":{"watchers":"1786.0","name":"https://github.com/opscode/cookbooks","language":"Ruby","Component ID":"0","watchersInteger":"1786"}},
{"id":"299.0", "label":"senchalabs/connect","x":-118.01508,"y":-290.13525,"size":8.288261,"color":"rgb(245,184,0)","attributes":{"watchers":"2849.0","name":"https://github.com/senchalabs/connect","language":"JavaScript","Component ID":"0","watchersInteger":"2849"}},
{"id":"302.0", "label":"etsy/statsd","x":801.8259,"y":-34.57986,"size":9.366705,"color":"rgb(245,184,0)","attributes":{"watchers":"3314.0","name":"https://github.com/etsy/statsd","language":"JavaScript","Component ID":"0","watchersInteger":"3314"}},
{"id":"303.0", "label":"technomancy/leiningen","x":5.665223,"y":838.65466,"size":6.1545672,"color":"rgb(169,56,56)","attributes":{"watchers":"1929.0","name":"https://github.com/technomancy/leiningen","language":"Clojure","Component ID":"0","watchersInteger":"1929"}},
{"id":"304.0", "label":"benoitc/gunicorn","x":1027.8864,"y":-368.0975,"size":4.176262,"color":"rgb(31,109,255)","attributes":{"watchers":"1076.0","name":"https://github.com/benoitc/gunicorn","language":"Python","Component ID":"0","watchersInteger":"1076"}},
{"id":"306.0", "label":"charliesome/better_errors","x":-248.00043,"y":1076.28,"size":7.1866255,"color":"rgb(230,0,172)","attributes":{"watchers":"2374.0","name":"https://github.com/charliesome/better_errors","language":"Ruby","Component ID":"0","watchersInteger":"2374"}},
{"id":"307.0", "label":"maker/ratchet","x":-461.0024,"y":-606.12427,"size":9.6357355,"color":"rgb(245,184,0)","attributes":{"watchers":"3430.0","name":"https://github.com/maker/ratchet","language":"JavaScript","Component ID":"0","watchersInteger":"3430"}},
{"id":"308.0", "label":"guard/guard","x":-6.7908688,"y":1294.6492,"size":6.4607058,"color":"rgb(230,0,172)","attributes":{"watchers":"2061.0","name":"https://github.com/guard/guard","language":"Ruby","Component ID":"0","watchersInteger":"2061"}},
{"id":"309.0", "label":"seyhunak/twitter-bootstrap-rails","x":-610.5451,"y":608.4585,"size":7.6110454,"color":"rgb(230,0,172)","attributes":{"watchers":"2557.0","name":"https://github.com/seyhunak/twitter-bootstrap-rails","language":"Ruby","Component ID":"0","watchersInteger":"2557"}},
{"id":"310.0", "label":"jnicklas/carrierwave","x":49.224716,"y":1028.3534,"size":10.023047,"color":"rgb(230,0,172)","attributes":{"watchers":"3597.0","name":"https://github.com/jnicklas/carrierwave","language":"Ruby","Component ID":"0","watchersInteger":"3597"}},
{"id":"311.0", "label":"logstash/logstash","x":405.18137,"y":578.1325,"size":4.1229196,"color":"rgb(230,0,172)","attributes":{"watchers":"1053.0","name":"https://github.com/logstash/logstash","language":"Ruby","Component ID":"0","watchersInteger":"1053"}},
{"id":"312.0", "label":"fabric/fabric","x":1060.6377,"y":-113.95576,"size":5.9690285,"color":"rgb(31,109,255)","attributes":{"watchers":"1849.0","name":"https://github.com/fabric/fabric","language":"Python","Component ID":"0","watchersInteger":"1849"}},
{"id":"313.0", "label":"playframework/play","x":670.4359,"y":-235.00368,"size":4.825647,"color":"rgb(31,109,255)","attributes":{"watchers":"1356.0","name":"https://github.com/playframework/play","language":"Python","Component ID":"0","watchersInteger":"1356"}},
{"id":"314.0", "label":"robbiehanson/CocoaAsyncSocket","x":1267.7069,"y":-380.55493,"size":4.236562,"color":"rgb(45,180,214)","attributes":{"watchers":"1102.0","name":"https://github.com/robbiehanson/CocoaAsyncSocket","language":"Objective-C","Component ID":"0","watchersInteger":"1102"}},
{"id":"315.0", "label":"h5bp/mobile-boilerplate","x":-817.7132,"y":-276.35764,"size":7.061387,"color":"rgb(245,184,0)","attributes":{"watchers":"2320.0","name":"https://github.com/h5bp/mobile-boilerplate","language":"JavaScript","Component ID":"0","watchersInteger":"2320"}},
{"id":"318.0", "label":"kien/ctrlp.vim","x":-855.0963,"y":296.6724,"size":5.2152777,"color":"rgb(74,168,114)","attributes":{"watchers":"1524.0","name":"https://github.com/kien/ctrlp.vim","language":"VimL","Component ID":"0","watchersInteger":"1524"}},
{"id":"320.0", "label":"sparklemotion/nokogiri","x":-242.89223,"y":982.81824,"size":6.0873094,"color":"rgb(230,0,172)","attributes":{"watchers":"1900.0","name":"https://github.com/sparklemotion/nokogiri","language":"Ruby","Component ID":"0","watchersInteger":"1900"}},
{"id":"321.0", "label":"revans/bash-it","x":755.42236,"y":46.548107,"size":4.252796,"color":"rgb(44,201,60)","attributes":{"watchers":"1109.0","name":"https://github.com/revans/bash-it","language":"Shell","Component ID":"0","watchersInteger":"1109"}},
{"id":"322.0", "label":"blasten/turn.js","x":-38.090103,"y":-1671.1853,"size":6.917595,"color":"rgb(245,184,0)","attributes":{"watchers":"2258.0","name":"https://github.com/blasten/turn.js","language":"JavaScript","Component ID":"0","watchersInteger":"2258"}},
{"id":"323.0", "label":"Simbul/baker","x":1409.0994,"y":-989.0987,"size":4.398908,"color":"rgb(45,180,214)","attributes":{"watchers":"1172.0","name":"https://github.com/Simbul/baker","language":"Objective-C","Component ID":"0","watchersInteger":"1172"}},
{"id":"324.0", "label":"square/KIF","x":1211.5774,"y":435.8616,"size":4.667939,"color":"rgb(45,180,214)","attributes":{"watchers":"1288.0","name":"https://github.com/square/KIF","language":"Objective-C","Component ID":"0","watchersInteger":"1288"}},
{"id":"325.0", "label":"scrooloose/nerdtree","x":577.67126,"y":250.44897,"size":6.1777596,"color":"rgb(74,168,114)","attributes":{"watchers":"1939.0","name":"https://github.com/scrooloose/nerdtree","language":"VimL","Component ID":"0","watchersInteger":"1939"}},
{"id":"326.0", "label":"puppetlabs/puppet","x":51.868805,"y":613.3116,"size":4.1924963,"color":"rgb(230,0,172)","attributes":{"watchers":"1083.0","name":"https://github.com/puppetlabs/puppet","language":"Ruby","Component ID":"0","watchersInteger":"1083"}},
{"id":"327.0", "label":"arduino/Arduino","x":1.4060665,"y":-1234.5023,"size":5.0993166,"color":"rgb(128,56,169)","attributes":{"watchers":"1474.0","name":"https://github.com/arduino/Arduino","language":"Java","Component ID":"0","watchersInteger":"1474"}},
{"id":"329.0", "label":"mleibman/SlickGrid","x":139.3291,"y":-945.9921,"size":7.650472,"color":"rgb(245,184,0)","attributes":{"watchers":"2574.0","name":"https://github.com/mleibman/SlickGrid","language":"JavaScript","Component ID":"0","watchersInteger":"2574"}},
{"id":"330.0", "label":"haml/haml","x":-521.7179,"y":918.67114,"size":6.2055902,"color":"rgb(230,0,172)","attributes":{"watchers":"1951.0","name":"https://github.com/haml/haml","language":"Ruby","Component ID":"0","watchersInteger":"1951"}},
{"id":"331.0", "label":"jordansissel/fpm","x":420.08255,"y":560.5182,"size":4.660981,"color":"rgb(230,0,172)","attributes":{"watchers":"1285.0","name":"https://github.com/jordansissel/fpm","language":"Ruby","Component ID":"0","watchersInteger":"1285"}},
{"id":"332.0", "label":"robbyrussell/oh-my-zsh","x":261.5209,"y":468.50153,"size":20.364506,"color":"rgb(44,201,60)","attributes":{"watchers":"8056.0","name":"https://github.com/robbyrussell/oh-my-zsh","language":"Shell","Component ID":"0","watchersInteger":"8056"}},
{"id":"335.0", "label":"yahoo/mojito","x":-1021.22424,"y":-264.219,"size":4.656343,"color":"rgb(245,184,0)","attributes":{"watchers":"1283.0","name":"https://github.com/yahoo/mojito","language":"JavaScript","Component ID":"0","watchersInteger":"1283"}},
{"id":"336.0", "label":"oyvindkinsey/easyXDM","x":1380.5524,"y":-576.8975,"size":4.1206,"color":"rgb(245,184,0)","attributes":{"watchers":"1052.0","name":"https://github.com/oyvindkinsey/easyXDM","language":"JavaScript","Component ID":"0","watchersInteger":"1052"}},
{"id":"337.0", "label":"resmo/git-ftp","x":1316.0518,"y":747.2506,"size":4.475443,"color":"rgb(44,201,60)","attributes":{"watchers":"1205.0","name":"https://github.com/resmo/git-ftp","language":"Shell","Component ID":"0","watchersInteger":"1205"}},
{"id":"339.0", "label":"mathiasbynens/jquery-placeholder","x":-643.9996,"y":-150.83954,"size":4.6725774,"color":"rgb(245,184,0)","attributes":{"watchers":"1290.0","name":"https://github.com/mathiasbynens/jquery-placeholder","language":"JavaScript","Component ID":"0","watchersInteger":"1290"}},
{"id":"341.0", "label":"documentcloud/underscore","x":-294.4054,"y":-76.961655,"size":17.7229,"color":"rgb(245,184,0)","attributes":{"watchers":"6917.0","name":"https://github.com/documentcloud/underscore","language":"JavaScript","Component ID":"0","watchersInteger":"6917"}},
{"id":"342.0", "label":"posabsolute/jQuery-Validation-Engine","x":784.1115,"y":-760.0912,"size":4.2852654,"color":"rgb(245,184,0)","attributes":{"watchers":"1123.0","name":"https://github.com/posabsolute/jQuery-Validation-Engine","language":"JavaScript","Component ID":"0","watchersInteger":"1123"}},
{"id":"343.0", "label":"johndyer/mediaelement","x":-526.9152,"y":-564.26483,"size":4.788539,"color":"rgb(245,184,0)","attributes":{"watchers":"1340.0","name":"https://github.com/johndyer/mediaelement","language":"JavaScript","Component ID":"0","watchersInteger":"1340"}},
{"id":"345.0", "label":"oesmith/morris.js","x":-549.7885,"y":-1014.9842,"size":6.3980865,"color":"rgb(227,235,16)","attributes":{"watchers":"2034.0","name":"https://github.com/oesmith/morris.js","language":"CoffeeScript","Component ID":"0","watchersInteger":"2034"}},
{"id":"346.0", "label":"mootools/mootools-core","x":-361.69144,"y":-261.11667,"size":5.9272823,"color":"rgb(245,184,0)","attributes":{"watchers":"1831.0","name":"https://github.com/mootools/mootools-core","language":"JavaScript","Component ID":"0","watchersInteger":"1831"}},
{"id":"348.0", "label":"aurajs/aura","x":-652.0533,"y":-354.65677,"size":5.7927666,"color":"rgb(245,184,0)","attributes":{"watchers":"1773.0","name":"https://github.com/aurajs/aura","language":"JavaScript","Component ID":"0","watchersInteger":"1773"}},
{"id":"350.0", "label":"marcuswestin/store.js","x":1310.3204,"y":327.42935,"size":4.7908583,"color":"rgb(245,184,0)","attributes":{"watchers":"1341.0","name":"https://github.com/marcuswestin/store.js","language":"JavaScript","Component ID":"0","watchersInteger":"1341"}},
{"id":"352.0", "label":"addyosmani/jquery-ui-bootstrap","x":-527.4495,"y":-244.44537,"size":10.76984,"color":"rgb(245,184,0)","attributes":{"watchers":"3919.0","name":"https://github.com/addyosmani/jquery-ui-bootstrap","language":"JavaScript","Component ID":"0","watchersInteger":"3919"}},
{"id":"353.0", "label":"andymccurdy/redis-py","x":1063.7247,"y":-164.90771,"size":5.280216,"color":"rgb(31,109,255)","attributes":{"watchers":"1552.0","name":"https://github.com/andymccurdy/redis-py","language":"Python","Component ID":"0","watchersInteger":"1552"}},
{"id":"354.0", "label":"harrah/xsbt","x":1085.6445,"y":306.79648,"size":4.858116,"color":"rgb(169,118,56)","attributes":{"watchers":"1370.0","name":"https://github.com/harrah/xsbt","language":"Scala","Component ID":"0","watchersInteger":"1370"}},
{"id":"355.0", "label":"somerandomdude/Iconic","x":-70.77576,"y":-142.1741,"size":4.3246927,"color":"rgb(31,109,255)","attributes":{"watchers":"1140.0","name":"https://github.com/somerandomdude/Iconic","language":"Python","Component ID":"0","watchersInteger":"1140"}},
{"id":"356.0", "label":"stonean/slim","x":-26.17542,"y":1213.6736,"size":5.317324,"color":"rgb(230,0,172)","attributes":{"watchers":"1568.0","name":"https://github.com/stonean/slim","language":"Ruby","Component ID":"0","watchersInteger":"1568"}},
{"id":"358.0", "label":"blueimp/jQuery-File-Upload","x":1851.3151,"y":-537.3757,"size":22.270916,"color":"rgb(245,184,0)","attributes":{"watchers":"8878.0","name":"https://github.com/blueimp/jQuery-File-Upload","language":"JavaScript","Component ID":"0","watchersInteger":"8878"}},
{"id":"359.0", "label":"ChiperSoft/Kalendae","x":149.36505,"y":420.2246,"size":4.8998623,"color":"rgb(245,184,0)","attributes":{"watchers":"1388.0","name":"https://github.com/ChiperSoft/Kalendae","language":"JavaScript","Component ID":"0","watchersInteger":"1388"}},
{"id":"361.0", "label":"github/markup","x":225.5945,"y":283.63913,"size":4.8905854,"color":"rgb(230,0,172)","attributes":{"watchers":"1384.0","name":"https://github.com/github/markup","language":"Ruby","Component ID":"0","watchersInteger":"1384"}},
{"id":"362.0", "label":"EightMedia/hammer.js","x":1184.9636,"y":-993.436,"size":8.640784,"color":"rgb(245,184,0)","attributes":{"watchers":"3001.0","name":"https://github.com/EightMedia/hammer.js","language":"JavaScript","Component ID":"0","watchersInteger":"3001"}},
{"id":"363.0", "label":"bitcoin/bitcoin","x":309.48975,"y":-538.9709,"size":5.338197,"color":"rgb(217,24,30)","attributes":{"watchers":"1577.0","name":"https://github.com/bitcoin/bitcoin","language":"C++","Component ID":"0","watchersInteger":"1577"}},
{"id":"366.0", "label":"xbmc/xbmc","x":1122.2687,"y":-634.8664,"size":6.2542944,"color":"rgb(217,82,39)","attributes":{"watchers":"1972.0","name":"https://github.com/xbmc/xbmc","language":"C","Component ID":"0","watchersInteger":"1972"}},
{"id":"367.0", "label":"pdfkit/pdfkit","x":285.41177,"y":1199.8441,"size":4.5542965,"color":"rgb(230,0,172)","attributes":{"watchers":"1239.0","name":"https://github.com/pdfkit/pdfkit","language":"Ruby","Component ID":"0","watchersInteger":"1239"}},
{"id":"369.0", "label":"chrisbanes/Android-PullToRefresh","x":-1915.3926,"y":1238.5819,"size":4.020873,"color":"rgb(128,56,169)","attributes":{"watchers":"1009.0","name":"https://github.com/chrisbanes/Android-PullToRefresh","language":"Java","Component ID":"0","watchersInteger":"1009"}},
{"id":"370.0", "label":"jfeinstein10/SlidingMenu","x":-1522.1688,"y":1057.5735,"size":4.0834923,"color":"rgb(128,56,169)","attributes":{"watchers":"1036.0","name":"https://github.com/jfeinstein10/SlidingMenu","language":"Java","Component ID":"0","watchersInteger":"1036"}},
{"id":"371.0", "label":"cubiq/iscroll","x":-343.25275,"y":-1613.3812,"size":6.0316477,"color":"rgb(245,184,0)","attributes":{"watchers":"1876.0","name":"https://github.com/cubiq/iscroll","language":"JavaScript","Component ID":"0","watchersInteger":"1876"}},
{"id":"372.0", "label":"tonymillion/Reachability","x":1042.6561,"y":449.53326,"size":4.0231924,"color":"rgb(45,180,214)","attributes":{"watchers":"1010.0","name":"https://github.com/tonymillion/Reachability","language":"Objective-C","Component ID":"0","watchersInteger":"1010"}},
{"id":"373.0", "label":"rails/jquery-ujs","x":-613.5926,"y":1333.1692,"size":5.7162323,"color":"rgb(245,184,0)","attributes":{"watchers":"1740.0","name":"https://github.com/rails/jquery-ujs","language":"JavaScript","Component ID":"0","watchersInteger":"1740"}},
{"id":"374.0", "label":"ginatrapani/ThinkUp","x":941.5515,"y":1846.9155,"size":7.110091,"color":"rgb(147,48,255)","attributes":{"watchers":"2341.0","name":"https://github.com/ginatrapani/ThinkUp","language":"PHP","Component ID":"0","watchersInteger":"2341"}},
{"id":"375.0", "label":"adobe/source-code-pro","x":-1677.784,"y":-941.7481,"size":6.4467907,"color":"rgb(44,201,60)","attributes":{"watchers":"2055.0","name":"https://github.com/adobe/source-code-pro","language":"Shell","Component ID":"0","watchersInteger":"2055"}},
{"id":"376.0", "label":"natew/obtvse","x":-1112.334,"y":1846.938,"size":4.6934505,"color":"rgb(230,0,172)","attributes":{"watchers":"1299.0","name":"https://github.com/natew/obtvse","language":"Ruby","Component ID":"0","watchersInteger":"1299"}},
{"id":"377.0", "label":"retlehs/roots","x":1783.463,"y":860.3488,"size":7.5623417,"color":"rgb(147,48,255)","attributes":{"watchers":"2536.0","name":"https://github.com/retlehs/roots","language":"PHP","Component ID":"0","watchersInteger":"2536"}},
{"id":"378.0", "label":"uxebu/bonsai","x":188.29002,"y":-940.49664,"size":4.118281,"color":"rgb(245,184,0)","attributes":{"watchers":"1051.0","name":"https://github.com/uxebu/bonsai","language":"JavaScript","Component ID":"0","watchersInteger":"1051"}},
{"id":"379.0", "label":"desandro/masonry","x":-654.7726,"y":-679.5384,"size":9.413089,"color":"rgb(245,184,0)","attributes":{"watchers":"3334.0","name":"https://github.com/desandro/masonry","language":"JavaScript","Component ID":"0","watchersInteger":"3334"}},
{"id":"380.0", "label":"JuliaLang/julia","x":192.1997,"y":1056.6293,"size":5.8808975,"color":"rgb(169,56,118)","attributes":{"watchers":"1811.0","name":"https://github.com/JuliaLang/julia","language":"Julia","Component ID":"0","watchersInteger":"1811"}},
{"id":"381.0", "label":"square/cube","x":131.28796,"y":-1057.6777,"size":7.110091,"color":"rgb(245,184,0)","attributes":{"watchers":"2341.0","name":"https://github.com/square/cube","language":"JavaScript","Component ID":"0","watchersInteger":"2341"}},
{"id":"383.0", "label":"phonegap/phonegap","x":574.0716,"y":-774.0791,"size":7.448699,"color":"rgb(245,184,0)","attributes":{"watchers":"2487.0","name":"https://github.com/phonegap/phonegap","language":"JavaScript","Component ID":"0","watchersInteger":"2487"}},
{"id":"384.0", "label":"imathis/octopress","x":229.59325,"y":782.6246,"size":12.620588,"color":"rgb(230,0,172)","attributes":{"watchers":"4717.0","name":"https://github.com/imathis/octopress","language":"Ruby","Component ID":"0","watchersInteger":"4717"}},
{"id":"385.0", "label":"kennethreitz/osx-gcc-installer","x":963.84924,"y":-130.554,"size":7.212137,"color":"rgb(153,153,153)","attributes":{"watchers":"2385.0","name":"https://github.com/kennethreitz/osx-gcc-installer","language":"(unknown)","Component ID":"0","watchersInteger":"2385"}},
{"id":"387.0", "label":"LockerProject/Locker","x":-55.2627,"y":-806.50616,"size":4.1785808,"color":"rgb(245,184,0)","attributes":{"watchers":"1077.0","name":"https://github.com/LockerProject/Locker","language":"JavaScript","Component ID":"0","watchersInteger":"1077"}},
{"id":"388.0", "label":"github/gollum","x":85.6404,"y":181.11879,"size":7.9635687,"color":"rgb(245,184,0)","attributes":{"watchers":"2709.0","name":"https://github.com/github/gollum","language":"JavaScript","Component ID":"0","watchersInteger":"2709"}},
{"id":"390.0", "label":"diaspora/diaspora","x":-643.22705,"y":518.12897,"size":19.57133,"color":"rgb(230,0,172)","attributes":{"watchers":"7714.0","name":"https://github.com/diaspora/diaspora","language":"Ruby","Component ID":"0","watchersInteger":"7714"}},
{"id":"391.0", "label":"imakewebthings/deck.js","x":-1013.6675,"y":1310.1697,"size":8.861112,"color":"rgb(245,184,0)","attributes":{"watchers":"3096.0","name":"https://github.com/imakewebthings/deck.js","language":"JavaScript","Component ID":"0","watchersInteger":"3096"}},
{"id":"394.0", "label":"imsky/holder","x":-987.8344,"y":-1126.9631,"size":5.537651,"color":"rgb(245,184,0)","attributes":{"watchers":"1663.0","name":"https://github.com/imsky/holder","language":"JavaScript","Component ID":"0","watchersInteger":"1663"}},
{"id":"395.0", "label":"php/php-src","x":597.95306,"y":-373.0604,"size":7.9983573,"color":"rgb(217,82,39)","attributes":{"watchers":"2724.0","name":"https://github.com/php/php-src","language":"C","Component ID":"0","watchersInteger":"2724"}},
{"id":"396.0", "label":"socketstream/socketstream","x":595.60504,"y":-664.80304,"size":7.061387,"color":"rgb(227,235,16)","attributes":{"watchers":"2320.0","name":"https://github.com/socketstream/socketstream","language":"CoffeeScript","Component ID":"0","watchersInteger":"2320"}},
{"id":"398.0", "label":"AFNetworking/AFNetworking","x":1338.7766,"y":480.9257,"size":13.3696995,"color":"rgb(45,180,214)","attributes":{"watchers":"5040.0","name":"https://github.com/AFNetworking/AFNetworking","language":"Objective-C","Component ID":"0","watchersInteger":"5040"}},
{"id":"399.0", "label":"valums/file-uploader","x":374.98413,"y":-764.87177,"size":9.677482,"color":"rgb(245,184,0)","attributes":{"watchers":"3448.0","name":"https://github.com/valums/file-uploader","language":"JavaScript","Component ID":"0","watchersInteger":"3448"}},
{"id":"401.0", "label":"aino/galleria","x":21.693024,"y":-955.8012,"size":4.222646,"color":"rgb(245,184,0)","attributes":{"watchers":"1096.0","name":"https://github.com/aino/galleria","language":"JavaScript","Component ID":"0","watchersInteger":"1096"}},
{"id":"402.0", "label":"documentcloud/jammit","x":-280.4682,"y":-120.94168,"size":4.169304,"color":"rgb(230,0,172)","attributes":{"watchers":"1073.0","name":"https://github.com/documentcloud/jammit","language":"Ruby","Component ID":"0","watchersInteger":"1073"}},
{"id":"403.0", "label":"wycats/thor","x":-469.5854,"y":738.6102,"size":5.0969973,"color":"rgb(230,0,172)","attributes":{"watchers":"1473.0","name":"https://github.com/wycats/thor","language":"Ruby","Component ID":"0","watchersInteger":"1473"}},
{"id":"404.0", "label":"rmm5t/jquery-timeago","x":-24.711693,"y":548.3698,"size":5.4332857,"color":"rgb(245,184,0)","attributes":{"watchers":"1618.0","name":"https://github.com/rmm5t/jquery-timeago","language":"JavaScript","Component ID":"0","watchersInteger":"1618"}},
{"id":"405.0", "label":"SublimeLinter/SublimeLinter","x":581.7617,"y":442.69778,"size":4.1066847,"color":"rgb(245,184,0)","attributes":{"watchers":"1046.0","name":"https://github.com/SublimeLinter/SublimeLinter","language":"JavaScript","Component ID":"0","watchersInteger":"1046"}},
{"id":"406.0", "label":"carhartl/jquery-cookie","x":185.60452,"y":-143.63094,"size":7.8638415,"color":"rgb(245,184,0)","attributes":{"watchers":"2666.0","name":"https://github.com/carhartl/jquery-cookie","language":"JavaScript","Component ID":"0","watchersInteger":"2666"}},
{"id":"407.0", "label":"play/play","x":364.0698,"y":121.660675,"size":4.1321964,"color":"rgb(230,0,172)","attributes":{"watchers":"1057.0","name":"https://github.com/play/play","language":"Ruby","Component ID":"0","watchersInteger":"1057"}},
{"id":"408.0", "label":"voldemort/voldemort","x":567.0152,"y":-1538.6643,"size":4.009277,"color":"rgb(128,56,169)","attributes":{"watchers":"1004.0","name":"https://github.com/voldemort/voldemort","language":"Java","Component ID":"0","watchersInteger":"1004"}},
{"id":"410.0", "label":"phonegap/phonegap-start","x":827.8686,"y":-1245.9363,"size":7.1309643,"color":"rgb(245,184,0)","attributes":{"watchers":"2350.0","name":"https://github.com/phonegap/phonegap-start","language":"JavaScript","Component ID":"0","watchersInteger":"2350"}},
{"id":"411.0", "label":"sparklemotion/mechanize","x":-60.787663,"y":1039.0254,"size":4.686493,"color":"rgb(230,0,172)","attributes":{"watchers":"1296.0","name":"https://github.com/sparklemotion/mechanize","language":"Ruby","Component ID":"0","watchersInteger":"1296"}},
{"id":"412.0", "label":"assaf/zombie","x":-125.99469,"y":-54.20338,"size":4.9416084,"color":"rgb(245,184,0)","attributes":{"watchers":"1406.0","name":"https://github.com/assaf/zombie","language":"JavaScript","Component ID":"0","watchersInteger":"1406"}},
{"id":"413.0", "label":"tbranyen/backbone-boilerplate","x":-308.18442,"y":-274.72992,"size":9.102312,"color":"rgb(245,184,0)","attributes":{"watchers":"3200.0","name":"https://github.com/tbranyen/backbone-boilerplate","language":"JavaScript","Component ID":"0","watchersInteger":"3200"}},
{"id":"414.0", "label":"jashkenas/docco","x":-231.76955,"y":-148.94786,"size":5.006547,"color":"rgb(227,235,16)","attributes":{"watchers":"1434.0","name":"https://github.com/jashkenas/docco","language":"CoffeeScript","Component ID":"0","watchersInteger":"1434"}},
{"id":"415.0", "label":"jquery/jquery","x":-668.9316,"y":42.890205,"size":43.63569,"color":"rgb(245,184,0)","attributes":{"watchers":"18090.0","name":"https://github.com/jquery/jquery","language":"JavaScript","Component ID":"0","watchersInteger":"18090"}},
{"id":"416.0", "label":"fancyapps/fancyBox","x":316.63626,"y":-661.6604,"size":4.577489,"color":"rgb(245,184,0)","attributes":{"watchers":"1249.0","name":"https://github.com/fancyapps/fancyBox","language":"JavaScript","Component ID":"0","watchersInteger":"1249"}},
{"id":"417.0", "label":"creationix/nvm","x":3.7294726,"y":-258.8499,"size":4.551977,"color":"rgb(44,201,60)","attributes":{"watchers":"1238.0","name":"https://github.com/creationix/nvm","language":"Shell","Component ID":"0","watchersInteger":"1238"}},
{"id":"418.0", "label":"altercation/solarized","x":-19.928679,"y":361.4051,"size":9.529051,"color":"rgb(74,168,114)","attributes":{"watchers":"3384.0","name":"https://github.com/altercation/solarized","language":"VimL","Component ID":"0","watchersInteger":"3384"}},
{"id":"419.0", "label":"omnigroup/OmniGroup","x":910.2028,"y":-589.57745,"size":4.6888123,"color":"rgb(45,180,214)","attributes":{"watchers":"1297.0","name":"https://github.com/omnigroup/OmniGroup","language":"Objective-C","Component ID":"0","watchersInteger":"1297"}},
{"id":"420.0", "label":"cocos2d/cocos2d-x","x":1236.7916,"y":1036.4187,"size":4.067258,"color":"rgb(217,82,39)","attributes":{"watchers":"1029.0","name":"https://github.com/cocos2d/cocos2d-x","language":"C","Component ID":"0","watchersInteger":"1029"}},
{"id":"421.0", "label":"pauldix/feedzirra","x":-248.4835,"y":777.25604,"size":4.1461115,"color":"rgb(230,0,172)","attributes":{"watchers":"1063.0","name":"https://github.com/pauldix/feedzirra","language":"Ruby","Component ID":"0","watchersInteger":"1063"}},
{"id":"422.0", "label":"MacRuby/MacRuby","x":566.5694,"y":358.44366,"size":4.9694395,"color":"rgb(230,0,172)","attributes":{"watchers":"1418.0","name":"https://github.com/MacRuby/MacRuby","language":"Ruby","Component ID":"0","watchersInteger":"1418"}},
{"id":"423.0", "label":"alexreisner/geocoder","x":-638.76355,"y":1125.9512,"size":5.0622087,"color":"rgb(230,0,172)","attributes":{"watchers":"1458.0","name":"https://github.com/alexreisner/geocoder","language":"Ruby","Component ID":"0","watchersInteger":"1458"}},
{"id":"424.0", "label":"postrank-labs/goliath","x":-823.5621,"y":517.20416,"size":4.8743505,"color":"rgb(230,0,172)","attributes":{"watchers":"1377.0","name":"https://github.com/postrank-labs/goliath","language":"Ruby","Component ID":"0","watchersInteger":"1377"}},
{"id":"426.0", "label":"vitch/jScrollPane","x":208.13116,"y":-1143.7452,"size":4.0765347,"color":"rgb(245,184,0)","attributes":{"watchers":"1033.0","name":"https://github.com/vitch/jScrollPane","language":"JavaScript","Component ID":"0","watchersInteger":"1033"}},
{"id":"427.0", "label":"LearnBoost/mongoose","x":54.34948,"y":-441.92587,"size":7.794265,"color":"rgb(245,184,0)","attributes":{"watchers":"2636.0","name":"https://github.com/LearnBoost/mongoose","language":"JavaScript","Component ID":"0","watchersInteger":"2636"}},
{"id":"428.0", "label":"amatsuda/kaminari","x":-525.97943,"y":986.8631,"size":8.211727,"color":"rgb(230,0,172)","attributes":{"watchers":"2816.0","name":"https://github.com/amatsuda/kaminari","language":"Ruby","Component ID":"0","watchersInteger":"2816"}},
{"id":"429.0", "label":"NateW/obtvse","x":-839.33606,"y":-133.24861,"size":4.5357428,"color":"rgb(230,0,172)","attributes":{"watchers":"1231.0","name":"https://github.com/NateW/obtvse","language":"Ruby","Component ID":"0","watchersInteger":"1231"}},
{"id":"431.0", "label":"kriskowal/q","x":-175.64474,"y":-468.86603,"size":4.248158,"color":"rgb(245,184,0)","attributes":{"watchers":"1107.0","name":"https://github.com/kriskowal/q","language":"JavaScript","Component ID":"0","watchersInteger":"1107"}},
{"id":"432.0", "label":"kangax/fabric.js","x":-1447.7131,"y":479.69296,"size":5.175851,"color":"rgb(245,184,0)","attributes":{"watchers":"1507.0","name":"https://github.com/kangax/fabric.js","language":"JavaScript","Component ID":"0","watchersInteger":"1507"}},
{"id":"433.0", "label":"gruntjs/grunt","x":-258.19775,"y":-337.40707,"size":12.193849,"color":"rgb(245,184,0)","attributes":{"watchers":"4533.0","name":"https://github.com/gruntjs/grunt","language":"JavaScript","Component ID":"0","watchersInteger":"4533"}},
{"id":"435.0", "label":"zendframework/zf2","x":343.44815,"y":-41.682724,"size":9.914043,"color":"rgb(147,48,255)","attributes":{"watchers":"3550.0","name":"https://github.com/zendframework/zf2","language":"PHP","Component ID":"0","watchersInteger":"3550"}},
{"id":"436.0", "label":"stig/json-framework","x":883.5367,"y":337.53366,"size":8.20245,"color":"rgb(45,180,214)","attributes":{"watchers":"2812.0","name":"https://github.com/stig/json-framework","language":"Objective-C","Component ID":"0","watchersInteger":"2812"}},
{"id":"438.0", "label":"intridea/omniauth","x":-557.8715,"y":765.6145,"size":9.851424,"color":"rgb(230,0,172)","attributes":{"watchers":"3523.0","name":"https://github.com/intridea/omniauth","language":"Ruby","Component ID":"0","watchersInteger":"3523"}},
{"id":"439.0", "label":"karmi/tire","x":-95.92227,"y":1399.196,"size":4.081173,"color":"rgb(230,0,172)","attributes":{"watchers":"1035.0","name":"https://github.com/karmi/tire","language":"Ruby","Component ID":"0","watchersInteger":"1035"}},
{"id":"440.0", "label":"tombenner/nui","x":2189.859,"y":921.79126,"size":4.7815814,"color":"rgb(45,180,214)","attributes":{"watchers":"1337.0","name":"https://github.com/tombenner/nui","language":"Objective-C","Component ID":"0","watchersInteger":"1337"}},
{"id":"443.0", "label":"n1k0/casperjs","x":270.38116,"y":-196.74554,"size":4.2922235,"color":"rgb(245,184,0)","attributes":{"watchers":"1126.0","name":"https://github.com/n1k0/casperjs","language":"JavaScript","Component ID":"0","watchersInteger":"1126"}},
{"id":"444.0", "label":"daleharvey/pouchdb","x":468.4284,"y":-673.7847,"size":4.0440655,"color":"rgb(245,184,0)","attributes":{"watchers":"1019.0","name":"https://github.com/daleharvey/pouchdb","language":"JavaScript","Component ID":"0","watchersInteger":"1019"}},
{"id":"445.0", "label":"timrwood/moment","x":433.683,"y":375.86945,"size":12.58348,"color":"rgb(245,184,0)","attributes":{"watchers":"4701.0","name":"https://github.com/timrwood/moment","language":"JavaScript","Component ID":"0","watchersInteger":"4701"}},
{"id":"446.0", "label":"redis/redis-rb","x":122.20815,"y":904.09814,"size":4.767666,"color":"rgb(230,0,172)","attributes":{"watchers":"1331.0","name":"https://github.com/redis/redis-rb","language":"Ruby","Component ID":"0","watchersInteger":"1331"}},
{"id":"447.0", "label":"github/janky","x":131.42297,"y":240.08806,"size":5.3822627,"color":"rgb(230,0,172)","attributes":{"watchers":"1596.0","name":"https://github.com/github/janky","language":"Ruby","Component ID":"0","watchersInteger":"1596"}},
{"id":"448.0", "label":"visionmedia/jade","x":-106.86597,"y":-266.88022,"size":10.489214,"color":"rgb(245,184,0)","attributes":{"watchers":"3798.0","name":"https://github.com/visionmedia/jade","language":"JavaScript","Component ID":"0","watchersInteger":"3798"}},
{"id":"449.0", "label":"adobe/Source-Code-Pro","x":-1407.008,"y":-749.08887,"size":5.2431087,"color":"rgb(44,201,60)","attributes":{"watchers":"1536.0","name":"https://github.com/adobe/Source-Code-Pro","language":"Shell","Component ID":"0","watchersInteger":"1536"}},
{"id":"450.0", "label":"thomasdavis/backbonetutorials","x":-339.88544,"y":147.50977,"size":4.1345153,"color":"rgb(245,184,0)","attributes":{"watchers":"1058.0","name":"https://github.com/thomasdavis/backbonetutorials","language":"JavaScript","Component ID":"0","watchersInteger":"1058"}},
{"id":"451.0", "label":"substack/node-browserify","x":-156.09279,"y":-763.6151,"size":4.946247,"color":"rgb(245,184,0)","attributes":{"watchers":"1408.0","name":"https://github.com/substack/node-browserify","language":"JavaScript","Component ID":"0","watchersInteger":"1408"}},
{"id":"452.0", "label":"ender-js/Ender","x":-507.5073,"y":-377.97083,"size":4.753751,"color":"rgb(245,184,0)","attributes":{"watchers":"1325.0","name":"https://github.com/ender-js/Ender","language":"JavaScript","Component ID":"0","watchersInteger":"1325"}},
{"id":"453.0", "label":"carlhuda/janus","x":-782.824,"y":756.4105,"size":10.581982,"color":"rgb(74,168,114)","attributes":{"watchers":"3838.0","name":"https://github.com/carlhuda/janus","language":"VimL","Component ID":"0","watchersInteger":"3838"}},
{"id":"454.0", "label":"eternicode/bootstrap-datepicker","x":397.16928,"y":264.57358,"size":5.2060013,"color":"rgb(245,184,0)","attributes":{"watchers":"1520.0","name":"https://github.com/eternicode/bootstrap-datepicker","language":"JavaScript","Component ID":"0","watchersInteger":"1520"}},
{"id":"455.0", "label":"mojombo/god","x":305.8122,"y":552.2593,"size":4.468485,"color":"rgb(230,0,172)","attributes":{"watchers":"1202.0","name":"https://github.com/mojombo/god","language":"Ruby","Component ID":"0","watchersInteger":"1202"}},
{"id":"456.0", "label":"appMobi/jQ.Mobi","x":-206.62663,"y":479.36047,"size":4.078854,"color":"rgb(245,184,0)","attributes":{"watchers":"1034.0","name":"https://github.com/appMobi/jQ.Mobi","language":"JavaScript","Component ID":"0","watchersInteger":"1034"}},
{"id":"457.0", "label":"razorjack/quicksand","x":-1795.7246,"y":-1232.7318,"size":4.7096853,"color":"rgb(245,184,0)","attributes":{"watchers":"1306.0","name":"https://github.com/razorjack/quicksand","language":"JavaScript","Component ID":"0","watchersInteger":"1306"}},
{"id":"458.0", "label":"37signals/pow","x":-458.83862,"y":295.5645,"size":6.2589326,"color":"rgb(227,235,16)","attributes":{"watchers":"1974.0","name":"https://github.com/37signals/pow","language":"CoffeeScript","Component ID":"0","watchersInteger":"1974"}},
{"id":"460.0", "label":"rails-api/rails-api","x":-368.85297,"y":951.1587,"size":5.78349,"color":"rgb(230,0,172)","attributes":{"watchers":"1769.0","name":"https://github.com/rails-api/rails-api","language":"Ruby","Component ID":"0","watchersInteger":"1769"}},
{"id":"461.0", "label":"ipython/ipython","x":920.6108,"y":0.2836765,"size":4.500954,"color":"rgb(31,109,255)","attributes":{"watchers":"1216.0","name":"https://github.com/ipython/ipython","language":"Python","Component ID":"0","watchersInteger":"1216"}},
{"id":"462.0", "label":"boto/boto","x":901.0491,"y":-292.32367,"size":7.05211,"color":"rgb(31,109,255)","attributes":{"watchers":"2316.0","name":"https://github.com/boto/boto","language":"Python","Component ID":"0","watchersInteger":"2316"}},
{"id":"463.0", "label":"jnunemaker/httparty","x":-664.535,"y":1338.9668,"size":5.586355,"color":"rgb(230,0,172)","attributes":{"watchers":"1684.0","name":"https://github.com/jnunemaker/httparty","language":"Ruby","Component ID":"0","watchersInteger":"1684"}},
{"id":"464.0", "label":"pydata/pandas","x":1012.58514,"y":4.296209,"size":4.5960426,"color":"rgb(31,109,255)","attributes":{"watchers":"1257.0","name":"https://github.com/pydata/pandas","language":"Python","Component ID":"0","watchersInteger":"1257"}},
{"id":"465.0", "label":"rs/SDWebImage","x":1931.6324,"y":616.5398,"size":6.813229,"color":"rgb(45,180,214)","attributes":{"watchers":"2213.0","name":"https://github.com/rs/SDWebImage","language":"Objective-C","Component ID":"0","watchersInteger":"2213"}},
{"id":"467.0", "label":"rstacruz/jquery.transit","x":-282.31732,"y":667.5673,"size":6.003817,"color":"rgb(245,184,0)","attributes":{"watchers":"1864.0","name":"https://github.com/rstacruz/jquery.transit","language":"JavaScript","Component ID":"0","watchersInteger":"1864"}},
{"id":"468.0", "label":"chjj/marked","x":-104.512314,"y":-575.1928,"size":4.1043653,"color":"rgb(245,184,0)","attributes":{"watchers":"1045.0","name":"https://github.com/chjj/marked","language":"JavaScript","Component ID":"0","watchersInteger":"1045"}},
{"id":"469.0", "label":"airblade/paper_trail","x":-764.8346,"y":818.46497,"size":5.224555,"color":"rgb(230,0,172)","attributes":{"watchers":"1528.0","name":"https://github.com/airblade/paper_trail","language":"Ruby","Component ID":"0","watchersInteger":"1528"}},
{"id":"471.0", "label":"felixge/node-formidable","x":690.7776,"y":455.82083,"size":4.2296042,"color":"rgb(245,184,0)","attributes":{"watchers":"1099.0","name":"https://github.com/felixge/node-formidable","language":"JavaScript","Component ID":"0","watchersInteger":"1099"}},
{"id":"472.0", "label":"jedi4ever/veewee","x":218.69731,"y":636.98663,"size":4.825647,"color":"rgb(230,0,172)","attributes":{"watchers":"1356.0","name":"https://github.com/jedi4ever/veewee","language":"Ruby","Component ID":"0","watchersInteger":"1356"}},
{"id":"474.0", "label":"addyosmani/backbone-fundamentals","x":-519.1232,"y":-169.72731,"size":13.872974,"color":"rgb(245,184,0)","attributes":{"watchers":"5257.0","name":"https://github.com/addyosmani/backbone-fundamentals","language":"JavaScript","Component ID":"0","watchersInteger":"5257"}},
{"id":"475.0", "label":"chriso/node.io","x":-60.01678,"y":-841.695,"size":4.707366,"color":"rgb(245,184,0)","attributes":{"watchers":"1305.0","name":"https://github.com/chriso/node.io","language":"JavaScript","Component ID":"0","watchersInteger":"1305"}},
{"id":"477.0", "label":"fabpot/Silex","x":393.21725,"y":-92.987785,"size":4.87667,"color":"rgb(147,48,255)","attributes":{"watchers":"1378.0","name":"https://github.com/fabpot/Silex","language":"PHP","Component ID":"0","watchersInteger":"1378"}},
{"id":"478.0", "label":"FriendsOfSymfony/FOSUserBundle","x":442.49222,"y":-68.717445,"size":4.1577077,"color":"rgb(147,48,255)","attributes":{"watchers":"1068.0","name":"https://github.com/FriendsOfSymfony/FOSUserBundle","language":"PHP","Component ID":"0","watchersInteger":"1068"}},
{"id":"479.0", "label":"ccampbell/rainbow","x":-174.04167,"y":-545.8556,"size":5.2268744,"color":"rgb(245,184,0)","attributes":{"watchers":"1529.0","name":"https://github.com/ccampbell/rainbow","language":"JavaScript","Component ID":"0","watchersInteger":"1529"}},
{"id":"480.0", "label":"OscarGodson/EpicEditor","x":-908.34064,"y":214.59135,"size":6.2473364,"color":"rgb(245,184,0)","attributes":{"watchers":"1969.0","name":"https://github.com/OscarGodson/EpicEditor","language":"JavaScript","Component ID":"0","watchersInteger":"1969"}},
{"id":"481.0", "label":"xdissent/ievms","x":1043.2402,"y":-873.7437,"size":11.361244,"color":"rgb(44,201,60)","attributes":{"watchers":"4174.0","name":"https://github.com/xdissent/ievms","language":"Shell","Component ID":"0","watchersInteger":"4174"}},
{"id":"482.0", "label":"dhgamache/Skeleton","x":-427.6414,"y":-636.4846,"size":9.190443,"color":"rgb(245,184,0)","attributes":{"watchers":"3238.0","name":"https://github.com/dhgamache/Skeleton","language":"JavaScript","Component ID":"0","watchersInteger":"3238"}},
{"id":"483.0", "label":"bobthecow/mustache.php","x":-888.30115,"y":105.771545,"size":4.0255117,"color":"rgb(147,48,255)","attributes":{"watchers":"1011.0","name":"https://github.com/bobthecow/mustache.php","language":"PHP","Component ID":"0","watchersInteger":"1011"}},
{"id":"484.0", "label":"SteveSanderson/knockout","x":-142.09592,"y":-529.5067,"size":8.754427,"color":"rgb(245,184,0)","attributes":{"watchers":"3050.0","name":"https://github.com/SteveSanderson/knockout","language":"JavaScript","Component ID":"0","watchersInteger":"3050"}},
{"id":"485.0", "label":"pry/pry","x":-139.56868,"y":1025.4395,"size":5.4982243,"color":"rgb(230,0,172)","attributes":{"watchers":"1646.0","name":"https://github.com/pry/pry","language":"Ruby","Component ID":"0","watchersInteger":"1646"}},
{"id":"486.0", "label":"yiisoft/yii","x":466.52203,"y":-288.10938,"size":6.892083,"color":"rgb(147,48,255)","attributes":{"watchers":"2247.0","name":"https://github.com/yiisoft/yii","language":"PHP","Component ID":"0","watchersInteger":"2247"}},
{"id":"488.0", "label":"jsantell/dancer.js","x":-1678.2369,"y":362.42755,"size":4.6169157,"color":"rgb(245,184,0)","attributes":{"watchers":"1266.0","name":"https://github.com/jsantell/dancer.js","language":"JavaScript","Component ID":"0","watchersInteger":"1266"}},
{"id":"491.0", "label":"viljamis/ResponsiveSlides.js","x":-401.1865,"y":-1341.7245,"size":4.315416,"color":"rgb(245,184,0)","attributes":{"watchers":"1136.0","name":"https://github.com/viljamis/ResponsiveSlides.js","language":"JavaScript","Component ID":"0","watchersInteger":"1136"}},
{"id":"492.0", "label":"alohaeditor/Aloha-Editor","x":269.9283,"y":-569.58966,"size":4.628512,"color":"rgb(245,184,0)","attributes":{"watchers":"1271.0","name":"https://github.com/alohaeditor/Aloha-Editor","language":"JavaScript","Component ID":"0","watchersInteger":"1271"}},
{"id":"493.0", "label":"josephg/ShareJS","x":-32.39519,"y":1659.5546,"size":5.245428,"color":"rgb(245,184,0)","attributes":{"watchers":"1537.0","name":"https://github.com/josephg/ShareJS","language":"JavaScript","Component ID":"0","watchersInteger":"1537"}},
{"id":"494.0", "label":"tpope/vim-surround","x":-952.3855,"y":849.70306,"size":4.0487037,"color":"rgb(74,168,114)","attributes":{"watchers":"1021.0","name":"https://github.com/tpope/vim-surround","language":"VimL","Component ID":"0","watchersInteger":"1021"}},
{"id":"496.0", "label":"HumbleSoftware/Flotr2","x":1163.0422,"y":-942.7405,"size":5.17817,"color":"rgb(245,184,0)","attributes":{"watchers":"1508.0","name":"https://github.com/HumbleSoftware/Flotr2","language":"JavaScript","Component ID":"0","watchersInteger":"1508"}},
{"id":"497.0", "label":"maccman/macgap","x":-128.93204,"y":43.97364,"size":4.667939,"color":"rgb(45,180,214)","attributes":{"watchers":"1288.0","name":"https://github.com/maccman/macgap","language":"Objective-C","Component ID":"0","watchersInteger":"1288"}},
{"id":"498.0", "label":"laravel/laravel","x":685.3577,"y":-44.482742,"size":7.62728,"color":"rgb(147,48,255)","attributes":{"watchers":"2564.0","name":"https://github.com/laravel/laravel","language":"PHP","Component ID":"0","watchersInteger":"2564"}},
{"id":"499.0", "label":"robey/kestrel","x":1090.038,"y":-945.09827,"size":5.734786,"color":"rgb(169,118,56)","attributes":{"watchers":"1748.0","name":"https://github.com/robey/kestrel","language":"Scala","Component ID":"0","watchersInteger":"1748"}},
{"id":"500.0", "label":"philc/vimium","x":289.2327,"y":119.71996,"size":4.2156887,"color":"rgb(227,235,16)","attributes":{"watchers":"1093.0","name":"https://github.com/philc/vimium","language":"CoffeeScript","Component ID":"0","watchersInteger":"1093"}},
{"id":"502.0", "label":"mongodb/node-mongodb-native","x":103.54984,"y":-466.4811,"size":5.9899015,"color":"rgb(245,184,0)","attributes":{"watchers":"1858.0","name":"https://github.com/mongodb/node-mongodb-native","language":"JavaScript","Component ID":"0","watchersInteger":"1858"}},
{"id":"504.0", "label":"mythz/jquip","x":551.7907,"y":669.7509,"size":4.7050467,"color":"rgb(245,184,0)","attributes":{"watchers":"1304.0","name":"https://github.com/mythz/jquip","language":"JavaScript","Component ID":"0","watchersInteger":"1304"}},
{"id":"505.0", "label":"brianleroux/lawnchair","x":677.75336,"y":-648.4916,"size":4.774624,"color":"rgb(245,184,0)","attributes":{"watchers":"1334.0","name":"https://github.com/brianleroux/lawnchair","language":"JavaScript","Component ID":"0","watchersInteger":"1334"}},
{"id":"507.0", "label":"appcelerator/KitchenSink","x":309.2387,"y":-1014.7986,"size":5.326601,"color":"rgb(245,184,0)","attributes":{"watchers":"1572.0","name":"https://github.com/appcelerator/KitchenSink","language":"JavaScript","Component ID":"0","watchersInteger":"1572"}},
{"id":"509.0", "label":"jquery/qunit","x":-750.185,"y":-23.18334,"size":6.803952,"color":"rgb(245,184,0)","attributes":{"watchers":"2209.0","name":"https://github.com/jquery/qunit","language":"JavaScript","Component ID":"0","watchersInteger":"2209"}},
{"id":"510.0", "label":"tpope/vim-rails","x":-904.19415,"y":845.799,"size":5.781171,"color":"rgb(74,168,114)","attributes":{"watchers":"1768.0","name":"https://github.com/tpope/vim-rails","language":"VimL","Component ID":"0","watchersInteger":"1768"}},
{"id":"512.0", "label":"Kronuz/SublimeCodeIntel","x":1398.1586,"y":-276.67996,"size":4.918416,"color":"rgb(31,109,255)","attributes":{"watchers":"1396.0","name":"https://github.com/Kronuz/SublimeCodeIntel","language":"Python","Component ID":"0","watchersInteger":"1396"}},
{"id":"513.0", "label":"zurb/foundation","x":563.7645,"y":561.3496,"size":20.287971,"color":"rgb(230,0,172)","attributes":{"watchers":"8023.0","name":"https://github.com/zurb/foundation","language":"Ruby","Component ID":"0","watchersInteger":"8023"}},
{"id":"514.0", "label":"kohana/kohana","x":-70.3429,"y":329.55878,"size":4.4615273,"color":"rgb(147,48,255)","attributes":{"watchers":"1199.0","name":"https://github.com/kohana/kohana","language":"PHP","Component ID":"0","watchersInteger":"1199"}},
{"id":"516.0", "label":"emmetio/emmet","x":1002.77136,"y":2095.9192,"size":4.3525233,"color":"rgb(245,184,0)","attributes":{"watchers":"1152.0","name":"https://github.com/emmetio/emmet","language":"JavaScript","Component ID":"0","watchersInteger":"1152"}},
{"id":"517.0", "label":"caolan/jam","x":-135.01245,"y":-695.51184,"size":4.0046387,"color":"rgb(245,184,0)","attributes":{"watchers":"1002.0","name":"https://github.com/caolan/jam","language":"JavaScript","Component ID":"0","watchersInteger":"1002"}},
{"id":"518.0", "label":"twitter/twui","x":1821.4508,"y":199.98827,"size":6.8874445,"color":"rgb(45,180,214)","attributes":{"watchers":"2245.0","name":"https://github.com/twitter/twui","language":"Objective-C","Component ID":"0","watchersInteger":"2245"}},
{"id":"519.0", "label":"edgecase/ruby_koans","x":-1332.0887,"y":734.7029,"size":5.4796705,"color":"rgb(230,0,172)","attributes":{"watchers":"1638.0","name":"https://github.com/edgecase/ruby_koans","language":"Ruby","Component ID":"0","watchersInteger":"1638"}},
{"id":"520.0", "label":"square/cubism","x":150.44421,"y":-1070.5746,"size":5.7301474,"color":"rgb(245,184,0)","attributes":{"watchers":"1746.0","name":"https://github.com/square/cubism","language":"JavaScript","Component ID":"0","watchersInteger":"1746"}},
{"id":"521.0", "label":"jwysiwyg/jwysiwyg","x":-774.26697,"y":-476.03375,"size":4.1206,"color":"rgb(245,184,0)","attributes":{"watchers":"1052.0","name":"https://github.com/jwysiwyg/jwysiwyg","language":"JavaScript","Component ID":"0","watchersInteger":"1052"}},
{"id":"522.0", "label":"viatropos/tower","x":-603.30237,"y":-410.2078,"size":4.4406543,"color":"rgb(227,235,16)","attributes":{"watchers":"1190.0","name":"https://github.com/viatropos/tower","language":"CoffeeScript","Component ID":"0","watchersInteger":"1190"}},
{"id":"523.0", "label":"quirkey/sammy","x":124.75435,"y":-666.54803,"size":6.5210056,"color":"rgb(245,184,0)","attributes":{"watchers":"2087.0","name":"https://github.com/quirkey/sammy","language":"JavaScript","Component ID":"0","watchersInteger":"2087"}},
{"id":"524.0", "label":"symfony/symfony","x":432.89444,"y":-117.65724,"size":15.54514,"color":"rgb(147,48,255)","attributes":{"watchers":"5978.0","name":"https://github.com/symfony/symfony","language":"PHP","Component ID":"0","watchersInteger":"5978"}},
{"id":"525.0", "label":"stffn/declarative_authorization","x":-484.99695,"y":1585.5419,"size":4.227285,"color":"rgb(230,0,172)","attributes":{"watchers":"1098.0","name":"https://github.com/stffn/declarative_authorization","language":"Ruby","Component ID":"0","watchersInteger":"1098"}},
{"id":"526.0", "label":"raganwald/homoiconic","x":-313.1746,"y":587.39813,"size":4.637789,"color":"rgb(230,0,172)","attributes":{"watchers":"1275.0","name":"https://github.com/raganwald/homoiconic","language":"Ruby","Component ID":"0","watchersInteger":"1275"}},
{"id":"527.0", "label":"facebook/tornado","x":1224.534,"y":-31.098227,"size":12.813085,"color":"rgb(31,109,255)","attributes":{"watchers":"4800.0","name":"https://github.com/facebook/tornado","language":"Python","Component ID":"0","watchersInteger":"4800"}},
{"id":"528.0", "label":"soffes/sstoolkit","x":1441.2899,"y":369.83228,"size":5.5422897,"color":"rgb(45,180,214)","attributes":{"watchers":"1665.0","name":"https://github.com/soffes/sstoolkit","language":"Objective-C","Component ID":"0","watchersInteger":"1665"}},
{"id":"529.0", "label":"plataformatec/devise","x":-457.0628,"y":870.24396,"size":19.188654,"color":"rgb(230,0,172)","attributes":{"watchers":"7549.0","name":"https://github.com/plataformatec/devise","language":"Ruby","Component ID":"0","watchersInteger":"7549"}},
{"id":"530.0", "label":"cinder/Cinder","x":-232.63542,"y":-1611.4636,"size":4.067258,"color":"rgb(217,24,30)","attributes":{"watchers":"1029.0","name":"https://github.com/cinder/Cinder","language":"C++","Component ID":"0","watchersInteger":"1029"}},
{"id":"531.0", "label":"vmg/redcarpet","x":7.467332,"y":405.8288,"size":4.505593,"color":"rgb(217,82,39)","attributes":{"watchers":"1218.0","name":"https://github.com/vmg/redcarpet","language":"C","Component ID":"0","watchersInteger":"1218"}},
{"id":"532.0", "label":"stubbornella/oocss","x":812.8463,"y":-1189.0334,"size":8.9283695,"color":"rgb(153,153,153)","attributes":{"watchers":"3125.0","name":"https://github.com/stubbornella/oocss","language":"(unknown)","Component ID":"0","watchersInteger":"3125"}},
{"id":"533.0", "label":"Flotype/now","x":1114.5718,"y":-721.54834,"size":5.66289,"color":"rgb(245,184,0)","attributes":{"watchers":"1717.0","name":"https://github.com/Flotype/now","language":"JavaScript","Component ID":"0","watchersInteger":"1717"}},
{"id":"534.0", "label":"doctrine/doctrine2","x":468.86783,"y":-138.48233,"size":5.4077744,"color":"rgb(147,48,255)","attributes":{"watchers":"1607.0","name":"https://github.com/doctrine/doctrine2","language":"PHP","Component ID":"0","watchersInteger":"1607"}},
{"id":"536.0", "label":"midgetspy/Sick-Beard","x":1172.8699,"y":-598.2039,"size":6.173121,"color":"rgb(31,109,255)","attributes":{"watchers":"1937.0","name":"https://github.com/midgetspy/Sick-Beard","language":"Python","Component ID":"0","watchersInteger":"1937"}},
{"id":"537.0", "label":"yui/yui3","x":-923.02484,"y":-248.80852,"size":6.3632984,"color":"rgb(245,184,0)","attributes":{"watchers":"2019.0","name":"https://github.com/yui/yui3","language":"JavaScript","Component ID":"0","watchersInteger":"2019"}},
{"id":"538.0", "label":"nodejitsu/forever","x":-221.77414,"y":-1030.5944,"size":6.3563404,"color":"rgb(245,184,0)","attributes":{"watchers":"2016.0","name":"https://github.com/nodejitsu/forever","language":"JavaScript","Component ID":"0","watchersInteger":"2016"}},
{"id":"539.0", "label":"facebook/three20","x":1507.183,"y":553.22406,"size":18.332859,"color":"rgb(45,180,214)","attributes":{"watchers":"7180.0","name":"https://github.com/facebook/three20","language":"Objective-C","Component ID":"0","watchersInteger":"7180"}},
{"id":"540.0", "label":"facebook/folly","x":1024.9425,"y":153.57039,"size":7.50668,"color":"rgb(217,24,30)","attributes":{"watchers":"2512.0","name":"https://github.com/facebook/folly","language":"C++","Component ID":"0","watchersInteger":"2512"}},
{"id":"541.0", "label":"mxcl/homebrew","x":843.34576,"y":98.04171,"size":27.18305,"color":"rgb(230,0,172)","attributes":{"watchers":"10996.0","name":"https://github.com/mxcl/homebrew","language":"Ruby","Component ID":"0","watchersInteger":"10996"}},
{"id":"542.0", "label":"faye/faye","x":-579.14795,"y":1054.479,"size":5.4008164,"color":"rgb(245,184,0)","attributes":{"watchers":"1604.0","name":"https://github.com/faye/faye","language":"JavaScript","Component ID":"0","watchersInteger":"1604"}},
{"id":"543.0", "label":"jquery/jquery-ui","x":-743.94586,"y":3.5929196,"size":17.159327,"color":"rgb(245,184,0)","attributes":{"watchers":"6674.0","name":"https://github.com/jquery/jquery-ui","language":"JavaScript","Component ID":"0","watchersInteger":"6674"}},
{"id":"544.0", "label":"tomaz/appledoc","x":1357.5155,"y":682.3381,"size":4.496316,"color":"rgb(45,180,214)","attributes":{"watchers":"1214.0","name":"https://github.com/tomaz/appledoc","language":"Objective-C","Component ID":"0","watchersInteger":"1214"}},
{"id":"545.0", "label":"visionmedia/express","x":-153.2561,"y":-275.3142,"size":21.329308,"color":"rgb(245,184,0)","attributes":{"watchers":"8472.0","name":"https://github.com/visionmedia/express","language":"JavaScript","Component ID":"0","watchersInteger":"8472"}},
{"id":"546.0", "label":"ariya/phantomjs","x":-571.8492,"y":812.243,"size":11.428502,"color":"rgb(217,24,30)","attributes":{"watchers":"4203.0","name":"https://github.com/ariya/phantomjs","language":"C++","Component ID":"0","watchersInteger":"4203"}},
{"id":"547.0", "label":"josevalim/rails-footnotes","x":38.793102,"y":788.1902,"size":4.062619,"color":"rgb(230,0,172)","attributes":{"watchers":"1027.0","name":"https://github.com/josevalim/rails-footnotes","language":"Ruby","Component ID":"0","watchersInteger":"1027"}},
{"id":"548.0", "label":"samvermette/SVProgressHUD","x":1248.8015,"y":214.99757,"size":5.5422897,"color":"rgb(45,180,214)","attributes":{"watchers":"1665.0","name":"https://github.com/samvermette/SVProgressHUD","language":"Objective-C","Component ID":"0","watchersInteger":"1665"}},
{"id":"549.0", "label":"holman/spark","x":417.80722,"y":116.134,"size":5.621144,"color":"rgb(44,201,60)","attributes":{"watchers":"1699.0","name":"https://github.com/holman/spark","language":"Shell","Component ID":"0","watchersInteger":"1699"}},
{"id":"550.0", "label":"codeguy/php-the-right-way","x":318.74045,"y":-355.37567,"size":4.2458386,"color":"rgb(245,184,0)","attributes":{"watchers":"1106.0","name":"https://github.com/codeguy/php-the-right-way","language":"JavaScript","Component ID":"0","watchersInteger":"1106"}},
{"id":"551.0", "label":"rg3/youtube-dl","x":1356.2461,"y":-115.028496,"size":4.528785,"color":"rgb(31,109,255)","attributes":{"watchers":"1228.0","name":"https://github.com/rg3/youtube-dl","language":"Python","Component ID":"0","watchersInteger":"1228"}},
{"id":"553.0", "label":"jonikorpi/Golden-Grid-System","x":1325.6396,"y":1066.1202,"size":4.658662,"color":"rgb(245,184,0)","attributes":{"watchers":"1284.0","name":"https://github.com/jonikorpi/Golden-Grid-System","language":"JavaScript","Component ID":"0","watchersInteger":"1284"}},
{"id":"556.0", "label":"prawnpdf/prawn","x":-307.09546,"y":1190.7762,"size":5.695359,"color":"rgb(230,0,172)","attributes":{"watchers":"1731.0","name":"https://github.com/prawnpdf/prawn","language":"Ruby","Component ID":"0","watchersInteger":"1731"}},
{"id":"557.0", "label":"celery/celery","x":831.6957,"y":-268.6313,"size":5.0111856,"color":"rgb(31,109,255)","attributes":{"watchers":"1436.0","name":"https://github.com/celery/celery","language":"Python","Component ID":"0","watchersInteger":"1436"}},
{"id":"559.0", "label":"cloudhead/toto","x":-397.24414,"y":-1415.4696,"size":4.5705314,"color":"rgb(230,0,172)","attributes":{"watchers":"1246.0","name":"https://github.com/cloudhead/toto","language":"Ruby","Component ID":"0","watchersInteger":"1246"}},
{"id":"562.0", "label":"rentzsch/mogenerator","x":1229.0686,"y":1083.6307,"size":4.231923,"color":"rgb(45,180,214)","attributes":{"watchers":"1100.0","name":"https://github.com/rentzsch/mogenerator","language":"Objective-C","Component ID":"0","watchersInteger":"1100"}},
{"id":"563.0", "label":"mruby/mruby","x":-687.18353,"y":313.00827,"size":5.699998,"color":"rgb(217,82,39)","attributes":{"watchers":"1733.0","name":"https://github.com/mruby/mruby","language":"C","Component ID":"0","watchersInteger":"1733"}},
{"id":"564.0", "label":"wooga/Pocket-Island","x":1422.7104,"y":-1248.777,"size":4.0255117,"color":"rgb(245,184,0)","attributes":{"watchers":"1011.0","name":"https://github.com/wooga/Pocket-Island","language":"JavaScript","Component ID":"0","watchersInteger":"1011"}},
{"id":"565.0", "label":"csswizardry/inuit.css","x":632.466,"y":1322.5071,"size":4.960162,"color":"rgb(44,201,60)","attributes":{"watchers":"1414.0","name":"https://github.com/csswizardry/inuit.css","language":"Shell","Component ID":"0","watchersInteger":"1414"}},
{"id":"566.0", "label":"errbit/errbit","x":-306.5991,"y":946.2772,"size":4.359481,"color":"rgb(230,0,172)","attributes":{"watchers":"1155.0","name":"https://github.com/errbit/errbit","language":"Ruby","Component ID":"0","watchersInteger":"1155"}},
{"id":"567.0", "label":"medialize/URI.js","x":-495.86664,"y":-529.451,"size":5.036697,"color":"rgb(245,184,0)","attributes":{"watchers":"1447.0","name":"https://github.com/medialize/URI.js","language":"JavaScript","Component ID":"0","watchersInteger":"1447"}},
{"id":"568.0", "label":"Induction/Induction","x":1364.3726,"y":495.62198,"size":5.9365597,"color":"rgb(45,180,214)","attributes":{"watchers":"1835.0","name":"https://github.com/Induction/Induction","language":"Objective-C","Component ID":"0","watchersInteger":"1835"}},
{"id":"569.0", "label":"plataformatec/simple_form","x":-365.5754,"y":897.0166,"size":8.223323,"color":"rgb(230,0,172)","attributes":{"watchers":"2821.0","name":"https://github.com/plataformatec/simple_form","language":"Ruby","Component ID":"0","watchersInteger":"2821"}},
{"id":"570.0", "label":"thomas-mcdonald/bootstrap-sass","x":-863.207,"y":1071.4333,"size":6.530283,"color":"rgb(230,0,172)","attributes":{"watchers":"2091.0","name":"https://github.com/thomas-mcdonald/bootstrap-sass","language":"Ruby","Component ID":"0","watchersInteger":"2091"}},
{"id":"571.0", "label":"mono/mono","x":759.58234,"y":784.96454,"size":4.6633005,"color":"rgb(197,19,217)","attributes":{"watchers":"1286.0","name":"https://github.com/mono/mono","language":"C#","Component ID":"0","watchersInteger":"1286"}},
{"id":"573.0", "label":"pandamonia/BlocksKit","x":1283.423,"y":440.58704,"size":4.2713504,"color":"rgb(45,180,214)","attributes":{"watchers":"1117.0","name":"https://github.com/pandamonia/BlocksKit","language":"Objective-C","Component ID":"0","watchersInteger":"1117"}},
{"id":"574.0", "label":"ftlabs/fastclick","x":422.36575,"y":-1017.7994,"size":4.4128237,"color":"rgb(245,184,0)","attributes":{"watchers":"1178.0","name":"https://github.com/ftlabs/fastclick","language":"JavaScript","Component ID":"0","watchersInteger":"1178"}},
{"id":"576.0", "label":"toastdriven/django-haystack","x":880.67175,"y":-502.3345,"size":4.1739426,"color":"rgb(31,109,255)","attributes":{"watchers":"1075.0","name":"https://github.com/toastdriven/django-haystack","language":"Python","Component ID":"0","watchersInteger":"1075"}},
{"id":"577.0", "label":"sferik/twitter","x":-492.44113,"y":773.03516,"size":6.173121,"color":"rgb(230,0,172)","attributes":{"watchers":"1937.0","name":"https://github.com/sferik/twitter","language":"Ruby","Component ID":"0","watchersInteger":"1937"}},
{"id":"578.0", "label":"codeparty/derby","x":-123.28716,"y":-901.674,"size":5.5422897,"color":"rgb(245,184,0)","attributes":{"watchers":"1665.0","name":"https://github.com/codeparty/derby","language":"JavaScript","Component ID":"0","watchersInteger":"1665"}},
{"id":"579.0", "label":"vcr/vcr","x":-354.70886,"y":1449.4447,"size":4.109004,"color":"rgb(230,0,172)","attributes":{"watchers":"1047.0","name":"https://github.com/vcr/vcr","language":"Ruby","Component ID":"0","watchersInteger":"1047"}},
{"id":"580.0", "label":"visionmedia/mocha","x":-140.97563,"y":-229.74281,"size":6.6416063,"color":"rgb(245,184,0)","attributes":{"watchers":"2139.0","name":"https://github.com/visionmedia/mocha","language":"JavaScript","Component ID":"0","watchersInteger":"2139"}},
{"id":"581.0", "label":"ajaxorg/ace","x":-20.885838,"y":-344.13953,"size":11.389075,"color":"rgb(245,184,0)","attributes":{"watchers":"4186.0","name":"https://github.com/ajaxorg/ace","language":"JavaScript","Component ID":"0","watchersInteger":"4186"}},
{"id":"582.0", "label":"gabriel/gh-unit","x":72.325424,"y":1747.9832,"size":4.774624,"color":"rgb(45,180,214)","attributes":{"watchers":"1334.0","name":"https://github.com/gabriel/gh-unit","language":"Objective-C","Component ID":"0","watchersInteger":"1334"}},
{"id":"583.0", "label":"caolan/async","x":-143.63707,"y":-631.00726,"size":10.299036,"color":"rgb(245,184,0)","attributes":{"watchers":"3716.0","name":"https://github.com/caolan/async","language":"JavaScript","Component ID":"0","watchersInteger":"3716"}},
{"id":"584.0", "label":"lockitron/selfstarter","x":1629.72,"y":948.1445,"size":5.3080473,"color":"rgb(230,0,172)","attributes":{"watchers":"1564.0","name":"https://github.com/lockitron/selfstarter","language":"Ruby","Component ID":"0","watchersInteger":"1564"}},
{"id":"585.0", "label":"steipete/PSStackedView","x":1241.8195,"y":711.1912,"size":4.658662,"color":"rgb(45,180,214)","attributes":{"watchers":"1284.0","name":"https://github.com/steipete/PSStackedView","language":"Objective-C","Component ID":"0","watchersInteger":"1284"}},
{"id":"587.0", "label":"marijnh/CodeMirror","x":440.61337,"y":837.49615,"size":6.597541,"color":"rgb(245,184,0)","attributes":{"watchers":"2120.0","name":"https://github.com/marijnh/CodeMirror","language":"JavaScript","Component ID":"0","watchersInteger":"2120"}},
{"id":"589.0", "label":"drapergem/draper","x":-327.299,"y":980.3167,"size":4.9276934,"color":"rgb(230,0,172)","attributes":{"watchers":"1400.0","name":"https://github.com/drapergem/draper","language":"Ruby","Component ID":"0","watchersInteger":"1400"}},
{"id":"590.0", "label":"visionmedia/uikit","x":-152.65675,"y":-311.85403,"size":4.15075,"color":"rgb(245,184,0)","attributes":{"watchers":"1065.0","name":"https://github.com/visionmedia/uikit","language":"JavaScript","Component ID":"0","watchersInteger":"1065"}},
{"id":"591.0", "label":"mbostock/d3","x":149.99196,"y":-1017.2386,"size":27.565723,"color":"rgb(245,184,0)","attributes":{"watchers":"11161.0","name":"https://github.com/mbostock/d3","language":"JavaScript","Component ID":"0","watchersInteger":"11161"}},
{"id":"593.0", "label":"mozilla/rust","x":424.8858,"y":810.4648,"size":5.384582,"color":"rgb(255,96,26)","attributes":{"watchers":"1597.0","name":"https://github.com/mozilla/rust","language":"Rust","Component ID":"0","watchersInteger":"1597"}},
{"id":"594.0", "label":"cloudhead/less.js","x":-326.00006,"y":-1061.4623,"size":18.699297,"color":"rgb(245,184,0)","attributes":{"watchers":"7338.0","name":"https://github.com/cloudhead/less.js","language":"JavaScript","Component ID":"0","watchersInteger":"7338"}},
{"id":"595.0", "label":"divio/django-cms","x":867.88855,"y":-444.32214,"size":5.8553863,"color":"rgb(31,109,255)","attributes":{"watchers":"1800.0","name":"https://github.com/divio/django-cms","language":"Python","Component ID":"0","watchersInteger":"1800"}},
{"id":"596.0", "label":"ddollar/foreman","x":35.913265,"y":911.8108,"size":4.9160967,"color":"rgb(230,0,172)","attributes":{"watchers":"1395.0","name":"https://github.com/ddollar/foreman","language":"Ruby","Component ID":"0","watchersInteger":"1395"}},
{"id":"597.0", "label":"DmitryBaranovskiy/raphael","x":-792.8045,"y":-784.7995,"size":12.481434,"color":"rgb(245,184,0)","attributes":{"watchers":"4657.0","name":"https://github.com/DmitryBaranovskiy/raphael","language":"JavaScript","Component ID":"0","watchersInteger":"4657"}},
{"id":"599.0", "label":"twitter/bootstrap","x":-328.48337,"y":-494.602,"size":100.0,"color":"rgb(245,184,0)","attributes":{"watchers":"42393.0","name":"https://github.com/twitter/bootstrap","language":"JavaScript","Component ID":"0","watchersInteger":"42393"}},
{"id":"600.0", "label":"jnunemaker/mongomapper","x":-701.69885,"y":1342.7123,"size":5.1109123,"color":"rgb(230,0,172)","attributes":{"watchers":"1479.0","name":"https://github.com/jnunemaker/mongomapper","language":"Ruby","Component ID":"0","watchersInteger":"1479"}},
{"id":"601.0", "label":"Modernizr/Modernizr","x":-610.6794,"y":-266.65097,"size":19.979515,"color":"rgb(245,184,0)","attributes":{"watchers":"7890.0","name":"https://github.com/Modernizr/Modernizr","language":"JavaScript","Component ID":"0","watchersInteger":"7890"}},
{"id":"603.0", "label":"msgpack/msgpack","x":9.479104,"y":771.9271,"size":4.197135,"color":"rgb(217,24,30)","attributes":{"watchers":"1085.0","name":"https://github.com/msgpack/msgpack","language":"C++","Component ID":"0","watchersInteger":"1085"}},
{"id":"605.0", "label":"visionmedia/git-extras","x":-88.65958,"y":-298.9326,"size":5.8577056,"color":"rgb(44,201,60)","attributes":{"watchers":"1801.0","name":"https://github.com/visionmedia/git-extras","language":"Shell","Component ID":"0","watchersInteger":"1801"}},
{"id":"607.0", "label":"0xced/UIKit-Artwork-Extractor","x":1677.9294,"y":522.6301,"size":4.6748967,"color":"rgb(45,180,214)","attributes":{"watchers":"1291.0","name":"https://github.com/0xced/UIKit-Artwork-Extractor","language":"Objective-C","Component ID":"0","watchersInteger":"1291"}},
{"id":"609.0", "label":"goagent/goagent","x":1238.7731,"y":-281.41217,"size":4.4939966,"color":"rgb(31,109,255)","attributes":{"watchers":"1213.0","name":"https://github.com/goagent/goagent","language":"Python","Component ID":"0","watchersInteger":"1213"}},
{"id":"610.0", "label":"CloudMade/Leaflet","x":469.0237,"y":496.07083,"size":9.805039,"color":"rgb(245,184,0)","attributes":{"watchers":"3503.0","name":"https://github.com/CloudMade/Leaflet","language":"JavaScript","Component ID":"0","watchersInteger":"3503"}},
{"id":"611.0", "label":"fuel/fuel","x":331.61102,"y":-396.6788,"size":4.45457,"color":"rgb(147,48,255)","attributes":{"watchers":"1196.0","name":"https://github.com/fuel/fuel","language":"PHP","Component ID":"0","watchersInteger":"1196"}},
{"id":"612.0", "label":"nathanmarz/storm","x":572.20087,"y":-1170.7068,"size":12.808446,"color":"rgb(128,56,169)","attributes":{"watchers":"4798.0","name":"https://github.com/nathanmarz/storm","language":"Java","Component ID":"0","watchersInteger":"4798"}},
{"id":"613.0", "label":"svenfuchs/rails-i18n","x":-57.084557,"y":887.01,"size":5.3590703,"color":"rgb(230,0,172)","attributes":{"watchers":"1586.0","name":"https://github.com/svenfuchs/rails-i18n","language":"Ruby","Component ID":"0","watchersInteger":"1586"}},
{"id":"614.0", "label":"jhollingworth/bootstrap-wysihtml5","x":313.6499,"y":1063.8724,"size":6.5882635,"color":"rgb(245,184,0)","attributes":{"watchers":"2116.0","name":"https://github.com/jhollingworth/bootstrap-wysihtml5","language":"JavaScript","Component ID":"0","watchersInteger":"2116"}},
{"id":"615.0", "label":"mde/geddy","x":-828.1656,"y":222.78654,"size":4.5334234,"color":"rgb(245,184,0)","attributes":{"watchers":"1230.0","name":"https://github.com/mde/geddy","language":"JavaScript","Component ID":"0","watchersInteger":"1230"}},
{"id":"616.0", "label":"mongoid/mongoid","x":-298.5181,"y":707.9693,"size":7.2817144,"color":"rgb(230,0,172)","attributes":{"watchers":"2415.0","name":"https://github.com/mongoid/mongoid","language":"Ruby","Component ID":"0","watchersInteger":"2415"}},
{"id":"617.0", "label":"mishoo/UglifyJS","x":316.472,"y":61.993458,"size":9.853744,"color":"rgb(245,184,0)","attributes":{"watchers":"3524.0","name":"https://github.com/mishoo/UglifyJS","language":"JavaScript","Component ID":"0","watchersInteger":"3524"}},
{"id":"618.0", "label":"nodejitsu/node-http-proxy","x":-216.38129,"y":-993.1272,"size":5.266301,"color":"rgb(245,184,0)","attributes":{"watchers":"1546.0","name":"https://github.com/nodejitsu/node-http-proxy","language":"JavaScript","Component ID":"0","watchersInteger":"1546"}},
{"id":"619.0", "label":"thoughtbot/shoulda","x":-701.1994,"y":1120.1124,"size":4.7723045,"color":"rgb(230,0,172)","attributes":{"watchers":"1333.0","name":"https://github.com/thoughtbot/shoulda","language":"Ruby","Component ID":"0","watchersInteger":"1333"}},
{"id":"620.0", "label":"jquery/jquery-mobile","x":-811.8055,"y":-13.952772,"size":19.286062,"color":"rgb(245,184,0)","attributes":{"watchers":"7591.0","name":"https://github.com/jquery/jquery-mobile","language":"JavaScript","Component ID":"0","watchersInteger":"7591"}},
{"id":"621.0", "label":"angular/angular.js","x":-533.92566,"y":-333.10574,"size":14.587297,"color":"rgb(245,184,0)","attributes":{"watchers":"5565.0","name":"https://github.com/angular/angular.js","language":"JavaScript","Component ID":"0","watchersInteger":"5565"}},
{"id":"622.0", "label":"xing/wysihtml5","x":291.12262,"y":1023.7219,"size":11.641871,"color":"rgb(245,184,0)","attributes":{"watchers":"4295.0","name":"https://github.com/xing/wysihtml5","language":"JavaScript","Component ID":"0","watchersInteger":"4295"}},
{"id":"623.0", "label":"MugunthKumar/MKNetworkKit","x":2026.9413,"y":586.3685,"size":4.8905854,"color":"rgb(45,180,214)","attributes":{"watchers":"1384.0","name":"https://github.com/MugunthKumar/MKNetworkKit","language":"Objective-C","Component ID":"0","watchersInteger":"1384"}},
{"id":"625.0", "label":"mperham/sidekiq","x":-161.68306,"y":927.0357,"size":6.3702555,"color":"rgb(230,0,172)","attributes":{"watchers":"2022.0","name":"https://github.com/mperham/sidekiq","language":"Ruby","Component ID":"0","watchersInteger":"2022"}},
{"id":"626.0", "label":"mitsuhiko/flask","x":957.5386,"y":-207.67252,"size":12.154423,"color":"rgb(31,109,255)","attributes":{"watchers":"4516.0","name":"https://github.com/mitsuhiko/flask","language":"Python","Component ID":"0","watchersInteger":"4516"}},
{"id":"628.0", "label":"ryanb/nifty-generators","x":-487.09567,"y":1389.5043,"size":6.1939945,"color":"rgb(230,0,172)","attributes":{"watchers":"1946.0","name":"https://github.com/ryanb/nifty-generators","language":"Ruby","Component ID":"0","watchersInteger":"1946"}},
{"id":"630.0", "label":"twitter/hogan.js","x":-297.83643,"y":-636.41504,"size":7.1379223,"color":"rgb(245,184,0)","attributes":{"watchers":"2353.0","name":"https://github.com/twitter/hogan.js","language":"JavaScript","Component ID":"0","watchersInteger":"2353"}},
{"id":"631.0", "label":"jrburke/requirejs","x":96.18821,"y":-563.9145,"size":8.448288,"color":"rgb(245,184,0)","attributes":{"watchers":"2918.0","name":"https://github.com/jrburke/requirejs","language":"JavaScript","Component ID":"0","watchersInteger":"2918"}},
{"id":"633.0", "label":"marionettejs/backbone.marionette","x":-399.0178,"y":-117.97933,"size":5.9388785,"color":"rgb(245,184,0)","attributes":{"watchers":"1836.0","name":"https://github.com/marionettejs/backbone.marionette","language":"JavaScript","Component ID":"0","watchersInteger":"1836"}},
{"id":"634.0", "label":"mikeal/request","x":-55.114315,"y":-581.49915,"size":6.2171865,"color":"rgb(245,184,0)","attributes":{"watchers":"1956.0","name":"https://github.com/mikeal/request","language":"JavaScript","Component ID":"0","watchersInteger":"1956"}},
{"id":"635.0", "label":"kennethreitz/python-guide","x":942.9927,"y":-172.44905,"size":5.6281013,"color":"rgb(31,109,255)","attributes":{"watchers":"1702.0","name":"https://github.com/kennethreitz/python-guide","language":"Python","Component ID":"0","watchersInteger":"1702"}},
{"id":"638.0", "label":"kumarnitin/RedisLive","x":643.3926,"y":1438.735,"size":4.6006813,"color":"rgb(245,184,0)","attributes":{"watchers":"1259.0","name":"https://github.com/kumarnitin/RedisLive","language":"JavaScript","Component ID":"0","watchersInteger":"1259"}},
{"id":"639.0", "label":"davatron5000/FitVids.js","x":214.74934,"y":-525.78894,"size":4.985674,"color":"rgb(245,184,0)","attributes":{"watchers":"1425.0","name":"https://github.com/davatron5000/FitVids.js","language":"JavaScript","Component ID":"0","watchersInteger":"1425"}},
{"id":"640.0", "label":"jquery/sizzle","x":-665.2226,"y":120.040016,"size":6.6763945,"color":"rgb(245,184,0)","attributes":{"watchers":"2154.0","name":"https://github.com/jquery/sizzle","language":"JavaScript","Component ID":"0","watchersInteger":"2154"}},
{"id":"641.0", "label":"fgnass/spin.js","x":-518.8451,"y":-691.8406,"size":11.384437,"color":"rgb(245,184,0)","attributes":{"watchers":"4184.0","name":"https://github.com/fgnass/spin.js","language":"JavaScript","Component ID":"0","watchersInteger":"4184"}},
{"id":"642.0", "label":"LearnBoost/socket.io-client","x":-6.366247,"y":-483.188,"size":5.9365597,"color":"rgb(245,184,0)","attributes":{"watchers":"1835.0","name":"https://github.com/LearnBoost/socket.io-client","language":"JavaScript","Component ID":"0","watchersInteger":"1835"}},
{"id":"643.0", "label":"flot/flot","x":314.09076,"y":957.6185,"size":5.069166,"color":"rgb(245,184,0)","attributes":{"watchers":"1461.0","name":"https://github.com/flot/flot","language":"JavaScript","Component ID":"0","watchersInteger":"1461"}},
{"id":"644.0", "label":"jruby/jruby","x":-132.67546,"y":872.564,"size":4.475443,"color":"rgb(230,0,172)","attributes":{"watchers":"1205.0","name":"https://github.com/jruby/jruby","language":"Ruby","Component ID":"0","watchersInteger":"1205"}},
{"id":"646.0", "label":"sergeche/emmet-sublime","x":991.80145,"y":2078.0784,"size":4.2458386,"color":"rgb(245,184,0)","attributes":{"watchers":"1106.0","name":"https://github.com/sergeche/emmet-sublime","language":"JavaScript","Component ID":"0","watchersInteger":"1106"}},
{"id":"647.0", "label":"wycats/handlebars.js","x":-470.16843,"y":460.55728,"size":10.07407,"color":"rgb(245,184,0)","attributes":{"watchers":"3619.0","name":"https://github.com/wycats/handlebars.js","language":"JavaScript","Component ID":"0","watchersInteger":"3619"}},
{"id":"648.0", "label":"eventmachine/eventmachine","x":-2.470772,"y":658.6245,"size":6.1661634,"color":"rgb(230,0,172)","attributes":{"watchers":"1934.0","name":"https://github.com/eventmachine/eventmachine","language":"Ruby","Component ID":"0","watchersInteger":"1934"}},
{"id":"649.0", "label":"burke/zeus","x":-715.8653,"y":636.63684,"size":4.350204,"color":"rgb(255,120,99)","attributes":{"watchers":"1151.0","name":"https://github.com/burke/zeus","language":"Go","Component ID":"0","watchersInteger":"1151"}},
{"id":"651.0", "label":"gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5","x":3322.703,"y":910.63806,"size":4.1669846,"color":"rgb(45,180,214)","attributes":{"watchers":"1072.0","name":"https://github.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5","language":"Objective-C","Component ID":"0","watchersInteger":"1072"}},
{"id":"652.0", "label":"chriskempson/tomorrow-theme","x":-920.4862,"y":5.850334,"size":10.883482,"color":"rgb(74,168,114)","attributes":{"watchers":"3968.0","name":"https://github.com/chriskempson/tomorrow-theme","language":"VimL","Component ID":"0","watchersInteger":"3968"}},
{"id":"653.0", "label":"einars/js-beautify","x":-1218.3926,"y":-562.696,"size":4.378035,"color":"rgb(245,184,0)","attributes":{"watchers":"1163.0","name":"https://github.com/einars/js-beautify","language":"JavaScript","Component ID":"0","watchersInteger":"1163"}},
{"id":"654.0", "label":"gmoledina/GMGridView","x":1273.4448,"y":746.839,"size":5.2500663,"color":"rgb(45,180,214)","attributes":{"watchers":"1539.0","name":"https://github.com/gmoledina/GMGridView","language":"Objective-C","Component ID":"0","watchersInteger":"1539"}},
{"id":"656.0", "label":"facebook/phabricator","x":802.1401,"y":432.82605,"size":4.985674,"color":"rgb(147,48,255)","attributes":{"watchers":"1425.0","name":"https://github.com/facebook/phabricator","language":"PHP","Component ID":"0","watchersInteger":"1425"}},
{"id":"657.0", "label":"facebook/hiphop-php","x":670.9073,"y":-157.43509,"size":12.335322,"color":"rgb(217,24,30)","attributes":{"watchers":"4594.0","name":"https://github.com/facebook/hiphop-php","language":"C++","Component ID":"0","watchersInteger":"4594"}},
{"id":"659.0", "label":"AutoMapper/AutoMapper","x":-963.5863,"y":1529.8633,"size":4.259754,"color":"rgb(197,19,217)","attributes":{"watchers":"1112.0","name":"https://github.com/AutoMapper/AutoMapper","language":"C#","Component ID":"0","watchersInteger":"1112"}},
{"id":"660.0", "label":"square/SocketRocket","x":1342.5435,"y":557.2709,"size":4.336289,"color":"rgb(31,109,255)","attributes":{"watchers":"1145.0","name":"https://github.com/square/SocketRocket","language":"Python","Component ID":"0","watchersInteger":"1145"}},
{"id":"661.0", "label":"RestKit/RestKit","x":1187.5387,"y":422.59894,"size":10.002174,"color":"rgb(45,180,214)","attributes":{"watchers":"3588.0","name":"https://github.com/RestKit/RestKit","language":"Objective-C","Component ID":"0","watchersInteger":"3588"}},
{"id":"662.0", "label":"spree/spree","x":-416.60095,"y":938.55597,"size":9.900128,"color":"rgb(230,0,172)","attributes":{"watchers":"3544.0","name":"https://github.com/spree/spree","language":"Ruby","Component ID":"0","watchersInteger":"3544"}},
{"id":"664.0", "label":"bergie/create","x":411.99094,"y":-420.7303,"size":4.800135,"color":"rgb(245,184,0)","attributes":{"watchers":"1345.0","name":"https://github.com/bergie/create","language":"JavaScript","Component ID":"0","watchersInteger":"1345"}},
{"id":"665.0", "label":"defunkt/jquery-pjax","x":-226.12805,"y":168.4144,"size":14.130409,"color":"rgb(245,184,0)","attributes":{"watchers":"5368.0","name":"https://github.com/defunkt/jquery-pjax","language":"JavaScript","Component ID":"0","watchersInteger":"5368"}},
{"id":"667.0", "label":"FooBarWidget/passenger","x":127.73597,"y":944.31573,"size":5.0204625,"color":"rgb(217,24,30)","attributes":{"watchers":"1440.0","name":"https://github.com/FooBarWidget/passenger","language":"C++","Component ID":"0","watchersInteger":"1440"}},
{"id":"668.0", "label":"farbrausch/fr_public","x":-572.4303,"y":1132.2452,"size":4.0556617,"color":"rgb(217,24,30)","attributes":{"watchers":"1024.0","name":"https://github.com/farbrausch/fr_public","language":"C++","Component ID":"0","watchersInteger":"1024"}},
{"id":"669.0", "label":"thoughtbot/laptop","x":-727.474,"y":1082.7822,"size":4.0046387,"color":"rgb(44,201,60)","attributes":{"watchers":"1002.0","name":"https://github.com/thoughtbot/laptop","language":"Shell","Component ID":"0","watchersInteger":"1002"}},
{"id":"672.0", "label":"defunkt/mustache","x":-186.20602,"y":215.15186,"size":5.076124,"color":"rgb(230,0,172)","attributes":{"watchers":"1464.0","name":"https://github.com/defunkt/mustache","language":"Ruby","Component ID":"0","watchersInteger":"1464"}},
{"id":"673.0", "label":"mojombo/chronic","x":-485.55573,"y":1331.955,"size":4.3942695,"color":"rgb(230,0,172)","attributes":{"watchers":"1170.0","name":"https://github.com/mojombo/chronic","language":"Ruby","Component ID":"0","watchersInteger":"1170"}},
{"id":"674.0", "label":"malarkey/320andup","x":790.3205,"y":-1303.2545,"size":5.8090014,"color":"rgb(245,184,0)","attributes":{"watchers":"1780.0","name":"https://github.com/malarkey/320andup","language":"JavaScript","Component ID":"0","watchersInteger":"1780"}},
{"id":"675.0", "label":"pyrocms/pyrocms","x":281.48767,"y":-380.91534,"size":4.5125504,"color":"rgb(147,48,255)","attributes":{"watchers":"1221.0","name":"https://github.com/pyrocms/pyrocms","language":"PHP","Component ID":"0","watchersInteger":"1221"}},
{"id":"676.0", "label":"django-debug-toolbar/django-debug-toolbar","x":755.43536,"y":-453.43698,"size":6.1939945,"color":"rgb(31,109,255)","attributes":{"watchers":"1946.0","name":"https://github.com/django-debug-toolbar/django-debug-toolbar","language":"Python","Component ID":"0","watchersInteger":"1946"}},
{"id":"678.0", "label":"libgit2/libgit2","x":92.568214,"y":278.4349,"size":4.199454,"color":"rgb(217,82,39)","attributes":{"watchers":"1086.0","name":"https://github.com/libgit2/libgit2","language":"C","Component ID":"0","watchersInteger":"1086"}},
{"id":"679.0", "label":"darcyclarke/Front-end-Developer-Interview-Questions","x":-741.9291,"y":-502.91376,"size":4.821008,"color":"rgb(153,153,153)","attributes":{"watchers":"1354.0","name":"https://github.com/darcyclarke/Front-end-Developer-Interview-Questions","language":"(unknown)","Component ID":"0","watchersInteger":"1354"}},
{"id":"680.0", "label":"trogdoro/xiki","x":-99.03935,"y":1242.2775,"size":4.438335,"color":"rgb(230,0,172)","attributes":{"watchers":"1189.0","name":"https://github.com/trogdoro/xiki","language":"Ruby","Component ID":"0","watchersInteger":"1189"}},
{"id":"681.0", "label":"airbnb/infinity","x":27.686846,"y":-925.0691,"size":4.9021816,"color":"rgb(245,184,0)","attributes":{"watchers":"1389.0","name":"https://github.com/airbnb/infinity","language":"JavaScript","Component ID":"0","watchersInteger":"1389"}},
{"id":"682.0", "label":"mathiasbynens/dotfiles","x":-577.08856,"y":-113.54473,"size":13.548282,"color":"rgb(147,48,255)","attributes":{"watchers":"5117.0","name":"https://github.com/mathiasbynens/dotfiles","language":"PHP","Component ID":"0","watchersInteger":"5117"}},
{"id":"684.0", "label":"andymatuschak/Sparkle","x":1808.0497,"y":1248.4539,"size":4.037108,"color":"rgb(45,180,214)","attributes":{"watchers":"1016.0","name":"https://github.com/andymatuschak/Sparkle","language":"Objective-C","Component ID":"0","watchersInteger":"1016"}},
{"id":"685.0", "label":"codeguy/Slim","x":332.1465,"y":-369.9111,"size":6.2566137,"color":"rgb(147,48,255)","attributes":{"watchers":"1973.0","name":"https://github.com/codeguy/Slim","language":"PHP","Component ID":"0","watchersInteger":"1973"}},
{"id":"686.0", "label":"kjbekkelund/writings","x":-474.77393,"y":-142.18858,"size":4.278308,"color":"rgb(153,153,153)","attributes":{"watchers":"1120.0","name":"https://github.com/kjbekkelund/writings","language":"(unknown)","Component ID":"0","watchersInteger":"1120"}},
{"id":"688.0", "label":"technomancy/emacs-starter-kit","x":28.892803,"y":862.4656,"size":6.81091,"color":"rgb(56,169,138)","attributes":{"watchers":"2212.0","name":"https://github.com/technomancy/emacs-starter-kit","language":"Emacs Lisp","Component ID":"0","watchersInteger":"2212"}},
{"id":"689.0", "label":"zencoder/video-js","x":1679.9421,"y":-1167.9696,"size":6.412002,"color":"rgb(245,184,0)","attributes":{"watchers":"2040.0","name":"https://github.com/zencoder/video-js","language":"JavaScript","Component ID":"0","watchersInteger":"2040"}},
{"id":"691.0", "label":"leah/PullToRefresh","x":1186.2562,"y":1127.4845,"size":5.6025896,"color":"rgb(45,180,214)","attributes":{"watchers":"1691.0","name":"https://github.com/leah/PullToRefresh","language":"Objective-C","Component ID":"0","watchersInteger":"1691"}},
{"id":"692.0", "label":"janl/mustache.js","x":-78.71975,"y":-1087.4257,"size":11.595488,"color":"rgb(245,184,0)","attributes":{"watchers":"4275.0","name":"https://github.com/janl/mustache.js","language":"JavaScript","Component ID":"0","watchersInteger":"4275"}},
{"id":"693.0", "label":"gmarik/vundle","x":854.4881,"y":754.30865,"size":6.4514294,"color":"rgb(74,168,114)","attributes":{"watchers":"2057.0","name":"https://github.com/gmarik/vundle","language":"VimL","Component ID":"0","watchersInteger":"2057"}},
{"id":"694.0", "label":"jondot/graphene","x":-985.6585,"y":718.54144,"size":5.502863,"color":"rgb(227,235,16)","attributes":{"watchers":"1648.0","name":"https://github.com/jondot/graphene","language":"CoffeeScript","Component ID":"0","watchersInteger":"1648"}},
{"id":"695.0", "label":"gravityonmars/Balloons.IO","x":-1197.534,"y":103.29472,"size":4.227285,"color":"rgb(245,184,0)","attributes":{"watchers":"1098.0","name":"https://github.com/gravityonmars/Balloons.IO","language":"JavaScript","Component ID":"0","watchersInteger":"1098"}},
{"id":"699.0", "label":"jaredhanson/passport","x":-1189.7815,"y":-43.161026,"size":4.366439,"color":"rgb(245,184,0)","attributes":{"watchers":"1158.0","name":"https://github.com/jaredhanson/passport","language":"JavaScript","Component ID":"0","watchersInteger":"1158"}},
{"id":"701.0", "label":"LearnBoost/stylus","x":-132.98705,"y":-324.0474,"size":7.5600224,"color":"rgb(245,184,0)","attributes":{"watchers":"2535.0","name":"https://github.com/LearnBoost/stylus","language":"JavaScript","Component ID":"0","watchersInteger":"2535"}},
{"id":"702.0", "label":"mperham/dalli","x":-189.70439,"y":980.55133,"size":4.7514315,"color":"rgb(230,0,172)","attributes":{"watchers":"1324.0","name":"https://github.com/mperham/dalli","language":"Ruby","Component ID":"0","watchersInteger":"1324"}},
{"id":"703.0", "label":"websanova/js-url","x":-660.7987,"y":-943.33014,"size":4.1437926,"color":"rgb(245,184,0)","attributes":{"watchers":"1062.0","name":"https://github.com/websanova/js-url","language":"JavaScript","Component ID":"0","watchersInteger":"1062"}},
{"id":"705.0", "label":"github/android","x":509.86792,"y":211.17513,"size":5.352113,"color":"rgb(128,56,169)","attributes":{"watchers":"1583.0","name":"https://github.com/github/android","language":"Java","Component ID":"0","watchersInteger":"1583"}},
{"id":"706.0", "label":"HPNeo/gmaps","x":557.4668,"y":-948.4699,"size":9.318001,"color":"rgb(245,184,0)","attributes":{"watchers":"3293.0","name":"https://github.com/HPNeo/gmaps","language":"JavaScript","Component ID":"0","watchersInteger":"3293"}},
{"id":"707.0", "label":"ajaxorg/cloud9","x":-23.711714,"y":-380.2947,"size":9.95347,"color":"rgb(245,184,0)","attributes":{"watchers":"3567.0","name":"https://github.com/ajaxorg/cloud9","language":"JavaScript","Component ID":"0","watchersInteger":"3567"}},
{"id":"708.0", "label":"NancyFx/Nancy","x":-545.8182,"y":-855.2938,"size":4.510231,"color":"rgb(197,19,217)","attributes":{"watchers":"1220.0","name":"https://github.com/NancyFx/Nancy","language":"C#","Component ID":"0","watchersInteger":"1220"}},
{"id":"709.0", "label":"rwldrn/idiomatic.js","x":-654.1854,"y":-83.57199,"size":8.6547,"color":"rgb(245,184,0)","attributes":{"watchers":"3007.0","name":"https://github.com/rwldrn/idiomatic.js","language":"JavaScript","Component ID":"0","watchersInteger":"3007"}},
{"id":"710.0", "label":"tpope/vim-fugitive","x":-888.76184,"y":826.8888,"size":7.490445,"color":"rgb(74,168,114)","attributes":{"watchers":"2505.0","name":"https://github.com/tpope/vim-fugitive","language":"VimL","Component ID":"0","watchersInteger":"2505"}},
{"id":"711.0", "label":"thoughtbot/paperclip","x":-620.4605,"y":997.4001,"size":12.592757,"color":"rgb(230,0,172)","attributes":{"watchers":"4705.0","name":"https://github.com/thoughtbot/paperclip","language":"Ruby","Component ID":"0","watchersInteger":"4705"}},
{"id":"712.0", "label":"norman/friendly_id","x":-578.9587,"y":854.1658,"size":5.9968596,"color":"rgb(230,0,172)","attributes":{"watchers":"1861.0","name":"https://github.com/norman/friendly_id","language":"Ruby","Component ID":"0","watchersInteger":"1861"}},
{"id":"713.0", "label":"thoughtbot/bourbon","x":-776.3877,"y":1105.199,"size":5.7974052,"color":"rgb(230,0,172)","attributes":{"watchers":"1775.0","name":"https://github.com/thoughtbot/bourbon","language":"Ruby","Component ID":"0","watchersInteger":"1775"}},
{"id":"714.0", "label":"happyworm/jPlayer","x":190.58891,"y":-1227.0898,"size":5.3242817,"color":"rgb(245,184,0)","attributes":{"watchers":"1571.0","name":"https://github.com/happyworm/jPlayer","language":"JavaScript","Component ID":"0","watchersInteger":"1571"}},
{"id":"715.0", "label":"kstenerud/iOS-Universal-Framework","x":1699.6876,"y":1715.873,"size":4.5195084,"color":"rgb(44,201,60)","attributes":{"watchers":"1224.0","name":"https://github.com/kstenerud/iOS-Universal-Framework","language":"Shell","Component ID":"0","watchersInteger":"1224"}},
{"id":"716.0", "label":"senchalabs/jQTouch","x":-1660.8164,"y":-1121.3365,"size":7.4579763,"color":"rgb(245,184,0)","attributes":{"watchers":"2491.0","name":"https://github.com/senchalabs/jQTouch","language":"JavaScript","Component ID":"0","watchersInteger":"2491"}},
{"id":"717.0", "label":"scottjehl/picturefill","x":-849.9484,"y":-35.383644,"size":4.7978163,"color":"rgb(245,184,0)","attributes":{"watchers":"1344.0","name":"https://github.com/scottjehl/picturefill","language":"JavaScript","Component ID":"0","watchersInteger":"1344"}},
{"id":"718.0", "label":"buymeasoda/soda-theme","x":-69.80102,"y":-1180.3418,"size":6.47926,"color":"rgb(153,153,153)","attributes":{"watchers":"2069.0","name":"https://github.com/buymeasoda/soda-theme","language":"(unknown)","Component ID":"0","watchersInteger":"2069"}},
{"id":"719.0", "label":"jejacks0n/mercury","x":77.33429,"y":1366.6106,"size":4.800135,"color":"rgb(245,184,0)","attributes":{"watchers":"1345.0","name":"https://github.com/jejacks0n/mercury","language":"JavaScript","Component ID":"0","watchersInteger":"1345"}},
{"id":"720.0", "label":"nostalgiaz/bootstrap-toggle-buttons","x":-790.94006,"y":-1008.78,"size":4.257435,"color":"rgb(245,184,0)","attributes":{"watchers":"1111.0","name":"https://github.com/nostalgiaz/bootstrap-toggle-buttons","language":"JavaScript","Component ID":"0","watchersInteger":"1111"}},
{"id":"721.0", "label":"kripken/emscripten","x":459.5891,"y":805.809,"size":7.7409225,"color":"rgb(245,184,0)","attributes":{"watchers":"2613.0","name":"https://github.com/kripken/emscripten","language":"JavaScript","Component ID":"0","watchersInteger":"2613"}},
{"id":"722.0", "label":"EllisLab/CodeIgniter","x":276.65988,"y":-350.47192,"size":12.919769,"color":"rgb(147,48,255)","attributes":{"watchers":"4846.0","name":"https://github.com/EllisLab/CodeIgniter","language":"PHP","Component ID":"0","watchersInteger":"4846"}},
{"id":"724.0", "label":"facebook/facebook-php-sdk","x":1351.7397,"y":-487.25778,"size":5.7695746,"color":"rgb(147,48,255)","attributes":{"watchers":"1763.0","name":"https://github.com/facebook/facebook-php-sdk","language":"PHP","Component ID":"0","watchersInteger":"1763"}},
{"id":"725.0", "label":"binarylogic/searchlogic","x":-431.53265,"y":1637.7708,"size":4.809412,"color":"rgb(230,0,172)","attributes":{"watchers":"1349.0","name":"https://github.com/binarylogic/searchlogic","language":"Ruby","Component ID":"0","watchersInteger":"1349"}},
{"id":"727.0", "label":"getpelican/pelican","x":1063.6222,"y":-405.56622,"size":4.626193,"color":"rgb(31,109,255)","attributes":{"watchers":"1270.0","name":"https://github.com/getpelican/pelican","language":"Python","Component ID":"0","watchersInteger":"1270"}},
{"id":"728.0", "label":"sproutcore/sproutcore","x":-371.35284,"y":440.06827,"size":5.9504747,"color":"rgb(245,184,0)","attributes":{"watchers":"1841.0","name":"https://github.com/sproutcore/sproutcore","language":"JavaScript","Component ID":"0","watchersInteger":"1841"}},
{"id":"729.0", "label":"simsalabim/sisyphus","x":532.56476,"y":798.3622,"size":4.2806273,"color":"rgb(245,184,0)","attributes":{"watchers":"1121.0","name":"https://github.com/simsalabim/sisyphus","language":"JavaScript","Component ID":"0","watchersInteger":"1121"}},
{"id":"730.0", "label":"meskyanichi/backup","x":-654.9431,"y":715.08203,"size":6.23574,"color":"rgb(230,0,172)","attributes":{"watchers":"1964.0","name":"https://github.com/meskyanichi/backup","language":"Ruby","Component ID":"0","watchersInteger":"1964"}},
{"id":"731.0", "label":"chaplinjs/chaplin","x":-166.77843,"y":-165.52974,"size":5.384582,"color":"rgb(227,235,16)","attributes":{"watchers":"1597.0","name":"https://github.com/chaplinjs/chaplin","language":"CoffeeScript","Component ID":"0","watchersInteger":"1597"}},
{"id":"732.0", "label":"LearnBoost/socket.io","x":7.3659477,"y":-442.46304,"size":18.114851,"color":"rgb(245,184,0)","attributes":{"watchers":"7086.0","name":"https://github.com/LearnBoost/socket.io","language":"JavaScript","Component ID":"0","watchersInteger":"7086"}},
{"id":"733.0", "label":"magicalpanda/MagicalRecord","x":951.2173,"y":861.4508,"size":6.7761216,"color":"rgb(45,180,214)","attributes":{"watchers":"2197.0","name":"https://github.com/magicalpanda/MagicalRecord","language":"Objective-C","Component ID":"0","watchersInteger":"2197"}},
{"id":"734.0", "label":"fzaninotto/Faker","x":507.0541,"y":-198.31618,"size":4.069577,"color":"rgb(147,48,255)","attributes":{"watchers":"1030.0","name":"https://github.com/fzaninotto/Faker","language":"PHP","Component ID":"0","watchersInteger":"1030"}},
{"id":"735.0", "label":"sstephenson/prototype","x":1037.2347,"y":-1000.41626,"size":7.6133647,"color":"rgb(245,184,0)","attributes":{"watchers":"2558.0","name":"https://github.com/sstephenson/prototype","language":"JavaScript","Component ID":"0","watchersInteger":"2558"}},
{"id":"736.0", "label":"felixge/node-mysql","x":729.7846,"y":482.00098,"size":5.375305,"color":"rgb(245,184,0)","attributes":{"watchers":"1593.0","name":"https://github.com/felixge/node-mysql","language":"JavaScript","Component ID":"0","watchersInteger":"1593"}},
{"id":"737.0", "label":"dbushell/Socialite","x":-1070.2599,"y":167.53226,"size":4.0324693,"color":"rgb(245,184,0)","attributes":{"watchers":"1014.0","name":"https://github.com/dbushell/Socialite","language":"JavaScript","Component ID":"0","watchersInteger":"1014"}},
{"id":"738.0", "label":"daylerees/colour-schemes","x":912.5311,"y":118.42071,"size":5.5817165,"color":"rgb(74,168,114)","attributes":{"watchers":"1682.0","name":"https://github.com/daylerees/colour-schemes","language":"VimL","Component ID":"0","watchersInteger":"1682"}},
{"id":"739.0", "label":"sebastianbergmann/phpunit","x":463.12146,"y":-197.65607,"size":7.0150023,"color":"rgb(147,48,255)","attributes":{"watchers":"2300.0","name":"https://github.com/sebastianbergmann/phpunit","language":"PHP","Component ID":"0","watchersInteger":"2300"}},
{"id":"740.0", "label":"locomotivecms/engine","x":-10.027741,"y":1156.9725,"size":4.8140507,"color":"rgb(230,0,172)","attributes":{"watchers":"1351.0","name":"https://github.com/locomotivecms/engine","language":"Ruby","Component ID":"0","watchersInteger":"1351"}},
{"id":"741.0", "label":"tinymce/tinymce","x":-419.70798,"y":-986.26544,"size":4.9694395,"color":"rgb(245,184,0)","attributes":{"watchers":"1418.0","name":"https://github.com/tinymce/tinymce","language":"JavaScript","Component ID":"0","watchersInteger":"1418"}},
{"id":"742.0", "label":"jenkinsci/jenkins","x":256.41074,"y":1497.6799,"size":5.672167,"color":"rgb(128,56,169)","attributes":{"watchers":"1721.0","name":"https://github.com/jenkinsci/jenkins","language":"Java","Component ID":"0","watchersInteger":"1721"}},
{"id":"743.0", "label":"imakewebthings/jquery-waypoints","x":-997.8488,"y":1296.2449,"size":5.463436,"color":"rgb(245,184,0)","attributes":{"watchers":"1631.0","name":"https://github.com/imakewebthings/jquery-waypoints","language":"JavaScript","Component ID":"0","watchersInteger":"1631"}},
{"id":"744.0", "label":"marijnh/CodeMirror2","x":421.17667,"y":839.8789,"size":5.347474,"color":"rgb(245,184,0)","attributes":{"watchers":"1581.0","name":"https://github.com/marijnh/CodeMirror2","language":"JavaScript","Component ID":"0","watchersInteger":"1581"}},
{"id":"745.0", "label":"intridea/grape","x":-727.2561,"y":721.15283,"size":6.889764,"color":"rgb(230,0,172)","attributes":{"watchers":"2246.0","name":"https://github.com/intridea/grape","language":"Ruby","Component ID":"0","watchersInteger":"2246"}},
{"id":"747.0", "label":"ryanb/nested_form","x":-423.67902,"y":1071.06,"size":4.062619,"color":"rgb(230,0,172)","attributes":{"watchers":"1027.0","name":"https://github.com/ryanb/nested_form","language":"Ruby","Component ID":"0","watchersInteger":"1027"}},
{"id":"748.0", "label":"desandro/isotope","x":-630.8397,"y":-673.1087,"size":7.6040874,"color":"rgb(245,184,0)","attributes":{"watchers":"2554.0","name":"https://github.com/desandro/isotope","language":"JavaScript","Component ID":"0","watchersInteger":"2554"}},
{"id":"750.0", "label":"harthur/brain","x":-524.46,"y":-1270.1046,"size":4.867393,"color":"rgb(245,184,0)","attributes":{"watchers":"1374.0","name":"https://github.com/harthur/brain","language":"JavaScript","Component ID":"0","watchersInteger":"1374"}},
{"id":"751.0", "label":"rails/rails","x":-370.49088,"y":812.3841,"size":40.987125,"color":"rgb(230,0,172)","attributes":{"watchers":"16948.0","name":"https://github.com/rails/rails","language":"Ruby","Component ID":"0","watchersInteger":"16948"}},
{"id":"754.0", "label":"fernandezpablo85/scribe-java","x":536.337,"y":-546.0803,"size":4.310777,"color":"rgb(128,56,169)","attributes":{"watchers":"1134.0","name":"https://github.com/fernandezpablo85/scribe-java","language":"Java","Component ID":"0","watchersInteger":"1134"}},
{"id":"755.0", "label":"saasbook/hw3_rottenpotatoes","x":-1483.5056,"y":1832.4733,"size":10.943783,"color":"rgb(230,0,172)","attributes":{"watchers":"3994.0","name":"https://github.com/saasbook/hw3_rottenpotatoes","language":"Ruby","Component ID":"0","watchersInteger":"3994"}},
{"id":"756.0", "label":"joelthelion/autojump","x":1019.14655,"y":-139.3019,"size":4.2342424,"color":"rgb(31,109,255)","attributes":{"watchers":"1101.0","name":"https://github.com/joelthelion/autojump","language":"Python","Component ID":"0","watchersInteger":"1101"}},
{"id":"758.0", "label":"tweepy/tweepy","x":326.74387,"y":-1006.0043,"size":5.006547,"color":"rgb(31,109,255)","attributes":{"watchers":"1434.0","name":"https://github.com/tweepy/tweepy","language":"Python","Component ID":"0","watchersInteger":"1434"}},
{"id":"760.0", "label":"getsentry/sentry","x":672.77313,"y":-350.6599,"size":7.1240063,"color":"rgb(31,109,255)","attributes":{"watchers":"2347.0","name":"https://github.com/getsentry/sentry","language":"Python","Component ID":"0","watchersInteger":"2347"}},
{"id":"761.0", "label":"Shopify/batman","x":-392.7792,"y":101.64422,"size":4.4336967,"color":"rgb(227,235,16)","attributes":{"watchers":"1187.0","name":"https://github.com/Shopify/batman","language":"CoffeeScript","Component ID":"0","watchersInteger":"1187"}},
{"id":"763.0", "label":"mrdoob/three.js","x":152.63916,"y":-874.53784,"size":23.507067,"color":"rgb(245,184,0)","attributes":{"watchers":"9411.0","name":"https://github.com/mrdoob/three.js","language":"JavaScript","Component ID":"0","watchersInteger":"9411"}},
{"id":"765.0", "label":"maccman/spine","x":-158.7239,"y":85.56513,"size":6.880487,"color":"rgb(245,184,0)","attributes":{"watchers":"2242.0","name":"https://github.com/maccman/spine","language":"JavaScript","Component ID":"0","watchersInteger":"2242"}},
{"id":"766.0", "label":"yeoman/yeoman","x":-566.52484,"y":-216.42963,"size":6.93151,"color":"rgb(44,201,60)","attributes":{"watchers":"2264.0","name":"https://github.com/yeoman/yeoman","language":"Shell","Component ID":"0","watchersInteger":"2264"}},
{"id":"767.0", "label":"mozilla/browserid","x":381.93494,"y":-623.953,"size":4.470804,"color":"rgb(245,184,0)","attributes":{"watchers":"1203.0","name":"https://github.com/mozilla/browserid","language":"JavaScript","Component ID":"0","watchersInteger":"1203"}},
{"id":"768.0", "label":"sinatra/sinatra","x":-184.82918,"y":739.82794,"size":11.848284,"color":"rgb(230,0,172)","attributes":{"watchers":"4384.0","name":"https://github.com/sinatra/sinatra","language":"Ruby","Component ID":"0","watchersInteger":"4384"}},
{"id":"770.0", "label":"jnicklas/capybara","x":-370.64752,"y":611.8004,"size":8.953881,"color":"rgb(230,0,172)","attributes":{"watchers":"3136.0","name":"https://github.com/jnicklas/capybara","language":"Ruby","Component ID":"0","watchersInteger":"3136"}},
{"id":"772.0", "label":"nzakas/computer-science-in-javascript","x":708.90625,"y":-932.0756,"size":5.055251,"color":"rgb(245,184,0)","attributes":{"watchers":"1455.0","name":"https://github.com/nzakas/computer-science-in-javascript","language":"JavaScript","Component ID":"0","watchersInteger":"1455"}},
{"id":"773.0", "label":"mitchellh/vagrant","x":649.07355,"y":274.17282,"size":7.696857,"color":"rgb(230,0,172)","attributes":{"watchers":"2594.0","name":"https://github.com/mitchellh/vagrant","language":"Ruby","Component ID":"0","watchersInteger":"2594"}},
{"id":"774.0", "label":"sstephenson/eco","x":-758.6256,"y":369.57944,"size":4.4012275,"color":"rgb(227,235,16)","attributes":{"watchers":"1173.0","name":"https://github.com/sstephenson/eco","language":"CoffeeScript","Component ID":"0","watchersInteger":"1173"}},
{"id":"776.0", "label":"omab/django-social-auth","x":670.55963,"y":-473.52057,"size":5.20832,"color":"rgb(31,109,255)","attributes":{"watchers":"1521.0","name":"https://github.com/omab/django-social-auth","language":"Python","Component ID":"0","watchersInteger":"1521"}},
{"id":"777.0", "label":"collectiveidea/delayed_job","x":-578.6831,"y":904.82574,"size":7.0150023,"color":"rgb(230,0,172)","attributes":{"watchers":"2300.0","name":"https://github.com/collectiveidea/delayed_job","language":"Ruby","Component ID":"0","watchersInteger":"2300"}},
{"id":"779.0", "label":"josevalim/inherited_resources","x":-407.1592,"y":972.584,"size":5.7974052,"color":"rgb(230,0,172)","attributes":{"watchers":"1775.0","name":"https://github.com/josevalim/inherited_resources","language":"Ruby","Component ID":"0","watchersInteger":"1775"}},
{"id":"781.0", "label":"Shopify/active_merchant","x":-548.9257,"y":1252.8356,"size":6.8062716,"color":"rgb(230,0,172)","attributes":{"watchers":"2210.0","name":"https://github.com/Shopify/active_merchant","language":"Ruby","Component ID":"0","watchersInteger":"2210"}},
{"id":"785.0", "label":"sstephenson/sprockets","x":-273.2938,"y":219.39949,"size":5.667528,"color":"rgb(230,0,172)","attributes":{"watchers":"1719.0","name":"https://github.com/sstephenson/sprockets","language":"Ruby","Component ID":"0","watchersInteger":"1719"}},
{"id":"786.0", "label":"wavded/humane-js","x":-148.08066,"y":-398.11725,"size":4.7050467,"color":"rgb(245,184,0)","attributes":{"watchers":"1304.0","name":"https://github.com/wavded/humane-js","language":"JavaScript","Component ID":"0","watchersInteger":"1304"}},
{"id":"787.0", "label":"django/django","x":788.90894,"y":-409.4885,"size":13.237504,"color":"rgb(31,109,255)","attributes":{"watchers":"4983.0","name":"https://github.com/django/django","language":"Python","Component ID":"0","watchersInteger":"4983"}},
{"id":"788.0", "label":"etsy/deployinator","x":829.68774,"y":19.888441,"size":4.109004,"color":"rgb(245,184,0)","attributes":{"watchers":"1047.0","name":"https://github.com/etsy/deployinator","language":"JavaScript","Component ID":"0","watchersInteger":"1047"}},
{"id":"789.0", "label":"Cocoanetics/DTCoreText","x":-761.34955,"y":230.12119,"size":5.013505,"color":"rgb(45,180,214)","attributes":{"watchers":"1437.0","name":"https://github.com/Cocoanetics/DTCoreText","language":"Objective-C","Component ID":"0","watchersInteger":"1437"}},
{"id":"793.0", "label":"ryanb/ruby-warrior","x":-444.9014,"y":1333.9685,"size":4.3316503,"color":"rgb(230,0,172)","attributes":{"watchers":"1143.0","name":"https://github.com/ryanb/ruby-warrior","language":"Ruby","Component ID":"0","watchersInteger":"1143"}},
{"id":"794.0", "label":"guillaumepotier/Garlic.js","x":57.96014,"y":532.36237,"size":4.289904,"color":"rgb(245,184,0)","attributes":{"watchers":"1125.0","name":"https://github.com/guillaumepotier/Garlic.js","language":"JavaScript","Component ID":"0","watchersInteger":"1125"}},
{"id":"795.0", "label":"nvie/gitflow","x":2191.7698,"y":1472.0779,"size":14.232455,"color":"rgb(44,201,60)","attributes":{"watchers":"5412.0","name":"https://github.com/nvie/gitflow","language":"Shell","Component ID":"0","watchersInteger":"5412"}},
{"id":"796.0", "label":"kanaka/noVNC","x":439.87134,"y":886.65063,"size":4.340927,"color":"rgb(245,184,0)","attributes":{"watchers":"1147.0","name":"https://github.com/kanaka/noVNC","language":"JavaScript","Component ID":"0","watchersInteger":"1147"}},
{"id":"798.0", "label":"loopj/jquery-tokeninput","x":-144.51436,"y":-565.16754,"size":5.2894936,"color":"rgb(245,184,0)","attributes":{"watchers":"1556.0","name":"https://github.com/loopj/jquery-tokeninput","language":"JavaScript","Component ID":"0","watchersInteger":"1556"}},
{"id":"799.0", "label":"domesticcatsoftware/DCIntrospect","x":2406.8938,"y":726.9287,"size":4.398908,"color":"rgb(45,180,214)","attributes":{"watchers":"1172.0","name":"https://github.com/domesticcatsoftware/DCIntrospect","language":"Objective-C","Component ID":"0","watchersInteger":"1172"}},
{"id":"800.0", "label":"rails/turbolinks","x":-349.03894,"y":515.80615,"size":4.9160967,"color":"rgb(227,235,16)","attributes":{"watchers":"1395.0","name":"https://github.com/rails/turbolinks","language":"CoffeeScript","Component ID":"0","watchersInteger":"1395"}},
{"id":"801.0", "label":"gitlabhq/gitlabhq","x":-113.334435,"y":469.84958,"size":15.566013,"color":"rgb(230,0,172)","attributes":{"watchers":"5987.0","name":"https://github.com/gitlabhq/gitlabhq","language":"Ruby","Component ID":"0","watchersInteger":"5987"}},
{"id":"804.0", "label":"holman/dotfiles","x":337.95657,"y":168.22443,"size":4.4522505,"color":"rgb(74,168,114)","attributes":{"watchers":"1195.0","name":"https://github.com/holman/dotfiles","language":"VimL","Component ID":"0","watchersInteger":"1195"}},
{"id":"805.0", "label":"appdotnet/api-spec","x":1075.4779,"y":116.00389,"size":4.1066847,"color":"rgb(245,184,0)","attributes":{"watchers":"1046.0","name":"https://github.com/appdotnet/api-spec","language":"JavaScript","Component ID":"0","watchersInteger":"1046"}},
{"id":"807.0", "label":"ruby/ruby","x":-144.33368,"y":833.98773,"size":9.721547,"color":"rgb(230,0,172)","attributes":{"watchers":"3467.0","name":"https://github.com/ruby/ruby","language":"Ruby","Component ID":"0","watchersInteger":"3467"}},
{"id":"808.0", "label":"fatfreecrm/fat_free_crm","x":-260.50876,"y":947.4279,"size":6.286763,"color":"rgb(230,0,172)","attributes":{"watchers":"1986.0","name":"https://github.com/fatfreecrm/fat_free_crm","language":"Ruby","Component ID":"0","watchersInteger":"1986"}},
{"id":"811.0", "label":"tmpvar/jsdom","x":-160.58925,"y":-496.43503,"size":5.8252363,"color":"rgb(245,184,0)","attributes":{"watchers":"1787.0","name":"https://github.com/tmpvar/jsdom","language":"JavaScript","Component ID":"0","watchersInteger":"1787"}},
{"id":"812.0", "label":"dannycoates/node-inspector","x":-199.32603,"y":-1738.582,"size":6.3076363,"color":"rgb(245,184,0)","attributes":{"watchers":"1995.0","name":"https://github.com/dannycoates/node-inspector","language":"JavaScript","Component ID":"0","watchersInteger":"1995"}},
{"id":"813.0", "label":"Shopify/dashing","x":-555.704,"y":45.76298,"size":5.424009,"color":"rgb(245,184,0)","attributes":{"watchers":"1614.0","name":"https://github.com/Shopify/dashing","language":"JavaScript","Component ID":"0","watchersInteger":"1614"}},
{"id":"815.0", "label":"codebrew/backbone-rails","x":-1140.7184,"y":15.233273,"size":4.644747,"color":"rgb(230,0,172)","attributes":{"watchers":"1278.0","name":"https://github.com/codebrew/backbone-rails","language":"Ruby","Component ID":"0","watchersInteger":"1278"}},
{"id":"816.0", "label":"ryanb/cancan","x":-442.26233,"y":1218.6252,"size":10.999444,"color":"rgb(230,0,172)","attributes":{"watchers":"4018.0","name":"https://github.com/ryanb/cancan","language":"Ruby","Component ID":"0","watchersInteger":"4018"}},
{"id":"818.0", "label":"jkbr/httpie","x":1007.08417,"y":-71.19287,"size":11.419226,"color":"rgb(31,109,255)","attributes":{"watchers":"4199.0","name":"https://github.com/jkbr/httpie","language":"Python","Component ID":"0","watchersInteger":"4199"}},
{"id":"819.0", "label":"rigoneri/syte","x":241.80856,"y":-461.16983,"size":6.6369677,"color":"rgb(245,184,0)","attributes":{"watchers":"2137.0","name":"https://github.com/rigoneri/syte","language":"JavaScript","Component ID":"0","watchersInteger":"2137"}},
{"id":"820.0", "label":"mojombo/grit","x":270.4929,"y":341.41843,"size":5.3405166,"color":"rgb(230,0,172)","attributes":{"watchers":"1578.0","name":"https://github.com/mojombo/grit","language":"Ruby","Component ID":"0","watchersInteger":"1578"}},
{"id":"822.0", "label":"mislav/will_paginate","x":-618.14215,"y":436.24646,"size":9.626458,"color":"rgb(230,0,172)","attributes":{"watchers":"3426.0","name":"https://github.com/mislav/will_paginate","language":"Ruby","Component ID":"0","watchersInteger":"3426"}},
{"id":"823.0", "label":"basho/riak","x":355.49008,"y":1021.26465,"size":4.0533423,"color":"rgb(44,201,60)","attributes":{"watchers":"1023.0","name":"https://github.com/basho/riak","language":"Shell","Component ID":"0","watchersInteger":"1023"}}],"edges":[{"source":"15.0","target":"3.0","weight":"19.849434","id":"2966"},
{"source":"15.0","target":"10.0","weight":"13.114877","id":"647"},
{"source":"20.0","target":"16.0","weight":"2.0","id":"132"},
{"source":"25.0","target":"4.0","weight":"16.062378","id":"90"},
{"source":"25.0","target":"10.0","weight":"1.4142135","id":"1261"},
{"source":"30.0","target":"10.0","weight":"2.828427","id":"2785"},
{"source":"30.0","target":"15.0","weight":"34.02345","id":"2664"},
{"source":"31.0","target":"2.0","weight":"3.0","id":"420"},
{"source":"33.0","target":"21.0","weight":"2.0","id":"670"},
{"source":"36.0","target":"16.0","weight":"16.970562","id":"5"},
{"source":"38.0","target":"2.0","weight":"14.8323965","id":"1086"},
{"source":"38.0","target":"25.0","weight":"2.4494898","id":"3356"},
{"source":"42.0","target":"4.0","weight":"3.0","id":"2124"},
{"source":"47.0","target":"39.0","weight":"4.2426405","id":"2066"},
{"source":"59.0","target":"29.0","weight":"53.777317","id":"728"},
{"source":"60.0","target":"19.0","weight":"55.596443","id":"3111"},
{"source":"60.0","target":"38.0","weight":"2.4494898","id":"639"},
{"source":"66.0","target":"58.0","weight":"6.3245554","id":"1164"},
{"source":"69.0","target":"10.0","weight":"10.567196","id":"952"},
{"source":"69.0","target":"15.0","weight":"138.5875","id":"1859"},
{"source":"69.0","target":"30.0","weight":"4.472136","id":"414"},
{"source":"72.0","target":"5.0","weight":"3.7416575","id":"2636"},
{"source":"78.0","target":"39.0","weight":"1.7320508","id":"2537"},
{"source":"78.0","target":"40.0","weight":"4.0","id":"1440"},
{"source":"79.0","target":"10.0","weight":"7.7067423","id":"1404"},
{"source":"79.0","target":"15.0","weight":"18.807306","id":"2973"},
{"source":"79.0","target":"30.0","weight":"2.4494898","id":"1305"},
{"source":"79.0","target":"60.0","weight":"4.0","id":"197"},
{"source":"79.0","target":"61.0","weight":"3.1622777","id":"2398"},
{"source":"79.0","target":"69.0","weight":"32.92187","id":"3351"},
{"source":"79.0","target":"71.0","weight":"11.090536","id":"2475"},
{"source":"82.0","target":"15.0","weight":"10.874008","id":"2858"},
{"source":"82.0","target":"30.0","weight":"7.2111025","id":"3548"},
{"source":"82.0","target":"38.0","weight":"17.233688","id":"858"},
{"source":"82.0","target":"69.0","weight":"13.638182","id":"3198"},
{"source":"82.0","target":"79.0","weight":"55.82045","id":"2737"},
{"source":"98.0","target":"16.0","weight":"7.937254","id":"1016"},
{"source":"99.0","target":"34.0","weight":"10.677078","id":"1750"},
{"source":"99.0","target":"69.0","weight":"3.0","id":"1941"},
{"source":"99.0","target":"92.0","weight":"2.0","id":"2063"},
{"source":"100.0","target":"6.0","weight":"2.4494898","id":"974"},
{"source":"100.0","target":"16.0","weight":"1.7320508","id":"418"},
{"source":"100.0","target":"45.0","weight":"44.685326","id":"194"},
{"source":"100.0","target":"94.0","weight":"1.4142135","id":"2272"},
{"source":"103.0","target":"2.0","weight":"14.387495","id":"3381"},
{"source":"104.0","target":"42.0","weight":"3.3166249","id":"1370"},
{"source":"105.0","target":"4.0","weight":"2.0","id":"816"},
{"source":"105.0","target":"60.0","weight":"5.477226","id":"2059"},
{"source":"105.0","target":"65.0","weight":"2.828427","id":"1191"},
{"source":"108.0","target":"0.0","weight":"9.591663","id":"3130"},
{"source":"108.0","target":"15.0","weight":"4.582576","id":"760"},
{"source":"108.0","target":"69.0","weight":"22.088007","id":"835"},
{"source":"108.0","target":"79.0","weight":"29.400177","id":"1720"},
{"source":"108.0","target":"82.0","weight":"26.771587","id":"2618"},
{"source":"108.0","target":"92.0","weight":"16.52271","id":"1406"},
{"source":"109.0","target":"44.0","weight":"1.7320508","id":"864"},
{"source":"109.0","target":"66.0","weight":"2.236068","id":"1952"},
{"source":"109.0","target":"91.0","weight":"3.4641016","id":"3300"},
{"source":"111.0","target":"88.0","weight":"1.0","id":"62"},
{"source":"111.0","target":"91.0","weight":"2.4494898","id":"1235"},
{"source":"111.0","target":"109.0","weight":"1.4142135","id":"1833"},
{"source":"113.0","target":"25.0","weight":"34.583233","id":"1631"},
{"source":"114.0","target":"109.0","weight":"2.0","id":"3645"},
{"source":"115.0","target":"15.0","weight":"24.819347","id":"1823"},
{"source":"120.0","target":"15.0","weight":"8.944272","id":"1936"},
{"source":"120.0","target":"108.0","weight":"5.91608","id":"2459"},
{"source":"121.0","target":"47.0","weight":"60.794735","id":"2566"},
{"source":"124.0","target":"10.0","weight":"25.884357","id":"3145"},
{"source":"124.0","target":"18.0","weight":"8.83176","id":"1771"},
{"source":"124.0","target":"25.0","weight":"36.60601","id":"574"},
{"source":"124.0","target":"45.0","weight":"51.06858","id":"205"},
{"source":"124.0","target":"94.0","weight":"22.768139","id":"229"},
{"source":"124.0","target":"100.0","weight":"42.348545","id":"2802"},
{"source":"124.0","target":"122.0","weight":"399.16077","id":"906"},
{"source":"128.0","target":"38.0","weight":"2.828427","id":"2380"},
{"source":"130.0","target":"18.0","weight":"47.28636","id":"2926"},
{"source":"130.0","target":"110.0","weight":"16.492422","id":"2263"},
{"source":"130.0","target":"124.0","weight":"32.124756","id":"2766"},
{"source":"133.0","target":"76.0","weight":"2.4494898","id":"313"},
{"source":"133.0","target":"78.0","weight":"20.420578","id":"793"},
{"source":"135.0","target":"2.0","weight":"23.49468","id":"536"},
{"source":"135.0","target":"11.0","weight":"93.327095","id":"3169"},
{"source":"135.0","target":"103.0","weight":"4.8989797","id":"1641"},
{"source":"135.0","target":"130.0","weight":"53.329166","id":"3386"},
{"source":"136.0","target":"45.0","weight":"17.233688","id":"672"},
{"source":"136.0","target":"47.0","weight":"1.0","id":"2745"},
{"source":"136.0","target":"77.0","weight":"4.8989797","id":"1279"},
{"source":"136.0","target":"84.0","weight":"9.486833","id":"1582"},
{"source":"139.0","target":"133.0","weight":"1.7320508","id":"2764"},
{"source":"141.0","target":"15.0","weight":"3.8729835","id":"159"},
{"source":"141.0","target":"108.0","weight":"1.4142135","id":"1821"},
{"source":"142.0","target":"18.0","weight":"82.53484","id":"860"},
{"source":"142.0","target":"19.0","weight":"1.4142135","id":"1368"},
{"source":"142.0","target":"22.0","weight":"3.0","id":"1766"},
{"source":"142.0","target":"38.0","weight":"1.4142135","id":"873"},
{"source":"142.0","target":"44.0","weight":"1.7320508","id":"2227"},
{"source":"142.0","target":"46.0","weight":"2.4494898","id":"2189"},
{"source":"142.0","target":"57.0","weight":"5.196152","id":"449"},
{"source":"142.0","target":"60.0","weight":"1.4142135","id":"913"},
{"source":"142.0","target":"64.0","weight":"3.0","id":"2682"},
{"source":"142.0","target":"69.0","weight":"3.4641016","id":"514"},
{"source":"142.0","target":"108.0","weight":"1.0","id":"3201"},
{"source":"142.0","target":"110.0","weight":"28.42534","id":"1908"},
{"source":"142.0","target":"124.0","weight":"56.071384","id":"428"},
{"source":"142.0","target":"130.0","weight":"423.5831","id":"2827"},
{"source":"145.0","target":"24.0","weight":"22.181072","id":"3172"},
{"source":"145.0","target":"46.0","weight":"2.828427","id":"3632"},
{"source":"145.0","target":"109.0","weight":"2.4494898","id":"2877"},
{"source":"145.0","target":"114.0","weight":"2.4494898","id":"2984"},
{"source":"148.0","target":"76.0","weight":"10.099504","id":"847"},
{"source":"148.0","target":"133.0","weight":"4.1231055","id":"2088"},
{"source":"149.0","target":"42.0","weight":"2.4494898","id":"1881"},
{"source":"153.0","target":"45.0","weight":"10.677078","id":"2011"},
{"source":"153.0","target":"120.0","weight":"57.05261","id":"522"},
{"source":"155.0","target":"57.0","weight":"6.0","id":"238"},
{"source":"155.0","target":"100.0","weight":"40.620193","id":"248"},
{"source":"155.0","target":"124.0","weight":"3.4641016","id":"3399"},
{"source":"156.0","target":"47.0","weight":"2.0","id":"3406"},
{"source":"156.0","target":"104.0","weight":"3.4641016","id":"3004"},
{"source":"156.0","target":"121.0","weight":"60.794735","id":"2307"},
{"source":"160.0","target":"64.0","weight":"1.4142135","id":"809"},
{"source":"160.0","target":"94.0","weight":"2.4494898","id":"641"},
{"source":"160.0","target":"124.0","weight":"3.4641016","id":"1223"},
{"source":"161.0","target":"74.0","weight":"2.828427","id":"1890"},
{"source":"161.0","target":"135.0","weight":"20.139128","id":"554"},
{"source":"162.0","target":"27.0","weight":"4.2426405","id":"459"},
{"source":"163.0","target":"23.0","weight":"24.617067","id":"2253"},
{"source":"163.0","target":"38.0","weight":"3.0","id":"3434"},
{"source":"164.0","target":"3.0","weight":"5.0","id":"845"},
{"source":"164.0","target":"5.0","weight":"1.7320508","id":"2579"},
{"source":"164.0","target":"15.0","weight":"19.849434","id":"1011"},
{"source":"164.0","target":"92.0","weight":"2.4494898","id":"2761"},
{"source":"164.0","target":"99.0","weight":"2.4494898","id":"2601"},
{"source":"164.0","target":"105.0","weight":"13.601471","id":"770"},
{"source":"164.0","target":"108.0","weight":"7.477226","id":"175"},
{"source":"164.0","target":"141.0","weight":"101.05444","id":"681"},
{"source":"165.0","target":"56.0","weight":"2.828427","id":"2139"},
{"source":"166.0","target":"98.0","weight":"32.908966","id":"465"},
{"source":"167.0","target":"75.0","weight":"2.0","id":"2552"},
{"source":"167.0","target":"153.0","weight":"93.20944","id":"1726"},
{"source":"168.0","target":"15.0","weight":"14.071247","id":"950"},
{"source":"168.0","target":"36.0","weight":"55.506756","id":"3032"},
{"source":"168.0","target":"38.0","weight":"11.224972","id":"729"},
{"source":"168.0","target":"57.0","weight":"4.8989797","id":"2713"},
{"source":"168.0","target":"69.0","weight":"5.7445626","id":"2210"},
{"source":"168.0","target":"84.0","weight":"3.0","id":"6"},
{"source":"168.0","target":"88.0","weight":"3.0","id":"2306"},
{"source":"168.0","target":"108.0","weight":"48.0","id":"1354"},
{"source":"168.0","target":"141.0","weight":"2.6457512","id":"1748"},
{"source":"168.0","target":"155.0","weight":"7.3484693","id":"655"},
{"source":"169.0","target":"4.0","weight":"3.8729835","id":"3306"},
{"source":"169.0","target":"15.0","weight":"1.0","id":"1934"},
{"source":"169.0","target":"27.0","weight":"1.4142135","id":"986"},
{"source":"169.0","target":"42.0","weight":"3.8729835","id":"1001"},
{"source":"169.0","target":"79.0","weight":"2.0","id":"451"},
{"source":"169.0","target":"82.0","weight":"3.0","id":"1917"},
{"source":"169.0","target":"108.0","weight":"5.91608","id":"2337"},
{"source":"169.0","target":"120.0","weight":"1.0","id":"136"},
{"source":"170.0","target":"3.0","weight":"4.2426405","id":"3506"},
{"source":"170.0","target":"43.0","weight":"56.33521","id":"2133"},
{"source":"170.0","target":"100.0","weight":"3.4641016","id":"1206"},
{"source":"170.0","target":"126.0","weight":"1.0","id":"862"},
{"source":"174.0","target":"77.0","weight":"2.4494898","id":"2001"},
{"source":"174.0","target":"136.0","weight":"4.0","id":"1451"},
{"source":"175.0","target":"11.0","weight":"26.596748","id":"1740"},
{"source":"175.0","target":"80.0","weight":"1.7320508","id":"1336"},
{"source":"175.0","target":"135.0","weight":"10.723805","id":"754"},
{"source":"175.0","target":"164.0","weight":"3.0","id":"3563"},
{"source":"177.0","target":"29.0","weight":"1591.6448","id":"2438"},
{"source":"177.0","target":"59.0","weight":"46.572525","id":"1199"},
{"source":"178.0","target":"108.0","weight":"1.7320508","id":"759"},
{"source":"179.0","target":"29.0","weight":"2.4494898","id":"3573"},
{"source":"179.0","target":"171.0","weight":"5.8309517","id":"2645"},
{"source":"180.0","target":"2.0","weight":"14.387495","id":"794"},
{"source":"180.0","target":"103.0","weight":"3.0","id":"1573"},
{"source":"180.0","target":"135.0","weight":"4.8989797","id":"2513"},
{"source":"181.0","target":"11.0","weight":"3.0","id":"2224"},
{"source":"181.0","target":"135.0","weight":"3.4641016","id":"3187"},
{"source":"182.0","target":"3.0","weight":"2.4494898","id":"3236"},
{"source":"183.0","target":"128.0","weight":"63.773037","id":"586"},
{"source":"184.0","target":"71.0","weight":"3.0","id":"1943"},
{"source":"188.0","target":"120.0","weight":"40.435135","id":"461"},
{"source":"188.0","target":"153.0","weight":"153.79532","id":"2919"},
{"source":"189.0","target":"30.0","weight":"2.4494898","id":"1173"},
{"source":"189.0","target":"55.0","weight":"4.2426405","id":"1087"},
{"source":"189.0","target":"80.0","weight":"75.498344","id":"1629"},
{"source":"189.0","target":"92.0","weight":"2.4494898","id":"932"},
{"source":"189.0","target":"99.0","weight":"2.4494898","id":"2762"},
{"source":"189.0","target":"104.0","weight":"4.0","id":"3181"},
{"source":"189.0","target":"124.0","weight":"3.4641016","id":"3138"},
{"source":"189.0","target":"164.0","weight":"3.0","id":"3128"},
{"source":"190.0","target":"75.0","weight":"6.4807405","id":"2153"},
{"source":"190.0","target":"94.0","weight":"3.0","id":"861"},
{"source":"190.0","target":"168.0","weight":"1.4142135","id":"3123"},
{"source":"190.0","target":"174.0","weight":"1.0","id":"900"},
{"source":"192.0","target":"5.0","weight":"2.6457512","id":"735"},
{"source":"192.0","target":"72.0","weight":"1.4142135","id":"395"},
{"source":"192.0","target":"168.0","weight":"2.4494898","id":"1149"},
{"source":"193.0","target":"145.0","weight":"8.477225","id":"2318"},
{"source":"193.0","target":"183.0","weight":"1.4142135","id":"1441"},
{"source":"196.0","target":"77.0","weight":"5.196152","id":"493"},
{"source":"196.0","target":"136.0","weight":"8.485281","id":"2378"},
{"source":"196.0","target":"174.0","weight":"4.2426405","id":"1081"},
{"source":"198.0","target":"66.0","weight":"21.330729","id":"2932"},
{"source":"198.0","target":"142.0","weight":"1.7320508","id":"1855"},
{"source":"202.0","target":"25.0","weight":"118.99569","id":"901"},
{"source":"202.0","target":"30.0","weight":"6.472136","id":"128"},
{"source":"202.0","target":"57.0","weight":"3.4641016","id":"2672"},
{"source":"202.0","target":"69.0","weight":"8.485281","id":"923"},
{"source":"202.0","target":"79.0","weight":"3.4641016","id":"2070"},
{"source":"202.0","target":"108.0","weight":"6.63103","id":"1263"},
{"source":"202.0","target":"113.0","weight":"13.416408","id":"1461"},
{"source":"202.0","target":"142.0","weight":"1.4142135","id":"3067"},
{"source":"202.0","target":"155.0","weight":"5.196152","id":"516"},
{"source":"202.0","target":"168.0","weight":"4.2426405","id":"2450"},
{"source":"203.0","target":"4.0","weight":"30.757113","id":"3609"},
{"source":"203.0","target":"15.0","weight":"9.16018","id":"480"},
{"source":"203.0","target":"25.0","weight":"8.744563","id":"2394"},
{"source":"203.0","target":"82.0","weight":"17.593641","id":"551"},
{"source":"203.0","target":"92.0","weight":"2.4494898","id":"1494"},
{"source":"203.0","target":"99.0","weight":"2.4494898","id":"2925"},
{"source":"203.0","target":"142.0","weight":"3.8729835","id":"2271"},
{"source":"203.0","target":"164.0","weight":"6.0","id":"2725"},
{"source":"203.0","target":"189.0","weight":"3.0","id":"291"},
{"source":"203.0","target":"202.0","weight":"3.0","id":"570"},
{"source":"204.0","target":"100.0","weight":"28.248894","id":"2641"},
{"source":"204.0","target":"124.0","weight":"97.85704","id":"1344"},
{"source":"204.0","target":"135.0","weight":"2.4494898","id":"1912"},
{"source":"207.0","target":"0.0","weight":"53.516354","id":"1210"},
{"source":"207.0","target":"10.0","weight":"4.8989797","id":"448"},
{"source":"207.0","target":"15.0","weight":"16.062378","id":"2246"},
{"source":"207.0","target":"30.0","weight":"3.4641016","id":"581"},
{"source":"207.0","target":"69.0","weight":"13.745967","id":"2581"},
{"source":"207.0","target":"79.0","weight":"21.983416","id":"54"},
{"source":"207.0","target":"108.0","weight":"16.431677","id":"1795"},
{"source":"207.0","target":"197.0","weight":"6.4807405","id":"567"},
{"source":"208.0","target":"30.0","weight":"82.70429","id":"1898"},
{"source":"208.0","target":"79.0","weight":"5.2915025","id":"1142"},
{"source":"208.0","target":"82.0","weight":"16.340136","id":"3081"},
{"source":"208.0","target":"108.0","weight":"203.09491","id":"1896"},
{"source":"208.0","target":"135.0","weight":"2.236068","id":"2528"},
{"source":"208.0","target":"168.0","weight":"4.2426405","id":"492"},
{"source":"208.0","target":"178.0","weight":"2.4494898","id":"3473"},
{"source":"208.0","target":"184.0","weight":"1.0","id":"280"},
{"source":"208.0","target":"192.0","weight":"3.4641016","id":"1323"},
{"source":"208.0","target":"202.0","weight":"4.2426405","id":"2582"},
{"source":"208.0","target":"203.0","weight":"9.433981","id":"2259"},
{"source":"208.0","target":"207.0","weight":"27.495455","id":"2406"},
{"source":"209.0","target":"21.0","weight":"4.472136","id":"635"},
{"source":"209.0","target":"33.0","weight":"4.472136","id":"1018"},
{"source":"209.0","target":"103.0","weight":"1.7320508","id":"3459"},
{"source":"215.0","target":"22.0","weight":"2.4494898","id":"3621"},
{"source":"215.0","target":"24.0","weight":"1.4142135","id":"3242"},
{"source":"215.0","target":"104.0","weight":"65.757126","id":"160"},
{"source":"215.0","target":"145.0","weight":"1.0","id":"1681"},
{"source":"215.0","target":"156.0","weight":"56.947346","id":"1298"},
{"source":"215.0","target":"172.0","weight":"3.4494898","id":"1699"},
{"source":"216.0","target":"68.0","weight":"1.7320508","id":"298"},
{"source":"220.0","target":"206.0","weight":"2.4494898","id":"2336"},
{"source":"221.0","target":"155.0","weight":"1.0","id":"156"},
{"source":"221.0","target":"168.0","weight":"2.4494898","id":"1774"},
{"source":"221.0","target":"203.0","weight":"27.0","id":"1796"},
{"source":"222.0","target":"11.0","weight":"8.602325","id":"144"},
{"source":"222.0","target":"136.0","weight":"3.0","id":"373"},
{"source":"222.0","target":"149.0","weight":"1.0","id":"467"},
{"source":"222.0","target":"153.0","weight":"4.2426405","id":"852"},
{"source":"222.0","target":"203.0","weight":"1.7320508","id":"2614"},
{"source":"222.0","target":"204.0","weight":"6.164414","id":"2889"},
{"source":"222.0","target":"215.0","weight":"10.392304","id":"1913"},
{"source":"223.0","target":"125.0","weight":"1.0","id":"2842"},
{"source":"223.0","target":"156.0","weight":"2.4494898","id":"2434"},
{"source":"223.0","target":"164.0","weight":"1.7320508","id":"2788"},
{"source":"223.0","target":"196.0","weight":"1.4142135","id":"2445"},
{"source":"224.0","target":"10.0","weight":"3.4641016","id":"2321"},
{"source":"224.0","target":"15.0","weight":"12.77203","id":"3536"},
{"source":"224.0","target":"30.0","weight":"2.4494898","id":"1646"},
{"source":"224.0","target":"60.0","weight":"3.0","id":"1530"},
{"source":"224.0","target":"69.0","weight":"5.477226","id":"1613"},
{"source":"224.0","target":"79.0","weight":"4.732051","id":"2743"},
{"source":"224.0","target":"82.0","weight":"20.566963","id":"1432"},
{"source":"224.0","target":"88.0","weight":"1.0","id":"917"},
{"source":"224.0","target":"105.0","weight":"3.4641016","id":"2280"},
{"source":"224.0","target":"108.0","weight":"39.623028","id":"3147"},
{"source":"224.0","target":"111.0","weight":"1.0","id":"2083"},
{"source":"224.0","target":"142.0","weight":"2.4494898","id":"1520"},
{"source":"224.0","target":"164.0","weight":"1.7320508","id":"3352"},
{"source":"224.0","target":"168.0","weight":"6.1622777","id":"1942"},
{"source":"224.0","target":"175.0","weight":"1.7320508","id":"1138"},
{"source":"224.0","target":"207.0","weight":"4.2426405","id":"3424"},
{"source":"226.0","target":"25.0","weight":"1.7320508","id":"1131"},
{"source":"226.0","target":"69.0","weight":"3.0","id":"2911"},
{"source":"226.0","target":"99.0","weight":"3.0","id":"3114"},
{"source":"226.0","target":"134.0","weight":"173.8534","id":"30"},
{"source":"226.0","target":"196.0","weight":"2.0","id":"3617"},
{"source":"226.0","target":"202.0","weight":"1.7320508","id":"2357"},
{"source":"226.0","target":"203.0","weight":"1.7320508","id":"372"},
{"source":"229.0","target":"82.0","weight":"11.874342","id":"757"},
{"source":"229.0","target":"108.0","weight":"22.299015","id":"3464"},
{"source":"229.0","target":"120.0","weight":"42.426407","id":"421"},
{"source":"229.0","target":"153.0","weight":"161.36914","id":"2847"},
{"source":"229.0","target":"168.0","weight":"3.4641016","id":"653"},
{"source":"229.0","target":"169.0","weight":"14.899665","id":"2348"},
{"source":"229.0","target":"188.0","weight":"114.36783","id":"179"},
{"source":"229.0","target":"203.0","weight":"3.4641016","id":"3296"},
{"source":"229.0","target":"224.0","weight":"81.40639","id":"9"},
{"source":"231.0","target":"143.0","weight":"8.3666","id":"424"},
{"source":"231.0","target":"155.0","weight":"1.0","id":"1511"},
{"source":"232.0","target":"2.0","weight":"2.0","id":"1048"},
{"source":"232.0","target":"21.0","weight":"9.486833","id":"1812"},
{"source":"232.0","target":"33.0","weight":"9.486833","id":"2933"},
{"source":"232.0","target":"94.0","weight":"1.4142135","id":"306"},
{"source":"232.0","target":"100.0","weight":"4.8989797","id":"141"},
{"source":"232.0","target":"142.0","weight":"5.4494896","id":"190"},
{"source":"232.0","target":"155.0","weight":"15.6205","id":"2000"},
{"source":"232.0","target":"156.0","weight":"2.0","id":"3491"},
{"source":"232.0","target":"204.0","weight":"12.247449","id":"1737"},
{"source":"232.0","target":"209.0","weight":"21.213203","id":"2996"},
{"source":"236.0","target":"29.0","weight":"737.82654","id":"1459"},
{"source":"236.0","target":"177.0","weight":"86.08136","id":"1842"},
{"source":"238.0","target":"83.0","weight":"129.79985","id":"784"},
{"source":"238.0","target":"103.0","weight":"5.656854","id":"2963"},
{"source":"238.0","target":"110.0","weight":"5.656854","id":"93"},
{"source":"238.0","target":"130.0","weight":"11.661903","id":"285"},
{"source":"238.0","target":"142.0","weight":"20.09975","id":"246"},
{"source":"238.0","target":"222.0","weight":"5.5677643","id":"1964"},
{"source":"239.0","target":"124.0","weight":"24.494898","id":"2460"},
{"source":"240.0","target":"91.0","weight":"259.95285","id":"1463"},
{"source":"240.0","target":"145.0","weight":"7.745967","id":"2619"},
{"source":"240.0","target":"193.0","weight":"1.4142135","id":"2861"},
{"source":"241.0","target":"6.0","weight":"2.236068","id":"217"},
{"source":"241.0","target":"25.0","weight":"2.0","id":"1722"},
{"source":"241.0","target":"94.0","weight":"18.480062","id":"2183"},
{"source":"241.0","target":"124.0","weight":"6.313193","id":"2903"},
{"source":"242.0","target":"193.0","weight":"1.0","id":"1119"},
{"source":"243.0","target":"220.0","weight":"12.247449","id":"3391"},
{"source":"247.0","target":"22.0","weight":"6.6332498","id":"2633"},
{"source":"247.0","target":"38.0","weight":"3.8729835","id":"2634"},
{"source":"248.0","target":"108.0","weight":"3.1622777","id":"1329"},
{"source":"248.0","target":"164.0","weight":"1.7320508","id":"2801"},
{"source":"251.0","target":"136.0","weight":"107.73579","id":"2696"},
{"source":"253.0","target":"136.0","weight":"109.201645","id":"2695"},
{"source":"253.0","target":"251.0","weight":"73.99324","id":"947"},
{"source":"254.0","target":"124.0","weight":"63.874878","id":"733"},
{"source":"255.0","target":"192.0","weight":"1.4142135","id":"1984"},
{"source":"262.0","target":"38.0","weight":"3.1622777","id":"2989"},
{"source":"262.0","target":"67.0","weight":"2.0","id":"1446"},
{"source":"262.0","target":"142.0","weight":"2.4494898","id":"596"},
{"source":"264.0","target":"2.0","weight":"64.52906","id":"2216"},
{"source":"264.0","target":"11.0","weight":"70.42471","id":"3233"},
{"source":"264.0","target":"38.0","weight":"3.8729835","id":"321"},
{"source":"264.0","target":"130.0","weight":"3.7416575","id":"2826"},
{"source":"264.0","target":"135.0","weight":"225.91827","id":"2198"},
{"source":"264.0","target":"175.0","weight":"6.708204","id":"2653"},
{"source":"264.0","target":"204.0","weight":"2.4494898","id":"2499"},
{"source":"264.0","target":"208.0","weight":"1.7320508","id":"2453"},
{"source":"265.0","target":"15.0","weight":"17.492855","id":"1517"},
{"source":"265.0","target":"115.0","weight":"231.1373","id":"3597"},
{"source":"265.0","target":"126.0","weight":"7.3484693","id":"885"},
{"source":"265.0","target":"229.0","weight":"7.3484693","id":"2069"},
{"source":"269.0","target":"22.0","weight":"1.7320508","id":"629"},
{"source":"270.0","target":"4.0","weight":"135.97794","id":"1147"},
{"source":"270.0","target":"25.0","weight":"25.39685","id":"3256"},
{"source":"270.0","target":"82.0","weight":"17.832554","id":"399"},
{"source":"270.0","target":"203.0","weight":"48.631268","id":"417"},
{"source":"271.0","target":"21.0","weight":"3.4641016","id":"706"},
{"source":"271.0","target":"27.0","weight":"216.45786","id":"2816"},
{"source":"271.0","target":"33.0","weight":"3.4641016","id":"1711"},
{"source":"271.0","target":"34.0","weight":"2.4494898","id":"1597"},
{"source":"271.0","target":"47.0","weight":"1.0","id":"3637"},